/* =========================
   ROOT SAFETY (prevents sticky chaos)
   ========================= */
   :root{
    --topbarH: 0px;     /* if your global styles.css doesn't define it */
    --routeH: 26px;
  }
  
  /* =========================
     NAVBAR (KEEP ONE VERSION ONLY)
     ========================= */
  .navwrap{
    position: sticky;
    top: 0;
    z-index: 2000;
    background: rgba(8, 24, 44, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow: visible; /* ✅ dropdown won’t get clipped */
  }
  
  .navinner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 18px;
    display:flex;
    align-items:center;
    gap: 16px;
    position: relative;
    z-index: 2;
  }
  
  .brand{
    display:flex;
    align-items:center;
    text-decoration:none;
    flex: 0 0 auto;
  }
  .brand__logo{
    height: 69px;
    width:auto;
    display:block;
  }
  
  .nav{
    margin-left: auto;
    display:flex;
    align-items:center;
  }
  
  .menu{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    align-items:center;
    gap: 14px;
  }
  
  .link{
    color: var(--text);
    font-size: 14px;
    text-decoration:none;
    padding: 10px 10px;
    border-radius: 12px;
    display:inline-flex;
    align-items:center;
    gap: 6px;
    background: transparent;
    border:none;
    cursor:pointer;
    white-space: nowrap;
    line-height: 1;
    -webkit-tap-highlight-color: transparent;
  }
  .link:hover{ background: rgba(255,255,255,.06); }
  
  .link.is-active{
    background: rgba(214,168,42,.12);
    box-shadow: inset 0 0 0 1px rgba(214,168,42,.22);
  }
  
  .caret{ color: var(--muted); font-size: 12px; }
  
  /* Dropdown */
  .dd{ position:relative; }
  .dd__btn{
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    line-height: 1;
  }
  
  .dd__menu{
    position:absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    padding: 8px;
    background: rgba(16,28,52,.98);
    border: 1px solid var(--stroke);
    border-radius: 14px;
    box-shadow: var(--shadow);
    display:none;
    z-index: 9999;
  }
  
  .dd__menu a{
    display:block;
    padding: 10px 10px;
    border-radius: 12px;
    color: var(--text);
    text-decoration:none;
    font-size: 13px;
  }
  .dd__menu a:hover{ background: rgba(255,255,255,.06); }
  
  /* desktop hover open */
  @media (hover:hover){
    .dd:hover .dd__menu{ display:block; }
  }
  /* keyboard open */
  .dd:focus-within .dd__menu{ display:block; }
  
  /* Burger */
  .burger{
    display:none;
    width: 44px; height: 44px;
    border-radius: 12px;
    border: 1px solid var(--stroke);
    background: rgba(255,255,255,.03);
    cursor:pointer;
    margin-left: auto;
    flex: 0 0 auto;
  }
  .burger span{
    display:block;
    width: 18px;
    height: 2px;
    background: var(--text);
    margin: 6px auto;
    border-radius: 999px;
  }
  
  /* Mobile: nav becomes dropdown panel */
  @media (max-width: 980px){
    .burger{ display:block; }
  
    .nav{
      display:none;
      width: 100%;
      order: 3;
    }
    .nav.is-open{ display:block; }
  
    .navinner{ flex-wrap: wrap; }
  
    .menu{
      flex-direction: column;
      align-items: stretch;
      gap: 8px;
      padding: 12px;
      margin-top: 10px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(16,28,52,.90);
      border-radius: 16px;
    }
  
    .link{
      width: 100%;
      justify-content: space-between;
    }
  
    /* Mobile dropdown becomes inline */
    .dd__menu{
      position: static;
      display: none;
      min-width: 100%;
      margin-top: 6px;
      border-radius: 14px;
    }
    .dd.is-open .dd__menu{ display:block; }
  }
  
  /* =========================
     ROUTE STRIP
     ========================= */
  .route{
    position: relative;
    width: 100%;
    height: var(--routeH);
    overflow: visible;
    background: transparent;
    z-index: 2;
  }
  
  .route__line{
    position: absolute;
    top: 46%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
    background: repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.85) 0 10px,
      rgba(255,255,255,0) 10px 18px
    );
    animation: runwayGlow 2.8s ease-in-out infinite;
  }
  
  @keyframes runwayGlow{
    0%,100%{
      opacity:.75;
      box-shadow:
        0 0 6px rgba(255,255,255,.35),
        0 0 12px rgba(255,255,255,.2);
    }
    50%{
      opacity:1;
      box-shadow:
        0 0 8px rgba(255,255,255,.5),
        0 0 16px rgba(255,255,255,.3);
    }
  }
  
  .route__plane{
    --x: 18px;
    --rot: 90deg;
    position: absolute;
    top: 46%;
    left: 0;
    transform: translateX(var(--x)) translateY(-50%) rotate(var(--rot));
    transform-origin: center;
    transition: transform .45s cubic-bezier(.2,.9,.2,1);
    will-change: transform;
  }
  .route__plane img{
    height: 30px;
    width: auto;
    display: block;
    filter:
      drop-shadow(0 0 4px rgba(240,197,90,.6))
      drop-shadow(0 0 8px rgba(240,197,90,.35));
  }
  
  /* =========================
     PAGE BASE (IMPORTANT FIX)
     ========================= */
  /* ✅ THIS was your blue layer */
  .pilotPage{
    background: transparent !important;
    color: var(--text);
  }
  
  /* optional: remove weird scrolling gaps */
  html, body{
    height: 100%;
  }
  body{
    margin: 0;
  }
  
  /* =========================
     FULLSCREEN VIDEO HERO (TOP TO BOTTOM)
     ========================= */
  .pilotHero{
    position: relative;
    height: 100vh;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 0;
  }
  
  /* ✅ put video BEHIND EVERYTHING */
  .pilotHero__video{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
  }
  
  /* ✅ overlay for readability (not blue) */
  .pilotHero__overlay{
    position: fixed;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.55),
      rgba(0,0,0,.80)
    );
    z-index: -2;
  }
  
  /* hero content */
  .pilotHero__inner{
    position: relative;
    z-index: 5;
    max-width: 1100px;
    padding: 0 18px;
    text-align: center;
    color: #fff;
  }
  
  .pilotHero__eyebrow{
    margin: 0 0 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: 12px;
    color: rgba(240,197,90,.92);
  }
  
  .pilotHero__title{
    margin: 0 0 10px;
    font-size: clamp(34px, 4.2vw, 62px);
    line-height: 1.05;
  }
  
  .pilotHero__sub{
    margin: 0 auto 18px;
    max-width: 62ch;
    color: rgba(255,255,255,.82);
    line-height: 1.7;
  }
  
  /* Progress card */
  .pilotHero__progress{
    max-width: 720px;
    margin: 18px auto 0;
    padding: 14px 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(8,24,44,.40);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  
  .progressMeta{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: rgba(233,238,252,.78);
    margin-bottom: 10px;
  }
  
  .resetBtn{
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: rgba(233,238,252,.92);
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
  }
  .resetBtn:hover{ border-color: rgba(240,197,90,.26); }
  
  .progressBar{
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
  }
  .progressFill{
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold2), var(--gold));
    transition: width .25s ease;
  }
  
  /* =========================
     STEPS SECTION (glass over video)
     ========================= */
  .pilotSteps{
    position: relative;
    padding: 34px 0 70px;
    background: transparent; /* ✅ keep video visible */
  }
  
  .pilotSteps__inner{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px;
  }
  
  .stepsHeader{
    text-align: center;
    margin-bottom: 18px;
  }
  
  .stepsTitle{
    margin: 0 0 8px;
    font-size: clamp(20px, 2.4vw, 30px);
    color: rgba(255,255,255,.95);
  }
  
  .stepsSub{
    margin: 0;
    color: rgba(233,238,252,.72);
  }
  
  /* Grid */
  .stepsGrid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 16px;
  }
  
  /* Card */
  .stepCard{
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(8,24,44,.38);
    box-shadow: 0 18px 44px rgba(0,0,0,.26);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .stepCard:hover{
    transform: translateY(-4px);
    border-color: rgba(240,197,90,.18);
    box-shadow: 0 26px 64px rgba(0,0,0,.34);
  }
  
  .stepCard:has(.stepDetails[open]){
    border-color: rgba(120,200,255,.20);
    background: rgba(8,24,44,.48);
  }
  
  /* Details */
  .stepDetails{ padding: 0; }
  
  .stepSummary{
    list-style: none;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 16px 16px;
    cursor: pointer;
  }
  .stepSummary::-webkit-details-marker{ display:none; }
  
  .stepBadge{
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #071a2e;
    background: linear-gradient(180deg, var(--gold2), var(--gold));
  }
  
  .stepName{
    font-weight: 800;
    color: rgba(233,238,252,.94);
  }
  
  .stepCheck{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(233,238,252,.74);
    user-select: none;
  }
  .stepBox{
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
  }
  
  /* Body */
  .stepBody{
    padding: 0 16px 16px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .stepText{
    margin: 12px 0 12px;
    color: rgba(233,238,252,.74);
    line-height: 1.7;
  }
  
  /* Mini buttons */
  .stepActions{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .miniBtn{
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(8,24,44,.60);
    color: rgba(233,238,252,.92);
    padding: 10px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    font-size: 13px;
  }
  .miniBtn:hover{
    border-color: rgba(240,197,90,.22);
    background: rgba(8,24,44,.76);
  }
  
  /* Completed */
  .stepCard.isDone .stepBadge{
    background: linear-gradient(180deg, rgba(120,255,200,.35), rgba(120,255,200,.18));
    color: rgba(233,238,252,.95);
  }
  .stepCard.isDone .stepName{
    text-decoration: line-through;
    opacity: .85;
  }
  
  /* Responsive grid */
  @media (min-width: 900px){
    .stepsGrid{ grid-template-columns: 1fr 1fr; }
  }
  
  /* =========================
     CTA (glass over video)
     ========================= */
  .pilotCta{
    padding: 46px 0 78px;
    background: transparent;
  }
  
  .pilotCta__inner{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px;
    text-align: center;
  }
  
  .pilotCta__title{
    margin: 0 0 8px;
    font-size: clamp(20px, 2.6vw, 34px);
    color: rgba(255,255,255,.95);
  }
  .pilotCta__sub{
    margin: 0 0 16px;
    color: rgba(233,238,252,.72);
  }
  
  .pilotCta__actions{
    display:flex;
    justify-content:center;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .ctaBtn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 12px 16px;
    border-radius: 999px;
    text-decoration:none;
    font-weight: 900;
    color:#071a2e;
    background: linear-gradient(180deg, var(--gold2), var(--gold));
    box-shadow: 0 14px 30px rgba(214,168,42,.20);
  }
  
  .ctaBtn--ghost{
    background: rgba(255,255,255,.06);
    color: rgba(233,238,252,.92);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: none;
  }
  .ctaBtn--ghost:hover{ border-color: rgba(240,197,90,.22); }
  
  /* =========================
     FOOTER (keep your exact GetWings-style footer)
     ========================= */
  .gwFooter{
    position: relative;
    overflow: hidden;
    color: rgba(233,238,252,.85);
    background:
      radial-gradient(1200px 520px at 60% 20%, rgba(240,197,90,.10), transparent 60%),
      linear-gradient(180deg, rgba(6,18,32,.92) 0%, rgba(6,18,32,1) 100%);
  }
  
  .gwFooter__plane{
    position: absolute;
    top: -90px;
    left: -60px;
    width: min(980px, 78vw);
    height: auto;
    z-index: 1;
    opacity: .95;
    filter:
      drop-shadow(0 30px 60px rgba(0,0,0,.55))
      drop-shadow(0 0 22px rgba(255,255,255,.10));
    transform: translate3d(0,0,0);
    will-change: transform;
    pointer-events: none;
  }
  
  .gwFooter__inner{
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 180px 18px 48px;
    display: grid;
    grid-template-columns: 1.1fr 1.4fr 1.1fr;
    gap: 48px;
  }
  
  .gwFooter__logo{
    height: 66px;
    width: auto;
    display: block;
    margin-bottom: 14px;
  }
  
  .gwFooter__desc{
    margin: 0 0 18px;
    color: rgba(233,238,252,.70);
    line-height: 1.6;
    max-width: 34ch;
  }
  
  .gwFooter__socials{ display: flex; gap: 10px; }
  
  .gwSocial{
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    text-decoration: none;
    background: rgba(240,197,90,.10);
    border: 1px solid rgba(240,197,90,.25);
    color: rgba(240,197,90,.95);
    font-weight: 800;
  }
  .gwSocial:hover{
    background: rgba(240,197,90,.18);
    border-color: rgba(240,197,90,.35);
  }
  
  .gwFooter__cols{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  
  .gwCol h4{
    margin: 0 0 14px;
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(240,197,90,.95);
  }
  
  .gwCol a{
    display: block;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 13px;
    color: rgba(233,238,252,.72);
  }
  .gwCol a:hover{ color: #fff; }
  
  .gwHours{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: rgba(255,255,255,.92);
    color: rgba(8,24,44,.95);
    border-radius: 12px;
    padding: 14px 14px;
    box-shadow: 0 18px 44px rgba(0,0,0,.35);
    margin-bottom: 16px;
  }
  
  .gwHours__divider{
    width: 1px;
    height: 44px;
    background: rgba(8,24,44,.18);
    margin: 0 12px;
  }
  .gwHours__label{
    margin: 0 0 6px;
    font-size: 12px;
    color: rgba(8,24,44,.75);
  }
  .gwHours__time{
    margin: 0;
    font-weight: 800;
    font-size: 12px;
  }
  
  .gwContact{
    display: grid;
    gap: 14px;
    margin-top: 6px;
  }
  
  .gwRow{
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: start;
    gap: 10px;
  }
  
  .gwRow p{
    margin: 0;
    color: rgba(233,238,252,.72);
    line-height: 1.5;
    font-size: 13px;
  }
  
  .gwDot{
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(240,197,90,.92);
    color: rgba(8,24,44,.95);
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(240,197,90,.18);
  }
  
  .gwFooter__bottom{
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 16px 18px;
  }
  .gwFooter__bottomInner{
    max-width: 1200px;
    margin: 0 auto;
    display:flex;
    align-items:center;
    justify-content: space-between;
    color: rgba(233,238,252,.55);
    font-size: 12px;
  }
  .gwFooter__policy{
    color: rgba(233,238,252,.65);
    text-decoration: none;
  }
  .gwFooter__policy:hover{ color: #fff; }
  
  @media (max-width: 980px){
    .gwFooter__inner{
      grid-template-columns: 1fr;
      padding-top: 160px;
      gap: 32px;
    }
    .gwFooter__cols{ grid-template-columns: 1fr 1fr; }
    .gwFooter__plane{
      top: -70px;
      left: -40px;
      width: min(860px, 96vw);
      opacity: .90;
    }
  }
  @media (max-width: 640px){
    .gwFooter__cols{ grid-template-columns: 1fr; }
    .gwFooter__bottomInner{
      flex-direction: column;
      gap: 10px;
    }
    .gwHours{
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .gwHours__divider{ display: none; }
  }
  