    [data-lucide] { display: inline-block; vertical-align: middle; stroke-width: 1.8; flex-shrink: 0; }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    /* === Soft Structuralism design tokens === */
    :root {
      --accent: #2563EB;
      --accent-soft: #E0EAFE;
      --ink: #1F1F1F;
      --ink-2: #4B5563;
      --ink-3: #6B7280;
      --canvas: #FFFFFF;
      --canvas-2: #F4F5F6;
      --hairline: #E5E7EB;
      --hairline-2: #EAEAEA;
      --shadow-soft: 0 30px 60px -30px rgba(15, 23, 42, 0.12);
      --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px -12px rgba(15, 23, 42, 0.08);
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
      --container: 1280px;
      --font-display: 'Cabinet Grotesk', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      --font-body: 'Geist', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
      --font-mono: 'Geist Mono', 'SF Mono', 'JetBrains Mono', ui-monospace, monospace;
    }
    html, body { height: auto; }
    /* Lenis sets these — keep CSS minimal */
    html.lenis, html.lenis body { height: auto; }
    .lenis.lenis-smooth { scroll-behavior: auto !important; }
    .lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
    .lenis.lenis-stopped { overflow: hidden; }
    .lenis.lenis-scrolling iframe { pointer-events: none; }
    body { font-family: var(--font-body); color: var(--ink); background: var(--canvas); line-height: 1; overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

    /* ── NAV (always island on desktop) ── */
    nav {
      position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
      z-index: 100;
      background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(0,0,0,0.08);
      height: 60px; padding: 0 24px;
      width: auto; min-width: 340px;
      border-radius: 100px;
      display: flex; align-items: center; justify-content: space-between;
      box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.05);
    }
    .nav-inner {
      position: relative; z-index: 1;
      display: flex; align-items: center; justify-content: space-between;
      width: 100%; gap: 28px;
    }
    .logo { font-size: 1.1rem; font-weight: 700; color: #111827; text-decoration: none; letter-spacing: -0.5px; }
    .logo em { color: #2563EB; font-style: normal; }
    .nav-links { display: flex; align-items: center; gap: 32px; }
    .nav-links a { text-decoration: none; color: #6b7280; font-size: 0.9rem; font-weight: 500; transition: color .15s; }
    .nav-links a:hover { color: #111827; }
    .nav-right { display: flex; align-items: center; gap: 20px; }
    .nav-signin {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 7px 8px 7px 16px; border-radius: 100px;
      background: #111; color: #fff;
      font-size: 0.85rem; font-weight: 600;
      text-decoration: none; letter-spacing: -0.1px;
      transition: transform .2s cubic-bezier(.34,1.56,.64,1), background .15s, box-shadow .2s;
      flex-shrink: 0; position: relative; overflow: visible;
    }
    .nav-signin:hover { background: #000; box-shadow: 0 6px 20px rgba(0,0,0,0.22); }
    .nav-signin-arrow {
      width: 26px; height: 26px; border-radius: 50%;
      background: #fff; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: transform .2s cubic-bezier(.34,1.56,.64,1);
    }
    .nav-signin:hover .nav-signin-arrow { transform: rotate(-45deg); }
    .nav-burger {
      display: none; background: none; border: none; cursor: pointer;
      color: #374151; padding: 0; line-height: 0;
      width: 36px; height: 36px; align-items: center; justify-content: center;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr auto;
      background: var(--canvas);
    }

    /* ── Left text panel — silver-grey, structural ── */
    .hero-text {
      background: var(--canvas-2);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 120px 9% 80px 9%;
      border-right: 1px solid var(--hairline);
    }
    /* Giant ghost €600 — barely-there structural element */
    .hero-bg-amount {
      position: absolute;
      font-family: var(--font-display);
      font-size: clamp(14rem, 28vw, 32rem);
      font-weight: 800;
      letter-spacing: -0.06em;
      line-height: 0.82;
      color: rgba(31, 31, 31, 0.035);
      bottom: -4%;
      right: -8%;
      pointer-events: none;
      user-select: none;
      animation: heroAmountDrift 18s ease-in-out infinite alternate;
    }
    @keyframes heroAmountDrift {
      from { transform: translate(0, 0); }
      to   { transform: translate(2%, -3%); }
    }
    /* Subtle dot pattern — Soft Structuralism texture */
    .hero-text::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(31,31,31,0.04) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
      opacity: 0.7;
    }
    .hero-content { position: relative; z-index: 1; }
    .tp-badge {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--canvas);
      border: 1px solid var(--hairline);
      color: var(--ink-2);
      padding: 7px 14px; border-radius: 99px;
      font-family: var(--font-mono);
      font-size: 0.72rem; font-weight: 500; margin-bottom: 36px;
      letter-spacing: 0.04em;
    }
    .tp-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: #10b981;
      box-shadow: 0 0 6px rgba(16,185,129,0.7);
      flex-shrink: 0;
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.6; transform: scale(0.85); }
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.9rem, 5vw, 5.4rem);
      font-weight: 800; color: var(--ink);
      line-height: 1.0; letter-spacing: -0.035em;
      margin-bottom: 28px;
    }
    .hero-amount-line {
      display: block;
      margin-top: 8px;
    }
    .hero h1 em {
      color: var(--accent);
      font-style: normal;
    }
    .hero-cursor {
      display: inline-block;
      color: var(--accent);
      font-style: normal;
      font-weight: 300;
      font-size: 0.6em;
      vertical-align: middle;
      margin-left: 3px;
      margin-bottom: 11px;
      animation: heroCursorBlink 0.7s step-end infinite;
    }
    @keyframes heroCursorBlink {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0; }
    }
    @media (max-width: 768px) {
      .hero-cursor { display: none; }
    }
    .hero-sub {
      font-size: 1.05rem; color: var(--ink-2);
      line-height: 1.7; margin-bottom: 36px; font-weight: 400;
      max-width: 42ch;
    }
    .hero-meta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 44px; }
    .hero-meta-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.9rem; color: var(--ink-2); font-weight: 400;
    }
    /* Bottom stat strip */
    .hero-stat-row {
      display: flex; align-items: center; gap: 0;
      padding-top: 28px;
      border-top: 1px solid var(--hairline);
    }
    .hero-stat { flex: 1; display: flex; flex-direction: column; gap: 6px; }
    .hero-stat-num {
      font-family: var(--font-mono);
      font-size: 1.3rem; font-weight: 500;
      letter-spacing: -0.03em; color: var(--ink);
    }
    .hero-stat-lbl {
      font-family: var(--font-mono);
      font-size: 0.66rem; color: var(--ink-3);
      line-height: 1.4; font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .hero-stat-div {
      width: 1px; height: 36px;
      background: var(--hairline);
      margin: 0 20px; flex-shrink: 0;
    }

    /* ── Right wizard panel — pure white, floating cards ── */
    .hero-wizard {
      background: var(--canvas);
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: center;
      padding: 120px 7% 48px;
      gap: 20px;
      position: relative;
    }
    .hero-wizard-label {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--font-mono);
      font-size: 0.7rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--ink-3);
    }
    .hero-wizard-label::before {
      content: ''; display: block; width: 24px; height: 1px; background: var(--ink-3);
    }
    /* Flight status mockup card */
    .hero-flight-card {
      background: #fff;
      border: 1px solid var(--hairline);
      border-radius: 14px;
      padding: 20px 24px;
      box-shadow: 0 2px 4px rgba(15, 23, 42, 0.03), 0 12px 32px -16px rgba(15, 23, 42, 0.10);
    }
    .hfc-top {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 20px;
    }
    .hfc-airline {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.8rem; font-weight: 600; color: #6B7280;
    }
    .hfc-airline-dot {
      width: 7px; height: 7px; border-radius: 50%; background: #9CA3AF; flex-shrink: 0;
    }
    .hfc-status {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.02em;
      background: #FEF2F2; color: #B91C1C;
      padding: 4px 10px; border-radius: 99px;
    }
    .hfc-route {
      display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
    }
    .hfc-airport { flex: 1; }
    .hfc-airport--right { text-align: right; }
    .hfc-iata {
      font-family: var(--font-display);
      font-size: 1.9rem; font-weight: 800; letter-spacing: -0.03em;
      color: var(--ink); line-height: 1;
    }
    .hfc-city { font-size: 0.72rem; color: var(--ink-3); margin-top: 3px; font-weight: 500; }
    .hfc-time { font-family: var(--font-mono); font-size: 0.82rem; font-weight: 500; color: var(--ink-2); margin-top: 6px; }
    .hfc-time--late { color: #DC2626; }
    .hfc-line {
      flex: 1; display: flex; align-items: center; gap: 8px;
      padding: 0 8px;
    }
    .hfc-line-dots {
      flex: 1;
      height: 4px;
      background-image: radial-gradient(circle, #9CA3AF 1.6px, transparent 1.8px);
      background-size: 10px 4px;
      background-repeat: repeat-x;
      background-position: center;
    }
    .hfc-line [data-lucide="plane"] {
      transform: rotate(45deg);
      flex-shrink: 0;
    }
    .hfc-bottom {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 16px; border-top: 1px solid #F3F4F6;
    }
    .hfc-comp-label { font-family: var(--font-mono); font-size: 0.66rem; font-weight: 500; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
    .hfc-comp-amount { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; letter-spacing: -0.03em; color: #16A34A; }
    .hfc-reg {
      font-family: var(--font-mono);
      font-size: 0.68rem; font-weight: 500;
      letter-spacing: 0.06em;
      color: var(--accent);
      background: var(--accent-soft);
      padding: 4px 10px; border-radius: 999px;
    }

    /* Ghost step numbers — desktop only hidden */
    .why-step-ghost { display: none; }

    /* Trust strip below wizard */
    .hero-trust {
      display: flex; align-items: center; gap: 12px;
      padding: 16px 0 0;
      border-top: 1px solid var(--hairline);
    }
    .hero-trust-stars { color: #F59E0B; font-size: 0.85rem; letter-spacing: 1px; }
    .hero-trust-text  { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-3); font-weight: 400; letter-spacing: 0.04em; }

    /* ── Hero marquee (full-span bottom row) ── */
    .hero-marquee {
      grid-column: 1 / -1;
      background: var(--canvas);
      overflow: hidden;
      padding: 22px 0;
      border-top: 1px solid var(--hairline);
      border-bottom: 1px solid var(--hairline);
    }

    /* ── WIZARD ── */
    .wizard-card {
      background: #fff;
      border-radius: 20px;
      width: 100%;
      border: 1px solid var(--hairline);
      box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04), 0 30px 60px -25px rgba(15, 23, 42, 0.18);
      overflow: hidden;
    }
    .wizard-progress-bar {
      display: flex; align-items: center; padding: 14px 28px;
      background: #fafafa; border-bottom: 1px solid #f0f0f0;
    }
    .wp-step { display: flex; align-items: center; gap: 7px; }
    .wp-num {
      width: 26px; height: 26px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.72rem; font-weight: 800;
      border: 2px solid #e5e7eb; color: #9ca3af; background: #fff; transition: all .3s;
    }
    .wp-lbl { font-size: 0.73rem; color: #9ca3af; font-weight: 600; white-space: nowrap; transition: color .3s; }
    .wp-line { flex: 1; height: 2px; background: #e5e7eb; margin: 0 10px; transition: background .3s; }
    .wp-step.active .wp-num { background: #2563EB; border-color: #2563EB; color: #fff; }
    .wp-step.active .wp-lbl { color: #2563EB; }
    .wp-step.done   .wp-num { background: #ecfdf5; border-color: #10b981; color: #059669; }
    .wp-step.done   .wp-lbl { color: #059669; }
    .wp-line.done           { background: #10b981; }
    .wizard-body { padding: 32px 36px 28px; }
    .wiz-step { display: none; }
    .wiz-step.active { display: block; }

    .s1-layout { display: flex; gap: 16px; align-items: flex-start; }
    .s1-main { flex: 1; }
    .wiz-label { font-size: 0.8rem; font-weight: 700; color: #374151; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .4px; }
    .wiz-textarea {
      width: 100%; padding: 14px 16px; border: 2px solid #e5e7eb; border-radius: 12px;
      font-size: 0.95rem; font-family: inherit; color: #111827;
      resize: none; min-height: 110px; outline: none; transition: border-color .2s; line-height: 1.55;
    }
    .wiz-textarea:focus { border-color: #2563EB; }
    .wiz-textarea::placeholder { color: #9ca3af; }
    .s1-side { display: flex; flex-direction: column; gap: 0; padding-top: 28px; }
    .btn-check {
      padding: 14px 22px; background: #2563EB; color: #fff; text-align: center;
      border: none; border-radius: 10px; font-size: 1rem; font-weight: 800;
      cursor: pointer; white-space: nowrap; transition: background .15s;
      box-shadow: 0 4px 14px rgba(37,99,235,0.35);
    }
    .btn-check:hover { background: #1D4ED8; }
    .s1-hint { font-size: 0.75rem; color: #9ca3af; margin-top: 8px; text-align: center; line-height: 1.5; }

    .s2-layout { display: flex; gap: 24px; align-items: stretch; }
    .s2-left { width: 240px; flex-shrink: 0; display: flex; flex-direction: column; }
    .s2-right { flex: 1; display: flex; flex-direction: column; }
    .incident-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .inc-btn {
      padding: 11px 8px; border: 2px solid #e5e7eb; border-radius: 10px;
      background: #fff; cursor: pointer; font-size: 0.75rem; font-weight: 700; color: #374151;
      text-align: center; transition: all .15s; display: flex; flex-direction: column; align-items: center; gap: 6px;
    }
    .inc-btn:hover { border-color: #93C5FD; background: #EFF6FF; }
    .inc-btn.selected { border-color: #2563EB; background: #E0EAFE; color: #2563EB; }
    .wiz-textarea-sm {
      width: 100%; padding: 11px 13px; border: 2px solid #e5e7eb; border-radius: 10px;
      font-size: 0.88rem; font-family: inherit; color: #111827;
      resize: none; flex: 1; min-height: 0; outline: none; transition: border-color .2s; line-height: 1.5;
    }
    .wiz-textarea-sm:focus { border-color: #2563EB; }
    .form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; margin-top: 10px; }
    .form-row { margin-bottom: 0; }
    .form-row label { display: block; font-size: 0.74rem; font-weight: 700; color: #6b7280; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .3px; }
    .form-row input { width: 100%; padding: 9px 12px; border: 2px solid #e5e7eb; border-radius: 8px; font-size: 0.9rem; outline: none; color: #111827; transition: border-color .2s; }
    .form-row input:focus { border-color: #2563EB; }

    /* ── ROUTE WIDGET (AirHelp style) ── */
    .wiz-route-row {
      border-top: 1px solid #f0f0f0;
      margin-top: 16px; padding-top: 16px;
    }
    .wiz-route { display: flex; align-items: flex-start; gap: 10px; }
    .wiz-airport-field { flex: 1; min-width: 0; }
    .wiz-airport-label {
      font-size: 0.68rem; font-weight: 800; color: #9ca3af;
      text-transform: uppercase; letter-spacing: .6px; margin-bottom: 6px;
    }
    .wiz-airport-wrap {
      position: relative;
      border: 2px solid #e5e7eb; border-radius: 12px;
      background: #fff; transition: border-color .2s, box-shadow .2s;
      display: flex; align-items: center;
      min-height: 56px;            /* was implicit ~40px — now full clickable area */
      padding-left: 6px;
    }
    .wiz-airport-wrap:focus-within { border-color: #2563EB; box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
    .wiz-airport-wrap.has-value { border-color: #93C5FD; background: #fafafe; }
    .wiz-airport-icon {
      flex-shrink: 0; width: 36px; display: flex; align-items: center; justify-content: center;
      color: #9ca3af; pointer-events: none;
    }
    .wiz-airport-wrap.has-value .wiz-airport-icon { color: #2563EB; }
    .wiz-airport-input {
      flex: 1; padding: 14px 10px 14px 4px; border: none; outline: none; background: transparent;
      font-size: 1rem; font-weight: 600; color: #111827; font-family: inherit;
      text-transform: uppercase; min-width: 0;
    }
    .wiz-airport-input::placeholder { color: #9ca3af; font-weight: 400; text-transform: none; }
    .wiz-airport-clear {
      flex-shrink: 0; width: 24px; height: 24px; margin-right: 4px;
      border: none; background: none; cursor: pointer;
      color: #9ca3af; font-size: 1rem; line-height: 1;
      display: none; align-items: center; justify-content: center;
      border-radius: 50%; transition: background .15s, color .15s;
    }
    .wiz-airport-clear:hover { background: #f3f4f6; color: #374151; }
    .wiz-airport-wrap.has-value .wiz-airport-clear { display: flex; }
    .wiz-airport-city {
      font-size: 0.74rem; color: #6b7280; font-weight: 500;
      margin-top: 4px; min-height: 16px; padding-left: 2px;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }

    .wiz-route-sep {
      flex-shrink: 0;
      /* label ~13px + 6px margin-bottom ≈ 19px → align vertically with input centre */
      margin-top: 22px;
      width: 32px; height: 56px;
      display: flex; align-items: center; justify-content: center;
      color: #9ca3af;
    }

    /* ── FIELD VALIDATION ── */
    .field-err {
      font-size: 0.72rem; color: #dc2626; margin-top: 4px;
      line-height: 1.4; display: none;
    }

    /* ── IATA AUTOCOMPLETE DROPDOWN (landing variant) ── */
    .iata-dropdown {
      background: #fff;
      border: 1.5px solid #e5e7eb;
      border-radius: 12px;
      box-shadow: 0 12px 32px rgba(0,0,0,.16);
      overflow: hidden;
      max-height: 320px;
      overflow-y: auto;
    }
    .iata-dropdown-item {
      display: flex; align-items: center; gap: 10px;
      padding: 10px 14px; cursor: pointer;
      border-bottom: 1px solid #f3f4f6;
      font-size: 0.86rem; transition: background .1s;
    }
    .iata-dropdown-item:last-child { border-bottom: none; }
    .iata-dropdown-item:hover, .iata-dropdown-item.active { background: #EFF6FF; }
    .iata-code { font-weight: 800; font-size: 0.9rem; color: #2563EB; min-width: 38px; letter-spacing: .5px; }
    .iata-label { flex: 1; color: #111827; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .iata-country { font-size: 0.75rem; color: #9ca3af; white-space: nowrap; }

    .s3-layout { display: flex; gap: 24px; align-items: stretch; }
    .s3-result { flex: 1; }
    .result-box { border-radius: 14px; padding: 24px 26px; height: 100%; }
    .result-eligible { background: linear-gradient(135deg, #f0fdf4, #dcfce7); border: 1.5px solid #86efac; }
    .result-unclear  { background: linear-gradient(135deg, #fffbeb, #fef9c3); border: 1.5px solid #fcd34d; }
    .result-tag { display: inline-block; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; padding: 3px 10px; border-radius: 99px; margin-bottom: 10px; }
    .result-eligible .result-tag { background: #dcfce7; color: #15803d; }
    .result-unclear  .result-tag { background: #fef9c3; color: #a16207; }
    .result-amount { font-size: 3rem; font-weight: 900; color: #15803d; line-height: 1; letter-spacing: -2px; }
    .result-unclear .result-amount { color: #d97706; font-size: 2rem; letter-spacing: -1px; }
    .result-desc { font-size: 0.88rem; color: #374151; margin-top: 10px; line-height: 1.65; }
    .s3-cta { width: 210px; flex-shrink: 0; display: flex; flex-direction: column; }
    .cta-box {
      background: #EFF6FF; border: 1.5px solid #DBEAFE; border-radius: 14px; padding: 20px;
      flex: 1; display: flex; flex-direction: column; justify-content: space-between;
    }
    .cta-box p { font-size: 0.85rem; color: #374151; line-height: 1.65; margin-bottom: 14px; }
    .btn-cta { width: 100%; padding: 12px; background: #2563EB; color: #fff; border: none; border-radius: 10px; font-size: 0.92rem; font-weight: 800; cursor: pointer; transition: background .15s; box-shadow: 0 4px 12px rgba(37,99,235,0.3); }
    .btn-cta:hover { background: #1D4ED8; }
    .cta-note { font-size: 0.73rem; color: #9ca3af; text-align: center; margin-top: 10px; line-height: 1.5; }

    .s4-layout { display: flex; gap: 28px; }
    .s4-form { flex: 1; }
    .s4-perks { width: 220px; flex-shrink: 0; }
    .auth-tabs { display: flex; gap: 4px; background: #f3f4f6; border-radius: 10px; padding: 4px; margin-bottom: 18px; }
    .auth-tab { flex: 1; text-align: center; padding: 8px; border-radius: 8px; cursor: pointer; font-size: 0.85rem; font-weight: 600; border: none; background: transparent; color: #6b7280; transition: all .2s; }
    .auth-tab.active { background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.1); color: #111827; }
    .wiz-alert { padding: 9px 13px; border-radius: 8px; font-size: 0.85rem; margin-bottom: 12px; display: none; background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }
    .perks-box { background: #f8fafc; border: 1px solid #e5e7eb; border-radius: 14px; padding: 20px; }
    .perks-box h4 { font-size: 0.88rem; font-weight: 800; margin-bottom: 14px; color: #111827; }
    .perk { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 12px; font-size: 0.83rem; color: #4b5563; line-height: 1.55; }
    .perk svg { flex-shrink: 0; margin-top: 2px; }
    .wiz-footer { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 20px; padding-top: 18px; border-top: 1px solid #f3f4f6; }
    .wiz-hint { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: #9ca3af; line-height: 1.4; }

    /* ── OCR quick-fill (AirHelp-style boarding pass upload) ── */
    .wiz-ocr {
      display: flex; align-items: center; justify-content: center; gap: 14px;
      margin-top: 18px;
      padding: 14px 18px;
      border: 1px dashed #d1d5db;
      border-radius: 12px;
      background: #fafafa;
      font-size: 0.85rem;
      flex-wrap: wrap;
    }
    .wiz-ocr-or {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #9ca3af;
      flex-shrink: 0;
    }
    .wiz-ocr-btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 10px 18px;
      border: 1px solid #d1d5db;
      border-radius: 10px;
      background: #fff;
      cursor: pointer;
      transition: border-color .15s, background .15s, transform .15s var(--ease), box-shadow .15s;
      font-weight: 600; color: #111827;
      box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    }
    .wiz-ocr-btn:hover { border-color: var(--accent); background: var(--accent-soft); color: var(--accent); box-shadow: 0 2px 6px rgba(37, 99, 235, 0.12); }
    .wiz-ocr-btn:active { transform: scale(0.98); }
    .wiz-ocr-btn-content { display: inline-flex; align-items: center; gap: 8px; }
    .wiz-ocr-btn.loading { pointer-events: none; opacity: 0.7; }
    .wiz-ocr-status {
      font-size: 0.78rem;
      color: var(--ink-3);
      line-height: 1.4;
      flex-basis: 100%;
      text-align: center;
      min-height: 1.2em;
    }
    .wiz-ocr-status:empty { display: none; }
    .wiz-ocr-status.success { color: #16a34a; font-weight: 500; }
    .wiz-ocr-status.error { color: #dc2626; }
    .wiz-hint strong { color: #6b7280; font-weight: 600; }
    .btn-back { background: none; border: none; cursor: pointer; font-size: 0.87rem; color: #9ca3af; font-weight: 500; padding: 0; display: inline-flex; align-items: center; gap: 6px; }
    .btn-back:hover { color: #6b7280; }
    .btn-back:hover { color: #374151; }
    .btn-next { padding: 14px 30px; background: #2563EB; color: #fff; border: none; border-radius: 10px; font-size: 0.95rem; font-weight: 800; cursor: pointer; transition: background .15s, transform .15s cubic-bezier(0.16, 1, 0.3, 1); display: inline-flex; align-items: center; gap: 8px; }
    .btn-next:hover { background: #1D4ED8; transform: translateY(-1px); }
    .btn-next:hover { background: #1D4ED8; }
    .btn-next:disabled { background: #BFDBFE; cursor: default; }
    .btn-next-full { width: 100%; padding: 12px; background: #2563EB; color: #fff; border: none; border-radius: 9px; font-size: 0.93rem; font-weight: 800; cursor: pointer; margin-top: 6px; transition: background .15s; }
    .btn-next-full:hover { background: #1D4ED8; }
    .wiz-consents { display: flex; flex-direction: column; gap: 8px; margin: 12px 0 4px; }
    .wiz-consent-row { display: flex; align-items: flex-start; gap: 8px; cursor: pointer; }
    .wiz-consent-row input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: #2563EB; width: 14px; height: 14px; cursor: pointer; }
    .wiz-consent-row span { font-size: 0.78rem; color: #6b7280; line-height: 1.5; }
    .wiz-consent-row a { color: #2563EB; text-decoration: underline; }

    /* ══════════════════════════════════════════
       BELOW-HERO
    ══════════════════════════════════════════ */

    /* Subtle dot pattern for dark sections */
    .dark-pattern {
      background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 24px 24px;
    }

    /* ── MARQUEE STRIP ── */
    .marquee-strip {
      background: #111; color: #fff;
      padding: 20px 0; overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .marquee-track {
      display: flex; gap: 0; white-space: nowrap;
      animation: marquee 36s linear infinite;
    }
    .marquee-track:hover { animation-play-state: paused; }
    .marquee-content {
      display: flex; align-items: center;
      flex-shrink: 0; min-width: max-content;
    }
    .marquee-item {
      font-family: var(--font-mono);
      font-size: 0.78rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 0 2.2rem; color: var(--ink-3);
      transition: color .2s;
    }
    .marquee-track:hover .marquee-item { color: var(--ink); }
    .marquee-dot { color: var(--hairline); font-size: 0.9rem; }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    /* keep legacy class aliases harmless */
    .proof-strip, .proof-label, .airline-logos, .airline-logo, .proof-mobile-text { display: none; }

    /* ===== STATS (Soft Structuralism — thin divider strip) ===== */
    .stats {
      max-width: var(--container);
      margin: 0 auto;
      padding: 80px 32px 64px;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border-top: 1px solid var(--hairline);
      border-bottom: 1px solid var(--hairline);
    }
    .stat-cell {
      padding: 36px 28px;
      border-right: 1px solid var(--hairline);
      display: flex; flex-direction: column; gap: 12px;
    }
    .stat-cell:last-child { border-right: none; }
    .stat-num {
      font-family: var(--font-mono);
      font-size: clamp(2.2rem, 3vw, 2.8rem);
      font-weight: 500;
      color: var(--ink);
      letter-spacing: -0.04em;
      line-height: 1;
    }
    .stat-num em { color: var(--accent); font-style: normal; font-weight: 600; }
    .stat-lbl {
      font-size: 0.78rem;
      color: var(--ink-3);
      line-height: 1.5;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    @media (max-width: 900px) {
      .stats { padding: 56px 20px 40px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-cell:nth-child(2) { border-right: none; }
      .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--hairline); }
      .stat-cell { padding: 28px 20px; }
      .stat-num { font-size: 1.9rem; }
    }
    /* keep legacy stats-dark class harmless */
    .stats-dark, .stats-feature, .stats-feature-eyebrow, .stats-feature-num, .stats-feature-desc, .stats-list, .stat-row, .stat-row-num, .stat-row-lbl { display: none; }

    /* ===== SHARED SECTION HEADER ===== */
    .section-wrap { max-width: var(--container); margin: 0 auto; padding: 96px 32px; }
    .section-header { margin-bottom: 72px; display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; }
    .sh-left { flex: 1; max-width: 640px; }
    .sh-right { flex-shrink: 0; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
    .sh-num { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; color: var(--ink-3); user-select: none; }
    .sh-note { font-size: 0.85rem; color: var(--ink-3); line-height: 1.6; max-width: 240px; font-weight: 400; }
    .section-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--font-mono);
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em;
      color: var(--ink-3); text-transform: uppercase;
      margin-bottom: 24px;
    }
    .section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--ink-3); }
    .section-heading {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.6vw, 3.4rem);
      font-weight: 800;
      letter-spacing: -0.035em;
      color: var(--ink);
      line-height: 1.05;
    }
    .section-sub { font-size: 1.02rem; color: var(--ink-2); margin-top: 18px; line-height: 1.7; max-width: 520px; font-weight: 400; }

    /* ===== HOW IT WORKS — Z-axis zigzag with 3D illustrations ===== */
    .hiw-section { background: var(--canvas); }
    .hiw-steps { display: flex; flex-direction: column; gap: 0; }
    .hiw-step-v2 {
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 72px;
      padding: 40px 0;
      border-top: 1px solid var(--hairline);
    }
    .hiw-step-v2:last-child { border-bottom: 1px solid var(--hairline); }
    .hiw-step-v2:nth-child(even) .hiw-step-img-wrap { order: 2; }
    .hiw-step-v2:nth-child(even) .hiw-step-body { order: 1; }
    .hiw-step-img-wrap {
      position: relative;
      display: flex; align-items: center; justify-content: center;
      min-height: 260px;
      padding: 8px;
    }
    /* very subtle spotlight halo behind 3D object */
    .hiw-step-img-wrap::after {
      content: '';
      position: absolute;
      left: 50%; bottom: 16%;
      width: 65%; height: 30%;
      transform: translateX(-50%);
      background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.07) 0%, rgba(37, 99, 235, 0.03) 35%, transparent 70%);
      pointer-events: none;
      z-index: 0;
      filter: blur(8px);
    }
    .hiw-step-img {
      position: relative; z-index: 1;
      max-width: 100%;
      max-height: 320px;
      object-fit: contain;
      transform: scale(1.35);
      transform-origin: center center;
    }
    /* Steps 1 & 2 — slightly bigger (boarding pass / envelope read smaller than the phone) */
    .hiw-step-v2:nth-child(1) .hiw-step-img { transform: scale(1.55); }
    .hiw-step-v2:nth-child(2) .hiw-step-img { transform: scale(1.55); }
    .hiw-step-body { padding: 0 8px; }
    .hiw-step-meta {
      display: flex; align-items: center; gap: 14px;
      font-family: var(--font-mono);
      font-size: 0.78rem; letter-spacing: 0.12em;
      color: var(--ink-3);
      margin-bottom: 20px;
      text-transform: uppercase;
    }
    .hiw-step-meta-num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 28px; height: 28px;
      border: 1px solid var(--hairline);
      border-radius: 50%;
      color: var(--ink);
      font-size: 0.72rem; font-weight: 500;
    }
    .hiw-step-title-v2 {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 2.4vw, 2.1rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      color: var(--ink);
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .hiw-step-desc-v2 {
      font-size: 1rem;
      color: var(--ink-2);
      line-height: 1.7;
      max-width: 480px;
    }
    @media (max-width: 900px) {
      .section-wrap { padding: 64px 20px; }
      .section-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 48px; }
      .sh-right { text-align: left; align-items: flex-start; }
      .hiw-step-v2 { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
      .hiw-step-v2:nth-child(even) .hiw-step-img-wrap,
      .hiw-step-v2:nth-child(even) .hiw-step-body { order: unset; }
      .hiw-step-img-wrap { min-height: 280px; padding: 24px; }
    }
    /* keep legacy classes harmless */
    .hiw-section.legacy, .hiw-stepper, .hiw-step, .hiw-step-num, .hiw-step-icon-row, .hiw-step-title, .hiw-step-desc, .hiw-step-content { display: none; }

    /* ===== WHY US — asymmetric Bento + departure board ===== */
    .why-section { background: var(--canvas-2); padding-top: 64px; padding-bottom: 64px; }
    .why-section .section-header { margin-bottom: 48px; }
    .why-bento {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-auto-rows: minmax(220px, auto);
      gap: 16px;
    }
    .why-tile {
      background: var(--canvas);
      border: 1px solid var(--hairline);
      border-radius: 16px;
      padding: 36px;
      display: flex; flex-direction: column;
    }
    .why-tile-tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-mono);
      font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 18px;
    }
    .why-tile-tag::before {
      content: ''; display: block; width: 6px; height: 6px;
      border-radius: 50%; background: var(--accent);
    }
    .why-tile-title {
      font-family: var(--font-display);
      font-size: 1.4rem; font-weight: 700;
      letter-spacing: -0.02em; line-height: 1.25;
      color: var(--ink); margin-bottom: 14px;
    }
    .why-tile-desc {
      font-size: 0.95rem; line-height: 1.7;
      color: var(--ink-2);
      margin-top: auto;
    }
    .why-tile-desc.no-bottom { margin-top: 0; }

    /* Tile spans (asymmetric bento) */
    .why-tile-board {
      grid-column: span 7;
      grid-row: span 2;
      padding: 36px;
      display: flex; flex-direction: column; justify-content: space-between;
      background: var(--canvas);
    }
    .why-tile-board-img {
      flex: 1;
      display: flex; align-items: center; justify-content: center;
      min-height: 280px;
      margin: 16px 0 8px;
    }
    .why-tile-board-img img { max-width: 100%; max-height: 360px; object-fit: contain; }
    .why-tile-board-caption {
      font-family: var(--font-mono);
      font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--ink-3);
    }
    .why-tile-board-heading {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 2.2vw, 2rem);
      font-weight: 800; letter-spacing: -0.025em;
      color: var(--ink); line-height: 1.15;
      max-width: 360px;
    }
    .why-tile-a { grid-column: span 5; grid-row: span 1; }
    .why-tile-b { grid-column: span 5; grid-row: span 1; }

    .why-tile-c { grid-column: span 4; grid-row: span 1; }
    .why-tile-d { grid-column: span 4; grid-row: span 1; }
    .why-tile-e { grid-column: span 4; grid-row: span 1; }

    /* Compact tiles — tag top + corner index, title pinned to bottom */
    .why-tile-compact { justify-content: space-between; min-height: 200px; }
    .why-tile-head {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 0;
    }
    .why-tile-compact .why-tile-tag { margin-bottom: 0; }
    .why-tile-corner {
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      color: var(--ink-3);
      text-transform: uppercase;
    }
    .why-tile-compact .why-tile-title {
      font-size: 1.5rem;
      line-height: 1.2;
      margin-bottom: 0;
      letter-spacing: -0.025em;
      max-width: 22ch;
    }

    .why-tile-metric {
      font-family: var(--font-mono);
      font-size: clamp(2.4rem, 4vw, 3.4rem);
      font-weight: 500;
      letter-spacing: -0.04em;
      color: var(--ink);
      line-height: 1;
      margin-bottom: 14px;
    }
    .why-tile-metric em { color: var(--accent); font-style: normal; }

    @media (max-width: 1024px) {
      .why-bento { grid-template-columns: repeat(6, 1fr); }
      .why-tile-board { grid-column: span 6; grid-row: span 1; }
      .why-tile-a, .why-tile-b { grid-column: span 3; }
      .why-tile-c, .why-tile-d, .why-tile-e { grid-column: span 2; }
    }
    @media (max-width: 700px) {
      .why-bento { grid-template-columns: 1fr; }
      .why-tile-board, .why-tile-a, .why-tile-b, .why-tile-c, .why-tile-d, .why-tile-e {
        grid-column: span 1;
      }
      .why-tile { padding: 28px; }
    }

    /* hide legacy why2 */
    .why2-section, .why2-inner, .why2-hd, .why2-eyebrow, .why2-heading, .why2-rows, .why2-row, .why2-row-num, .why2-row-body, .why2-row-tag, .why2-row-title, .why2-row-desc { display: none; }
    @media (max-width: 820px) {
      .why2-section { padding: 0; }
    }

    /* ===== TRUST — boarding pass + euros editorial split ===== */
    .trust-section { background: var(--canvas); }
    .trust-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: center;
    }
    .trust-text { padding-right: 12px; }
    .trust-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--font-mono);
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em;
      color: var(--ink-3); text-transform: uppercase;
      margin-bottom: 24px;
    }
    .trust-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--ink-3); }
    .trust-heading {
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 3vw, 2.8rem);
      font-weight: 800; letter-spacing: -0.035em;
      color: var(--ink); line-height: 1.1;
      margin-bottom: 24px;
    }
    .trust-lede {
      font-size: 1.05rem; color: var(--ink-2);
      line-height: 1.7; max-width: 480px;
      margin-bottom: 32px;
    }
    .trust-quote {
      border-left: 2px solid var(--accent);
      padding-left: 20px;
      font-family: var(--font-display);
      font-size: 1.1rem; font-weight: 500;
      color: var(--ink); line-height: 1.5;
      max-width: 460px;
      margin-bottom: 20px;
    }
    .trust-quote-by {
      font-family: var(--font-mono);
      font-size: 0.78rem; letter-spacing: 0.08em;
      color: var(--ink-3); text-transform: uppercase;
    }
    .trust-image {
      border-radius: 14px;
      overflow: hidden;
      background: var(--canvas-2);
    }
    .trust-image img {
      width: 100%; height: auto; display: block;
    }
    @media (max-width: 900px) {
      .trust-grid { grid-template-columns: 1fr; gap: 36px; }
    }

    /* ===== REGULATIONS — typography-driven pastel cards + line art ===== */
    .reg-section { background: var(--canvas-2); padding-top: 64px; padding-bottom: 64px; }
    .reg-section .section-header { margin-bottom: 48px; }
    .reg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .reg-card {
      position: relative;
      background: var(--canvas);
      border: 1px solid var(--hairline);
      border-radius: 16px;
      padding: 32px 32px 28px;
      display: flex; flex-direction: column;
      transition: box-shadow .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
      overflow: hidden;
    }
    .reg-card:hover { box-shadow: var(--shadow-soft); border-color: #D1D5DB; transform: translateY(-2px); }
    .reg-card-art {
      position: absolute;
      top: -40px; right: -40px;
      width: 200px; height: 200px;
      opacity: 0.06;
      pointer-events: none;
      mix-blend-mode: multiply;
    }
    .reg-card-art img { width: 100%; height: 100%; object-fit: contain; }
    .reg-card-art--svg svg { width: 100%; height: 100%; }
    .reg-pill {
      display: inline-flex; align-items: center;
      align-self: flex-start;
      padding: 5px 12px;
      border-radius: 999px;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
      margin-bottom: 20px;
      position: relative; z-index: 1;
    }
    .reg-pill--green { background: #EDF3EC; color: #346538; }
    .reg-pill--blue  { background: #E1F3FE; color: #1F6C9F; }
    .reg-pill--yellow{ background: #FBF3DB; color: #956400; }
    .reg-title-v2 {
      font-family: var(--font-display);
      font-size: 1.2rem; font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--ink); line-height: 1.25;
      margin-bottom: 12px;
      position: relative; z-index: 1;
    }
    .reg-desc-v2 {
      font-size: 0.92rem; line-height: 1.65;
      color: var(--ink-2);
      margin-bottom: 24px;
      position: relative; z-index: 1;
    }
    .reg-amounts {
      display: flex; flex-direction: column;
      border-top: 1px solid var(--hairline);
      padding-top: 16px;
      margin-top: auto;
      position: relative; z-index: 1;
    }
    .reg-amount-row {
      display: flex; justify-content: space-between; align-items: baseline;
      padding: 8px 0;
      border-bottom: 1px solid var(--hairline);
    }
    .reg-amount-row:last-child { border-bottom: none; }
    .reg-amount-val {
      font-family: var(--font-mono);
      font-size: 1rem; font-weight: 500;
      letter-spacing: -0.02em;
      color: var(--ink);
    }
    .reg-amount-dist {
      font-size: 0.8rem; color: var(--ink-3); font-weight: 400;
    }
    @media (max-width: 900px) {
      .reg-grid { grid-template-columns: 1fr; }
    }
    /* hide legacy regs */
    .reg-card .reg-chip, .reg-card .reg-title, .reg-card .reg-desc, .reg-card .amounts { display: none; }

    /* ===== FAQ — divider-only accordion ===== */
    .faq-section { background: var(--canvas); }
    .faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; }
    .faq-item {
      border-top: 1px solid var(--hairline);
    }
    .faq-item:last-child, .faq-col > .faq-item:last-child { border-bottom: 1px solid var(--hairline); }
    .faq-q {
      width: 100%; text-align: left;
      padding: 24px 0;
      background: none; border: none; cursor: pointer;
      font-family: var(--font-display);
      font-size: 1.05rem; font-weight: 600;
      color: var(--ink);
      display: flex; justify-content: space-between; align-items: center;
      gap: 16px; line-height: 1.4; letter-spacing: -0.015em;
      transition: color .2s var(--ease);
    }
    .faq-q:hover { color: var(--accent); }
    .faq-q::after {
      content: '+';
      font-family: var(--font-mono);
      font-size: 1.4rem; font-weight: 400;
      color: var(--ink-3);
      flex-shrink: 0;
      transition: transform .3s var(--ease), color .2s var(--ease);
    }
    .faq-q.open::after { content: '−'; color: var(--accent); }
    .faq-a {
      display: none;
      padding: 0 0 28px;
      font-size: 0.95rem; color: var(--ink-2);
      line-height: 1.75;
      max-width: 56ch;
    }
    .faq-a.open { display: block; }
    @media (max-width: 900px) {
      .faq-cols { grid-template-columns: 1fr; gap: 0; }
    }

    /* ===== CTA — dark island with plane sky background ===== */
    .cta-wrap { max-width: var(--container); margin: 0 auto; padding: 0 32px 96px; }
    .cta-section {
      background: var(--ink);
      border-radius: 24px;
      padding: 88px 56px;
      display: flex; justify-content: space-between;
      align-items: center; gap: 40px;
      position: relative;
      overflow: hidden;
      min-height: 280px;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('img/footer-plane.png');
      background-size: cover;
      background-position: center 78%;
      opacity: 1;
      pointer-events: none;
      z-index: 0;
      filter: contrast(1.25) brightness(0.95);
    }
    .cta-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(15,15,15,0.95) 0%, rgba(15,15,15,0.65) 35%, rgba(15,15,15,0.05) 75%, rgba(15,15,15,0) 100%);
      pointer-events: none;
      z-index: 1;
    }
    .cta-content { position: relative; z-index: 2; max-width: 520px; }
    .cta-headline {
      font-family: var(--font-display);
      font-size: clamp(1.7rem, 2.6vw, 2.4rem);
      font-weight: 700; letter-spacing: -0.03em;
      color: #fff; line-height: 1.15;
    }
    .cta-sub {
      color: #B5BAC1; font-size: 1rem;
      margin-top: 14px; line-height: 1.6;
      max-width: 420px;
    }
    .btn-cta-main {
      display: inline-flex; align-items: center; gap: 10px;
      background: #fff; color: var(--ink);
      font-family: var(--font-body);
      font-weight: 600; font-size: 0.95rem;
      padding: 16px 24px 16px 28px;
      border-radius: 999px;
      text-decoration: none; white-space: nowrap; flex-shrink: 0;
      border: none;
      transition: transform .3s var(--ease), box-shadow .3s var(--ease);
      position: relative; z-index: 2;
    }
    .btn-cta-main:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.35); }
    .btn-cta-main:active { transform: translateY(0) scale(0.98); }
    @media (max-width: 800px) {
      .cta-wrap { padding: 0 16px 64px; }
      .cta-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 56px 28px;
        gap: 28px;
        min-height: 0;
      }
    }

    /* ===== FOOTER — clean light with plane bg ===== */
    footer {
      background: var(--canvas);
      color: var(--ink-2);
      font-size: 0.88rem;
      border-top: 1px solid var(--hairline);
      position: relative;
      overflow: hidden;
    }
    footer::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('img/footer-plane.png');
      background-size: cover;
      background-position: center;
      opacity: 0.10;
      pointer-events: none;
      z-index: 0;
      filter: grayscale(20%);
    }
    .footer-inner { max-width: var(--container); margin: 0 auto; padding: 72px 32px 32px; position: relative; z-index: 1; }
    .footer-top {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--hairline);
    }
    .footer-brand .logo { color: var(--ink); font-size: 1.15rem; font-family: var(--font-display); font-weight: 800; }
    .footer-brand .logo em { color: var(--accent); font-style: normal; }
    .footer-brand p { margin-top: 16px; font-size: 0.88rem; color: var(--ink-2); max-width: 260px; line-height: 1.7; }
    .footer-col h5 {
      font-family: var(--font-mono);
      font-size: 0.7rem; font-weight: 500;
      color: var(--ink-3);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 18px;
    }
    .footer-col a {
      display: block; text-decoration: none;
      color: var(--ink); font-size: 0.9rem;
      margin-bottom: 12px;
      transition: color .2s var(--ease);
    }
    .footer-col a:hover { color: var(--accent); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
      padding-top: 32px;
      font-size: 0.78rem;
      color: var(--ink-3);
      font-family: var(--font-mono);
      letter-spacing: 0.04em;
    }
    @media (max-width: 900px) {
      .footer-inner { padding: 56px 20px 24px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 32px; }
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    /* Hero entrance — sequential on load */
    .hero-content .tp-badge    { animation: fadeUp 0.6s 0.08s cubic-bezier(0.16,1,0.3,1) both; }
    .hero-content h1           { animation: fadeUp 0.65s 0.2s  cubic-bezier(0.16,1,0.3,1) both; }
    .hero-content .hero-sub    { animation: fadeUp 0.65s 0.32s cubic-bezier(0.16,1,0.3,1) both; }
    .hero-content .hero-meta   { animation: fadeUp 0.65s 0.42s cubic-bezier(0.16,1,0.3,1) both; }
    .hero-content .hero-stat-row { animation: fadeUp 0.65s 0.52s cubic-bezier(0.16,1,0.3,1) both; }
    .hero-wizard               { animation: fadeIn 0.9s 0.15s  ease both; }

    /* Scroll reveal — base classes added by JS */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
                  transform 0.65s cubic-bezier(0.16,1,0.3,1);
    }
    .reveal.in { opacity: 1; transform: translateY(0); }

    .reveal-x {
      opacity: 0;
      transform: translateX(-28px);
      transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
                  transform 0.65s cubic-bezier(0.16,1,0.3,1);
    }
    .reveal-x.in { opacity: 1; transform: translateX(0); }


    /* RESPONSIVE */
    @media (max-width: 960px) {
      .stats-dark { grid-template-columns: 1fr; gap: 52px; }
      .stats-feature { padding-right: 0; border-right: none; border-bottom: 1px solid #1e293b; padding-bottom: 52px; }
      .stats-list { padding-left: 0; }
      .reg-grid { grid-template-columns: 1fr; }
      .cta-section { flex-direction: column; text-align: center; margin: 0 4% 60px; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 820px) {
      /* Mobile: island pill — fixed width relative to screen, centered */
      nav {
        top: 12px;
        left: 16px; right: 16px;
        transform: none;
        width: auto; min-width: 0;
        padding: 0 10px 0 18px;
        height: 50px; border-radius: 100px;
        border-bottom: none;
      }
      .wiz-hint { font-size: 0.63rem !important; }
      .s1-layout, .s2-layout, .s3-layout, .s4-layout { flex-direction: column; align-items: stretch; }
      .s1-side { padding-top: 0; }
      .s1-main .wiz-textarea { min-height: 130px; }
      .btn-check { width: 100%; }
      .s2-left, .s3-cta, .s4-perks { width: 100%; }
      .wiz-textarea-sm { min-height: 90px; flex: none; }
      .wiz-route { gap: 6px; }
      .wiz-route-sep { display: none; }
      .wiz-airport-city { min-height: 0; }
      .sh-right { display: none; }
      /* Hero on mobile: natural height, page scrolls (wizard can be tall) */
      .hero {
        display: flex;
        flex-direction: column;
        min-height: 100svh;
        width: 100%;
      }
      .hero-text {
        flex: none;
        padding: 74px 7% 28px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
      }
      .hero-bg-amount { font-size: clamp(10rem, 56vw, 18rem); right: -10%; bottom: -2%; }
      .hero h1 { font-size: clamp(2rem, 7.5vw, 2.5rem); margin-bottom: 14px; }
      .hero h1 br { display: block; }
      .hero-sub { font-size: 0.88rem; margin-bottom: 0; line-height: 1.6; }
      /* Remove stats from hero on mobile */
      .hero-stat-row { display: none; }
      .hero-meta { display: none; }
      .tp-badge { margin-bottom: 14px; font-size: 0.77rem; }
      /* Wizard slides up over dark panel */
      .hero-flight-card { display: none; }
      .hero-wizard {
        flex: none;
        position: relative;
        z-index: 2;
        margin-top: -36px;
        background: #F8F8F7;
        border-radius: 24px 24px 0 0;
        box-shadow: 0 -12px 48px rgba(0,0,0,0.18);
        padding: 28px 5% 32px;
        gap: 10px;
        width: 100%; box-sizing: border-box;
      }
      .hero-wizard-label { display: none; }
      .hero-trust { font-size: 0.78rem; }
      .wizard-card { width: 100%; max-width: 100%; box-sizing: border-box; }
      .hero-marquee { position: relative; z-index: 2; flex-shrink: 0; }
      .wizard-body { padding: 16px 16px 14px; }
      .wiz-footer { margin-top: 14px; padding-top: 12px; }
      .nav-burger { display: none !important; }
      .nav-inner { gap: 12px; }
      .nav-links { display: flex !important; gap: 12px; }
      .nav-links a { font-size: 0.8rem; white-space: nowrap; }
      .nav-right { gap: 8px; }
      /* Compact sign-in button on mobile */
      .nav-signin { padding: 5px 6px 5px 12px; font-size: 0.78rem; gap: 6px; }
      .nav-signin-arrow { width: 20px; height: 20px; flex-shrink: 0; }
      .nav-signin-arrow svg { width: 11px !important; height: 11px !important; }
      .hiw-section { padding: 52px 6%; }
      .hiw-stepper { grid-template-columns: 1fr; gap: 0; }
      .hiw-stepper::before { display: none; }
      .hiw-step { flex-direction: row; text-align: left; align-items: flex-start; gap: 12px; padding: 0 0 24px 0; position: relative; }
      .hiw-step::after { content: ''; position: absolute; left: 18px; top: 40px; bottom: 0; width: 2px; background: #e5e7eb; }
      .hiw-step:last-child::after { display: none; }
      .hiw-step:last-child { padding-bottom: 0; }
      .hiw-step-num { margin-bottom: 0; flex-shrink: 0; width: 38px; height: 38px; font-size: 0.82rem; box-shadow: 0 0 0 4px #E0EAFE; }
      .hiw-step-content { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding-top: 2px; }
      .hiw-step-icon-row { width: 32px; height: 32px; border-radius: 9px; margin-bottom: 0; }
      .hiw-step-icon-row i, .hiw-step-icon-row svg { width: 15px !important; height: 15px !important; }
      .hiw-step-title { font-size: 0.88rem; margin-bottom: 0; }
      .hiw-step-desc { font-size: 0.78rem; line-height: 1.6; }
      .faq-cols { grid-template-columns: 1fr; gap: 0; }
      .footer-top { grid-template-columns: 1fr; }
      .marquee-strip { padding: 14px 0; }
      .marquee-item { font-size: 0.85rem; padding: 0 1.4rem; }
    }
    /* Very small phones only (≤340px): hide nav links to keep island compact */
    @media (max-width: 340px) {
      .nav-links { display: none !important; }
    }
    /* Mobile/narrow: hide progress-bar text labels — they crowd the wizard card */
    @media (max-width: 900px) {
      .wp-lbl { display: none !important; }
      .wizard-progress-bar { padding: 14px 16px 10px !important; gap: 0 !important; }
      .wp-num { width: 26px !important; height: 26px !important; font-size: 0.7rem !important; }
      .wp-line { flex: 1 !important; margin: 0 6px !important; min-width: 12px; }
    }
    /* Compact form on narrow screens — stack From/To at the SAME breakpoint
       the hero goes mobile (820px), otherwise inputs overflow the narrow card */
    @media (max-width: 820px) {
      .wiz-route { flex-direction: column !important; align-items: stretch !important; gap: 12px !important; }
      .wiz-route-sep { display: none !important; }
      .wiz-airport-field { width: 100% !important; flex: none !important; min-width: 0 !important; }
      .wiz-airport-wrap { width: 100% !important; max-width: 100% !important; box-sizing: border-box; }
      .wiz-airport-input { width: 100% !important; min-width: 0 !important; box-sizing: border-box; }
      .wiz-footer { flex-wrap: wrap; gap: 12px; }
      .wiz-footer .btn-next { width: 100%; justify-content: center; }
      .wiz-ocr { flex-direction: column !important; gap: 10px !important; padding: 14px !important; }
      .wiz-ocr-btn { width: 100%; justify-content: center; box-sizing: border-box; }
      .wizard-card, .wizard-body { max-width: 100% !important; box-sizing: border-box; overflow-x: hidden; }
    }
    @media (max-width: 500px) {
      .wiz-hint { font-size: 0.63rem !important; }
      .wizard-progress-bar { padding: 16px 14px 12px; }
      .wp-num { width: 22px; height: 22px; font-size: 0.65rem; }
      .wp-line { position: relative; margin: 0 6px; }
      /* No pseudo-element labels over lines — they caused horizontal overflow.
         Numbers-only progress bar on small screens. */
      .wp-line[data-label]::before { content: none !important; }
    }
