  body { overflow-x: hidden; overflow-y: scroll; -webkit-overflow-scrolling: touch; }

  /* ------------------------------------------------------------------ */
  /* HERO  — 3D layered island scene                                    */
  /* ------------------------------------------------------------------ */
  .section {
    width: 100%;
    /* Sections size to content. The hero still claims 100vh via .hero below.
       Forcing every section to 100vh produced viewport-dependent dead space
       (visibly larger gap above footer on tall windows, shrunk when devtools
       opened). Let content drive the height. */
    display: flex;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
  }
  .section-inner {
    width: 100%;
    overflow: hidden;
  }
  .hero {
    position: relative;
    min-height: 100vh;
    padding: 40px 0 120px;
    overflow: hidden;
    background:
      radial-gradient(ellipse 1200px 600px at 20% -10%, #ffd6a8 0%, transparent 55%),
      radial-gradient(ellipse 900px 500px at 90% 10%, #ffb6c8 0%, transparent 55%),
      linear-gradient(180deg, #faf6ee 0%, #f4ecd8 60%, #e9dcb8 100%);
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='240' height='240' filter='url(%23n)' opacity='0.6'/></svg>");
    opacity: 0.08; mix-blend-mode: overlay; pointer-events: none;
  }
  .hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: center;
    padding-top: 60px;
  }
  @media (max-width: 960px) { .hero-inner { grid-template-columns: 1fr; } }

  .hero h1 {
    font-size: clamp(48px, 6.4vw, 92px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin-bottom: 28px;
    opacity: 0;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    font-kerning: none;
    text-rendering: optimizeSpeed;
    cursor: pointer;
  }
  .hero h1 * { will-change: transform; }
  .hero h1 em {
    font-style: italic;
    background: linear-gradient(120deg, #ee5a30, #f89428 60%, #0bb8ad);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
  }
  .hero-sub {
    font-size: 19px;
    line-height: 1.55;
    color: var(--fg-soft);
    max-width: 520px;
    margin-bottom: 36px;
  }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

  .hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
  .hero-stat .n { font-family: var(--font-display); font-size: 36px; font-weight: 500; letter-spacing: -0.02em; }
  .hero-stat .l { font-size: 13px; color: var(--muted); margin-top: 4px; }

  /* 3D hero scene */
  .scene {
    position: relative;
    height: 640px;
    perspective: 1600px;
    transform-style: preserve-3d;
  }
  /* Sun disc */
  .scene .sun {
    position: absolute; top: 60px; right: 80px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffe2a8 0%, #ffb24a 35%, #ee5a30 100%);
    box-shadow:
      0 0 80px rgba(255, 178, 74, 0.5),
      0 0 160px rgba(238, 90, 48, 0.3),
      inset -20px -30px 60px rgba(238, 90, 48, 0.4);
    filter: blur(0.3px);
  }
  .scene .sun::after {
    content: '';
    position: absolute; inset: -60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,178,74,0.25), transparent 60%);
    z-index: -1;
  }

  /* Floating island disc */
  .scene .island {
    position: absolute;
    top: 220px; right: -40px;
    width: 420px; height: 420px;
    transform: rotateX(58deg) rotateZ(-12deg);
    transform-style: preserve-3d;
  }
  .scene .island .lagoon {
    position: absolute; inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, #9ee8e0 0%, #2cd4c4 45%, #0bb8ad 75%, #0a4843 100%);
    box-shadow:
      0 0 0 18px rgba(158, 232, 224, 0.4),
      0 0 0 36px rgba(158, 232, 224, 0.15),
      0 60px 100px rgba(10, 72, 67, 0.35);
  }
  .scene .island .land {
    position: absolute;
    top: 18%; left: 22%;
    width: 58%; height: 70%;
    background: linear-gradient(145deg, #f4ecd8 0%, #e9dcb8 40%, #8fa888 85%, #3d5845 100%);
    border-radius: 52% 48% 58% 42% / 60% 45% 55% 40%;
    box-shadow:
      inset -8px -8px 30px rgba(61, 88, 69, 0.3),
      inset 8px 8px 20px rgba(255, 255, 255, 0.3),
      0 20px 30px rgba(61, 88, 69, 0.25);
    transform: translateZ(14px);
  }
  .scene .island .peak {
    position: absolute;
    top: 35%; left: 48%;
    width: 40px; height: 40px;
    background: linear-gradient(145deg, #7d8e6f 0%, #3d5845 100%);
    border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
    transform: translateZ(30px) rotate(15deg);
  }

  /* Location pins */
  .pin {
    position: absolute;
    width: 32px; height: 40px;
    transform: translateZ(80px);
    animation: pinFloat 3s ease-in-out infinite;
  }
  .pin::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--grad-sunset);
    clip-path: path('M16 0 C7 0 0 7 0 16 C0 28 16 40 16 40 C16 40 32 28 32 16 C32 7 25 0 16 0 Z');
    filter: drop-shadow(0 10px 14px rgba(238, 90, 48, 0.5));
  }
  .pin::after {
    content: '';
    position: absolute; top: 10px; left: 10px;
    width: 12px; height: 12px; border-radius: 50%;
    background: #fff;
    box-shadow: inset 0 0 0 3px var(--coral-600);
  }
  .pin.p1 { top: 240px; right: 190px; animation-delay: 0s; }
  .pin.p2 { top: 360px; right: 130px; animation-delay: 1s; background: none; }
  .pin.p2::before { background: var(--grad-lagoon); filter: drop-shadow(0 10px 14px rgba(11, 184, 173, 0.5)); }
  .pin.p2::after { box-shadow: inset 0 0 0 3px var(--lagoon-600); }

  @keyframes pinFloat {
    0%, 100% { transform: translateZ(80px) translateY(0); }
    50% { transform: translateZ(80px) translateY(-8px); }
  }

  /* Dotted route between pins */
  .scene .route {
    position: absolute;
    top: 250px; right: 140px;
    width: 100px; height: 140px;
    transform: translateZ(60px);
    pointer-events: none;
  }

  /* Floating glass fare card */
  .fare-card {
    position: absolute;
    left: -40px; top: 80px;
    width: 300px;
    padding: 20px;
    border-radius: var(--r-lg);
    transform: rotate(-4deg) translateZ(40px);
    z-index: 5;
    animation: cardFloat 5s ease-in-out infinite;
  }
  @keyframes cardFloat {
    0%, 100% { transform: rotate(-4deg) translateZ(40px) translateY(0); }
    50% { transform: rotate(-4deg) translateZ(40px) translateY(-10px); }
  }
  .fare-card .row { display: flex; align-items: center; gap: 12px; padding: 8px 0; }
  .fare-card .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
  .fare-card .dot.a { background: var(--coral-500); box-shadow: 0 0 0 3px rgba(255,122,84,0.2); }
  .fare-card .dot.b { background: var(--lagoon-500); box-shadow: 0 0 0 3px rgba(11,184,173,0.2); }
  .fare-card .line-vert { width: 2px; height: 18px; margin-left: 4px; background: repeating-linear-gradient(180deg, var(--ink-300) 0, var(--ink-300) 3px, transparent 3px, transparent 6px); }
  .fare-card .loc-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
  .fare-card .loc-name { font-size: 15px; font-weight: 600; }
  .fare-card .divider { height: 1px; background: var(--line); margin: 10px 0; }
  .fare-card .fare-big {
    display: flex; justify-content: space-between; align-items: baseline; padding-top: 4px;
  }
  .fare-card .fare-big .curr { font-size: 12px; color: var(--muted); }
  .fare-card .fare-big .amt { font-family: var(--font-display); font-size: 30px; font-weight: 500; }

  /* Floating driver card — bottom right of hero scene */
  .driver-card {
    position: absolute;
    right: 40px; bottom: 40px;
    width: 260px;
    padding: 16px;
    border-radius: var(--r-lg);
    transform: rotate(3deg) translateZ(60px);
    z-index: 5;
    animation: cardFloat 5.5s ease-in-out 0.5s infinite;
  }
  .driver-card .top { display: flex; align-items: center; gap: 12px; }
  .driver-card .ava {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #ffc0a0, #ee5a30);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
    position: relative;
  }
  .driver-card .ava::after {
    content: '';
    position: absolute; bottom: -1px; right: -1px;
    width: 12px; height: 12px; border-radius: 50%;
    background: #2cd4c4; border: 2px solid #fff;
  }
  .driver-card .name { font-weight: 600; font-size: 14px; }
  .driver-card .meta { font-size: 12px; color: var(--muted); }
  .driver-card .stars { color: var(--sunset-500); font-size: 12px; letter-spacing: 2px; }

  /* Palm fronds decorative */
  .hero .palm {
    position: absolute;
    width: 180px; height: 180px;
    bottom: -40px; left: -30px;
    background: radial-gradient(ellipse 40px 100px at 50% 100%, #2a5c3f 0%, transparent 60%);
    opacity: 0.15;
  }

  /* ------------------------------------------------------------------ */
  /* LOGOS strip                                                        */
  /* ------------------------------------------------------------------ */
  .logos {
    padding: 40px 0;
    background: var(--sand-50);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .logos-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
  .logos-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
  .logo-fake { font-family: var(--font-display); font-size: 22px; color: var(--ink-400); font-weight: 500; font-style: italic; }

  /* ------------------------------------------------------------------ */
  /* HOW IT WORKS                                                        */
  /* ------------------------------------------------------------------ */
  .how {
    position: relative;
    padding: 140px 0;
    background: linear-gradient(180deg, #faf6ee 0%, #fff 100%);
  }
  .how-head { text-align: center; max-width: 720px; margin: 0 auto 80px; }
  .how-head h2 { font-size: clamp(40px, 5vw, 64px); font-weight: 400; letter-spacing: -0.03em; margin: 20px 0 20px; }
  .how-head h2 em { font-style: italic; color: var(--lagoon-600); }
  .how-head p { font-size: 18px; color: var(--fg-soft); line-height: 1.6; }

  .how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 860px) { .how-steps { grid-template-columns: 1fr; } }

  .step-card {
    position: relative;
    padding: 32px 28px 28px;
    border-radius: var(--r-xl);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease;
  }
  .step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  .step-num {
    position: absolute; top: 24px; right: 28px;
    font-family: var(--font-display);
    font-size: 80px; font-weight: 500; font-style: italic;
    color: var(--line-strong);
    line-height: 1;
  }
  .step-icon { width: 88px; height: 88px; border-radius: var(--r-lg); display: grid; place-items: center; margin-bottom: 28px; position: relative; }
  .step-icon.a { background: var(--grad-sunset); box-shadow: var(--shadow-coral); }
  .step-icon.b { background: var(--grad-lagoon); box-shadow: var(--shadow-lagoon); }
  .step-icon.c { background: var(--basalt-900); box-shadow: 0 20px 60px rgba(10,15,20,0.3); }
  .step-icon svg { width: 44px; height: 44px; color: #fff; }
  .step-icon::after { content: ''; position: absolute; inset: 4px; border-radius: inherit; background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent 30%); pointer-events: none; }

  .step-card h3 { font-size: 26px; margin-bottom: 12px; }
  .step-card p { color: var(--fg-soft); line-height: 1.55; font-size: 15px; }

  .step-card .chip {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 20px;
    padding: 6px 12px;
    background: rgba(11, 184, 173, 0.1);
    color: var(--lagoon-600);
    border-radius: var(--r-pill);
    font-size: 12px; font-weight: 600;
  }

  /* ------------------------------------------------------------------ */
  /* FARE CALC section                                                  */
  /* ------------------------------------------------------------------ */
  .calc {
    position: relative;
    padding: 140px 0;
    background:
      radial-gradient(ellipse 800px 400px at 80% 0%, rgba(44, 212, 196, 0.15), transparent 70%),
      linear-gradient(180deg, #0a0f14 0%, #0f1720 100%);
    color: var(--sand-50);
    overflow: hidden;
  }
  .calc::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
  }
  .calc-inner { position: relative; display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
  @media (max-width: 960px) { .calc-inner { grid-template-columns: 1fr; gap: 40px; } }
  .calc h2 { font-size: clamp(40px, 5vw, 64px); font-weight: 400; letter-spacing: -0.03em; margin-bottom: 24px; }
  .calc h2 em { font-style: italic; color: var(--lagoon-400); }
  .calc-copy p { color: var(--ink-300); font-size: 18px; line-height: 1.6; margin-bottom: 24px; max-width: 480px; }
  .calc-bullets { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 14px; }
  .calc-bullets li { display: flex; align-items: flex-start; gap: 12px; color: var(--sand-100); font-size: 15px; }
  .calc-bullets li::before {
    content: ''; width: 20px; height: 20px; border-radius: 50%;
    background: var(--grad-lagoon);
    flex-shrink: 0;
    position: relative;
    margin-top: 1px;
    background-image:
      linear-gradient(45deg, transparent 48%, #fff 48%, #fff 52%, transparent 52%),
      linear-gradient(-45deg, transparent 58%, #fff 58%, #fff 62%, transparent 62%),
      var(--grad-lagoon);
  }

  /* The calculator widget */
  .widget {
    position: relative;
    padding: 28px;
    border-radius: var(--r-xl);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
      0 40px 80px rgba(0,0,0,0.4),
      inset 0 1px 0 rgba(255,255,255,0.1);
  }
  .widget-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
  .widget-title .t { font-size: 13px; color: var(--ink-300); font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; }
  .widget-title .live {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; color: var(--lagoon-400); font-family: var(--font-mono);
  }
  .widget-title .live::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--lagoon-400); box-shadow: 0 0 0 4px rgba(44,212,196,0.2); animation: pulse 1.5s infinite; }
  @keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(44,212,196,0.2); } 50% { box-shadow: 0 0 0 8px rgba(44,212,196,0.05); } }

  .loc-input {
    position: relative;
    display: flex; align-items: center; gap: 14px;
    padding: 18px 20px;
    border-radius: var(--r-md);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 8px;
    transition: all .2s;
    cursor: text;
  }
  .loc-input:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
  .loc-input .dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
  .loc-input .dot.a { background: var(--coral-500); box-shadow: 0 0 0 4px rgba(255,122,84,0.2); }
  .loc-input .dot.b { background: var(--lagoon-400); box-shadow: 0 0 0 4px rgba(44,212,196,0.2); }
  .loc-input .meta { flex: 1; }
  .loc-input .meta .l { font-size: 11px; color: var(--ink-400); text-transform: uppercase; letter-spacing: 0.08em; }
  .loc-input .meta select, .loc-input .meta input {
    width: 100%;
    background: transparent; border: none; color: #fff;
    font-family: inherit; font-size: 15px; font-weight: 600;
    padding: 2px 0 0; margin: 0; outline: none;
  }
  .loc-input .meta input::placeholder { color: rgba(255,255,255,0.35); font-weight: 400; }

  /* Autocomplete dropdown — dark-theme, anchored to .loc-input */
  .loc-input .mr-ac-dropdown {
    position: absolute; left: 0; right: 0; top: calc(100% + 4px);
    background: #1a2838; border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px; overflow: hidden;
    z-index: 200; box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  }
  .loc-input .mr-ac-row {
    display: flex; align-items: center; gap: 10px;
    width: 100%; padding: 11px 16px;
    background: transparent; border: none; color: #fff;
    font-family: inherit; font-size: 14px; text-align: left; cursor: pointer;
  }
  .loc-input .mr-ac-row:hover,
  .loc-input .mr-ac-row:focus { background: rgba(255,255,255,0.07); outline: none; }
  .loc-input .mr-ac-row.is-default .mr-ac-icon { color: var(--lagoon-400, #2cd4c4); font-size: 12px; }
  .loc-input .mr-ac-icon { flex-shrink: 0; width: 18px; text-align: center; }
  .loc-input .mr-ac-label { flex: 1; }
  .loc-input .mr-ac-empty { padding: 12px 16px; color: rgba(255,255,255,0.45); font-size: 13px; }

  .swap-row { position: relative; height: 8px; }
  .swap-btn {
    position: absolute; right: 20px; top: -20px;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--basalt-700);
    display: grid; place-items: center;
    color: var(--sand-50);
    border: 1px solid rgba(255,255,255,0.12);
    transition: transform .2s;
  }
  .swap-btn:hover { transform: rotate(180deg); }

  .schedule-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
  .schedule-chip {
    padding: 14px 16px;
    border-radius: var(--r-md);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    color: var(--ink-300);
    display: flex; align-items: center; gap: 10px;
  }
  .schedule-chip svg { flex-shrink: 0; }
  .schedule-chip .v { color: #fff; font-weight: 600; font-size: 14px; }

  .fare-out {
    margin-top: 20px;
    padding: 24px;
    border-radius: var(--r-lg);
    background: linear-gradient(135deg, rgba(44,212,196,0.12), rgba(11,184,173,0.04));
    border: 1px solid rgba(44,212,196,0.25);
  }
  .fare-out .label { font-size: 12px; color: var(--ink-300); text-transform: uppercase; letter-spacing: 0.12em; font-family: var(--font-mono); }
  .fare-out .amount {
    display: flex; align-items: baseline; gap: 8px;
    font-family: var(--font-display); font-weight: 500;
    letter-spacing: -0.02em;
    margin-top: 4px;
  }
  .fare-out .amount .c { font-size: 18px; color: var(--ink-300); }
  .fare-out .amount .n { font-size: 52px; line-height: 1; }
  .fare-out .amount .range { font-size: 16px; color: var(--ink-400); font-family: var(--font-body); font-weight: 500; }
  .fare-out .meta-row {
    display: flex; justify-content: space-between; gap: 16px;
    margin-top: 16px; padding-top: 16px;
    border-top: 1px dashed rgba(255,255,255,0.12);
  }
  .fare-out .mi { display: flex; flex-direction: column; gap: 3px; }
  .fare-out .mi .k { font-size: 11px; color: var(--ink-400); text-transform: uppercase; letter-spacing: 0.08em; }
  .fare-out .mi .v { font-size: 15px; font-weight: 600; }
  .fare-out .note { font-size: 11px; color: var(--ink-400); margin-top: 12px; font-style: italic; }

  .widget .book-btn { width: 100%; margin-top: 16px; }

  /* ------------------------------------------------------------------ */
  /* DRIVER section                                                     */
  /* ------------------------------------------------------------------ */
  .driver {
    padding: 140px 0;
    background: var(--sand-50);
    position: relative;
  }
  .driver-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  @media (max-width: 960px) { .driver-inner { grid-template-columns: 1fr; gap: 40px; } }
  .driver-copy h2 { font-size: clamp(40px, 5vw, 60px); font-weight: 400; letter-spacing: -0.03em; margin-bottom: 20px; }
  .driver-copy h2 em { font-style: italic; color: var(--coral-500); }
  .driver-copy > p { font-size: 18px; line-height: 1.6; color: var(--fg-soft); max-width: 480px; margin-bottom: 32px; }

  .driver-perks { display: grid; gap: 16px; margin-bottom: 32px; }
  .perk {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 18px 20px;
    border-radius: var(--r-md);
    background: #fff;
    border: 1px solid var(--line);
  }
  .perk-ic {
    width: 40px; height: 40px; border-radius: 12px;
    background: var(--grad-sunset);
    display: grid; place-items: center;
    color: #fff;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
  }
  .perk .t { font-weight: 600; margin-bottom: 2px; }
  .perk .d { font-size: 14px; color: var(--fg-soft); line-height: 1.5; }

  /* Package preview */
  .pkg-preview {
    position: relative;
    padding: 40px;
    border-radius: var(--r-2xl);
    background:
      radial-gradient(ellipse 400px 200px at 10% 0%, rgba(255, 178, 74, 0.4), transparent 60%),
      linear-gradient(135deg, #182330 0%, #0a0f14 100%);
    color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .pkg-preview::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 320px; height: 320px; border-radius: 50%;
    background: radial-gradient(circle, rgba(238, 90, 48, 0.3), transparent 65%);
    pointer-events: none;
  }
  .pkg-preview h3 { font-size: 28px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 6px; }
  .pkg-preview .sub { color: var(--ink-300); font-size: 14px; margin-bottom: 28px; }

  .pkg-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 28px; }
  .pkg-card {
    padding: 20px 16px;
    border-radius: var(--r-md);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
  }
  .pkg-card.highlight {
    background: linear-gradient(135deg, rgba(255, 178, 74, 0.2), rgba(238, 90, 48, 0.1));
    border-color: rgba(255, 178, 74, 0.4);
  }
  .pkg-card .name { font-family: var(--font-display); font-size: 18px; font-weight: 500; font-style: italic; margin-bottom: 6px; }
  .pkg-card .price { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
  .pkg-card .price small { font-size: 11px; color: var(--ink-400); font-weight: 500; margin-left: 2px; }
  .pkg-card .rides { font-size: 12px; color: var(--ink-300); margin-top: 6px; }
  .pkg-card .tag { position: absolute; top: 10px; right: 10px; font-size: 10px; color: var(--sunset-400); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; }

  .pkg-preview .cta-row { display: flex; gap: 10px; }

  /* ------------------------------------------------------------------ */
  /* CTA — 3D depth scene                                                */
  /* ------------------------------------------------------------------ */
  .cta-band {
    position: relative;
    padding: 160px 0 180px;
    overflow: hidden;
    color: #fff;
    perspective: 1400px;
    background:
      radial-gradient(ellipse 900px 400px at 50% 120%, #ff7a54 0%, transparent 60%),
      radial-gradient(ellipse 800px 500px at 80% -10%, rgba(255,178,74,0.7) 0%, transparent 60%),
      radial-gradient(ellipse 700px 500px at 10% 10%, rgba(224,57,94,0.5) 0%, transparent 60%),
      linear-gradient(160deg, #2a1630 0%, #7a2240 35%, #ee5a30 70%, #f89428 100%);
  }
  .cta-band::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.6'/></svg>");
    opacity: 0.18; mix-blend-mode: overlay; pointer-events: none;
  }
  /* Receding perspective grid floor */
  .cta-band .floor {
    position: absolute; left: 50%; bottom: -20px;
    width: 180%; height: 360px;
    transform: translateX(-50%) rotateX(72deg);
    transform-origin: center bottom;
    background:
      linear-gradient(180deg, transparent 0%, rgba(10,15,20,0.35) 100%),
      repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0 2px, transparent 2px 80px),
      repeating-linear-gradient(0deg, rgba(255,255,255,0.12) 0 2px, transparent 2px 60px);
    mask-image: linear-gradient(180deg, transparent 0%, #000 40%, #000 100%);
    pointer-events: none;
  }
  /* Sun/moon disc behind */
  .cta-band .cta-sun {
    position: absolute; top: 40px; right: 8%;
    width: 260px; height: 260px; border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffe2a8 0%, #ffb24a 40%, #ee5a30 100%);
    box-shadow: 0 0 120px rgba(255,178,74,0.7), 0 0 240px rgba(238,90,48,0.4), inset -30px -40px 80px rgba(122,34,64,0.5);
    transform: translateZ(-200px);
    pointer-events: none;
  }
  /* Floating coral-shape orbs for depth */
  .cta-band .orb {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), transparent 60%), var(--grad-lagoon);
    box-shadow: 0 30px 60px rgba(10,15,20,0.25);
    pointer-events: none;
  }
  .cta-band .orb.o1 { top: 20%; left: 8%; width: 120px; height: 120px; transform: translateZ(-100px); opacity: 0.85; }
  .cta-band .orb.o2 { bottom: 22%; right: 12%; width: 80px; height: 80px; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), transparent 60%), linear-gradient(135deg, #ffb24a, #ee5a30); transform: translateZ(60px); }
  .cta-band .orb.o3 { top: 55%; left: 20%; width: 50px; height: 50px; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), transparent 60%), linear-gradient(135deg, #ff8fa0, #e0395e); transform: translateZ(120px); }

  /* Main 3D stack */
  .cta-inner {
    position: relative;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    transform-style: preserve-3d;
  }
  .cta-inner h2 {
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 400;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    line-height: 0.98;
    text-shadow:
      0 1px 0 rgba(255,255,255,0.15),
      0 4px 20px rgba(10,15,20,0.35),
      0 30px 60px rgba(10,15,20,0.25);
    transform: translateZ(40px);
  }
  .cta-inner h2 em {
    font-style: italic;
    background: linear-gradient(180deg, #fff 0%, #ffe2a8 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
  }
  .cta-inner p {
    font-size: 19px;
    line-height: 1.5;
    opacity: 0.92;
    margin-bottom: 36px;
    text-shadow: 0 2px 12px rgba(10,15,20,0.35);
    transform: translateZ(20px);
  }
  .cta-inner .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; transform: translateZ(80px); }
  .cta-inner .btn-dark {
    background: linear-gradient(180deg, #1a2535 0%, #0a0f14 100%);
    color: #fff;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.18),
      0 2px 0 #000,
      0 14px 28px rgba(10,15,20,0.5),
      0 24px 60px rgba(10,15,20,0.4);
    transform: translateY(0);
    transition: transform .2s, box-shadow .2s;
  }
  .cta-inner .btn-dark:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 2px 0 #000, 0 20px 40px rgba(10,15,20,0.55), 0 32px 70px rgba(10,15,20,0.45); }
  .cta-inner .btn-ghost {
    background: rgba(255,255,255,0.16);
    color: #fff;
    backdrop-filter: blur(14px);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.4),
      inset 0 -1px 0 rgba(0,0,0,0.1),
      0 10px 24px rgba(10,15,20,0.25);
    border: 1px solid rgba(255,255,255,0.25);
  }

  /* Taxi rooftop sign floating above the CTA */
  .taxi-sign {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px 16px;
    margin-bottom: 38px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffe2a8 0%, #ffb24a 50%, #f89428 100%);
    color: var(--basalt-950);
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.01em;
    transform: translateZ(120px) rotateX(10deg);
    box-shadow:
      inset 0 2px 0 rgba(255,255,255,0.6),
      inset 0 -2px 0 rgba(122,34,64,0.3),
      0 6px 0 #b86f22,
      0 10px 0 #8a4f18,
      0 30px 50px rgba(10,15,20,0.45),
      0 50px 80px rgba(10,15,20,0.35);
  }
  .taxi-sign::before {
    content: '';
    width: 12px; height: 12px; border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff, #ee5a30);
    box-shadow: 0 0 12px rgba(255,255,255,0.9), 0 0 24px rgba(255,255,255,0.5);
    animation: blink 1.4s infinite;
  }
  @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

  /* Floating side cards for depth */
  .cta-card {
    position: absolute;
    padding: 16px 18px;
    border-radius: var(--r-lg);
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 50px rgba(10,15,20,0.35), inset 0 1px 0 rgba(255,255,255,0.5);
    font-size: 13px;
    color: #fff;
    text-align: left;
    min-width: 180px;
  }
  .cta-card .k { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.75; font-family: var(--font-mono); }
  .cta-card .v { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-top: 4px; letter-spacing: -0.01em; }
  .cta-card.c1 { top: 14%; left: 5%; transform: rotate(-6deg) translateZ(60px); }
  .cta-card.c2 { bottom: 18%; right: 6%; transform: rotate(5deg) translateZ(90px); }
  @media (max-width: 860px) { .cta-card { display: none; } }

  /* ------------------------------------------------------------------ */
  /* FOOTER                                                              */
  /* ------------------------------------------------------------------ */
  footer {
    background: var(--basalt-950);
    color: var(--ink-300);
    padding: 80px 0 40px;
    font-size: 14px;
  }
  .foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
  @media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
  .foot-grid h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 18px; font-weight: 500; }
  .foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
  .foot-grid a { color: var(--sand-100); transition: color .15s; }
  .foot-grid a:hover { color: var(--lagoon-400); }
  .foot-logo { font-family: var(--font-display); font-size: 28px; font-weight: 500; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
  .foot-bot { display: flex; justify-content: space-between; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; color: var(--ink-400); flex-wrap: wrap; gap: 16px; }

  /* Mobile */
  @media (max-width: 720px) {
    .scene { height: 420px; transform: scale(0.7); transform-origin: top right; }
    .mt-nav-links { display: none; }
    .mt-nav-links .btn-primary { display: inline-flex; }
  }

  /* ------------------------------------------------------------------ */
  /* TWEAKS                                                              */
  /* ------------------------------------------------------------------ */
  .tweaks-panel {
    position: fixed; right: 20px; bottom: 20px; z-index: 100;
    width: 280px;
    padding: 18px;
    border-radius: var(--r-lg);
    background: rgba(15, 23, 32, 0.92);
    backdrop-filter: blur(20px);
    color: #fff;
    box-shadow: var(--shadow-lg);
    display: none;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .tweaks-panel.active { display: block; }
  .tweaks-panel h5 { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 14px; color: var(--ink-300); font-weight: 600; }
  .tweaks-panel .row { margin-bottom: 14px; }
  .tweaks-panel .row:last-child { margin-bottom: 0; }
  .tweaks-panel label { display: block; font-size: 11px; color: var(--ink-400); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
  .tweaks-panel .swatches { display: flex; gap: 6px; }
  .tweaks-panel .sw {
    width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
    border: 2px solid transparent;
    transition: transform .15s;
  }
  .tweaks-panel .sw:hover { transform: scale(1.08); }
  .tweaks-panel .sw.on { border-color: #fff; }
  .tweaks-panel input[type=range] { width: 100%; accent-color: var(--lagoon-400); }
  .tweaks-panel .tg-row { display: flex; gap: 6px; }
  .tweaks-panel .tg {
    flex: 1; padding: 6px; border-radius: 8px; background: rgba(255,255,255,0.08);
    font-size: 11px; text-align: center; cursor: pointer;
  }
  .tweaks-panel .tg.on { background: var(--lagoon-500); color: #fff; }

/* ──────────────────────────────────────────────────────────────
 * Hero H1 — visible by default.
 * The original mockup started it at opacity:0 (line 51) expecting
 * GSAP SplitText to fade it in. That's fragile: any JS error before
 * the animation leaves the hero blank. Instead we keep it visible
 * and let GSAP set `style="opacity:0"` inline at animation-start.
 * ────────────────────────────────────────────────────────────── */
.hero h1 { opacity: 1; }
html.mr-reduced-motion .hero h1 { opacity: 1 !important; }
