/* ============================================================
   HONK — Design System
   Static site for honktravel.com
   No external dependencies. No tracking. No analytics.
   System fonts only — no downloads, no external requests.
   Tokens aligned to DesignTokens.swift (ADR-038).
   ============================================================ */

/* ── Custom Properties ── */
:root {
  --c-bg:           #090b0e;
  --c-surface:      #0f1218;
  --c-surface-2:    #161a22;
  --c-surface-3:    #1c2028;
  --c-border:       rgba(255,255,255,0.06);
  --c-border-mid:   rgba(255,255,255,0.11);
  --c-border-hi:    rgba(255,255,255,0.18);

  --c-primary:      #ffffff;
  --c-secondary:    rgba(255,255,255,0.58);
  --c-tertiary:     rgba(255,255,255,0.32);
  --c-muted:        rgba(255,255,255,0.18);

  --c-accent:       #3B82F6;
  --c-accent-hover: #60A5FA;
  --c-accent-soft:  rgba(59,130,246,0.14);
  --c-accent-glow:  rgba(59,130,246,0.07);

  --c-teal:         #14B8A6;
  --c-teal-soft:    rgba(20,184,166,0.12);
  --c-pink:         #EC4899;
  --c-pink-soft:    rgba(236,72,153,0.12);

  --c-green:        #34c759;
  --c-green-soft:   rgba(52,199,89,0.12);
  --c-amber:        #ff9f0a;
  --c-amber-soft:   rgba(255,159,10,0.12);
  --c-red:          #ff3b30;
  --c-red-soft:     rgba(255,59,48,0.12);

  --c-holiday:      #ff9f0a;
  --c-work:         #5e6ad2;
  --c-workation:    #30d158;

  --sp-1:  4px;   --sp-2:  8px;   --sp-3:  12px;
  --sp-4:  16px;  --sp-5:  20px;  --sp-6:  24px;
  --sp-8:  32px;  --sp-10: 40px;  --sp-12: 48px;
  --sp-16: 64px;  --sp-20: 80px;  --sp-24: 96px;
  --sp-32: 128px;

  --fs-xs:   11px;  --fs-sm:   13px;  --fs-base: 15px;
  --fs-md:   17px;  --fs-lg:   20px;  --fs-xl:   24px;
  --fs-2xl:  30px;  --fs-3xl:  38px;  --fs-4xl:  50px;
  --fs-5xl:  64px;

  --ff-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  --ff-body:    -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  --ff-mono:    'SF Mono', ui-monospace, monospace;

  --r-sm:   8px;   --r-md:   12px;  --r-lg:   16px;
  --r-xl:   16px;  --r-2xl:  16px;  --r-full: 9999px;

  --shadow-sm:     0 1px 2px rgba(0,0,0,0.20);
  --shadow-md:     0 2px 8px rgba(0,0,0,0.30), 0 1px 3px rgba(0,0,0,0.20);
  --shadow-lg:     0 6px 16px rgba(0,0,0,0.40), 0 2px 6px rgba(0,0,0,0.25);
  --shadow-xl:     0 12px 32px rgba(0,0,0,0.50), 0 4px 12px rgba(0,0,0,0.30);
  --shadow-accent: 0 0 24px rgba(59,130,246,0.18);

  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 400ms ease;

  --max-w:    1100px;
  --max-w-sm: 680px;
  --max-w-md: 820px;
  --nav-h:    60px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-size-adjust: 100%; }
body {
  background: var(--c-bg);
  color: var(--c-primary);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  min-height: 100vh;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.12; letter-spacing: -0.01em; }
h1 { font-size: clamp(var(--fs-3xl), 6vw, var(--fs-5xl)); }
h2 { font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl)); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p  { color: var(--c-secondary); line-height: 1.7; }

.text-primary   { color: var(--c-primary)   !important; }
.text-secondary { color: var(--c-secondary) !important; }
.text-tertiary  { color: var(--c-tertiary)  !important; }
.text-accent    { color: var(--c-accent)    !important; }
.text-green     { color: var(--c-green)     !important; }
.text-amber     { color: var(--c-amber)     !important; }

/* ── Layout ── */
.container     { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6); }
.container--sm { max-width: var(--max-w-sm); }
.container--md { max-width: var(--max-w-md); }

.section       { padding: var(--sp-24) 0; }
.section--sm   { padding: var(--sp-16) 0; }
.section--xs   { padding: var(--sp-12) 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }

.flex            { display: flex; }
.flex-col        { display: flex; flex-direction: column; }
.items-center    { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2  { gap: var(--sp-2); }
.gap-3  { gap: var(--sp-3); }
.gap-4  { gap: var(--sp-4); }
.gap-6  { gap: var(--sp-6); }
.gap-8  { gap: var(--sp-8); }
.text-center { text-align: center; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center;
  background: rgba(9,11,14,0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--c-border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6);
}
.nav__logo {
  font-family: var(--ff-display); font-size: var(--fs-xl);
  letter-spacing: -0.02em; color: var(--c-primary); line-height: 1;
  transition: opacity var(--t-fast);
}
.nav__logo:hover { opacity: 0.75; }
.nav__links { display: flex; align-items: center; gap: var(--sp-8); }
.nav__link {
  font-size: var(--fs-sm); font-weight: 500; color: var(--c-secondary);
  letter-spacing: 0.01em; transition: color var(--t-fast);
}
.nav__link:hover, .nav__link--active { color: var(--c-primary); }
.nav__cta { margin-left: var(--sp-4); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2); padding: 10px var(--sp-5); border-radius: var(--r-full);
  font-size: var(--fs-sm); font-weight: 600; letter-spacing: 0.01em;
  transition: all var(--t-fast); white-space: nowrap; cursor: pointer; text-decoration: none;
}
.btn--primary { background: var(--c-accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn--primary:hover { background: var(--c-accent-hover); transform: translateY(-1px); box-shadow: 0 0 40px rgba(59,130,246,0.35); }
.btn--primary:active { transform: translateY(0); }
.btn--secondary { background: var(--c-surface-2); color: var(--c-primary); border: 1px solid var(--c-border-mid); }
.btn--secondary:hover { background: var(--c-surface-3); border-color: var(--c-border-hi); }
.btn--ghost { background: transparent; color: var(--c-secondary); border: 1px solid var(--c-border-mid); }
.btn--ghost:hover { color: var(--c-primary); border-color: var(--c-border-hi); background: var(--c-surface-2); }
.btn--lg { padding: 14px var(--sp-8); font-size: var(--fs-base); }
.btn--sm { padding: 6px var(--sp-4); font-size: var(--fs-xs); }
.btn--full { width: 100%; }

/* ── Cards ── */
.card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: var(--sp-6);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.card:hover { border-color: var(--c-border-mid); box-shadow: var(--shadow-md); }
.card--elevated { background: var(--c-surface-2); box-shadow: var(--shadow-md); }
.card--accent {
  border-color: var(--c-accent-soft);
  background: linear-gradient(135deg, var(--c-surface) 0%, rgba(59,130,246,0.04) 100%);
}

/* App-style booking card (ADR-065 two-column) */
.booking-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: var(--sp-5) var(--sp-6);
  display: grid; grid-template-columns: 1fr auto; gap: var(--sp-4); align-items: start;
  transition: border-color var(--t-base);
}
.booking-card:hover { border-color: var(--c-border-mid); }
.booking-card__right { text-align: right; color: var(--c-tertiary); font-size: var(--fs-xs); line-height: 1.5; }
.booking-card__airline { font-size: var(--fs-xs); color: var(--c-tertiary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--sp-1); }
.booking-card__route { font-family: var(--ff-display); font-size: var(--fs-xl); color: var(--c-primary); line-height: 1.1; margin-bottom: var(--sp-2); }
.booking-card__meta { font-size: var(--fs-sm); color: var(--c-secondary); }

/* ── Badges ── */
.badge {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  padding: 3px 10px; border-radius: var(--r-full);
  font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.02em; white-space: nowrap;
}
.badge--default { background: var(--c-surface-3); color: var(--c-secondary); border: 1px solid var(--c-border-mid); }
.badge--accent  { background: var(--c-accent-soft); color: var(--c-accent); }
.badge--green   { background: var(--c-green-soft); color: var(--c-green); }
.badge--amber   { background: var(--c-amber-soft); color: var(--c-amber); }
.badge--red     { background: var(--c-red-soft); color: var(--c-red); }
.badge--teal    { background: var(--c-teal-soft); color: var(--c-teal); }
.badge--pink    { background: var(--c-pink-soft); color: var(--c-pink); }

/* ── Section headers ── */
.section-label {
  display: inline-block; font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-accent); margin-bottom: var(--sp-4);
}
.section-header { margin-bottom: var(--sp-12); }
.section-header h2 { margin-bottom: var(--sp-4); }
.section-header p { font-size: var(--fs-md); max-width: 52ch; }
.section-header--center { text-align: center; }
.section-header--center p { margin: 0 auto; }

/* ── Divider ── */
.divider { height: 1px; background: var(--c-border); margin: var(--sp-12) 0; }

/* ── Icon wrap ── */
.icon-wrap {
  width: 40px; height: 40px; border-radius: var(--r-lg);
  background: var(--c-surface-3); border: 1px solid var(--c-border-mid);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px;
}
.icon-wrap--accent { background: var(--c-accent-soft); border-color: rgba(59,130,246,0.2); }
.icon-wrap--teal   { background: var(--c-teal-soft); border-color: rgba(20,184,166,0.2); }
.icon-wrap--pink   { background: var(--c-pink-soft); border-color: rgba(236,72,153,0.2); }
.icon-wrap--lg { width: 52px; height: 52px; border-radius: var(--r-xl); font-size: 22px; }

/* ── Booking type SVG icons ── */
.booking-type-item__icon img { width: 24px; height: 24px; filter: invert(1) opacity(0.85); }

/* ── App icon ── */
.app-icon { border-radius: 22.37%; /* Apple's superellipse approximation */ }

/* ── Pricing ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); align-items: start;
}
.pricing-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-2xl); padding: var(--sp-8);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.pricing-card--featured {
  background: var(--c-surface-2); border-color: var(--c-accent);
  box-shadow: var(--shadow-accent), var(--shadow-lg); position: relative;
}
.pricing-card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--c-accent); color: #fff; font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 14px;
  border-radius: var(--r-full); white-space: nowrap;
}
.pricing-card__tier { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-tertiary); margin-bottom: var(--sp-4); }
.pricing-card__price { font-family: var(--ff-display); font-size: var(--fs-4xl); line-height: 1; margin-bottom: var(--sp-1); }
.pricing-card__price sup { font-size: var(--fs-lg); vertical-align: super; font-family: var(--ff-body); font-weight: 300; }
.pricing-card__cadence { font-size: var(--fs-sm); color: var(--c-tertiary); margin-bottom: var(--sp-2); }
.pricing-card__alt { font-size: var(--fs-sm); color: var(--c-tertiary); margin-bottom: var(--sp-6); }
.pricing-card__desc { font-size: var(--fs-sm); color: var(--c-secondary); margin-bottom: var(--sp-6); line-height: 1.6; }
.pricing-card__cta { width: 100%; margin-bottom: var(--sp-6); }
.pricing-card__features { display: flex; flex-direction: column; gap: var(--sp-3); padding-top: var(--sp-6); border-top: 1px solid var(--c-border); }
.pricing-feature { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: var(--fs-sm); color: var(--c-secondary); }
.pricing-feature__check { color: var(--c-green); flex-shrink: 0; margin-top: 2px; }
.pricing-feature__cross { color: var(--c-muted); flex-shrink: 0; margin-top: 2px; }

/* ── Comparison table ── */
.compare-table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.compare-table th, .compare-table td { padding: var(--sp-4) var(--sp-5); text-align: left; border-bottom: 1px solid var(--c-border); }
.compare-table th { font-weight: 600; color: var(--c-tertiary); font-size: var(--fs-xs); letter-spacing: 0.06em; text-transform: uppercase; background: var(--c-surface); }
.compare-table td { color: var(--c-secondary); }
.compare-table td:first-child { color: var(--c-primary); font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--c-surface-2); }
.compare-table .highlight { color: var(--c-green) !important; font-weight: 600; }
.compare-table .honk-col { background: rgba(59,130,246,0.04); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: var(--fs-md); font-weight: 500; color: var(--c-primary);
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4);
  padding: var(--sp-5) 0; list-style: none; cursor: pointer;
}
.faq-q::marker, .faq-q::-webkit-details-marker { display: none; }
.faq-icon { color: var(--c-tertiary); font-size: var(--fs-lg); flex-shrink: 0; line-height: 1; transition: transform var(--t-fast); }
details[open] > .faq-q .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: var(--fs-base); color: var(--c-secondary); line-height: 1.7; padding-bottom: var(--sp-5); }

/* ── Route ── */
.route { font-family: var(--ff-mono); font-size: var(--fs-sm); color: var(--c-secondary); letter-spacing: 0.02em; }
.route__gap { color: var(--c-tertiary); }

/* ── Completeness bar ── */
.completeness { display: flex; align-items: center; gap: var(--sp-3); }
.completeness__bar { flex: 1; height: 4px; background: var(--c-surface-3); border-radius: var(--r-full); overflow: hidden; }
.completeness__fill { height: 100%; border-radius: var(--r-full); background: var(--c-green); }
.completeness__fill--amber { background: var(--c-amber); }
.completeness__fill--red   { background: var(--c-red); }
.completeness__label { font-size: var(--fs-xs); font-family: var(--ff-mono); color: var(--c-tertiary); white-space: nowrap; }

/* ── Device mockup ── */
.device-mockup {
  background: var(--c-surface); border: 1px solid var(--c-border-mid);
  border-radius: 44px; aspect-ratio: 9/19.5; width: 100%; max-width: 280px;
  margin: 0 auto; position: relative; overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 80px rgba(59,130,246,0.1);
}
.device-mockup__screen {
  position: absolute; inset: 0; padding: 40px 14px 20px;
  display: flex; flex-direction: column; gap: 7px; overflow: hidden;
}
.device-mockup__screen img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}

/* ── Hero ── */
.hero {
  padding-top: calc(var(--nav-h) + var(--sp-20));
  padding-bottom: var(--sp-24); position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at center top, rgba(59,130,246,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: center; }
.hero__kicker { margin-bottom: var(--sp-5); }
.hero__headline { margin-bottom: var(--sp-6); }
.hero__headline em { font-style: italic; color: var(--c-secondary); }
.hero__sub { font-size: var(--fs-md); color: var(--c-secondary); line-height: 1.7; margin-bottom: var(--sp-8); max-width: 44ch; }
.hero__actions { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.hero__trust { margin-top: var(--sp-6); font-size: var(--fs-xs); color: var(--c-tertiary); display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.hero__trust-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--c-muted); }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.step { text-align: center; padding: var(--sp-8) var(--sp-6); }
.step__num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--c-accent-soft); border: 1px solid rgba(59,130,246,0.3);
  color: var(--c-accent); font-size: var(--fs-sm); font-weight: 600;
  display: flex; align-items: center; justify-content: center; margin: 0 auto var(--sp-5);
}
.step__icon { font-size: 28px; margin-bottom: var(--sp-4); }
.step h4 { font-family: var(--ff-display); margin-bottom: var(--sp-3); }
.step p { font-size: var(--fs-sm); color: var(--c-tertiary); }

/* ── Feature rows ── */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: center; padding: var(--sp-16) 0; border-top: 1px solid var(--c-border); }
.feature-row:first-child { border-top: none; }
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }

/* ── Privacy callout ── */
.privacy-callout {
  background: linear-gradient(135deg, var(--c-surface) 0%, rgba(59,130,246,0.04) 100%);
  border: 1px solid var(--c-border-mid); border-radius: var(--r-2xl);
  padding: var(--sp-10) var(--sp-12); text-align: center;
}
.privacy-callout__icon { font-size: 40px; margin-bottom: var(--sp-5); }

/* ── Stats ── */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-xl); overflow: hidden;
}
.stat-item { padding: var(--sp-6); text-align: center; border-right: 1px solid var(--c-border); }
.stat-item:last-child { border-right: none; }
.stat-item__value { font-family: var(--ff-display); font-size: var(--fs-2xl); color: var(--c-primary); line-height: 1; margin-bottom: var(--sp-2); }
.stat-item__label { font-size: var(--fs-xs); color: var(--c-tertiary); letter-spacing: 0.04em; }

/* ── Booking type grid ── */
.booking-types { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }
.booking-type-item {
  background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-lg);
  padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-2);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.booking-type-item:hover { border-color: var(--c-border-mid); background: var(--c-surface-2); }
.booking-type-item__icon { font-size: 20px; }
.booking-type-item__name { font-size: var(--fs-sm); font-weight: 500; color: var(--c-primary); }
.booking-type-item__desc { font-size: var(--fs-xs); color: var(--c-tertiary); line-height: 1.5; }

/* ── Footer ── */
.footer { border-top: 1px solid var(--c-border); padding: var(--sp-12) 0 var(--sp-8); margin-top: var(--sp-16); }
.footer__inner { display: grid; grid-template-columns: 1fr auto; gap: var(--sp-8); align-items: start; margin-bottom: var(--sp-8); }
.footer__brand-name { font-family: var(--ff-display); font-size: var(--fs-xl); margin-bottom: var(--sp-2); }
.footer__tagline { font-size: var(--fs-sm); color: var(--c-tertiary); max-width: 30ch; }
.footer__links { display: flex; gap: var(--sp-6); flex-wrap: wrap; justify-content: flex-end; }
.footer__link { font-size: var(--fs-sm); color: var(--c-tertiary); transition: color var(--t-fast); }
.footer__link:hover { color: var(--c-secondary); }
.footer__bottom { padding-top: var(--sp-6); border-top: 1px solid var(--c-border); display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap; }
.footer__copy { font-size: var(--fs-xs); color: var(--c-muted); }
.footer__legal { display: flex; gap: var(--sp-5); }
.footer__legal a { font-size: var(--fs-xs); color: var(--c-muted); transition: color var(--t-fast); }
.footer__legal a:hover { color: var(--c-tertiary); }

/* ── Code inline ── */
code { font-family: var(--ff-mono); font-size: 0.88em; background: var(--c-surface-3); border: 1px solid var(--c-border-mid); border-radius: var(--r-sm); padding: 1px 6px; color: var(--c-accent); }

/* ── Prose ── */
.prose h2 { font-size: var(--fs-2xl); margin-top: var(--sp-12); margin-bottom: var(--sp-5); }
.prose h3 { font-size: var(--fs-lg); margin-top: var(--sp-8); margin-bottom: var(--sp-4); }
.prose p  { margin-bottom: var(--sp-5); font-size: var(--fs-base); }
.prose ul { list-style: disc; padding-left: var(--sp-6); margin-bottom: var(--sp-5); }
.prose ul li { color: var(--c-secondary); margin-bottom: var(--sp-2); font-size: var(--fs-base); }
.prose a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--c-accent-hover); }
.prose strong { color: var(--c-primary); font-weight: 600; }

/* ── Page header (inner pages) ── */
.page-header { padding-top: calc(var(--nav-h) + var(--sp-16)); padding-bottom: var(--sp-12); border-bottom: 1px solid var(--c-border); margin-bottom: var(--sp-12); }
.page-header h1 { font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl)); margin-bottom: var(--sp-4); }
.page-header p { font-size: var(--fs-md); max-width: 52ch; }

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate-fade-up { animation: fadeUp 0.6s ease both; }
.animate-fade-in { animation: fadeIn 0.4s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ── Utility ── */
.mt-4  { margin-top: var(--sp-4); }  .mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }  .mt-12 { margin-top: var(--sp-12); }
.mb-4  { margin-bottom: var(--sp-4); } .mb-6  { margin-bottom: var(--sp-6); }
.mb-8  { margin-bottom: var(--sp-8); }
.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; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__inner    { grid-template-columns: 1fr; text-align: center; }
  .hero__sub      { margin: 0 auto var(--sp-8); }
  .hero__actions  { justify-content: center; }
  .hero__trust    { justify-content: center; }
  .pricing-grid   { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .stats-bar      { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .booking-types  { grid-template-columns: repeat(2, 1fr); }
  .steps          { grid-template-columns: 1fr; }
  .grid-2         { grid-template-columns: 1fr; }
  .grid-3         { grid-template-columns: 1fr; }
  .grid-4         { grid-template-columns: repeat(2, 1fr); }
  .feature-row    { grid-template-columns: 1fr; gap: var(--sp-8); }
  .feature-row--reverse { direction: ltr; }
  .footer__inner  { grid-template-columns: 1fr; }
  .footer__links  { justify-content: flex-start; }
}

@media (max-width: 600px) {
  :root { --sp-6: 20px; --nav-h: 56px; }
  h1 { font-size: var(--fs-3xl); }
  h2 { font-size: var(--fs-2xl); }
  .section    { padding: var(--sp-16) 0; }
  .section--sm { padding: var(--sp-12) 0; }
  .nav__links { display: none; }
  .booking-types { grid-template-columns: 1fr 1fr; }
  .stats-bar     { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .privacy-callout { padding: var(--sp-8); }
}

@media (max-width: 400px) {
  .booking-types { grid-template-columns: 1fr; }
  .grid-4        { grid-template-columns: 1fr; }
}
