/* ==========================================================================
   Quick Buk — design system
   Navy/gold identity taken from the app mark. No framework, no build step.
   ========================================================================== */

/* ------------------------------------------------------------------ tokens */

:root {
  /* Brand */
  --navy-900: #0A1C2C;
  --navy-800: #0F2A40;
  --navy-700: #142F49;
  --navy-600: #1E4568;
  --navy-500: #2A5B85;
  --navy-400: #3D7BAE;

  --gold-300: #FBDC8C;
  --gold-400: #F9D06A;
  --gold-500: #F5C245;
  --gold-600: #ECA62A;
  --gold-700: #C9861A;

  /* Neutrals */
  --ink:       #0E1A26;
  --body:      #40525F;
  --muted:     #6B7F91;
  --line:      #E4EAF0;
  --line-soft: #EFF3F7;
  --surface:   #FFFFFF;
  --surface-2: #F5F8FB;
  --surface-3: #EAF1F7;

  /* Type */
  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;

  --fs-display: clamp(1.95rem, 1.3rem + 2.4vw, 3.1rem);
  --fs-h1:      clamp(1.8rem, 1.3rem + 2vw, 2.65rem);
  --fs-h2:      clamp(1.5rem, 1.2rem + 1.45vw, 2.1rem);
  --fs-h3:      clamp(1.02rem, .96rem + .32vw, 1.18rem);
  --fs-lead:    clamp(.96rem, .92rem + .32vw, 1.1rem);
  --fs-sm:      .875rem;
  --fs-xs:      .775rem;

  /* Space */
  --gap: clamp(1.25rem, .9rem + 1.4vw, 2rem);
  --section-y: clamp(2.6rem, 1.9rem + 2.8vw, 4.25rem);
  --container: 1200px;
  --pad-x: clamp(1.15rem, .6rem + 2.2vw, 2.5rem);

  /* Shape + depth */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  --sh-sm: 0 1px 2px rgba(14, 34, 51, .05), 0 2px 6px rgba(14, 34, 51, .06);
  --sh-md: 0 2px 4px rgba(14, 34, 51, .05), 0 10px 24px rgba(14, 34, 51, .08);
  --sh-lg: 0 4px 8px rgba(14, 34, 51, .05), 0 20px 46px rgba(14, 34, 51, .11);
  --sh-xl: 0 10px 20px rgba(14, 34, 51, .07), 0 36px 76px rgba(14, 34, 51, .15);
  --sh-gold: 0 6px 16px rgba(201, 134, 26, .28), 0 2px 4px rgba(201, 134, 26, .2);

  --ease: cubic-bezier(.22, .68, .32, 1);
}

/* ------------------------------------------------------------------- reset */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: .945rem;
  line-height: 1.58;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis-weight: none;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -.028em;
  margin: 0 0 .55em;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); font-weight: 800; }
h2 { font-size: var(--fs-h2); font-weight: 800; }
h3 { font-size: var(--fs-h3); font-weight: 700; letter-spacing: -.018em; line-height: 1.3; }

p { margin: 0 0 1rem; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-600); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--navy-500); }

img, svg { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--gold-500); color: var(--navy-800); }

:focus-visible {
  outline: 3px solid var(--gold-600);
  outline-offset: 3px;
  border-radius: 6px;
}
:focus:not(:focus-visible) { outline: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------------ layout */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section { padding-block: var(--section-y); }

/* Sections already alternate white/tint; the hairlines give each band a
   defined top and bottom edge so they read as separate at a glance. */
.section--tint {
  background: var(--surface-2);
  border-block: 1px solid var(--line-soft);
}

.section-head { max-width: 44rem; margin: 0 auto clamp(2rem, 1.5rem + 1.8vw, 3rem); text-align: center; }
.section-head p { font-size: var(--fs-lead); color: var(--muted); margin: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-700);
  background: linear-gradient(180deg, #FFF7E4, #FDEFCF);
  border: 1px solid #F6E0AE;
  padding: .42rem .85rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-600);
}
.eyebrow--onDark {
  color: var(--gold-400);
  background: rgba(245, 194, 69, .1);
  border-color: rgba(245, 194, 69, .28);
}

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(292px, 100%), 1fr)); }

/* ----------------------------------------------------------------- buttons */

.btn {
  --btn-bg: var(--navy-800);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display);
  font-size: .975rem; font-weight: 700; letter-spacing: -.005em;
  padding: .92rem 1.6rem;
  min-height: 50px;
  border: 0; border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  cursor: pointer; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), filter .18s var(--ease);
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--gold {
  --btn-bg: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  --btn-fg: var(--navy-800);
  box-shadow: var(--sh-gold);
}
.btn--gold:hover { filter: brightness(1.05); box-shadow: 0 10px 26px rgba(201, 134, 26, .34); }

.btn--dark { box-shadow: 0 6px 18px rgba(15, 42, 64, .26); }
.btn--dark:hover { box-shadow: 0 10px 26px rgba(15, 42, 64, .32); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy-800);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--navy-600); }

.btn--ghostLight {
  --btn-bg: rgba(255, 255, 255, .06);
  --btn-fg: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .26);
}
.btn--ghostLight:hover { --btn-bg: rgba(255, 255, 255, .12); box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .5); }

.btn--sm { min-height: 42px; padding: .6rem 1.15rem; font-size: .9rem; }

/* Store badges */
.stores { display: flex; flex-wrap: wrap; gap: .75rem; }
.store {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: .62rem 1.15rem .62rem 1rem;
  border-radius: 14px;
  background: #0B1826;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .16);
  color: #fff;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.store:hover { color: #fff; transform: translateY(-2px); box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .4); }
.store svg { width: 26px; height: 26px; flex: none; }
.store span { display: block; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; opacity: .72; line-height: 1.35; }
.store strong { display: block; font-family: var(--font-display); font-size: 1.03rem; font-weight: 700; line-height: 1.15; }
.stores--light .store { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line), var(--sh-sm); }
.stores--light .store:hover { color: var(--ink); }

/* Not yet published — badge is informational, not a link. */
.store--soon {
  background: rgba(255, 255, 255, .05);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .14);
  color: #A9BFD1; cursor: default;
}
.store--soon:hover { transform: none; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .14); }
.store--soon strong { color: #D6E2EC; }
.cta__stores { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1.25rem; }

/* -------------------------------------------------------------------- header */

.header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.header::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(14, 34, 51, .08), 0 8px 30px rgba(14, 34, 51, .06);
  opacity: 0; transition: opacity .3s var(--ease);
}
.header.is-stuck::after { opacity: 1; }

.header__inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 66px;
}

.brand { display: inline-flex; align-items: center; gap: .6rem; margin-right: auto; }
.brand img { width: 40px; height: 40px; border-radius: 11px; }
.brand__name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.12rem;
  letter-spacing: -.026em; color: #fff; transition: color .3s var(--ease);
}
.header.is-stuck .brand__name { color: var(--ink); }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  font-size: var(--fs-sm); font-weight: 500;
  color: rgba(255, 255, 255, .82);
  padding: .55rem .8rem; border-radius: var(--r-pill);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a:hover { color: #fff; background: rgba(255, 255, 255, .12); }
.nav a.is-active { color: var(--gold-500); background: rgba(245, 194, 69, .12); }
.header.is-stuck .nav a { color: var(--body); }
.header.is-stuck .nav a:hover { color: var(--navy-800); background: var(--surface-3); }
.header.is-stuck .nav a.is-active { color: var(--navy-800); background: var(--surface-3); }

.header__actions { display: flex; align-items: center; gap: .6rem; margin-left: .5rem; }
.header .btn--ghostLight { transition: all .3s var(--ease); }
.header.is-stuck .btn--ghostLight { --btn-fg: var(--navy-800); box-shadow: inset 0 0 0 1.5px var(--line); }

.burger {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border: 0; border-radius: 13px; cursor: pointer;
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .28);
}
.header.is-stuck .burger { background: var(--surface-2); box-shadow: inset 0 0 0 1.5px var(--line); }
.burger span { display: block; width: 19px; height: 2px; border-radius: 2px; background: #fff; position: relative; transition: background .3s var(--ease); }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 2px; border-radius: 2px; background: inherit;
  transition: transform .3s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.header.is-stuck .burger span, .header.is-stuck .burger span::before, .header.is-stuck .burger span::after { background: var(--ink); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  visibility: hidden; pointer-events: none;
}
.drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer__scrim {
  position: absolute; inset: 0;
  background: rgba(10, 28, 44, .55);
  backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .3s var(--ease);
}
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute; inset: 0 0 0 auto;
  width: min(340px, 86vw);
  background: var(--surface);
  padding: 1.35rem 1.35rem 2rem;
  display: flex; flex-direction: column; gap: .3rem;
  transform: translateX(100%);
  transition: transform .34s var(--ease);
  overflow-y: auto;
}
.drawer.is-open .drawer__panel { transform: none; }
.drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.drawer__close {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 0; border-radius: 12px; background: var(--surface-2); cursor: pointer; color: var(--ink);
}
.drawer__panel a.drawer__link {
  font-family: var(--font-display); font-weight: 600; font-size: 1.06rem;
  color: var(--ink); padding: .82rem .8rem; border-radius: 12px;
}
.drawer__panel a.drawer__link:hover { background: var(--surface-2); }
.drawer__cta { display: grid; gap: .6rem; margin-top: 1.1rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }

/* --------------------------------------------------------------------- hero */

.hero {
  position: relative;
  /* Only needs to clear the 66px fixed header. */
  padding-top: clamp(5.25rem, 4.4rem + 1.9vw, 6.4rem);
  padding-bottom: clamp(3.5rem, 2.7rem + 2.2vw, 4.75rem);
  background: radial-gradient(115% 85% at 18% 12%, var(--navy-600) 0%, var(--navy-700) 42%, var(--navy-900) 100%);
  color: #fff;
  overflow: hidden;
}
.hero__glow {
  position: absolute; width: 780px; height: 780px; right: -220px; top: -180px;
  background: radial-gradient(circle, rgba(245, 194, 69, .16) 0%, rgba(245, 194, 69, 0) 66%);
  pointer-events: none;
}
/* The dashed road echoes the route in the logo. Must sit clear of the stat
   row — at 58px it landed exactly on the label baseline and struck through it. */
.hero__road {
  position: absolute; left: 0; right: 0; bottom: 24px; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(245, 194, 69, .5) 0 44px, transparent 44px 88px);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero__grid {
  display: grid; gap: clamp(2.5rem, 1rem + 4vw, 4rem);
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .92fr);
  align-items: center;
}

.hero h1 {
  font-size: var(--fs-display); font-weight: 800;
  color: #fff; letter-spacing: -.035em; line-height: 1.03;
  margin-bottom: .95rem;
  /* `balance` fights a long compound word here and forces a 3-line break. */
  text-wrap: normal;
}
.hero h1 em { font-style: normal; color: var(--gold-500); display: block; }
.hero__lead {
  font-size: var(--fs-lead); color: #B9CCDC; max-width: 33rem; margin-bottom: 1.6rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.85rem; }

/* Faint technical grid, masked so it fades out at the edges rather than
   stopping abruptly. */
.hero__pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(78% 68% at 46% 42%, #000 0%, transparent 76%);
          mask-image: radial-gradient(78% 68% at 46% 42%, #000 0%, transparent 76%);
}

.hero__art { position: relative; }

.hero__stage { position: relative; max-width: 520px; margin-inline: auto; }

.hero__map {
  width: 100%; height: auto; display: block;
  border-radius: 22px;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, .06) inset,
    0 30px 70px rgba(4, 16, 27, .5);
}
/* Marching dashes read as a live, moving route. */
.hero__route { animation: route-flow 2.4s linear infinite; }
@keyframes route-flow { to { stroke-dashoffset: -38; } }

.hero__float {
  position: absolute;
  display: flex; align-items: center; gap: .65rem;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-radius: 14px;
  padding: .68rem .9rem;
  box-shadow: 0 14px 34px rgba(4, 16, 27, .34);
  animation: float-bob 5.5s ease-in-out infinite;
}
.hero__float strong {
  display: block; font-family: var(--font-display);
  color: var(--ink); font-size: .85rem; line-height: 1.25;
}
.hero__float span { font-size: .715rem; color: var(--muted); }

/* Sit these on the empty diagonal. The route runs bottom-left to top-right, so
   anchoring them top-left / bottom-right keeps both endpoint pins visible. */
.hero__float--seat { top: 6%; left: -7%; }
.hero__float--live { bottom: 7%; right: -6%; animation-delay: -2.6s; }

.hero__float-icon {
  flex: none; width: 28px; height: 28px; border-radius: 9px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  color: var(--navy-800);
}
.hero__float-icon svg { width: 15px; height: 15px; }

.hero__pulse {
  flex: none; position: relative;
  width: 10px; height: 10px; border-radius: 50%;
  background: #17A05B;
}
.hero__pulse::after {
  content: ""; position: absolute; inset: -5px;
  border-radius: 50%; border: 2px solid #17A05B;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(.6); opacity: .9; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__route, .hero__float, .hero__pulse::after { animation: none; }
}

@media (max-width: 480px) {
  .hero__float--seat { right: 0; top: 4%; }
  .hero__float--live { left: 0; bottom: 4%; }
  .hero__float span { display: none; }
}

/* Columns are sized to their content (`auto`), not equal 1fr tracks — equal
   tracks were too narrow for "Air-conditioned fleet" and broke it over two
   lines. Falls back to a balanced 2x2 before the row would ever overflow. */
.trust {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: start;
  gap: 1.15rem 2rem;
  padding-top: 1.55rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
@media (min-width: 1180px) {
  .trust { grid-template-columns: repeat(4, auto); }
}
.trust div strong, .trust div span { white-space: nowrap; }
.trust div strong {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.3rem + 1.1vw, 2.1rem); font-weight: 800;
  color: var(--gold-500); line-height: 1.1; letter-spacing: -.03em;
}
.trust div span { font-size: var(--fs-sm); color: #9FB6C9; }

/* ------------------------------------------------------------------- cards */

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 1.2rem + .9vw, 2.1rem);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: var(--fs-sm); margin: 0; }

.card__icon {
  width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center;
  margin-bottom: 1.15rem;
  background: linear-gradient(180deg, var(--navy-600), var(--navy-800));
  color: var(--gold-500);
  box-shadow: 0 8px 18px rgba(15, 42, 64, .22);
}
.card__icon svg { width: 26px; height: 26px; }

/* -------------------------------------------------------- service cards */
/* Compact, icon-led. Restrained on rest; the gold only arrives on hover. */

/* 300px min keeps this at 3 columns on desktop, so six cards read as a clean
   3x2 block rather than an unbalanced 4+2. */
.grid--services { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }

.service {
  padding: 1.55rem 1.5rem 1.65rem;
  border-radius: var(--r-md);
  overflow: hidden;
}
.service::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-600));
  transform: scaleX(0); transform-origin: left;
  transition: transform .42s var(--ease);
}
.service:hover::after { transform: scaleX(1); }
.service:hover { transform: translateY(-4px); }

.service__icon {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 15px;
  display: grid; place-items: center;
  background: linear-gradient(155deg, var(--navy-600) 0%, var(--navy-800) 62%, var(--navy-900) 100%);
  color: var(--gold-500);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    0 6px 14px rgba(10, 28, 44, .22);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service__icon svg { width: 24px; height: 24px; }

.service:hover .service__icon {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .22),
    0 10px 22px rgba(10, 28, 44, .3),
    0 0 0 4px rgba(245, 194, 69, .15);
}

.service h3 { font-size: 1.02rem; margin: 1.05rem 0 .38rem; }
.service p { font-size: .895rem; line-height: 1.62; }

/* --------------------------------------------------------------------- steps */

.steps { counter-reset: step; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 38px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold-500) 0 12px, transparent 12px 24px);
  opacity: .55;
}
.step { position: relative; text-align: center; padding-inline: .5rem; }
.step__num {
  counter-increment: step;
  width: 76px; height: 76px; margin: 0 auto 1.35rem;
  display: grid; place-items: center; position: relative;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--navy-600), var(--navy-800));
  box-shadow: 0 12px 26px rgba(15, 42, 64, .26), 0 0 0 8px var(--surface);
  color: var(--gold-500);
}
.section--tint .step__num { box-shadow: 0 12px 26px rgba(15, 42, 64, .26), 0 0 0 8px var(--surface-2); }
.step__num::after {
  content: counter(step, decimal-leading-zero);
  position: absolute; bottom: -6px; right: -4px;
  font-family: var(--font-display); font-size: .72rem; font-weight: 800;
  color: var(--navy-800); background: var(--gold-500);
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 3px 8px rgba(201, 134, 26, .4);
}
.step__num svg { width: 30px; height: 30px; }
.step p { color: var(--muted); font-size: var(--fs-sm); margin: 0; }

/* ------------------------------------------------------------------ feature */

.feature {
  display: flex; gap: 1.15rem; align-items: flex-start;
  padding: 1.5rem; border-radius: var(--r-md);
  transition: background .28s var(--ease);
}
.feature:hover { background: var(--surface); box-shadow: var(--sh-md); }
.section:not(.section--tint) .feature:hover { background: var(--surface-2); box-shadow: none; }
.feature__icon {
  flex: none; width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #FFF3D8, #FBE2AE);
  color: var(--gold-700);
  box-shadow: inset 0 0 0 1px #F5DEAE;
}
.feature__icon svg { width: 23px; height: 23px; }
.feature h3 { font-size: 1.08rem; margin-bottom: .35rem; }
.feature p { color: var(--muted); font-size: var(--fs-sm); margin: 0; }

/* --------------------------------------------------------------------- about */

.split {
  display: grid; gap: clamp(2.5rem, 1.4rem + 4vw, 4.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  align-items: center;
}
.split__art { position: relative; }
.split__art img { width: 100%; border-radius: var(--r-xl); }

/* Value points: a 2x2 grid of icon + label reads more considered than a
   flat bulleted checklist. */
.valuegrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(215px, 100%), 1fr));
  gap: 1.15rem 1.4rem;
  margin-top: 1.75rem;
}
.value { display: flex; gap: .75rem; align-items: flex-start; }
.value__icon {
  flex: none; width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #FFF3D8, #FBE2AE);
  color: var(--gold-700);
  box-shadow: inset 0 0 0 1px #F5DEAE;
}
.value__icon svg { width: 17px; height: 17px; }
.value strong {
  display: block; font-family: var(--font-display);
  color: var(--ink); font-size: .93rem; margin-bottom: .12rem;
}
.value p { font-size: var(--fs-xs); color: var(--muted); margin: 0; line-height: 1.55; }

/* ---------------------------------------------------------- about showcase */
/* Replaces the stock illustration: an on-brand panel that shows the actual
   service (route, guarantees, cities) instead of generic clip art. */

.showcase {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(1.35rem, 1.05rem + 1vw, 1.85rem);
  background: radial-gradient(125% 105% at 18% 0%, var(--navy-600) 0%, var(--navy-800) 55%, var(--navy-900) 100%);
  box-shadow: var(--sh-xl);
  color: #B9CCDC;
}
.showcase::after {
  content: ""; position: absolute; width: 340px; height: 340px; right: -130px; top: -150px;
  background: radial-gradient(circle, rgba(245, 194, 69, .17) 0%, rgba(245, 194, 69, 0) 68%);
  pointer-events: none;
}
.showcase > * { position: relative; }

.showcase__head {
  display: flex; align-items: center; gap: .7rem;
  padding-bottom: 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.showcase__head img { width: 38px; height: 38px; border-radius: 10px; flex: none; }
.showcase__head strong {
  display: block; font-family: var(--font-display);
  color: #fff; font-size: .95rem; line-height: 1.25;
}
.showcase__head .sub { font-size: var(--fs-xs); color: #8FA7BC; }

.chip {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: var(--fs-xs); font-weight: 600;
  color: var(--gold-500);
  background: rgba(245, 194, 69, .12);
  border: 1px solid rgba(245, 194, 69, .3);
  padding: .28rem .62rem; border-radius: var(--r-pill);
}
.chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); }

.route { padding: 1.15rem 0; }
.route__stop { display: flex; gap: .85rem; align-items: flex-start; }
.route__dot {
  flex: none; width: 12px; height: 12px; border-radius: 50%; margin-top: 4px;
  background: var(--gold-500); box-shadow: 0 0 0 4px rgba(245, 194, 69, .16);
}
.route__dot--end { background: #fff; box-shadow: 0 0 0 4px rgba(255, 255, 255, .14); }
.route__stop strong {
  display: block; font-family: var(--font-display);
  color: #fff; font-size: .92rem; line-height: 1.3;
}
.route__stop span { font-size: var(--fs-xs); color: #8FA7BC; }

.route__mid {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem 0 .55rem 3px; margin-left: 2px;
}
.route__track {
  flex: 1; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(245, 194, 69, .55) 0 7px, transparent 7px 14px);
}
.route__van { flex: none; width: 24px; height: 24px; color: var(--gold-500); }

.showcase__facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.showcase__facts div {
  text-align: center;
  background: rgba(255, 255, 255, .05);
  border-radius: 12px; padding: .7rem .35rem;
}
.showcase__facts svg { width: 18px; height: 18px; color: var(--gold-500); margin: 0 auto .35rem; }
.showcase__facts span { display: block; font-size: var(--fs-xs); color: #C3D3E0; line-height: 1.3; }

.showcase__cities { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .85rem; }
.showcase__cities span {
  font-size: var(--fs-xs); color: #93AABD;
  background: rgba(255, 255, 255, .06);
  border-radius: var(--r-pill); padding: .3rem .65rem;
}

/* ---------------------------------------------------------- audience tabs */

.tabs__list {
  display: flex; flex-wrap: wrap; gap: .35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: .4rem;
  width: max-content; max-width: 100%;
  margin: 0 auto clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem);
  box-shadow: var(--sh-sm);
}
.tab {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-size: var(--fs-sm); font-weight: 600;
  color: var(--muted);
  background: transparent; border: 0; cursor: pointer;
  padding: .62rem 1.15rem; border-radius: var(--r-pill);
  transition: color .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease);
}
.tab svg { width: 17px; height: 17px; }
.tab:hover { color: var(--navy-700); background: var(--surface-2); }
.tab.is-active {
  color: #fff;
  background: linear-gradient(180deg, var(--navy-600), var(--navy-800));
  box-shadow: 0 4px 12px rgba(15, 42, 64, .26);
}
.tab.is-active svg { color: var(--gold-500); }

.tabpanel[hidden] { display: none; }
.tabpanel { animation: tab-in .35s var(--ease) both; }
@keyframes tab-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.tabpanel:focus-visible { outline: 3px solid var(--gold-600); outline-offset: 6px; border-radius: var(--r-lg); }

.tabpanel__grid {
  display: grid; gap: clamp(1.75rem, 1.2rem + 2.4vw, 3rem);
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  box-shadow: var(--sh-md);
}
.tabpanel__intro h3 { font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem); margin-bottom: .6rem; }
.tabpanel__intro p { color: var(--muted); font-size: var(--fs-sm); margin-bottom: 1.35rem; }

.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 1.1rem 1.5rem; }
.benefits li { display: flex; gap: .7rem; align-items: flex-start; }
.benefits__tick {
  flex: none; width: 22px; height: 22px; border-radius: 50%; margin-top: 2px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #FFF3D8, #FBE2AE);
  color: var(--gold-700);
  box-shadow: inset 0 0 0 1px #F5DEAE;
}
.benefits__tick svg { width: 12px; height: 12px; }
.benefits strong {
  display: block; font-family: var(--font-display);
  color: var(--ink); font-size: .92rem; margin-bottom: .1rem;
}
.benefits p { font-size: var(--fs-xs); color: var(--muted); margin: 0; line-height: 1.55; }

@media (max-width: 860px) {
  .tabs__list { width: 100%; justify-content: center; }
  .tab { flex: 1 1 auto; justify-content: center; padding: .6rem .75rem; }
  .tabpanel__grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------- testimonial */

.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 1.3rem + 1.2vw, 2.4rem);
  box-shadow: var(--sh-sm);
}
.quote__stars { display: flex; gap: 3px; color: var(--gold-500); margin-bottom: 1.1rem; }
.quote__stars svg { width: 19px; height: 19px; }
.quote blockquote {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: 1.12rem; font-weight: 500; line-height: 1.6;
  color: var(--ink); letter-spacing: -.012em;
}
.quote__who { display: flex; align-items: center; gap: .85rem; }
.quote__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(180deg, var(--navy-600), var(--navy-800));
  color: var(--gold-500);
  font-family: var(--font-display); font-weight: 800; font-size: 1.02rem;
}
.quote__who strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: .97rem; }
.quote__who span { font-size: var(--fs-xs); color: var(--muted); }

/* ---------------------------------------------------------------------- faq */

.faq { max-width: 52rem; margin-inline: auto; display: grid; gap: .8rem; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .24s var(--ease), box-shadow .24s var(--ease);
}
.faq details[open] { border-color: transparent; box-shadow: var(--sh-md); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.4rem;
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  color: var(--ink); letter-spacing: -.014em;
}
.faq summary::-webkit-details-marker { display: none; }
/* Chevron that flips to point up when the answer is open. */
.faq summary::after {
  content: ""; flex: none; width: 28px; height: 28px;
  border-radius: 50%;
  background-color: var(--surface-3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23142F49' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.faq summary:hover::after { background-color: #DDE7F0; }
.faq details[open] summary::after {
  transform: rotate(180deg);
  background-color: var(--navy-800);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5C245' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}
.faq .faq__answer { padding: 0 1.4rem 1.35rem; color: var(--muted); font-size: var(--fs-sm); }

/* ---------------------------------------------------------------------- cta */

.cta {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 1.8rem + 3.4vw, 4.25rem);
  background: radial-gradient(110% 130% at 12% 8%, var(--navy-600) 0%, var(--navy-700) 45%, var(--navy-900) 100%);
  color: #fff;
  text-align: center;
}
.cta__glow {
  position: absolute; width: 620px; height: 620px; right: -180px; bottom: -300px;
  background: radial-gradient(circle, rgba(245, 194, 69, .2) 0%, rgba(245, 194, 69, 0) 68%);
}
/* Must exclude the glow: a bare `.cta > *` outranks `.cta__glow` and would
   drop the 620px decorative div back into flow as a huge empty block. */
.cta > :not(.cta__glow) { position: relative; }
.cta h2 { color: #fff; }
.cta p { color: #B9CCDC; font-size: var(--fs-lead); max-width: 40rem; margin-inline: auto; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2rem; }

/* ------------------------------------------------------------------ contact */

.contact { display: grid; gap: clamp(2rem, 1.2rem + 3vw, 3.5rem); grid-template-columns: repeat(auto-fit, minmax(min(310px, 100%), 1fr)); }
/* min-width:0 everywhere: grid items default to min-width:auto, and a <select>
   reports its longest option as its min-content width — which made the enquiry
   dropdown 36px wider than every other field and pushed it off narrow screens. */
.contact, .contact > *, .field { min-width: 0; }
.field { display: grid; gap: .45rem; margin-bottom: 1.05rem; }
.field input, .field textarea, .field select { width: 100%; min-width: 0; max-width: 100%; }
.field label { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); font-family: var(--font-display); }
.field input, .field textarea, .field select {
  font: inherit; font-size: .97rem;
  padding: .82rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select {
  appearance: none; -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.6rem;
  /* Chevron drawn as a background image so the control stays consistent
     across browsers instead of using each platform's native arrow. */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7F91' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 17px 17px;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--navy-500);
  box-shadow: 0 0 0 4px rgba(30, 69, 104, .12);
}
.field input::placeholder, .field textarea::placeholder { color: #9BAAB8; }

.contact__aside { display: grid; gap: 1rem; align-content: start; }
.contact__item {
  display: flex; gap: .95rem; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.25rem;
}
.contact__item svg { flex: none; width: 22px; height: 22px; color: var(--gold-600); margin-top: 3px; }
.contact__item strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: .97rem; margin-bottom: .15rem; }
.contact__item a, .contact__item span { font-size: var(--fs-sm); color: var(--muted); }
.contact__item a:hover { color: var(--navy-600); }

/* Honeypot — visually gone but still submitted, so bots that fill every field
   give themselves away. Not display:none, which some bots skip. */
.hp {
  position: absolute !important;
  left: -9999px; width: 1px; height: 1px;
  overflow: hidden; opacity: 0; pointer-events: none;
}

.form-note { font-size: var(--fs-xs); color: var(--muted); margin-top: .9rem; }
.form-status { font-size: var(--fs-sm); margin-top: .9rem; font-weight: 600; }
.form-status[data-tone="ok"] { color: #1B7F4B; }
.form-status[data-tone="err"] { color: #C0392B; }

/* ------------------------------------------------------------------- footer */

.footer {
  background: var(--navy-900);
  color: #93AABD;
  padding-block: clamp(3.5rem, 2.5rem + 3vw, 5rem) 2rem;
}
.footer__grid {
  display: grid; gap: clamp(2rem, 1.2rem + 3vw, 3.5rem);
  /* minmax(260px,…) + auto-fit minmax(150px,…) has a hard 410px floor, which
     overflowed any phone narrower than that and forced the whole page to
     scroll sideways. Collapse the tracks before that floor is reached. */
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
@media (max-width: 780px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 430px) {
  .footer__grid { grid-template-columns: 1fr; gap: 1.75rem; }
}
.footer .brand__name { color: #fff; }
.footer__about { font-size: var(--fs-sm); margin-top: 1.1rem; max-width: 24rem; }
.footer h4 {
  font-family: var(--font-display); color: #fff;
  font-size: .82rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  margin: 0 0 1.15rem;
}
.footer li { margin-bottom: .68rem; }
.footer a { color: #93AABD; font-size: var(--fs-sm); }
.footer a:hover { color: var(--gold-500); }

.social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.social a {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .07);
  color: #C3D3E0;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.social a:hover { background: var(--gold-500); color: var(--navy-800); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; }

.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  padding-top: 1.75rem; font-size: var(--fs-xs);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }

/* -------------------------------------------------------- legal documents */

.docwrap {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  gap: clamp(2rem, 1.4rem + 2.6vw, 3.5rem);
  align-items: start;
}
.doc__toc {
  position: sticky; top: 96px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.25rem;
}
.doc__toc h2 {
  font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .9rem;
}
.doc__toc ol { list-style: none; counter-reset: toc; display: grid; gap: .1rem; }
.doc__toc a {
  counter-increment: toc;
  display: block; font-size: var(--fs-xs); color: var(--body);
  padding: .38rem .5rem; border-radius: 8px; line-height: 1.4;
}
.doc__toc a::before { content: counter(toc) ". "; color: var(--gold-700); font-weight: 700; }
.doc__toc a:hover { background: var(--surface-3); color: var(--navy-800); }

.doc { max-width: 46rem; }
.doc__updated {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: var(--fs-xs); color: var(--muted);
  background: var(--surface-2); border: 1px solid var(--line);
  padding: .35rem .75rem; border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
}
.doc h2 {
  counter-increment: sec;
  font-size: clamp(1.15rem, 1.05rem + .5vw, 1.4rem);
  margin: 2.4rem 0 .7rem; scroll-margin-top: 96px;
}
.doc h2:first-of-type { margin-top: 0; }
.doc h2::before { content: counter(sec) ". "; color: var(--gold-700); }
.doc { counter-reset: sec; }
.doc h3 { font-size: 1rem; margin: 1.4rem 0 .4rem; }
.doc p, .doc li { font-size: var(--fs-sm); color: var(--body); }
.doc ul { list-style: disc; padding-left: 1.2rem; margin: 0 0 1rem; display: grid; gap: .4rem; }
.doc a { color: var(--navy-600); text-decoration: underline; text-underline-offset: 3px; }

.doc__note {
  background: #FFF8E8;
  border: 1px solid #F3DFAE;
  border-left: 4px solid var(--gold-600);
  border-radius: var(--r-sm);
  padding: 1rem 1.15rem;
  margin: 1.5rem 0;
}
.doc__note strong { color: var(--navy-800); font-family: var(--font-display); }
.doc__note p { font-size: var(--fs-xs); margin: .3rem 0 0; color: var(--body); }

.doc__contact {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.25rem 1.4rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .docwrap { grid-template-columns: 1fr; }
  .doc__toc { position: static; }
}

/* ------------------------------------------------------------------- legal */

.legal { max-width: 48rem; }
.legal h3 { margin-top: 2rem; }
.legal h3:first-of-type { margin-top: 0; }

dialog.modal {
  width: min(680px, calc(100vw - 2rem));
  max-height: min(80vh, 780px);
  border: 0; border-radius: var(--r-lg); padding: 0;
  box-shadow: var(--sh-xl);
  color: var(--body);
}
dialog.modal::backdrop { background: rgba(10, 28, 44, .6); backdrop-filter: blur(4px); }
.modal__head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem 1.6rem; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: var(--surface); border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.modal__head h3 { margin: 0; }
.modal__body { padding: 1.6rem; overflow-y: auto; }
.modal__body h4 { font-family: var(--font-display); color: var(--ink); font-size: 1rem; margin: 1.5rem 0 .4rem; }
.modal__body h4:first-child { margin-top: 0; }
.modal__body p { font-size: var(--fs-sm); color: var(--muted); }

/* ------------------------------------------------------------------- reveal */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* -------------------------------------------------------------- breakpoints */

@media (max-width: 1000px) {
  .nav, .header__actions .btn { display: none; }
  .burger { display: inline-flex; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions, .trust { justify-content: center; }
  /* Heading leads on mobile; the route visual follows it. */
  .hero__art { max-width: 400px; margin-inline: auto; }
  .steps::before { display: none; }
}

@media (max-width: 640px) {
  .trust { gap: 1.25rem 1.75rem; }
  .footer__bottom { flex-direction: column; text-align: center; align-items: center; }
  .footer__bottom nav { justify-content: center; }
  .btn { width: 100%; }
  .hero__actions .btn, .cta__actions .btn { width: auto; flex: 1 1 auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

@media print {
  .header, .drawer, .footer, .cta { display: none !important; }
  body { color: #000; }
}
