:root {
  --navy: #0B3A5B;
  --highlight: #305B79;
  --green: #7BC143;
  --bg: #f7fafc;
  --text: #0b1721;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: linear-gradient(135deg, #c2dff4 0%, #e7f2fb 55%, #ffffff 100%);
  color: var(--navy);
  box-shadow: 0 12px 24px -18px rgba(7, 28, 44, 0.55);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0.5rem;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.logo {
  height: 64px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.brand-tagline {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}

.brand-secondary {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(17, 42, 61, 0.7);
  font-weight: 600;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.45rem;
  border-radius: 999px;
  background: rgba(11, 58, 91, 0.08);
  box-shadow: none;
  backdrop-filter: none;
}

.top-nav a {
  color: var(--navy);
  text-decoration: none;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  background: rgba(11, 58, 91, 0.1);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero {
  background: #ffffff;
  border-bottom: 1px solid #e6edf3;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 40rem;
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(11, 58, 91, 0.7);
}

.hero-title {
  margin: 0;
  font-size: 1.95rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}

.hero-title.secondary {
  color: #153a59;
}

.hero-secondary {
  padding: 1rem 1.1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(11, 58, 91, 0.08), rgba(48, 91, 121, 0.16));
  border: 1px solid rgba(11, 58, 91, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-secondary span {
  font-size: 0.95rem;
  color: rgba(11, 23, 33, 0.78);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-inner {
  display: grid;
  box-shadow: 0 18px 34px -26px rgba(7, 28, 44, 0.35);
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0;
}

.hero-copy p { margin: 0; }

.hero-photo img {
  width: 100%;
  max-width: 320px;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.btn {
  display: inline-block;
  background: var(--green);
  color: #08311f;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.btn:hover { filter: brightness(0.95); }

.btn.ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(11, 58, 91, 0.35);
  padding: 0.55rem 1rem;
}

.btn.ghost:hover {
  background: rgba(11, 58, 91, 0.08);
  color: var(--navy);
  filter: none;
}

.section { padding: 2rem 0; }
.section h3 { margin-top: 0; color: var(--highlight); }
.section.alt { background: #f0f6fb; border-top: 1px solid #e6edf3; border-bottom: 1px solid #e6edf3; }

.bullets { padding-left: 1.25rem; }
.bullets li { margin: 0.4rem 0; }

.note { margin-top: 0.75rem; }

.thanks-block {
  margin: 3.5rem auto;
  max-width: 640px;
  background: #ffffff;
  padding: 2.2rem 2.4rem;
  border-radius: 16px;
  box-shadow: 0 18px 36px -26px rgba(7, 28, 44, 0.45);
  text-align: center;
}

.thanks-block h2 {
  margin: 0 0 1rem 0;
  color: var(--navy);
}

.thanks-block p {
  margin: 0 0 1.5rem 0;
  color: rgba(11, 23, 33, 0.78);
}

.thanks-block .hero-actions {
  justify-content: center;
}

.flightiq-header { display: flex; align-items: center; gap: 0.6rem; }
.fiq-logo { height: 64px; width: auto; display: block; }

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  column-gap: 2rem;
  row-gap: 0.75rem;
  align-items: start;
}

.contact h3 { margin: 0; color: var(--navy); }
.contact h3 + h3 { margin-top: 0.25rem; }
.contact p { margin: 0; color: rgba(11, 23, 33, 0.82); }
.contact p + p { margin-top: 0.4rem; }
.contact .linkedin-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.45rem;
  padding: 0.55rem 0.95rem;
  background: #0a66c2;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.contact .linkedin-button:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
  text-decoration: none;
}
.contact .linkedin-button img {
  width: 18px;
  height: 18px;
  margin-right: 0.4rem;
}

.contact a { color: var(--navy); text-decoration: none; }
.contact a:hover { text-decoration: underline; }

.contact-form {
  margin-top: 0;
  padding: 1.75rem 1.9rem;
  background: #ffffff;
  border: 1px solid rgba(11, 58, 91, 0.12);
  border-radius: 16px;
  display: grid;
  gap: 1.1rem;
  max-width: 640px;
  box-shadow: 0 18px 34px -26px rgba(7, 28, 44, 0.35);
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(11, 58, 91, 0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(11, 58, 91, 0.22);
  border-radius: 10px;
  font: inherit;
  color: var(--text);
  background: #f9fcff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--highlight);
  outline: none;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(48, 91, 121, 0.18);
}

.contact-submit {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  padding: 0.7rem 1.6rem;
  font-size: 0.95rem;
  box-shadow: 0 10px 20px -16px rgba(7, 28, 44, 0.6);
}

.contact-submit:hover {
  filter: brightness(0.94);
}



.site-footer {
  border-top: 1px solid #e6edf3;
  background: #ffffff;
}
.site-footer .container { padding: 0.9rem 0; }

@media (max-width: 820px) {
  .site-header .container {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 0.75rem;
  }

  .brand-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
  }

  .logo {
    height: 58px;
  }

  .brand-text {
    align-items: center;
    gap: 0.35rem;
  }

  .brand-tagline,
  .brand-secondary {
    letter-spacing: 0.08em;
    line-height: 1.35;
  }

  .brand-tagline { font-size: 0.88rem; }
  .brand-secondary { font-size: 0.82rem; }

  .top-nav {
    width: 100%;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.65rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 30px -22px rgba(8, 23, 35, 0.8);
    backdrop-filter: blur(8px);
  }

  .top-nav a {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
    padding: 0.65rem 0.9rem;
  }

  .top-nav a:focus-visible {
    outline: 2px solid rgba(11, 58, 91, 0.35);
    outline-offset: 3px;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
  }

  .hero-secondary {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { order: -1; }
  .hero-photo img { max-width: 220px; }

  .contact-form {
    max-width: 100%;
    margin-top: 0.75rem;
  }

  .thanks-block {
    margin: 2.5rem auto;
    padding: 2rem 1.6rem;
  }

  .contact-submit {
    width: 100%;
    justify-self: stretch;
    text-align: center;
  }

  .contact {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.2rem;
  }

  .contact .linkedin-button {
    align-self: center;
  }
}
