/* =============================================================
   Oliva Express — premium landing
   1. Tokens
   ============================================================= */
:root {
  --navy-950: #030A22;
  --navy-900: #051237;
  --navy-800: #0A1F5C;
  --navy-700: #10308A;
  --blue-600: #1446D8;
  --blue-500: #2563FF;
  --blue-400: #4F8BFF;
  --cyan: #5CC8FF;
  --accent: #FFB23F;
  --accent-600: #F59A0B;
  --accent-ink: #231300;
  --ink: #0A1433;
  --ink-2: #3A4666;
  --ink-3: #6B7797;
  --mist: #F3F6FC;
  --mist-2: #E8EEF9;
  --white: #FFFFFF;
  --line: rgba(10, 20, 51, .09);
  --line-light: rgba(255, 255, 255, .12);

  --display: "Sora", "Segoe UI", system-ui, sans-serif;
  --sans: "Manrope", "Segoe UI", system-ui, sans-serif;
  --logo: "Exo 2", "Sora", system-ui, sans-serif;

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --header-h: 72px;

  --shadow-sm: 0 2px 6px rgba(5, 18, 55, .06), 0 1px 2px rgba(5, 18, 55, .05);
  --shadow: 0 18px 40px -18px rgba(5, 18, 55, .28), 0 4px 12px rgba(5, 18, 55, .06);
  --shadow-lg: 0 40px 80px -30px rgba(3, 10, 34, .55);
  --glow-accent: 0 10px 30px -8px rgba(255, 178, 63, .6);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.08; letter-spacing: -0.025em; text-wrap: balance; font-weight: 700; }
ul, ol { list-style: none; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--blue-500); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
svg use { pointer-events: none; }
[hidden] { display: none !important; }

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link { position: fixed; top: -100px; left: 1rem; padding: .6rem 1rem; background: #fff; color: var(--ink); z-index: 9999; border-radius: 8px; font-weight: 600; }
.skip-link:focus { top: 1rem; }
.container { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: var(--gutter); }
.muted { color: var(--ink-3); }
.ta-r { text-align: right; }
.glass {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .6);
}
@supports (backdrop-filter: blur(16px)) {
  .glass { background: rgba(255, 255, 255, .78); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%); }
}
.glass-dark { background: rgba(5, 18, 55, .88); border: 1px solid var(--line-light); color: #fff; }
@supports (backdrop-filter: blur(16px)) {
  .glass-dark { background: rgba(5, 18, 55, .6); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); }
}
.grad-text {
  background: linear-gradient(95deg, #8FD3FF 0%, #5CA8FF 40%, #FFD08A 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* =============================================================
   4. Typography
   ============================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.hero .eyebrow::before { display: none; }
.eyebrow-dark { color: var(--blue-600); }
.section-title { font-size: clamp(2rem, 4.6vw, 3.6rem); color: var(--ink); max-width: 18ch; }
.section-title em { font-style: normal; color: var(--blue-600); }
.section-title.light { color: #fff; }
.section-title.light em { color: var(--accent); }
.section-lead { color: var(--ink-2); font-size: clamp(1rem, 1.3vw, 1.125rem); max-width: 52ch; }

/* =============================================================
   5. Components
   ============================================================= */
.btn {
  --bh: 48px;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  height: var(--bh); padding: 0 1.4rem; border-radius: 999px;
  font-family: var(--sans); font-weight: 700; font-size: .98rem; letter-spacing: -.005em; white-space: nowrap;
  transition: transform .35s var(--ease-out), background-color .25s, box-shadow .35s var(--ease-out), color .25s, border-color .25s;
  will-change: transform;
}
.btn svg { flex: none; width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .35s var(--ease-out); }
.btn svg use[href="#i-whatsapp"] { stroke: none; }
.btn:hover svg:last-child { transform: translateX(3px); }
.btn:active { transform: scale(.97); }
.btn-sm { --bh: 42px; padding: 0 1.1rem; font-size: .9rem; }
.btn-lg { --bh: 56px; padding: 0 1.7rem; font-size: 1.02rem; }
.btn-xl { --bh: 62px; padding: 0 2rem; font-size: 1.08rem; }
.btn-accent { background: var(--accent); color: var(--accent-ink); box-shadow: var(--glow-accent); overflow: hidden; }
.btn-accent::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .9s var(--ease-out);
}
.btn-accent:hover { background: #FFC061; box-shadow: 0 16px 36px -10px rgba(255, 178, 63, .75); }
.btn-accent:hover::after { transform: translateX(120%); }
.btn-primary { background: var(--blue-600); color: #fff; box-shadow: 0 10px 24px -10px rgba(20, 70, 216, .7); }
.btn-primary:hover { background: var(--blue-500); }
.btn-glass { color: #fff; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .22); }
@supports (backdrop-filter: blur(10px)) { .btn-glass { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); } }
.btn-glass:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .4); }
.btn-glass svg { fill: currentColor; }
.btn-ghost { color: var(--ink-2); background: var(--mist); }
.btn-ghost:hover:not(:disabled) { background: var(--mist-2); }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn-text { color: var(--ink-3); font-weight: 600; font-size: .92rem; padding: .6rem; text-decoration: underline; text-underline-offset: 3px; }

.icon-btn {
  width: 44px; height: 44px; display: inline-grid; place-items: center; border-radius: 50%;
  color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  transition: background .25s, transform .35s var(--ease-out);
}
.icon-btn:hover { background: rgba(255,255,255,.18); }
.icon-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.icon-btn-light { color: #fff; }

/* shared svg icon defaults */
.svc-icon svg, .feats svg, .pillar-icon svg, .quote-promises svg, .footer-list svg, .intl-perks svg,
.route-meta svg, .dest-group h3 svg, .hv-badge svg, .field-icon svg, .choice svg, .counter-btn svg,
.svc-link svg, .vehicle-cta svg, .route-card h3 svg, .done-icon svg, .hv-bus {
  fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.socials svg, .star, .stars svg, .sticky-wa svg, .float-wa svg, .header-wa svg { fill: currentColor; stroke: none; }

.pulse-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: #3BE08A; flex: none; }
.pulse-dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #3BE08A; animation: pulse 2s var(--ease-out) infinite; }

/* =============================================================
   6. Sections
   ============================================================= */

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  color: #fff; transition: background .35s, box-shadow .35s, height .35s var(--ease-out);
}
.site-header::before {
  content: ""; position: absolute; inset: 0; background: rgba(4, 12, 40, 0); transition: background .35s; z-index: -1;
}
.site-header.is-scrolled::before { background: rgba(4, 12, 40, .96); }
@supports (backdrop-filter: blur(18px)) {
  .site-header.is-scrolled::before { background: rgba(4, 12, 40, .9); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
}
.site-header.is-scrolled { box-shadow: 0 1px 0 rgba(255,255,255,.08); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .55rem; position: relative; z-index: 2; }
.brand-mark { width: 50px; height: 42px; filter: drop-shadow(0 4px 12px rgba(37, 99, 255, .45)); }
.brand-word { font-family: var(--logo); font-style: italic; font-size: 1.32rem; line-height: 1; letter-spacing: -.01em; display: flex; gap: .3rem; }
.brand-word b { font-weight: 900; }
.brand-word i { font-weight: 800; color: var(--cyan); }
.brand-lg .brand-mark { width: 64px; height: 54px; }
.brand-lg .brand-word { font-size: 1.6rem; }

.main-nav {
  position: fixed; inset: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-start; gap: .1rem;
  padding: calc(var(--header-h) + 1.5rem + env(safe-area-inset-top)) var(--gutter) calc(2rem + env(safe-area-inset-bottom));
  overflow-y: auto; overscroll-behavior: contain;
  background: radial-gradient(120% 80% at 100% 0%, #10308A 0%, var(--navy-950) 60%);
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease-out), visibility .4s;
}
.main-nav a:not(.btn) {
  font-family: var(--display); font-size: clamp(1.5rem, 6.6vw, 2.2rem); font-weight: 600; letter-spacing: -.03em;
  display: flex; align-items: center; min-height: 52px; padding: .2rem 0; border-bottom: 1px solid rgba(255,255,255,.06); opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), color .2s;
}
.main-nav a:not(.btn):hover { color: var(--cyan); }
.main-nav a.is-active:not(.btn) { color: var(--cyan); }
.nav-mobile-actions { display: grid; gap: .6rem; margin-top: 1.6rem; opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease-out) .3s, transform .5s var(--ease-out) .3s; }
.nav-mobile-actions .btn { width: 100%; }
.nav-phone { display: inline-flex !important; justify-content: center; align-items: center; gap: .5rem; min-height: 48px; font-family: var(--sans) !important; font-size: 1rem !important; font-weight: 700 !important; color: #D6E4FF; border: 0 !important; }
.nav-phone svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
body.menu-open .main-nav { opacity: 1; visibility: visible; }
body.menu-open .main-nav a, body.menu-open .nav-mobile-actions { opacity: 1; transform: none; }
body.menu-open .main-nav a:nth-child(2) { transition-delay: .04s; }
body.menu-open .main-nav a:nth-child(3) { transition-delay: .08s; }
body.menu-open .main-nav a:nth-child(4) { transition-delay: .12s; }
body.menu-open .main-nav a:nth-child(5) { transition-delay: .16s; }
body.menu-open .main-nav a:nth-child(6) { transition-delay: .2s; }
body.menu-open .main-nav a:nth-child(7) { transition-delay: .24s; }
body.menu-open { overflow: hidden; }
.header-actions { display: flex; align-items: center; gap: .5rem; position: relative; z-index: 2; }
.header-cta, .header-wa { display: none; }
.menu-toggle .i-close { display: none; }
body.menu-open .menu-toggle .i-open { display: none; }
body.menu-open .menu-toggle .i-close { display: block; }
.scroll-progress { position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; transform-origin: 0 50%; transform: scaleX(0); background: linear-gradient(90deg, var(--cyan), var(--accent)); }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: 100vh; min-height: 100svh;
  padding-top: calc(var(--header-h) + 2.2rem);
  color: #fff; background: var(--navy-950);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg-img { position: absolute; inset: -8% 0; width: 100%; height: 116%; object-fit: cover; opacity: .22; mix-blend-mode: screen; filter: saturate(1.2) hue-rotate(-10deg); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(3,10,34,.55) 0%, rgba(3,10,34,.2) 40%, rgba(3,10,34,.9) 100%),
    linear-gradient(90deg, rgba(3,10,34,.95) 0%, rgba(3,10,34,.55) 55%, rgba(3,10,34,.2) 100%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-glow-a { width: 60vmax; height: 60vmax; right: -20vmax; top: -25vmax; background: radial-gradient(closest-side, rgba(37,99,255,.55), transparent); animation: drift 18s ease-in-out infinite alternate; }
.hero-glow-b { width: 40vmax; height: 40vmax; left: -15vmax; bottom: -20vmax; background: radial-gradient(closest-side, rgba(92,200,255,.28), transparent); animation: drift 22s ease-in-out infinite alternate-reverse; }
.hero-grid {
  position: absolute; inset: 0; opacity: .35;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(70% 60% at 70% 40%, #000 20%, transparent 80%);
  mask-image: radial-gradient(70% 60% at 70% 40%, #000 20%, transparent 80%);
}
.hero-routes { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.route-line { fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-dasharray: 2400; stroke-dashoffset: 2400; animation: draw 3.2s var(--ease-out) forwards; }
.route-line.r1 { stroke: rgba(92,200,255,.55); animation-delay: .5s; }
.route-line.r2 { stroke: rgba(255,178,63,.45); animation-delay: .8s; }
.route-line.r3 { stroke: rgba(79,139,255,.35); animation-delay: 1.1s; }

.hero-inner { position: relative; z-index: 2; flex: 1; display: grid; gap: 3rem; align-items: center; padding-bottom: 3.5rem; }
.hero-copy { max-width: 640px; }
.hero .eyebrow {
  color: #D6E4FF; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  padding: .45rem .9rem .45rem .75rem; border-radius: 999px; letter-spacing: .08em; font-size: .72rem;
}
.hero-title { font-size: clamp(2.6rem, 7.4vw, 5.6rem); line-height: 1.0; letter-spacing: -.045em; font-weight: 800; margin-bottom: 1.4rem; }
.hero-title .line { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.hero-title .line > span { display: inline-block; }
.hero-sub { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: #B9C7E6; max-width: 50ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.4rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.2rem 2.2rem; }
.hero-trust li { display: flex; flex-direction: column; }
.hero-trust strong { font-family: var(--display); font-size: 1.75rem; font-weight: 700; display: inline-flex; align-items: center; gap: .3rem; letter-spacing: -.03em; }
.hero-trust .star { width: 20px; height: 20px; color: var(--accent); }
.hero-trust span:not([data-count]) { font-size: .85rem; color: #93A3C8; }
.hero-trust li + li { position: relative; }

/* hero entry (pure CSS so it works without JS) */
.hero-in { opacity: 0; transform: translateY(28px); animation: heroIn 1.1s var(--ease-out) forwards; animation-delay: var(--d, 0s); }
.hero-title .hero-in { transform: translateY(105%); }

.hero-visual { position: relative; height: clamp(360px, 90vw, 560px); }
.hv-main {
  position: absolute; inset: 0 8% 12% 0; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.08);
  clip-path: inset(0 0 100% 0 round var(--radius-lg)); animation: clipIn 1.4s var(--ease-out) .35s forwards;
}
.hv-main img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); animation: zoomOut 2.2s var(--ease-out) .35s forwards; }
.hv-main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(3,10,34,.55)); }
.hv-tag {
  position: absolute; left: 1rem; top: 1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .82rem; font-weight: 700; padding: .5rem .85rem; border-radius: 999px;
  background: rgba(3,10,34,.6); border: 1px solid rgba(255,255,255,.18);
}
.hv-side {
  position: absolute; right: 0; bottom: 0; width: 42%; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
  border: 4px solid var(--navy-950); box-shadow: var(--shadow-lg);
  opacity: 0; animation: popIn 1.1s var(--ease-out) .9s forwards;
}
.hv-side img { width: 100%; height: 100%; object-fit: cover; }
.hv-side figcaption { position: absolute; inset: auto 0 0 0; padding: 2.2rem .9rem .8rem; background: linear-gradient(transparent, rgba(3,10,34,.85)); display: flex; flex-direction: column; line-height: 1.2; }
.hv-side small { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan); font-weight: 700; }
.hv-side b { font-family: var(--display); font-size: .95rem; }
.hv-card {
  position: absolute; left: -2%; bottom: 2%; width: min(320px, 62%); padding: .9rem 1rem; border-radius: 18px; color: var(--ink);
  box-shadow: var(--shadow-lg); opacity: 0; animation: popIn 1.1s var(--ease-out) 1.15s forwards;
}
.hv-card-head { display: flex; justify-content: space-between; align-items: center; font-size: .75rem; margin-bottom: .7rem; }
.chip-live { font-weight: 800; color: #0F8A4C; background: #DDF7E8; padding: .2rem .55rem; border-radius: 999px; font-size: .7rem; letter-spacing: .04em; text-transform: uppercase; }
.hv-route { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .7rem; }
.hv-route small { display: block; font-size: .65rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.hv-route b { font-family: var(--display); font-size: .85rem; letter-spacing: -.02em; }
.hv-track { position: relative; height: 4px; border-radius: 4px; background: var(--mist-2); }
.hv-bar { position: absolute; inset: 0 auto 0 0; width: 64%; border-radius: inherit; background: linear-gradient(90deg, var(--blue-500), var(--cyan)); animation: trip 6s var(--ease-soft) infinite; }
.hv-bus { position: absolute; top: 50%; left: 64%; width: 18px; height: 18px; margin: -9px 0 0 -9px; color: var(--blue-600); background: #fff; border-radius: 50%; padding: 3px; box-shadow: 0 2px 8px rgba(0,0,0,.2); stroke-width: 2.4; animation: tripDot 6s var(--ease-soft) infinite; }
.hv-badge {
  position: absolute; right: 4%; top: 4%; display: none; align-items: center; gap: .7rem; padding: .7rem .95rem; border-radius: 16px; color: var(--ink);
  box-shadow: var(--shadow-lg); opacity: 0; animation: popIn 1.1s var(--ease-out) 1.35s forwards;
}
.hv-badge svg { width: 30px; height: 30px; color: var(--blue-600); padding: 5px; background: #E7EEFF; border-radius: 10px; }
.hv-badge b { display: block; font-size: .85rem; font-family: var(--display); letter-spacing: -.02em; }
.hv-badge small { font-size: .72rem; color: var(--ink-3); }

.hero-marquee { position: relative; z-index: 2; border-top: 1px solid var(--line-light); background: rgba(3,10,34,.4); overflow: hidden; padding: 1.1rem 0; }
.marquee-track { display: flex; align-items: center; gap: 2rem; width: max-content; animation: marquee 40s linear infinite; }
.marquee-track span { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: #93A3C8; letter-spacing: -.01em; white-space: nowrap; }
.marquee-track i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: .8; }

/* ---------- Generic section ---------- */
.section { position: relative; padding-block: clamp(4.5rem, 10vw, 8.5rem); }
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); display: grid; gap: 1.2rem; }
.section-head.center { text-align: center; justify-items: center; }
.section-head.center .section-title { max-width: 20ch; }

/* ---------- Services (bento) ---------- */
.services { background: var(--white); }
.bento { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.svc {
  position: relative; isolation: isolate; overflow: hidden; border-radius: var(--radius-lg);
  min-height: 340px; color: #fff; display: flex; align-items: flex-end;
  box-shadow: var(--shadow); background: var(--navy-900);
}
.svc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.2s var(--ease-out); }
.svc::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(3,10,34,.05) 0%, rgba(3,10,34,.45) 45%, rgba(3,10,34,.94) 100%); transition: background .5s; }
.svc::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(135deg, rgba(20,70,216,.55), transparent 60%); opacity: 0; transition: opacity .5s var(--ease-out); }
.svc:hover img { transform: scale(1.07); }
.svc:hover::after { opacity: 1; }
.svc-body { padding: 1.6rem; width: 100%; position: relative; }
.svc-icon {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; margin-bottom: 1rem;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); color: #fff;
}
@supports (backdrop-filter: blur(10px)) { .svc-icon { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); } }
.svc-icon svg { width: 26px; height: 26px; }
.svc-num { position: absolute; top: 1.6rem; right: 1.6rem; font-family: var(--display); font-weight: 600; font-size: .85rem; color: rgba(255,255,255,.55); }
.svc h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: .45rem; }
.svc p { color: #C9D5EE; font-size: .96rem; max-width: 42ch; }
.svc-link {
  display: inline-flex; align-items: center; gap: .45rem; margin-top: 1rem; font-weight: 700; font-size: .92rem; color: var(--accent);
}
.svc-link svg { width: 18px; height: 18px; stroke-width: 2.2; transition: transform .35s var(--ease-out); }
.svc-link:hover svg { transform: translateX(4px); }
.svc-link::after { content: ""; position: absolute; inset: 0; }

/* ---------- Parcel ---------- */
.parcel { background: #fff; padding-top: 0; }
.parcel-panel {
  position: relative; isolation: isolate; overflow: hidden; border-radius: 32px; color: #fff;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  padding: clamp(1.6rem, 5vw, 4rem); display: grid; gap: 2.5rem; align-items: center;
  box-shadow: var(--shadow-lg);
}
.parcel-panel::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(60% 70% at 80% 50%, #000, transparent 75%); mask-image: radial-gradient(60% 70% at 80% 50%, #000, transparent 75%);
}
.parcel-glow { position: absolute; z-index: -1; width: 520px; height: 520px; right: -140px; top: -160px; border-radius: 50%; background: radial-gradient(closest-side, rgba(37,211,102,.28), transparent); filter: blur(40px); pointer-events: none; }
.parcel .section-title { font-size: clamp(2rem, 4.2vw, 3.3rem); }
.parcel .section-title.light em { color: #4ADE80; }
.parcel .eyebrow { color: #4ADE80; }
.parcel-lead { color: #B9C7E6; font-size: clamp(1rem, 1.3vw, 1.1rem); max-width: 50ch; margin: 1rem 0 1.8rem; }
.parcel-feats { display: grid; gap: .7rem; margin-bottom: 1.6rem; }
.parcel-feats li { display: flex; gap: .8rem; align-items: flex-start; padding: .85rem 1rem; border-radius: 16px; background: rgba(255,255,255,.05); border: 1px solid var(--line-light); transition: background .3s, border-color .3s; }
.parcel-feats li:hover { background: rgba(255,255,255,.09); border-color: rgba(74,222,128,.35); }
.parcel-feats svg { flex: none; width: 38px; height: 38px; padding: 8px; border-radius: 11px; background: rgba(74,222,128,.14); color: #4ADE80; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.parcel-feats b { display: block; font-family: var(--display); font-size: .95rem; letter-spacing: -.02em; }
.parcel-feats small { color: #93A3C8; font-size: .84rem; }
.parcel-steps { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; margin-bottom: 1.8rem; font-size: .9rem; font-weight: 600; color: #D6E4FF; }
.parcel-steps li { display: inline-flex; align-items: center; gap: .5rem; }
.parcel-steps span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; font-size: .75rem; font-weight: 800; background: var(--accent); color: var(--accent-ink); }
.parcel-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 12px 30px -10px rgba(37,211,102,.7); }
.btn-wa:hover { background: #2EE574; box-shadow: 0 18px 38px -10px rgba(37,211,102,.8); }
.btn-wa svg { fill: currentColor; stroke: none; width: 22px; height: 22px; }
.parcel-note { display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; color: #D6E4FF; font-size: .95rem; }

.parcel-visual { position: relative; height: clamp(340px, 88vw, 520px); }
.pv-main { position: absolute; inset: 0 12% 16% 0; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); }
.pv-side { position: absolute; right: 0; top: 10%; width: 38%; aspect-ratio: 3/4; border-radius: 20px; overflow: hidden; border: 4px solid var(--navy-900); box-shadow: var(--shadow-lg); }
.pv-main img, .pv-side img { width: 100%; height: 100%; object-fit: cover; }
.pv-track { position: absolute; left: 4%; bottom: 0; width: min(310px, 86%); padding: 1rem 1.1rem; border-radius: 18px; color: var(--ink); box-shadow: var(--shadow-lg); }
.pv-track-head { display: flex; justify-content: space-between; align-items: center; gap: .6rem; margin-bottom: .9rem; }
.pv-code { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--display); font-weight: 700; font-size: .85rem; letter-spacing: -.02em; }
.pv-code svg { width: 18px; height: 18px; color: var(--blue-600); fill: none; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; }
.pv-timeline { display: grid; gap: .55rem; position: relative; }
.pv-timeline::before { content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 2px; background: var(--mist-2); }
.pv-timeline li { display: flex; gap: .75rem; align-items: flex-start; position: relative; }
.pv-timeline i { flex: none; width: 14px; height: 14px; margin-top: 3px; border-radius: 50%; background: #fff; border: 2px solid var(--mist-2); position: relative; z-index: 1; }
.pv-timeline .is-done i { background: #22C55E; border-color: #22C55E; }
.pv-timeline .is-now i { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255,178,63,.25); animation: nowPulse 1.8s ease-in-out infinite; }
.pv-timeline b { display: block; font-size: .82rem; line-height: 1.2; }
.pv-timeline small { font-size: .72rem; color: var(--ink-3); }
.pv-timeline li:not(.is-done):not(.is-now) b { color: var(--ink-3); }
@keyframes nowPulse { 50% { box-shadow: 0 0 0 8px rgba(255,178,63,0); } }

/* ---------- Fleet ---------- */
.fleet { background: var(--mist); overflow: hidden; }
.fleet::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 50% 0%, rgba(37,99,255,.08), transparent 70%); pointer-events: none; }
.fleet-tabs {
  position: relative; display: flex; gap: .25rem; width: max-content; max-width: 100%; margin: 0 auto 2.5rem; padding: .35rem;
  background: #fff; border-radius: 999px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); overflow-x: auto; scrollbar-width: none;
}
.fleet-tabs::-webkit-scrollbar { display: none; }
.fleet-tabs button {
  position: relative; z-index: 1; padding: .65rem 1.05rem; border-radius: 999px; font-weight: 700; font-size: .9rem; color: var(--ink-2);
  display: inline-flex; gap: .45rem; align-items: center; transition: color .3s; white-space: nowrap;
}
.fleet-tabs button span { font-size: .72rem; min-width: 22px; height: 22px; display: grid; place-items: center; border-radius: 999px; background: var(--mist); color: var(--ink-3); transition: background .3s, color .3s; }
.fleet-tabs button[aria-selected="true"] { color: #fff; }
.fleet-tabs button[aria-selected="true"] span { background: rgba(255,255,255,.2); color: #fff; }
.tab-ink { position: absolute; z-index: 0; top: .35rem; bottom: .35rem; left: 0; width: 0; border-radius: 999px; background: var(--navy-800); transition: transform .5s var(--ease-out), width .5s var(--ease-out); }
.fleet-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.vehicle {
  position: relative; background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: box-shadow .5s var(--ease-out), transform .5s var(--ease-out), opacity .4s;
  transform-style: preserve-3d;
}
.vehicle:hover { box-shadow: var(--shadow); }
.vehicle.is-hidden { display: none; }
.vehicle-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--mist-2); }
.vehicle-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.vehicle:hover .vehicle-media img { transform: scale(1.06); }
.vehicle-cat {
  position: absolute; top: 1rem; left: 1rem; padding: .3rem .7rem; border-radius: 999px; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(255,255,255,.92); color: var(--navy-800);
}
.vehicle-body { padding: 1.4rem 1.4rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.vehicle-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: .6rem; }
.vehicle h3 { font-size: 1.3rem; }
.cap { text-align: right; line-height: 1; flex: none; }
.cap b { display: block; font-family: var(--display); font-size: 2.2rem; font-weight: 800; letter-spacing: -.04em; color: var(--blue-600); }
.cap small { font-size: .7rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.vehicle-body > p { color: var(--ink-2); font-size: .94rem; margin-bottom: 1rem; }
.feats { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }
.feats li { display: inline-flex; align-items: center; gap: .35rem; font-size: .78rem; font-weight: 600; color: var(--ink-2); padding: .32rem .6rem; background: var(--mist); border-radius: 8px; }
.feats svg { width: 14px; height: 14px; color: var(--blue-600); stroke-width: 2; }
.vehicle-cta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--line); font-weight: 700; font-size: .92rem; color: var(--navy-800); }
.vehicle-cta svg { width: 34px; height: 34px; padding: 8px; border-radius: 50%; background: var(--navy-800); color: #fff; stroke-width: 2.4; transition: transform .35s var(--ease-out), background .25s; }
.vehicle-cta:hover svg { transform: translateX(4px); background: var(--accent); color: var(--accent-ink); }

/* ---------- Quote ---------- */
.quote { background: var(--navy-950); color: #fff; overflow: hidden; }
.quote::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 90% 10%, rgba(37,99,255,.35), transparent 70%), radial-gradient(40% 50% at 0% 100%, rgba(92,200,255,.12), transparent 70%); pointer-events: none; }
.quote-inner { position: relative; display: grid; gap: 2rem; align-items: stretch; }
.quote-aside { position: relative; isolation: isolate; border-radius: var(--radius-lg); overflow: hidden; padding: 2rem 1.5rem; display: flex; flex-direction: column; justify-content: flex-end; min-height: 460px; }
.quote-aside-img { position: absolute; inset: -10% 0; width: 100%; height: 120%; object-fit: cover; z-index: -2; }
.quote-aside::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(3,10,34,.35) 0%, rgba(5,18,55,.88) 55%, rgba(5,18,55,.98) 100%); }
.quote-aside .section-title { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: .9rem; }
.quote-aside-body > p { color: #B9C7E6; margin-bottom: 1.6rem; max-width: 44ch; }
.quote-promises { display: grid; gap: 1rem; }
.quote-promises li { display: flex; gap: .9rem; align-items: flex-start; }
.quote-promises svg { flex: none; width: 40px; height: 40px; padding: 9px; border-radius: 12px; background: rgba(255,255,255,.08); border: 1px solid var(--line-light); color: var(--accent); }
.quote-promises li:last-child svg { fill: var(--accent); stroke: none; }
.quote-promises b { display: block; font-family: var(--display); font-size: .98rem; letter-spacing: -.02em; }
.quote-promises small { color: #93A3C8; font-size: .86rem; }

.quote-card { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: clamp(1.3rem, 3vw, 2.4rem); box-shadow: var(--shadow-lg); position: relative; }
.wizard { display: flex; flex-direction: column; min-height: 100%; }
.wizard-top { margin-bottom: 1.6rem; }
.wizard-meta { display: flex; justify-content: space-between; font-size: .82rem; font-weight: 600; color: var(--ink-3); margin-bottom: .6rem; }
.wizard-meta [data-step-label] { color: var(--blue-600); font-weight: 700; }
.wizard-bar { height: 6px; border-radius: 6px; background: var(--mist-2); overflow: hidden; }
.wizard-bar span { display: block; height: 100%; width: calc(100% / 7); border-radius: inherit; background: linear-gradient(90deg, var(--blue-600), var(--cyan)); transition: width .6s var(--ease-out); }
.step { border: 0; padding: 0; min-width: 0; display: none; }
.step.is-active { display: block; animation: stepIn .55s var(--ease-out); }
.step.is-back { animation-name: stepInBack; }
.step legend { font-family: var(--display); font-size: clamp(1.35rem, 2.4vw, 1.75rem); font-weight: 700; letter-spacing: -.03em; margin-bottom: 1.3rem; padding: 0; line-height: 1.15; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; inset: 0; }
.choice > span {
  display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; height: 100%;
  padding: 1rem; border-radius: 16px; border: 1.5px solid var(--line); background: #fff; font-weight: 700; font-size: .95rem;
  transition: border-color .25s, background .25s, box-shadow .35s var(--ease-out), transform .35s var(--ease-out);
}
.choice svg { width: 26px; height: 26px; color: var(--blue-600); }
.choice small { font-weight: 500; color: var(--ink-3); font-size: .78rem; margin-top: -.35rem; }
.choice:hover > span { border-color: rgba(20,70,216,.35); transform: translateY(-2px); }
.choice input:checked + span { border-color: var(--blue-600); background: #F1F5FF; box-shadow: 0 0 0 4px rgba(20,70,216,.12); }
.choice input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.choice input:checked + span::after { content: ""; position: absolute; top: .8rem; right: .8rem; width: 20px; height: 20px; border-radius: 50%; background: var(--blue-600) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E") center/12px no-repeat; }
.choice-wide { grid-column: 1 / -1; }
.choice-wide > span { flex-direction: row; align-items: center; }
.choice-vehicles img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 10px; }
.choice-vehicles .choice:last-child svg { color: var(--accent-600); fill: currentColor; stroke: none; }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; position: relative; }
.field > span { font-size: .84rem; font-weight: 700; color: var(--ink-2); }
.field small { font-weight: 500; color: var(--ink-3); }
.field input, .field textarea {
  width: 100%; min-height: 54px; padding: .85rem 1rem; border-radius: 14px; border: 1.5px solid var(--line); background: var(--mist);
  font-size: 1rem; transition: border-color .25s, background .25s, box-shadow .25s; outline: none;
}
.field textarea { resize: vertical; min-height: 80px; }
.field input:focus, .field textarea:focus { border-color: var(--blue-600); background: #fff; box-shadow: 0 0 0 4px rgba(20,70,216,.12); }
.field input.is-invalid { border-color: #E5484D; box-shadow: 0 0 0 4px rgba(229,72,77,.12); }
.field-icon input { padding-left: 2.9rem; }
.field-icon svg { position: absolute; left: 1rem; bottom: 17px; width: 20px; height: 20px; color: var(--blue-600); pointer-events: none; }
.field-row { display: grid; gap: 0 1rem; grid-template-columns: 1fr; }
.quick-picks, .pax-presets { display: flex; flex-wrap: wrap; gap: .45rem; }
.quick-picks button, .pax-presets button {
  padding: .5rem .85rem; border-radius: 999px; font-size: .84rem; font-weight: 600; color: var(--ink-2); background: var(--mist); border: 1px solid var(--line);
  transition: background .2s, color .2s, border-color .2s;
}
.quick-picks button:hover, .pax-presets button:hover, .pax-presets button.is-on { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.counter { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: .5rem 0 1.4rem; }
.counter input {
  width: 150px; text-align: center; border: 0; background: transparent; outline: none;
  font-family: var(--display); font-size: 4rem; font-weight: 800; letter-spacing: -.05em; color: var(--navy-800); -moz-appearance: textfield;
}
.counter input::-webkit-outer-spin-button, .counter input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.counter-btn { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--mist); border: 1.5px solid var(--line); color: var(--navy-800); transition: background .2s, transform .3s var(--ease-out); }
.counter-btn:hover { background: var(--mist-2); }
.counter-btn:active { transform: scale(.92); }
.counter-btn svg { width: 22px; height: 22px; stroke-width: 2.4; }
.pax-presets { justify-content: center; }
.hint { text-align: center; margin-top: 1.1rem; font-size: .9rem; color: var(--ink-3); }
.hint b { color: var(--blue-600); }
.privacy { font-size: .78rem; color: var(--ink-3); }
.wizard-error { min-height: 1.4em; margin-top: .6rem; font-size: .86rem; font-weight: 600; color: #D93036; }
.wizard-nav { display: flex; justify-content: space-between; gap: .75rem; margin-top: auto; padding-top: 1rem; }
.wizard-nav .btn { flex: 1; }
.wizard-nav [data-prev] { flex: 0 0 auto; }
.step-done { text-align: center; }
.step-done.is-active { display: flex; flex-direction: column; align-items: center; }
.done-icon { width: 76px; height: 76px; display: grid; place-items: center; border-radius: 50%; background: #DDF7E8; color: #0F8A4C; margin-bottom: 1rem; animation: popIn .8s var(--ease-out); }
.done-icon svg { width: 36px; height: 36px; stroke-width: 2.6; stroke-dasharray: 30; stroke-dashoffset: 30; animation: draw .8s var(--ease-out) .25s forwards; }
.step-done h3 { font-size: 1.8rem; margin-bottom: .4rem; }
.step-done > p { color: var(--ink-2); max-width: 40ch; margin-bottom: 1.2rem; }
.summary { width: 100%; text-align: left; display: grid; grid-template-columns: auto 1fr; gap: .45rem 1rem; padding: 1rem 1.2rem; border-radius: 16px; background: var(--mist); margin-bottom: 1.3rem; font-size: .9rem; }
.summary dt { color: var(--ink-3); font-weight: 600; }
.summary dd { margin: 0; font-weight: 700; overflow-wrap: anywhere; }
.step-done .btn svg { fill: currentColor; stroke: none; }
.wizard.is-done .wizard-top, .wizard.is-done .wizard-nav, .wizard.is-done .wizard-error { display: none; }

/* ---------- Why / Nosotros ---------- */
.why { background: #fff; }
.why-inner { display: grid; gap: 3rem; }
.why-sticky .section-lead { margin-top: 1.2rem; }
.why-figure { position: relative; margin-top: 2rem; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.why-figure img { position: absolute; inset: -8% 0; width: 100%; height: 116%; object-fit: cover; }
.why-figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,31,92,.1), rgba(3,10,34,.55)); }
.why-stats { position: absolute; z-index: 2; left: .8rem; right: .8rem; bottom: .8rem; display: grid; grid-template-columns: repeat(3, 1fr); border-radius: 18px; padding: .9rem .5rem; text-align: center; }
.why-stats div + div { border-left: 1px solid var(--line-light); }
.why-stats b { display: block; font-family: var(--display); font-size: clamp(1.15rem, 3.4vw, 1.7rem); letter-spacing: -.04em; line-height: 1.1; }
.why-stats small { font-size: .7rem; color: #B9C7E6; line-height: 1.2; display: block; }
.pillars { display: grid; gap: .9rem; counter-reset: p; }
.pillar {
  display: flex; gap: 1.1rem; padding: 1.4rem; border-radius: var(--radius); border: 1px solid var(--line); background: #fff;
  transition: border-color .4s, box-shadow .5s var(--ease-out), transform .5s var(--ease-out), background .4s;
}
.pillar:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-3px); background: linear-gradient(180deg, #fff, #F6F9FF); }
.pillar-icon { flex: none; width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, var(--blue-500), var(--navy-800)); box-shadow: 0 10px 24px -10px rgba(20,70,216,.7); transition: transform .5s var(--ease-out); }
.pillar:hover .pillar-icon { transform: rotate(-6deg) scale(1.05); }
.pillar-icon svg { width: 26px; height: 26px; }
.pillar-n { font-family: var(--display); font-size: .78rem; font-weight: 700; color: var(--blue-600); letter-spacing: .06em; }
.pillar h3 { font-size: 1.25rem; margin: .1rem 0 .35rem; }
.pillar p { color: var(--ink-2); font-size: .95rem; }

/* ---------- International ---------- */
.intl { background: var(--navy-950); color: #fff; overflow: hidden; isolation: isolate; }
.intl-bg { position: absolute; inset: 0; z-index: -1; }
.intl-bg img { position: absolute; inset: -12% 0; width: 100%; height: 124%; object-fit: cover; opacity: .28; filter: saturate(.8); }
.intl-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--navy-950) 0%, rgba(3,10,34,.7) 35%, rgba(3,10,34,.85) 70%, var(--navy-950) 100%), radial-gradient(60% 50% at 80% 30%, rgba(37,99,255,.35), transparent 70%); }
.intl-head { display: grid; gap: 1.6rem; margin-bottom: 3rem; align-items: end; }
.intl-title { font-size: clamp(2.8rem, 8vw, 6.4rem); font-weight: 800; letter-spacing: -.05em; line-height: .95; }
.intl-title em { font-style: normal; background: linear-gradient(95deg, var(--cyan), #FFD08A); -webkit-background-clip: text; background-clip: text; color: transparent; }
.intl-side p { color: #B9C7E6; font-size: 1.05rem; margin-bottom: 1.2rem; max-width: 50ch; }
.intl-flags { display: flex; flex-wrap: wrap; gap: .45rem; }
.intl-flags span { font-size: .84rem; font-weight: 600; padding: .4rem .75rem; border-radius: 999px; background: rgba(255,255,255,.07); border: 1px solid var(--line-light); }
.routes-wrap { margin-inline: calc(var(--gutter) * -1); }
.routes {
  display: flex; gap: 1rem; overflow-x: auto; overflow-y: visible; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
  padding: .5rem var(--gutter) 1.5rem; scrollbar-width: none; cursor: grab; outline: none;
}
.routes::-webkit-scrollbar { display: none; }
.routes.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.routes.is-dragging * { pointer-events: none; }
.route-card {
  position: relative; flex: 0 0 min(82vw, 380px); aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; scroll-snap-align: start;
  display: flex; align-items: flex-end; isolation: isolate; box-shadow: var(--shadow-lg); border: 1px solid var(--line-light);
  transition: transform .6s var(--ease-out);
}
.route-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.2s var(--ease-out); user-select: none; -webkit-user-drag: none; }
.route-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(3,10,34,0) 35%, rgba(3,10,34,.92)); }
.route-card:hover img { transform: scale(1.08); }
.route-card:hover { transform: translateY(-6px); }
.route-body { padding: 1.4rem; }
.route-country { display: inline-block; font-size: .78rem; font-weight: 700; padding: .3rem .65rem; border-radius: 999px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.2); margin-bottom: .7rem; }
.route-card h3 { font-size: 1.35rem; display: flex; flex-wrap: wrap; align-items: center; gap: .3rem .45rem; margin-bottom: .8rem; }
.route-card h3 svg { width: 20px; height: 20px; color: var(--accent); stroke-width: 2.4; }
.route-meta { display: flex; flex-wrap: wrap; gap: .5rem 1rem; font-size: .85rem; color: #C9D5EE; }
.route-meta span { display: inline-flex; align-items: center; gap: .35rem; }
.route-meta svg { width: 16px; height: 16px; color: var(--cyan); }
.routes-ui { display: flex; align-items: center; gap: 1.5rem; padding-inline: var(--gutter); }
.routes-progress { flex: 1; height: 3px; border-radius: 3px; background: rgba(255,255,255,.12); overflow: hidden; }
.routes-progress span { display: block; height: 100%; width: 20%; background: linear-gradient(90deg, var(--cyan), var(--accent)); border-radius: inherit; transition: width .2s linear; }
.routes-btns { display: flex; gap: .5rem; }
.intl-perks { display: grid; gap: 1rem; margin-top: 3rem; }
.intl-perks li { display: flex; gap: .9rem; align-items: flex-start; padding: 1.2rem; border-radius: var(--radius); background: rgba(255,255,255,.04); border: 1px solid var(--line-light); }
.intl-perks svg { flex: none; width: 42px; height: 42px; padding: 9px; border-radius: 12px; background: rgba(92,200,255,.12); color: var(--cyan); }
.intl-perks b { display: block; font-family: var(--display); letter-spacing: -.02em; }
.intl-perks small { color: #93A3C8; font-size: .88rem; }

/* ---------- Coverage ---------- */
.coverage { background: var(--mist); }
.coverage-inner { display: grid; gap: 2.5rem; align-items: center; }
.coverage .section-lead { margin: 1.2rem 0 2rem; }
.dest-group { margin-bottom: 1.5rem; }
.dest-group h3 { display: flex; align-items: center; gap: .45rem; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-3); font-family: var(--sans); font-weight: 800; margin-bottom: .75rem; }
.dest-group h3 svg { width: 16px; height: 16px; color: var(--blue-600); }
.dest-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.dest-chips button {
  padding: .6rem 1rem; border-radius: 999px; font-weight: 700; font-size: .9rem; background: #fff; border: 1px solid var(--line); color: var(--ink);
  box-shadow: var(--shadow-sm); transition: background .25s, color .25s, border-color .25s, transform .35s var(--ease-out);
}
.dest-chips button:hover, .dest-chips button.is-on { background: var(--navy-800); color: #fff; border-color: var(--navy-800); transform: translateY(-2px); }
.map-card { position: relative; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; }
.ca-map { width: 100%; height: auto; background: linear-gradient(180deg, #EEF3FD, #E2EAF8); }
.land { stroke: #fff; stroke-width: 1.2; stroke-linejoin: round; transition: fill .4s; }
.land-out { fill: #D5DEEE; }
.land-ca { fill: #BFCDE8; }
.land-hn { fill: url(#g-mark); fill: var(--blue-600); }
.map-route { fill: none; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; }
.intl-route { stroke: var(--accent-600); stroke-width: 2.4; }
.natl-route { stroke: #fff; stroke-width: 1.8; opacity: .9; }
.map-card.is-in .map-route { animation: drawMap 1.6s var(--ease-out) forwards; animation-delay: calc(.4s + var(--i) * .15s); }
.city text { font-family: var(--sans); font-size: 15px; font-weight: 800; fill: var(--ink); paint-order: stroke; stroke: rgba(255,255,255,.9); stroke-width: 4px; stroke-linejoin: round; transition: fill .25s; }
.city-natl text { font-size: 13px; }
.city-dot { fill: #fff; stroke: var(--navy-800); stroke-width: 3; transition: r .3s, fill .3s; }
.city-intl .city-dot { stroke: var(--accent-600); }
.city.is-hub .city-dot { fill: var(--accent); stroke: #fff; }
.city-pulse { fill: none; stroke: var(--accent); stroke-width: 2; opacity: 0; transform-box: fill-box; transform-origin: center; }
.city.is-hub .city-pulse, .city.is-on .city-pulse { animation: mapPulse 2s var(--ease-out) infinite; }
.city.is-on .city-dot { fill: var(--accent); }
.city.is-on text { fill: var(--blue-600); }
.map-legend { position: absolute; left: 1rem; bottom: 1rem; display: flex; flex-wrap: wrap; gap: .4rem .9rem; padding: .5rem .8rem; border-radius: 12px; background: rgba(255,255,255,.9); font-size: .76rem; font-weight: 700; color: var(--ink-2); box-shadow: var(--shadow-sm); }
.map-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.map-legend i { width: 14px; height: 10px; border-radius: 3px; display: inline-block; }
.lg-hn { background: var(--blue-600); }
.lg-route { height: 3px !important; background: var(--accent-600); }

/* ---------- Testimonials ---------- */
.testimonials { background: #fff; }
.rating { display: flex; align-items: center; gap: 1rem; }
.rating-num { font-family: var(--display); font-size: 3.6rem; font-weight: 800; letter-spacing: -.05em; line-height: 1; color: var(--navy-800); }
.rating small { color: var(--ink-3); font-size: .86rem; }
.stars { display: flex; gap: 2px; color: var(--accent); }
.stars svg { width: 18px; height: 18px; }
.t-grid { display: grid; gap: 1rem; }
.t-card { display: flex; flex-direction: column; gap: 1.1rem; padding: 1.6rem; border-radius: var(--radius-lg); background: var(--mist); border: 1px solid var(--line); transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.t-card blockquote { font-size: 1.02rem; color: var(--ink); line-height: 1.55; flex: 1; }
.t-card figcaption { display: flex; align-items: center; gap: .8rem; }
.t-card figcaption b { display: block; font-size: .95rem; }
.t-card figcaption small { color: var(--ink-3); font-size: .82rem; }
.avatar { width: 46px; height: 46px; flex: none; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: .9rem; color: #fff; background: linear-gradient(145deg, var(--blue-500), var(--navy-800)); }
.t-feature { background: linear-gradient(150deg, var(--navy-800), var(--navy-950)); color: #fff; border: 0; position: relative; overflow: hidden; }
.t-feature::before { content: "“"; position: absolute; right: 1rem; top: -2.5rem; font-family: var(--display); font-size: 14rem; line-height: 1; color: rgba(255,255,255,.06); }
.t-feature blockquote { color: #fff; font-family: var(--display); font-size: clamp(1.2rem, 2vw, 1.55rem); letter-spacing: -.02em; line-height: 1.35; font-weight: 500; }
.t-feature small { color: #93A3C8 !important; }
.t-feature .avatar { background: var(--accent); color: var(--accent-ink); }
.demo-note { margin-top: 1.5rem; font-size: .78rem; color: var(--ink-3); text-align: center; }

/* ---------- Final CTA ---------- */
.final-cta { position: relative; isolation: isolate; overflow: hidden; color: #fff; padding-block: clamp(6rem, 14vw, 11rem); text-align: center; background: var(--navy-950); }
.final-bg { position: absolute; inset: -15% 0; width: 100%; height: 130%; object-fit: cover; z-index: -2; }
.final-cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(3,10,34,.75), rgba(10,31,92,.55) 50%, rgba(3,10,34,.92)); }
.final-inner { display: flex; flex-direction: column; align-items: center; }
.final-title { font-size: clamp(2.6rem, 8vw, 6.2rem); font-weight: 800; letter-spacing: -.05em; line-height: 1.04; max-width: 14ch; padding-bottom: .1em; }
.final-sub { font-family: var(--display); font-size: clamp(1.2rem, 2.6vw, 1.9rem); color: #D6E4FF; margin: 1.4rem 0 2.4rem; letter-spacing: -.02em; }
.final-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; }
.final-actions .btn-glass svg { fill: none; stroke: currentColor; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: #B9C7E6; padding: 4.5rem 0 7rem; border-top: 1px solid var(--line-light); }
.footer-grid { display: grid; gap: 2.5rem; }
.footer-brand .brand { color: #fff; margin-bottom: 1.1rem; }
.footer-brand p { max-width: 36ch; font-size: .95rem; margin-bottom: 1.4rem; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.site-footer h4.mt { margin-top: 1.6rem; }
.footer-list { display: grid; gap: .8rem; }
.footer-list li { display: flex; gap: .7rem; align-items: flex-start; font-size: .94rem; }
.footer-list svg { flex: none; width: 20px; height: 20px; color: var(--cyan); margin-top: 2px; }
.footer-list li:nth-child(2) svg use[href="#i-whatsapp"] { }
.footer-list a:hover, .footer-links a:hover { color: #fff; }
.footer-links { display: grid; gap: .6rem; font-size: .94rem; }
.socials { display: flex; gap: .5rem; }
.socials a { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.06); border: 1px solid var(--line-light); color: #fff; transition: background .25s, transform .35s var(--ease-out); }
.socials a:hover { background: var(--blue-600); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }
.socials a[aria-label="Instagram"] svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.footer-bottom { margin-top: 3.5rem; padding-top: 1.6rem; border-top: 1px solid var(--line-light); display: flex; flex-direction: column; gap: .5rem; font-size: .82rem; color: #7F8FB5; }
.footer-credits a { color: #B9C7E6; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Persistent CTA ---------- */
.sticky-cta {
  position: fixed; z-index: 90; left: .75rem; right: .75rem; bottom: calc(.75rem + env(safe-area-inset-bottom));
  display: flex; gap: .5rem; padding: .45rem; border-radius: 999px;
  background: rgba(4,12,40,.92); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 20px 40px -10px rgba(3,10,34,.6);
  transform: translateY(0); transition: transform .5s var(--ease-out), opacity .4s;
}
@supports (backdrop-filter: blur(14px)) { .sticky-cta { background: rgba(4,12,40,.72); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%); } }
.sticky-cta.is-hidden { transform: translateY(calc(100% + 1.5rem)); opacity: 0; pointer-events: none; }
.sticky-main { flex: 1; --bh: 52px; font-size: 1rem; }
.sticky-wa { flex: none; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: #25D366; color: #fff; }
.sticky-wa svg { width: 26px; height: 26px; }
body.menu-open .sticky-cta { transform: translateY(calc(100% + 1.5rem)); }
.float-wa { display: none; }

/* =============================================================
   7. Effects
   ============================================================= */
.js .reveal { opacity: 0; transform: translateY(36px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); transition-delay: var(--rd, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.is-settled { transition: opacity .6s var(--ease-out), transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .4s, background .4s; transition-delay: 0s; }
.no-js .reveal, .reveal[data-split] { opacity: 1; transform: none; }
[data-tilt] { will-change: transform; }

@keyframes heroIn { to { opacity: 1; transform: none; } }
@keyframes clipIn { to { clip-path: inset(0 0 0 0 round var(--radius-lg)); } }
@keyframes zoomOut { to { transform: scale(1); } }
@keyframes popIn { from { opacity: 0; transform: translateY(24px) scale(.94); } to { opacity: 1; transform: none; } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes drawMap { to { stroke-dashoffset: 0; } }
@keyframes pulse { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(2.2); opacity: 0; } }
@keyframes mapPulse { 0% { transform: scale(.4); opacity: .9; } 100% { transform: scale(1.6); opacity: 0; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes drift { to { transform: translate3d(-6vmax, 4vmax, 0) scale(1.1); } }
@keyframes trip { 0% { width: 8%; } 70%, 100% { width: 92%; } }
@keyframes tripDot { 0% { left: 8%; } 70%, 100% { left: 92%; } }
@keyframes stepIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }
@keyframes stepInBack { from { opacity: 0; transform: translateX(-24px); } to { opacity: 1; transform: none; } }
@keyframes shake { 10%, 90% { transform: translateX(-1px); } 20%, 80% { transform: translateX(2px); } 30%, 50%, 70% { transform: translateX(-4px); } 40%, 60% { transform: translateX(4px); } }
.shake { animation: shake .45s; }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (max-width: 719px) {
  .hv-card { width: 78%; }
  .pv-track { left: 0; width: 92%; }
  .pv-main { inset: 0 6% 22% 0; }
  .pv-code { white-space: nowrap; }
  .parcel-actions .btn { width: 100%; padding: 0 1rem; font-size: .95rem; gap: .5rem; }
  .city text { font-size: 24px; stroke-width: 6px; }
  .city-natl:not(.is-on) text { display: none; }
  .map-legend { position: static; margin: .8rem; border-radius: 10px; box-shadow: none; background: var(--mist); }
}

@media (min-width: 540px) {
  .hv-badge { display: flex; }
  .choice-grid { grid-template-columns: repeat(3, 1fr); }
  .choice-wide { grid-column: auto; }
  .choice-wide > span { flex-direction: column; align-items: flex-start; }
  .choice-vehicles { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .sticky-cta { left: 50%; right: auto; width: min(420px, calc(100% - 1.5rem)); transform: translateX(-50%); }
  .sticky-cta.is-hidden { transform: translate(-50%, calc(100% + 1.5rem)); }
  body.menu-open .sticky-cta { transform: translate(-50%, calc(100% + 1.5rem)); }
}

@media (min-width: 720px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .svc-lg, .svc-wide { grid-column: span 2; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .t-grid { grid-template-columns: repeat(2, 1fr); }
  .t-feature { grid-column: span 2; }
  .intl-perks { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .split-head { grid-template-columns: 1fr auto; align-items: end; }
  .split-head .section-lead { max-width: 42ch; }
  .route-card { flex-basis: 360px; }
  .quote-aside { padding: 2.5rem; }
}

@media (min-width: 960px) {
  :root { --header-h: 84px; }
  .menu-toggle { display: none; }
  .main-nav {
    position: static; inset: auto; flex-direction: row; align-items: center; gap: .2rem; padding: .3rem; background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1); border-radius: 999px; opacity: 1; visibility: visible;
  }
  .main-nav a:not(.btn) { font-family: var(--sans); font-size: .92rem; font-weight: 600; letter-spacing: 0; padding: .55rem 1rem; border-radius: 999px; opacity: 1; transform: none; color: #D6E4FF; transition: background .25s, color .25s; }
  .main-nav a:not(.btn):hover, .main-nav a.is-active { background: rgba(255,255,255,.1); color: #fff; }
  .main-nav a.nav-mobile-only, .main-nav .nav-mobile-actions { display: none; }
  .main-nav a:not(.btn) { min-height: 0; border-bottom: 0; white-space: nowrap; }
  .header-cta { display: inline-flex; }
  .header-wa { display: inline-grid; }

  .hero { padding-top: calc(var(--header-h) + 1.5rem); }
  .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 3rem; }
  .hero-visual { height: min(600px, 64vh); min-height: 480px; }

  .bento { grid-template-columns: repeat(12, 1fr); grid-auto-rows: 290px; }
  .svc { min-height: 0; }
  .svc-lg { grid-column: span 7; grid-row: span 2; }
  .svc-tall { grid-column: span 5; grid-row: span 2; }
  .svc:nth-child(3), .svc:nth-child(4) { grid-column: span 4; }
  .svc-wide { grid-column: span 4; }
  .svc-lg .svc-body { padding: 2.4rem; }
  .svc-lg h3 { font-size: 2.6rem; }

  .fleet-grid { grid-template-columns: repeat(3, 1fr); }
  .parcel-panel { grid-template-columns: 1.05fr .95fr; gap: 3.5rem; }
  .parcel-feats { grid-template-columns: 1fr 1fr; }
  .quote-inner { grid-template-columns: .9fr 1.1fr; gap: 1.5rem; }
  .quote-aside { min-height: 0; padding: 3rem; }
  .why-inner { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .why-sticky { position: sticky; top: calc(var(--header-h) + 2rem); }
  .pillars { gap: 1rem; }
  .pillar { padding: 1.8rem; }
  .intl-head { grid-template-columns: 1.2fr 1fr; gap: 4rem; }
  .coverage-inner { grid-template-columns: .85fr 1.15fr; gap: 4rem; }
  .t-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .t-feature { grid-column: 1; grid-row: span 2; justify-content: space-between; padding: 2.4rem; }
  .t-card:nth-child(4) { grid-column: 2 / span 2; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr .8fr; }
  .routes-wrap { margin-right: calc((100vw - min(100vw, 1280px)) / -2 - var(--gutter)); }

  .sticky-cta { display: none; }
  .float-wa {
    position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 90; display: inline-flex; align-items: center; gap: .6rem;
    height: 58px; padding: 0 1.2rem 0 1rem; border-radius: 999px; background: #25D366; color: #fff; font-weight: 800;
    box-shadow: 0 16px 36px -10px rgba(37,211,102,.65); transition: transform .4s var(--ease-out), opacity .4s;
  }
  .float-wa svg { width: 28px; height: 28px; }
  .float-wa:hover { transform: translateY(-3px) scale(1.03); }
  .float-wa.is-hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }
  .site-footer { padding-bottom: 3rem; }
  .footer-bottom { padding-right: 12rem; }
}

@media (min-width: 1280px) {
  .hero-title { font-size: 5.6rem; }
  .fleet-grid { gap: 1.5rem; }
}

@media (max-width: 380px) {
  .brand-word { font-size: 1.1rem; }
  .brand-mark { width: 42px; height: 36px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .counter input { width: 110px; font-size: 3.2rem; }
}

/* =============================================================
   9. Reduced motion — only intrusive effects
   ============================================================= */
/* =============================================================
   10. Audit refinements — app-grade behavior & sizing
   ============================================================= */
html { -webkit-tap-highlight-color: transparent; }
a, button, input, label, summary { touch-action: manipulation; }
body { text-rendering: optimizeSpeed; }
@media (min-width: 720px) { body { text-rendering: optimizeLegibility; } }
.btn:focus-visible, .icon-btn:focus-visible { outline-offset: 4px; }

/* header: hides on scroll down, returns on scroll up */
.site-header { transition: transform .45s var(--ease-out), background .35s, box-shadow .35s; padding-top: env(safe-area-inset-top); height: calc(var(--header-h) + env(safe-area-inset-top)); }
.site-header.is-away { transform: translateY(-100%); }
body.menu-open .site-header { transform: none; }

/* readable minimums */
.chip-live { font-size: .72rem; }
.vehicle-cat { font-size: .74rem; }
.hv-route small, .hv-side small { font-size: .7rem; }
.why-stats small, .pv-timeline small { font-size: .76rem; }
.muted { font-size: .78rem; }
.cap small, .route-country { font-size: .74rem; }

/* comfortable touch targets */
.svc-link { min-height: 44px; }
.footer-links a, .footer-list a { display: inline-flex; align-items: center; min-height: 40px; }
.footer-links { gap: 0; }
.footer-credits a { display: inline-block; padding: .6rem 0; }
.maps-link { color: var(--cyan); font-weight: 700; }
.quick-picks button, .pax-presets button { min-height: 44px; padding: .55rem 1rem; }
.dest-chips button { min-height: 44px; }
.site-footer .footer-h { color: #fff; font-size: 1rem; margin-bottom: 1rem; font-family: var(--display); letter-spacing: -.01em; }
.site-footer .footer-h.mt { margin-top: 1.6rem; }
.footer-brand .btn-wa { --bh: 46px; }

/* fleet filter: always fully visible on phones */
.fleet-tabs button[aria-pressed="true"] { color: #fff; }
.fleet-tabs button[aria-pressed="true"] span { background: rgba(255,255,255,.2); color: #fff; }

/* hero: LCP text paints immediately (slide only, no fade) */
.hero-title .hero-in { opacity: 1; transform: translateY(60%); animation-duration: .9s; }

/* rails: app-style horizontal carousels on phones */
.rail-dots { display: none; }
@media (max-width: 719px) {
  [data-rail] {
    display: grid !important; grid-auto-flow: column; grid-template-columns: none !important; grid-auto-columns: 84%;
    gap: .85rem !important; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter); margin-inline: calc(var(--gutter) * -1); padding: .25rem var(--gutter) 1rem;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  [data-rail]::-webkit-scrollbar { display: none; }
  [data-rail] > * { scroll-snap-align: start; min-width: 0; }
  [data-rail] > .reveal { opacity: 1; transform: none; }
  .bento .svc { min-height: 420px; }
  .t-grid .t-card { grid-column: auto !important; grid-row: auto !important; }
  .rail-dots { display: flex; justify-content: center; gap: .45rem; margin-top: .25rem; }
  .rail-dots button { width: 28px; height: 28px; display: grid; place-items: center; }
  .rail-dots button::before { content: ""; width: 7px; height: 7px; border-radius: 99px; background: rgba(10,20,51,.18); transition: width .35s var(--ease-out), background .3s; }
  .rail-dots button[aria-current="true"]::before { width: 22px; background: var(--blue-600); }

  .fleet-tabs { display: grid; grid-template-columns: repeat(4, 1fr); width: 100%; }
  .fleet-tabs button { justify-content: center; padding: .7rem .2rem; font-size: .82rem; }
  .fleet-tabs button span { display: none; }

  .hero { padding-top: calc(var(--header-h) + 1.4rem); }
  .hero-glow { animation: none; filter: blur(50px); }
  .hero-visual { height: 330px; }
  .hero-inner { gap: 2.2rem; }
  .section { padding-block: 4rem; }
  .section-head { margin-bottom: 2rem; }
  .why-figure { aspect-ratio: 4/3.4; }
  .final-actions { width: 100%; }
  .final-actions .btn { flex: 1 1 100%; }
}

/* tablet */
@media (min-width: 720px) and (max-width: 959px) {
  .hero-visual { height: 460px; max-width: 640px; }
  .hero-title { font-size: clamp(3rem, 8vw, 4.4rem); }
}

/* desktop hero: 2 lines per phrase max, first screen fits */
@media (min-width: 960px) {
  .hero { min-height: min(100svh, 940px); }
  .hero-inner { grid-template-columns: 1.22fr .78fr; gap: 2.5rem; padding-bottom: 2.5rem; }
  .hero-title { font-size: clamp(3rem, 4.55vw, 4.1rem); }
  .hero-copy { max-width: 760px; }
  .hv-badge { top: 34%; right: -3%; }
  .hero-sub { margin-bottom: 1.6rem; }
  .hero-actions { margin-bottom: 1.8rem; }
  .hero-visual { height: min(540px, 60vh); min-height: 440px; }
  .main-nav a:not(.btn) { padding: .55rem .85rem; }
}
@media (min-width: 960px) and (max-width: 1139px) {
  .main-nav a:not(.btn) { padding: .5rem .6rem; font-size: .86rem; }
  .header-wa { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .site-header { transition: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-glow, .marquee-track, .pv-timeline .is-now i, .pulse-dot::after, .hv-bar, .hv-bus, .city-pulse { animation: none !important; }
}
