/* ===========================================================================
   AeroRide — Private charter flights, Costa Rica & Central America
   Brand: coral red + yellow accent + ink, clean modern-airline aesthetic
   Type: Sora (display) · Manrope (body) · Space Mono (codes / flight-board)
   =========================================================================== */

:root {
  /* Brand */
  --red: #ff4438;
  --red-600: #f5392c;
  --red-700: #d92d20;
  --red-tint: #fff1ef;
  --red-soft: #ffe3df;
  --yellow: #ffc51e;
  --yellow-soft: #fff3cf;

  /* Ink & neutrals (warm) */
  --ink: #15171c;
  --ink-2: #3a3f4a;
  --ink-3: #6b7280;
  --line: #e8e6e1;
  --line-2: #f0eeea;
  --paper: #ffffff;
  --paper-2: #faf9f6;
  --paper-3: #f4f2ed;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(21, 23, 28, .06), 0 1px 3px rgba(21, 23, 28, .04);
  --shadow-md: 0 6px 18px -6px rgba(21, 23, 28, .14), 0 2px 6px rgba(21, 23, 28, .06);
  --shadow-lg: 0 30px 60px -22px rgba(21, 23, 28, .28), 0 8px 22px -12px rgba(21, 23, 28, .16);
  --shadow-red: 0 14px 30px -10px rgba(255, 68, 56, .45);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 999px;

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 56px);

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--red);
  display: inline-block;
}
.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head h2 { font-size: clamp(30px, 4.4vw, 50px); margin-top: 16px; }
.section-head .lede { margin-top: 18px; font-size: clamp(17px, 2vw, 20px); color: var(--ink-2); }
.lede { color: var(--ink-2); }

.center { text-align: center; margin-inline: auto; }
.muted { color: var(--ink-3); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--red-600); transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(255,68,56,.55); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-lg { padding: 17px 30px; font-size: 17px; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--red);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* App store badges */
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff;
  padding: 11px 18px 11px 16px; border-radius: 14px;
  transition: transform .18s ease, box-shadow .2s ease;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-badge svg { width: 24px; height: 24px; flex: none; }
.store-badge .sb-small { font-size: 10.5px; letter-spacing: .04em; opacity: .82; line-height: 1; margin-bottom: 3px; }
.store-badge .sb-big { font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1; }

/* ===========================================================================
   HEADER
   =========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 28px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.brand .mark { width: 38px; height: 38px; flex: none; }
.brand .wordmark { font-family: var(--font-display); font-weight: 800; font-size: 23px; letter-spacing: -0.03em; }
.brand .tag { display: block; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .12em; color: var(--ink-3); text-transform: uppercase; margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-weight: 600; font-size: 15.5px; color: var(--ink-2); transition: color .18s ease; }
.nav-links a:hover { color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-wa { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: var(--ink); }
.nav-wa svg { width: 19px; height: 19px; }
.nav-toggle { display: none; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 74px 0 auto 0; z-index: 55;
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 18px var(--gut) 26px; box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 13px 4px; font-weight: 600; font-size: 18px; border-bottom: 1px solid var(--line-2); }
.mobile-menu .btn { margin-top: 18px; }

/* ===========================================================================
   HERO
   =========================================================================== */
.hero { position: relative; overflow: hidden; background: var(--paper-2); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 88% 8%, rgba(255,197,30,.16), transparent 60%),
    radial-gradient(55% 60% at 6% 100%, rgba(255,68,56,.08), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 70px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 96px);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line);
  padding: 7px 16px 7px 11px; border-radius: var(--r-pill);
  font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  box-shadow: var(--shadow-sm); white-space: nowrap;
}
.hero-badge b { color: var(--ink); }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #27c46a; box-shadow: 0 0 0 4px rgba(39,196,106,.18); }
.hero h1 { font-size: clamp(40px, 6.4vw, 76px); margin-top: 22px; font-weight: 800; }
.hero h1 .hl { color: var(--red); position: relative; white-space: nowrap; }
.hero-sub { margin-top: 22px; font-size: clamp(17px, 2.1vw, 21px); color: var(--ink-2); max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px 30px; margin-top: 36px; }
.hero-trust .t-item { display: flex; flex-direction: column; }
.hero-trust .t-num { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--ink); }
.hero-trust .t-num span { color: var(--red); }
.hero-trust .t-label { font-size: 13.5px; color: var(--ink-3); font-weight: 600; }

/* Hero media */
.hero-media { position: relative; }
.hero-photo {
  width: 100%; aspect-ratio: 4 / 4.5; border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.hero-photo image-slot { width: 100%; height: 100%; }
.hero-float {
  position: absolute; background: #fff; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  padding: 14px 16px; display: flex; align-items: center; gap: 12px;
}
.hero-float.f-price { left: -22px; bottom: 46px; }
.hero-float.f-route { right: -18px; top: 40px; flex-direction: column; align-items: stretch; gap: 8px; padding: 16px; }
.hero-float .fp-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--red-tint); display: grid; place-items: center; color: var(--red); flex: none; }
.hero-float .fp-icon svg { width: 22px; height: 22px; }
.hero-float .fp-small { font-size: 12px; color: var(--ink-3); font-weight: 600; }
.hero-float .fp-big { font-family: var(--font-display); font-weight: 800; font-size: 19px; }
.mini-route { display: flex; align-items: center; gap: 10px; }
.mini-route .code { font-family: var(--font-mono); font-weight: 700; font-size: 16px; }
.mini-route .seg { flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 5px, transparent 5px 10px); position: relative; }
.mini-route .seg svg { position: absolute; right: -3px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; color: var(--red); }
.mini-route .when { font-size: 12px; color: var(--ink-3); font-weight: 600; }

/* Logo strip */
.logo-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.logo-strip .wrap { display: flex; align-items: center; gap: clamp(20px, 4vw, 48px); flex-wrap: wrap; padding-block: 22px; }
.logo-strip .ls-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.logo-strip .ls-items { display: flex; align-items: center; gap: clamp(20px, 4vw, 44px); flex-wrap: wrap; }
.logo-strip .ls-items span { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink-2); font-size: 15px; }
.logo-strip .ls-items svg { width: 18px; height: 18px; color: var(--ink-3); }

/* ===========================================================================
   ROUTE PICKER
   =========================================================================== */
.routebar { position: relative; z-index: 5; margin-top: -36px; }
.routebar .card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 14px;
  display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 10px; align-items: stretch;
}
.rp-field { position: relative; border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 11px 14px; transition: border-color .18s ease; }
.rp-field:focus-within { border-color: var(--red); }
.rp-field label { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 3px; }
.rp-field select, .rp-field input { width: 100%; border: 0; outline: 0; font-family: var(--font-body); font-weight: 700; font-size: 16px; color: var(--ink); background: transparent; -webkit-appearance: none; appearance: none; }
.rp-field.with-icon::after { content: ""; position: absolute; right: 14px; top: 50%; transform: translateY(-15%); width: 9px; height: 9px; border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3); rotate: 45deg; pointer-events: none; }
.rp-go { display: flex; }
.rp-go .btn { height: 100%; min-width: 150px; }
.rp-note { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 13.5px; color: var(--ink-3); }
.rp-note svg { width: 15px; height: 15px; color: var(--red); flex: none; }

/* ===========================================================================
   FEATURE CARDS / VALUE PROPS
   =========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.vcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.vcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--red-soft); }
.vcard .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--red-tint); color: var(--red); display: grid; place-items: center; margin-bottom: 20px; }
.vcard .ic svg { width: 26px; height: 26px; }
.vcard h3 { font-size: 21px; margin-bottom: 10px; }
.vcard p { color: var(--ink-2); font-size: 15.5px; }

/* Equal-price highlight band */
.priceband { background: var(--ink); color: #fff; border-radius: var(--r-xl); padding: clamp(34px, 5vw, 60px); position: relative; overflow: hidden; }
.priceband::after { content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,68,56,.5), transparent 65%); filter: blur(10px); }
.priceband .pb-inner { position: relative; display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.priceband h2 { color: #fff; font-size: clamp(28px, 3.8vw, 44px); }
.priceband h2 .y { color: var(--yellow); }
.priceband p { color: rgba(255,255,255,.78); margin-top: 16px; font-size: 17px; }
.pb-compare { display: grid; gap: 14px; }
.pb-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md); padding: 16px 20px; }
.pb-row.you { background: var(--red); border-color: var(--red); }
.pb-row .pb-l { display: flex; flex-direction: column; }
.pb-row .pb-name { font-weight: 700; font-size: 16px; }
.pb-row .pb-meta { font-size: 12.5px; color: rgba(255,255,255,.6); font-family: var(--font-mono); }
.pb-row.you .pb-meta { color: rgba(255,255,255,.85); }
.pb-row .pb-price { font-family: var(--font-display); font-weight: 800; font-size: 24px; }

/* ===========================================================================
   HOW IT WORKS
   =========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step .num { font-family: var(--font-mono); font-weight: 700; color: var(--red); font-size: 14px; letter-spacing: .1em; }
.step h3 { font-size: 22px; margin: 14px 0 10px; }
.step p { color: var(--ink-2); font-size: 15.5px; }
.step .bar { height: 4px; width: 46px; background: var(--red); border-radius: 4px; margin-bottom: 18px; }
.step:nth-child(2) .bar { background: var(--yellow); }
.step:nth-child(3) .bar { background: var(--ink); }

/* ===========================================================================
   DESTINATIONS
   =========================================================================== */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.dest {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 3 / 3.4; border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px; color: #fff; isolation: isolate;
  transition: transform .22s ease, box-shadow .22s ease;
}
.dest:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.dest::before { /* duotone fallback behind the editable photo */
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, var(--d1, #2b3a52), var(--d2, #14202f));
}
.dest-img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; display: block; }
.dest-overlay { position: absolute; inset: 0; z-index: 2; pointer-events: none; display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; color: #fff; background: linear-gradient(180deg, rgba(0,0,0,0) 34%, rgba(0,0,0,.64) 100%); }
.dest .ph-tag { position: absolute; top: 12px; left: 12px; z-index: 1; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.7); background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.22); padding: 3px 7px; border-radius: 6px; }
.dest .code { position: absolute; top: 12px; right: 12px; z-index: 1; font-family: var(--font-mono); font-weight: 700; font-size: 13px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28); padding: 4px 9px; border-radius: 8px; backdrop-filter: blur(4px); }
.dest h3 { color: #fff; font-size: 21px; }
.dest .country { font-size: 12.5px; color: rgba(255,255,255,.82); font-weight: 600; margin-top: 3px; }
.dest .from { margin-top: 12px; display: flex; align-items: baseline; gap: 6px; }
.dest .from .lbl { font-size: 11px; color: rgba(255,255,255,.7); font-weight: 600; }
.dest .from .amt { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #fff; }
.dest .cta-row { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; }
.dest .pill { font-size: 12px; font-weight: 700; background: #fff; color: var(--ink); padding: 8px 14px; border-radius: var(--r-pill); pointer-events: auto; transition: background .18s ease, color .18s ease; text-decoration: none; }
.dest .pill:hover { background: var(--red); color: #fff; }
.dest:hover .pill { background: var(--red); color: #fff; }

.dest-note { margin-top: 22px; font-size: 13.5px; color: var(--ink-3); display: flex; align-items: center; gap: 8px; }
.dest-note svg { width: 15px; height: 15px; flex: none; color: var(--red); }
.h2-link { color: inherit; text-decoration: none; }
.h2-link:hover { color: var(--red); }

/* ---- Fleet cards ---- */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fleet-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fleet-img { aspect-ratio: 16 / 10; background: var(--paper-2); }
.fleet-img image-slot { width: 100%; height: 100%; display: block; }
.fleet-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 9px; }
.fleet-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--red); font-weight: 700; }
.fleet-body h3 { font-size: 23px; }
.fleet-body p { color: var(--ink-2); font-size: 15px; }
.fleet-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 6px; padding-top: 16px; border-top: 1px solid var(--line-2); }
.fleet-specs .k { display: block; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.fleet-specs .v { display: block; font-family: var(--font-display); font-weight: 700; font-size: 14.5px; margin-top: 3px; }
@media (max-width: 900px) { .fleet-grid { grid-template-columns: 1fr; } }

/* ===========================================================================
   APP SHOWCASE (3 audiences + phone mockups)
   =========================================================================== */
.app-show { background: var(--paper-2); }
.app-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.aud-tabs { display: flex; gap: 8px; background: #fff; border: 1px solid var(--line); padding: 6px; border-radius: var(--r-pill); width: fit-content; margin-bottom: 26px; }
.aud-tab { font-weight: 700; font-size: 14.5px; padding: 9px 18px; border-radius: var(--r-pill); cursor: pointer; color: var(--ink-3); transition: all .18s ease; border: 0; background: transparent; font-family: var(--font-body); }
.aud-tab.active { background: var(--ink); color: #fff; }
.aud-panel { display: none; }
.aud-panel.active { display: block; animation: fade .35s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.aud-panel h3 { font-size: clamp(26px, 3.4vw, 38px); }
.aud-panel p { color: var(--ink-2); margin-top: 16px; font-size: 17px; }
.feat-list { margin-top: 22px; display: grid; gap: 14px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; }
.feat-list .ck { width: 24px; height: 24px; border-radius: 50%; background: var(--red-tint); color: var(--red); display: grid; place-items: center; flex: none; margin-top: 1px; }
.feat-list .ck svg { width: 14px; height: 14px; }
.feat-list b { font-weight: 700; }
.feat-list span { color: var(--ink-2); font-size: 15.5px; }

/* Phone */
.phones { position: relative; display: flex; justify-content: center; align-items: center; min-height: 540px; }
.phone {
  width: 280px; background: #0c0e12; border-radius: 42px; padding: 11px;
  box-shadow: var(--shadow-lg); border: 1px solid #23262e; position: relative;
}
.phone.back { position: absolute; transform: scale(.88) translate(64px, 26px) rotate(6deg); filter: saturate(.9); opacity: .92; z-index: 1; }
.phone.front { position: relative; z-index: 2; transform: translate(-22px, 0); }
.phone .screen { background: var(--paper-2); border-radius: 32px; overflow: hidden; aspect-ratio: 9 / 19; position: relative; }
.phone .notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 26px; background: #0c0e12; border-radius: 0 0 16px 16px; z-index: 6; }

/* App screen content */
.scr { position: absolute; inset: 0; display: flex; flex-direction: column; font-size: 11px; }
.scr-top { padding: 38px 16px 12px; background: #fff; }
.scr-bar { display: flex; align-items: center; justify-content: space-between; }
.scr-brand { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 800; font-size: 14px; }
.scr-brand .m { width: 20px; height: 20px; }
.scr-av { width: 26px; height: 26px; border-radius: 50%; background: var(--paper-3); border: 1px solid var(--line); }
.scr-search { margin-top: 14px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; }
.scr-route { display: flex; align-items: center; gap: 8px; }
.scr-route .c { font-family: var(--font-mono); font-weight: 700; font-size: 14px; }
.scr-route .ln { flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 4px, transparent 4px 8px); }
.scr-route .pl { color: var(--red); }
.scr-sub { font-size: 9.5px; color: var(--ink-3); margin-top: 6px; font-family: var(--font-mono); }
.scr-body { flex: 1; overflow: hidden; padding: 12px 14px; display: flex; flex-direction: column; gap: 10px; }
.scr-h { font-family: var(--font-display); font-weight: 700; font-size: 12.5px; }
.flt {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 11px 12px;
  display: flex; flex-direction: column; gap: 8px; box-shadow: var(--shadow-sm);
}
.flt.sel { border-color: var(--red); box-shadow: 0 0 0 2px var(--red-soft); }
.flt-top { display: flex; align-items: center; justify-content: space-between; }
.flt-time { display: flex; align-items: center; gap: 8px; }
.flt-time .t { font-family: var(--font-display); font-weight: 800; font-size: 14px; }
.flt-time .arrow { width: 30px; height: 2px; background: var(--line); position: relative; }
.flt-time .arrow::after { content: ""; position: absolute; right: 0; top: -3px; border-left: 6px solid var(--red); border-top: 4px solid transparent; border-bottom: 4px solid transparent; }
.flt .price { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--ink); }
.flt-meta { display: flex; align-items: center; gap: 8px; font-size: 9.5px; color: var(--ink-3); }
.flt-meta .chip { background: var(--paper-3); border-radius: 5px; padding: 2px 6px; font-family: var(--font-mono); }
.flt-meta .chip.priv { background: var(--red-tint); color: var(--red); font-weight: 700; }
.scr-foot { padding: 10px 14px 14px; background: #fff; border-top: 1px solid var(--line); }
.scr-pay { background: var(--red); color: #fff; border-radius: 10px; text-align: center; font-weight: 800; font-family: var(--font-display); padding: 11px; font-size: 12.5px; }

/* Confirmation screen variant */
.scr-conf { padding: 0 16px; align-items: center; text-align: center; justify-content: center; gap: 12px; }
.conf-check { width: 64px; height: 64px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; }
.conf-check svg { width: 32px; height: 32px; }
.conf-h { font-family: var(--font-display); font-weight: 800; font-size: 16px; }
.conf-card { width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px; box-shadow: var(--shadow-sm); text-align: left; }
.conf-card .cc-route { display: flex; align-items: center; justify-content: space-between; }
.conf-card .cc-route .c { font-family: var(--font-mono); font-weight: 700; font-size: 17px; }
.conf-card .cc-dash { border-top: 1px dashed var(--line); margin: 11px 0; }
.conf-card .cc-row { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--ink-3); margin-top: 5px; }
.conf-card .cc-row b { color: var(--ink); font-weight: 700; }

/* ===========================================================================
   SPLIT FEATURE (image + text)
   =========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); aspect-ratio: 5/4; }
.split-media image-slot { width: 100%; height: 100%; }
.split h2 { font-size: clamp(28px, 3.8vw, 44px); margin-top: 16px; }
.split p { color: var(--ink-2); margin-top: 18px; font-size: 17px; }
.split .feat-list { margin-top: 24px; }

/* ===========================================================================
   STATS / OPPORTUNITY
   =========================================================================== */
.stats { background: var(--ink); color: #fff; }
.stats .eyebrow { color: var(--yellow); }
.stats .eyebrow::before { background: var(--yellow); }
.stats h2 { color: #fff; }
.stats .lede { color: rgba(255,255,255,.74); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 12px; }
.stat { border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); padding: 30px 26px; background: rgba(255,255,255,.04); }
.stat .big { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 5vw, 54px); letter-spacing: -.03em; }
.stat .big .y { color: var(--yellow); }
.stat .big .r { color: var(--red); }
.stat h3 { color: #fff; font-size: 19px; margin: 8px 0 8px; }
.stat p { color: rgba(255,255,255,.66); font-size: 14.5px; }

/* ===========================================================================
   CTA BAND (download)
   =========================================================================== */
.cta-band { position: relative; overflow: hidden; background: var(--red); color: #fff; border-radius: var(--r-xl); padding: clamp(40px, 6vw, 72px); text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 90% at 80% -10%, rgba(255,197,30,.35), transparent 55%), radial-gradient(50% 80% at 10% 120%, rgba(0,0,0,.18), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(30px, 4.4vw, 52px); }
.cta-band p { color: rgba(255,255,255,.9); margin: 18px auto 0; max-width: 560px; font-size: 18px; }
.cta-band .store-badges { justify-content: center; margin-top: 30px; }
.cta-band .store-badge { background: #fff; color: var(--ink); }
.cta-band .cta-or { margin-top: 20px; font-size: 14.5px; color: rgba(255,255,255,.9); }
.cta-band .cta-or a { font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

/* ===========================================================================
   FAQ
   =========================================================================== */
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 44px 22px 0; position: relative; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink); letter-spacing: -.01em; }
.faq-q::after { content: ""; position: absolute; right: 6px; top: 27px; width: 12px; height: 12px; border-right: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink); transform: rotate(45deg); transition: transform .25s ease; }
.faq-item.open .faq-q::after { transform: rotate(-135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 30px 24px 0; color: var(--ink-2); font-size: 16px; }
.faq-item.open .faq-a { max-height: 360px; }

/* ===========================================================================
   FOOTER
   =========================================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,.74); padding-block: clamp(50px, 7vw, 84px) 34px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.foot-brand .brand .wordmark { color: #fff; }
.foot-brand .brand .tag { color: rgba(255,255,255,.55); }
.foot-brand p { margin-top: 18px; max-width: 320px; font-size: 15px; color: rgba(255,255,255,.6); }
.foot-contact { margin-top: 20px; display: grid; gap: 10px; }
.foot-contact a, .foot-contact span { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: rgba(255,255,255,.78); }
.foot-contact svg { width: 17px; height: 17px; color: var(--red); flex: none; }
.foot-col h4 { color: #fff; font-size: 13px; font-family: var(--font-mono); letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.foot-col ul { display: grid; gap: 11px; }
.foot-col a { font-size: 14.5px; color: rgba(255,255,255,.66); transition: color .18s ease; }
.foot-col a:hover { color: #fff; }
.foot-routes { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.foot-routes h4 { color: rgba(255,255,255,.5); font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.foot-routes .rlist { display: flex; flex-wrap: wrap; gap: 8px 10px; }
.foot-routes .rlist a { font-size: 13px; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.14); padding: 6px 12px; border-radius: var(--r-pill); transition: all .18s ease; }
.foot-routes .rlist a:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.foot-bottom { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.5); }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: rgba(255,255,255,.8); transition: all .18s ease; }
.foot-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.foot-social svg { width: 18px; height: 18px; }

/* ---- Photo fit (minimalist SVG art in media frames) ---- */
.hero-photo img, .split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo image-slot, .split-media image-slot { width: 100%; height: 100%; display: block; }
.brand image-slot.mark { border-radius: 9px; overflow: hidden; }


/* ---- App phone: editable screenshot slot ---- */
.phone .screen image-slot { width: 100%; height: 100%; display: block; }

/* ---- WhatsApp button ---- */
.btn-wa { background: #1fae54; color: #fff; }
.btn-wa:hover { background: #1a9a4a; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(31,174,84,.32); }

/* ---- Contact: two cards (book a flight / partner) ---- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: start; max-width: 760px; margin-inline: auto; }
.lead-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-md); padding: clamp(22px, 3vw, 36px); display: grid; gap: 14px; scroll-margin-top: 90px; }
.lead-card.alt { background: var(--paper-2); }
.lc-head { display: flex; align-items: center; gap: 13px; margin-bottom: 4px; }
.lc-ic { width: 46px; height: 46px; border-radius: 13px; background: var(--red-tint); color: var(--red); display: grid; place-items: center; flex: none; }
.lc-ic svg { width: 24px; height: 24px; }
.lc-head h3 { font-size: 23px; }
.lead-card.alt .lc-ic { background: #ecebf7; color: #5b4bc4; }
.lc-sub { font-size: 14.5px; color: var(--ink-3); margin: -6px 0 4px; }
.lc-contact { margin-top: 4px; padding-top: 16px; border-top: 1px solid var(--line); display: grid; gap: 9px; }
.lc-contact a { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14.5px; color: var(--ink); }
.lc-contact svg { width: 17px; height: 17px; color: var(--red); flex: none; }
.lc-contact a:hover { color: var(--red); }

/* ---- Destination per-seat label ---- */
.dest .seat { font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; color: #fff; opacity: .92; }

/* ===========================================================================
   LEAD / CONTACT FORM
   =========================================================================== */
.lead-wrap {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 60px);
  align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--shadow-md); padding: clamp(26px, 4vw, 48px);
}
.lead-intro h2 { font-size: clamp(26px, 3.4vw, 40px); margin-top: 14px; }
.lead-intro .lede { margin-top: 16px; }
.lead-contact { margin-top: 24px; display: grid; gap: 12px; }
.lead-contact a { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ink); font-size: 15.5px; }
.lead-contact svg { width: 18px; height: 18px; color: var(--red); flex: none; }
.lead-contact a:hover { color: var(--red); }

.lead-form { display: grid; gap: 14px; }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lf-field { display: flex; flex-direction: column; }
.lf-field label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; }
.lf-field label .opt { text-transform: none; letter-spacing: 0; color: var(--line); }
.lf-field input, .lf-field select, .lf-field textarea {
  font-family: var(--font-body); font-weight: 600; font-size: 15.5px; color: var(--ink);
  background: var(--paper-2); border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 13px 14px; outline: 0; width: 100%; transition: border-color .18s ease, background .18s ease;
}
.lf-field textarea { resize: vertical; min-height: 96px; }
.lf-field input:focus, .lf-field select:focus, .lf-field textarea:focus { border-color: var(--red); background: #fff; }
.lf-field input::placeholder, .lf-field textarea::placeholder { color: var(--ink-3); font-weight: 500; }
.lf-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.lf-note { font-size: 13.5px; color: var(--red); font-weight: 600; margin-top: 4px; }

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin-inline: auto; width: 100%; }
  .grid-4, .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .app-grid, .split, .split.flip { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .priceband .pb-inner { grid-template-columns: 1fr; }
  .faq-wrap { grid-template-columns: 1fr; }
  .lead-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .phones { min-height: 480px; }
}
@media (max-width: 760px) {
  .nav-links, .nav-wa { display: none; }
  .nav-toggle { display: inline-flex; }
  .grid-3, .grid-2, .steps, .stat-grid { grid-template-columns: 1fr; }
  .lf-row { grid-template-columns: 1fr; }
  .hero-trust { gap: 18px 24px; }
  .hero-float.f-price { left: 8px; }
  .hero-float.f-route { right: 8px; }
  .foot-top { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .dest-grid { grid-template-columns: 1fr; }
  .phone.back { display: none; }
  .phone.front { transform: none; }
}
