/* Design tokens — hrabrovo-transfer.ru (ТЗ §2–5) — merged in main.css for single request */

:root {
  --color-bg: #f8f7f3;
  --color-surface: #f3f1ec;
  --color-surface-2: #fafaf7;
  --color-surface-offset: #ebe8e1;
  --color-primary: #1a5c73;
  --color-primary-hover: #134a5d;
  --color-primary-highlight: #d4e8ef;
  --color-text: #1e1e1c;
  --color-text-muted: #6b6a65;
  --color-text-faint: #b0aea8;
  --color-accent: #c97a1a;
  --color-border: rgba(30, 30, 28, 0.1);
  --color-divider: rgba(30, 30, 28, 0.07);
  --color-success: #2d6a4f;

  --font-display: 'Zodiak', Georgia, serif;
  --font-body: 'General Sans', system-ui, sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1160px;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  --radius-pill: var(--radius-full);

  --shadow-sm: 0 1px 3px rgba(30, 30, 28, 0.07);
  --shadow-md: 0 4px 14px rgba(30, 30, 28, 0.09);
  --shadow-lg: 0 12px 36px rgba(30, 30, 28, 0.13);

  --header-h: 56px;
  --sticky-cta-h: 52px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  --color-bg: #14130f;
  --color-surface: #1a1917;
  --color-surface-2: #1f1e1b;
  --color-surface-offset: #121110;
  --color-primary: #4d9ab5;
  --color-primary-hover: #3485a0;
  --color-primary-highlight: #1e3540;
  --color-text: #d8d6d0;
  --color-text-muted: #807e78;
  --color-text-faint: #5a5955;
  --color-accent: #e09040;
  --color-border: rgba(216, 214, 208, 0.12);
  --color-divider: rgba(216, 214, 208, 0.07);
}

@media (min-width: 768px) {
  :root { --header-h: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

@media (max-width: 899px) {
  main {
    padding-bottom: calc(var(--sticky-cta-h) + env(safe-area-inset-bottom, 0px) + var(--space-8));
  }
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 4vw, var(--space-8));
}
.container--wide { max-width: var(--content-wide); }

.section { padding-block: clamp(var(--space-12), 7vw, var(--space-20)); }
.hero--airport.section { padding-block: 0; }
.section--surface { background: var(--color-surface); }
.section--routes {
  background:
    linear-gradient(180deg, var(--color-surface) 0%, color-mix(in srgb, var(--color-primary-highlight) 18%, var(--color-bg)) 100%);
}
[data-theme="dark"] .section--routes {
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
}

/* Typography: Zodiak — заголовки секций (h1/h2); General Sans — карточки, UI, body */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-4);
}
h1 { font-size: var(--text-3xl); font-weight: 700; }
h2 { font-size: var(--text-2xl); }
h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 var(--space-4);
}
.route-card h3,
.step h3,
.audience-card h3,
.compare-card strong {
  margin-bottom: var(--space-2);
}
.step h3 { margin: 0; }
p { margin: 0 0 var(--space-4); max-width: 68ch; }

.label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.text-muted { color: var(--color-text-muted); }
.text-faint { color: var(--color-text-faint); font-size: var(--text-xs); }
.lead { font-size: var(--text-lg); }
.text-sm-muted { font-size: var(--text-sm); color: var(--color-text-muted); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.link-row { margin-top: var(--space-4); }
.maps-trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2) var(--space-3);
  margin-top: var(--space-4);
}
.maps-trust__label {
  font-size: var(--text-sm); color: var(--color-text-muted);
}
.maps-trust__link {
  display: inline-flex; align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: var(--text-sm); font-weight: 500;
  color: var(--color-primary);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.maps-trust__link:hover {
  border-color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 8%, var(--color-surface));
}
.price { font-size: var(--text-lg); font-weight: 600; color: var(--color-accent); font-variant-numeric: tabular-nums; }

.header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--color-bg) 85%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-3);
  width: 100%; max-width: var(--content-wide); margin-inline: auto;
  padding-inline: clamp(var(--space-4), 4vw, var(--space-8));
  min-width: 0;
}
.logo {
  display: flex; align-items: center; gap: var(--space-2);
  color: var(--color-primary); text-decoration: none;
  font-family: var(--font-body); font-weight: 600; font-size: var(--text-sm);
  min-width: 0; flex-shrink: 1;
}
.logo:hover { text-decoration: none; opacity: 0.85; }
.logo svg { width: 28px; height: 28px; flex-shrink: 0; }
.logo span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 479px) {
  .logo span { display: none; }
}
.nav-desktop { display: none; align-items: center; gap: var(--space-6); flex-shrink: 0; }
.nav-desktop a {
  color: var(--color-text-muted); font-size: var(--text-sm); font-weight: 500; text-decoration: none;
}
.nav-desktop a:hover { color: var(--color-primary); text-decoration: none; }
.header__actions { display: flex; align-items: center; gap: var(--space-2); flex-shrink: 0; }
.header__phone {
  display: none; flex-direction: column; align-items: flex-end;
  text-decoration: none; line-height: 1.2; padding-inline: var(--space-2);
  flex-shrink: 0;
}
.header__phone:hover { text-decoration: none; opacity: 0.85; }
.header__phone-num {
  font-size: var(--text-sm); font-weight: 600; color: var(--color-text);
  white-space: nowrap;
}
.header__phone-hint {
  font-size: var(--text-xs); color: var(--color-text-faint);
}
@media (min-width: 900px) {
  .nav-desktop { display: flex; gap: var(--space-4); }
  .nav-desktop a { font-size: var(--text-xs); }
}
@media (min-width: 1100px) {
  .header__phone { display: flex; }
  .nav-desktop { gap: var(--space-6); }
  .nav-desktop a { font-size: var(--text-sm); }
}
.icon-btn {
  min-width: 44px; min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
  background: var(--color-surface-2); color: var(--color-text); cursor: pointer;
}
@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .menu-btn { display: none; }
  .header__actions .btn-primary--sm { display: inline-flex; }
}
@media (max-width: 899px) {
  .header__actions .btn-primary--sm { display: none; }
}

.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 200;
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity 200ms var(--ease-out), visibility 200ms;
}
.drawer-overlay.is-open { opacity: 1; pointer-events: auto; visibility: visible; }
.drawer {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 201;
  background: var(--color-surface);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: var(--space-6) var(--space-8) var(--space-8);
  transform: translateY(100%); visibility: hidden;
  transition: transform 280ms var(--ease-out), visibility 280ms;
  max-height: 85vh; overflow-y: auto;
}
.drawer.is-open { transform: translateY(0); visibility: visible; }
.drawer nav { display: flex; flex-direction: column; gap: var(--space-4); }
.drawer nav a {
  font-size: var(--text-lg); font-weight: 500; color: var(--color-text);
  text-decoration: none; min-height: 44px; display: flex; align-items: center;
}
.drawer__phone {
  font-size: var(--text-xl) !important; font-weight: 600 !important;
  color: var(--color-primary) !important;
  padding-bottom: var(--space-2); margin-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-divider);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  min-height: 44px; padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out);
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-hover); text-decoration: none; color: #fff; }
.btn-ghost { background: transparent; color: var(--color-primary); border: 1.5px solid var(--color-primary); }
.btn-ghost:hover { background: var(--color-primary-highlight); text-decoration: none; }
.btn-block { width: 100%; }
.btn-link-route {
  background: transparent; border: 1px solid var(--color-border); color: var(--color-primary);
  padding: var(--space-2) var(--space-4); font-size: var(--text-sm);
  border-radius: var(--radius-md);
  transition: background 180ms var(--ease-out), border-color 180ms var(--ease-out), color 180ms var(--ease-out);
  cursor: pointer;
}
.btn-link-route:hover {
  background: var(--color-primary-highlight);
  border-color: color-mix(in srgb, var(--color-primary) 35%, var(--color-border));
  text-decoration: none;
}
.btn-link-route:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn-primary--sm { padding: var(--space-2) var(--space-4); font-size: var(--text-sm); min-height: 40px; }
.btn-sm { padding: var(--space-2) var(--space-4); font-size: var(--text-sm); min-height: 40px; }

/* Hero v0.6 — GPT-light airport + booking bar */
.hero--airport {
  position: relative;
  min-height: clamp(520px, 72vh, 720px);
  padding: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--color-bg);
}
.hero__backdrop {
  position: absolute; inset: 0; z-index: 0;
}
.hero__backdrop picture { display: block; width: 100%; height: 100%; }
.hero__backdrop img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    color-mix(in srgb, var(--color-bg) 96%, transparent) 0%,
    color-mix(in srgb, var(--color-bg) 88%, transparent) 42%,
    color-mix(in srgb, var(--color-bg) 35%, transparent) 68%,
    transparent 100%
  );
}
[data-theme="dark"] .hero__scrim {
  background: linear-gradient(
    105deg,
    color-mix(in srgb, var(--color-bg) 94%, transparent) 0%,
    color-mix(in srgb, var(--color-bg) 82%, transparent) 45%,
    color-mix(in srgb, var(--color-bg) 40%, transparent) 70%,
    transparent 100%
  );
}
.hero__content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: var(--space-8);
  min-height: clamp(520px, 72vh, 720px);
  padding-block: clamp(var(--space-8), 5vw, var(--space-12));
}
.hero__intro { max-width: 36rem; }
.hero__intro h1 {
  margin-bottom: var(--space-2);
  max-width: 22ch;
  text-wrap: balance;
}
.hero-subhead {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-3);
  max-width: 28ch;
}
.hero__intro .lead { margin-bottom: var(--space-5); max-width: 42ch; }
.hero__trust { margin-bottom: 0; }

@media (min-width: 1024px) {
  .hero--airport {
    min-height: calc(100svh - var(--header-h));
    max-height: calc(100svh - var(--header-h));
  }
  .hero__content {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: var(--space-6);
    min-height: calc(100svh - var(--header-h));
    padding-block: var(--space-5);
  }
  .hero__intro {
    align-self: center;
    padding-bottom: 0;
  }
  .hero__intro h1 {
    font-size: clamp(2rem, 1.4rem + 1.4vw, 2.75rem);
    margin-bottom: var(--space-2);
    max-width: 16ch;
  }
  .hero-subhead { font-size: var(--text-xl); margin-bottom: var(--space-2); }
  .hero__intro .lead {
    font-size: var(--text-base);
    margin-bottom: var(--space-3);
    max-width: 38ch;
  }
  .hero__trust.trust-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-1) var(--space-4);
  }
  .hero__trust.trust-list li { font-size: var(--text-xs); }
  .booking-panel {
    align-self: center;
    max-height: none;
    overflow: visible;
    padding: var(--space-4);
    box-shadow: 0 20px 48px rgba(30, 30, 28, 0.14);
  }
  .booking-panel__form { gap: var(--space-2); }
  .booking-panel__meta {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: var(--space-1);
  }
  .hero--airport .booking-panel__fields {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
  }
  .hero--airport .booking-panel__fields > .form-field:first-child,
  .hero--airport .booking-panel__fields > .form-field--custom-route,
  .hero--airport .booking-panel__fields > .form-grid--hero-compact,
  .hero--airport .booking-panel__fields > .form-field--phone,
  .hero--airport .booking-panel__fields > .form-check--inline {
    grid-column: 1 / -1;
  }
  .hero--airport .form-grid--hero-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
  }
  .hero--airport .form-field { gap: var(--space-1); }
  .hero--airport .form-field label { font-size: var(--text-xs); }
  .hero--airport .form-field input:not([type="checkbox"]):not([type="radio"]),
  .hero--airport .form-field select {
    min-height: 40px;
    padding-block: var(--space-2);
    font-size: var(--text-sm);
  }
  .hero--airport .form-field__hint--compact,
  .hero--airport .form-field--flight .form-field__hint {
    font-size: 0.6875rem;
    margin-top: var(--space-1);
    margin-bottom: 0;
  }
  .hero--airport .route-chips {
    margin-top: var(--space-1);
    margin-inline: 0;
    padding-inline: 0;
  }
  .hero--airport .route-chip {
    min-height: 52px;
    min-width: 104px;
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-xs);
  }
  .hero--airport .route-chip__price { font-size: 0.6875rem; }
  .hero--airport .route-price-strip {
    padding: var(--space-2);
    margin-top: var(--space-1);
  }
  .hero--airport .booking-path-wrap { margin-bottom: var(--space-2); }
  .hero--airport .booking-panel__actions {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
  }
  .hero--airport .booking-panel__api-submit {
    grid-column: 1 / -1;
  }
  .hero--airport .booking-panel__submit,
  .hero--airport .booking-panel__api-submit,
  .hero--airport .booking-panel__tg-submit {
    min-height: 40px;
    padding-block: var(--space-2);
    font-size: var(--text-xs);
  }
  .hero--airport .booking-panel__extras summary {
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-3);
  }
  .hero--airport .booking-panel__foot {
    padding-top: var(--space-1);
  }
  .hero--airport .booking-panel__legal {
    font-size: 0.6875rem;
    line-height: 1.35;
  }
  .vehicle-strip { padding: var(--space-2); }
  .vehicle-strip__thumb,
  .vehicle-strip picture img { width: 44px; height: 44px; }
  .booking-panel__foot {
    flex-direction: row;
    align-items: center;
    gap: var(--space-2);
  }
  .hero--airport .payment-methods { font-size: 0.6875rem; padding: var(--space-1) var(--space-2); }
}

@media (min-width: 1024px) and (max-height: 820px) {
  .hero__content { padding-block: var(--space-3); gap: var(--space-4); }
  .hero__intro .lead {
    font-size: var(--text-sm);
    margin-bottom: var(--space-2);
  }
  .hero--airport .booking-panel { padding: var(--space-3); }
  .hero--airport .booking-panel {
    max-height: calc(100svh - var(--header-h) - var(--space-6));
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

.booking-panel {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
  width: 100%;
  transition: border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.booking-panel:focus-within {
  border-color: color-mix(in srgb, var(--color-primary) 28%, var(--color-border));
  box-shadow:
    var(--shadow-lg),
    0 0 0 3px color-mix(in srgb, var(--color-primary) 12%, transparent);
}
@media (min-width: 1024px) {
  .booking-panel:focus-within {
    border-color: color-mix(in srgb, var(--color-primary) 30%, var(--color-border));
    box-shadow:
      0 20px 48px rgba(30, 30, 28, 0.14),
      0 0 0 3px color-mix(in srgb, var(--color-primary) 14%, transparent);
  }
}
.booking-panel__form { display: grid; gap: var(--space-4); margin: 0; }
.booking-panel__title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  margin: 0;
}
@media (min-width: 1024px) {
  .booking-panel__title { display: none; }
}
.booking-panel__row {
  display: grid;
  gap: var(--space-3);
}
.booking-panel__row > .booking-panel__meta,
.booking-panel__row > .booking-panel__actions {
  grid-column: 1 / -1;
}
.booking-panel__fields {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
  min-width: 0;
}
@media (min-width: 640px) {
  .booking-panel__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .booking-panel__fields > .form-field:first-child,
  .booking-panel__fields > .form-field--custom-route,
  .booking-panel__fields > .form-grid--hero-compact,
  .booking-panel__fields > .form-check--inline {
    grid-column: 1 / -1;
  }
}
@media (min-width: 1024px) {
  .booking-panel__row {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: var(--space-3);
  }
  .booking-panel__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .booking-panel__fields > .form-field:first-child,
  .booking-panel__fields > .form-field--custom-route,
  .booking-panel__fields > .form-grid--hero-compact,
  .booking-panel__fields > .form-check--inline {
    grid-column: 1 / -1;
  }
  .booking-panel:not(#hero-form) .booking-panel__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    flex-direction: row;
    min-width: 0;
    width: 100%;
  }
}
.booking-panel__actions {
  display: grid;
  gap: var(--space-2);
  grid-template-columns: 1fr 1fr;
  min-width: 0;
}
@media (max-width: 479px) {
  .booking-panel__actions { grid-template-columns: 1fr; }
}
.booking-panel__submit,
.booking-panel__api-submit,
.booking-panel__tg-submit {
  width: 100%;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .booking-panel__submit,
  .booking-panel__api-submit,
  .booking-panel__tg-submit {
    min-height: 44px;
    width: 100%;
  }
}
.booking-panel__price-summary {
  padding: var(--space-4);
  background: color-mix(in srgb, var(--color-primary) 6%, var(--color-surface));
  border: 1px solid color-mix(in srgb, var(--color-primary) 20%, var(--color-border));
  border-radius: var(--radius-lg);
}
.payment-mode {
  margin: 0 0 var(--space-3);
  padding: 0;
  border: 0;
  min-width: 0;
}
.payment-mode__legend {
  margin: 0 0 var(--space-2);
  padding: 0;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
}
.payment-mode__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}
.payment-mode__option {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  text-align: center;
}
.payment-mode__option:has(input:checked) {
  border-color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 8%, var(--color-surface));
  color: var(--color-primary);
}
.payment-mode__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.price-summary__top {
  display: grid;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
}
@media (min-width: 480px) {
  .price-summary__top {
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: var(--space-2) var(--space-4);
  }
}
.price-summary__route {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.price-summary__total {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 500;
}
@media (min-width: 480px) {
  .price-summary__total { text-align: right; }
}
.price-summary__total-value {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
}
.price-summary__breakdown {
  margin: 0 0 var(--space-3);
  display: grid;
  gap: var(--space-2);
}
.price-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
  font-size: var(--text-sm);
}
.price-summary__row dt {
  margin: 0;
  font-weight: 400;
  color: var(--color-text-muted);
}
.price-summary__row dd {
  margin: 0;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}
.price-summary__trip {
  margin: 0 0 var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.45;
  padding-top: var(--space-2);
  border-top: 1px solid var(--color-divider);
}
.price-summary__note {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  line-height: 1.4;
}
.booking-panel__prepay-warn { margin: var(--space-2) 0 0; font-size: var(--text-xs); }
.route-card__price-detail {
  margin: 0 0 var(--space-2);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.35;
  word-break: break-word;
}
.route-card.is-selected .price {
  color: var(--color-accent);
}
.booking-panel__meta {
  display: grid;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-divider);
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .booking-panel__meta {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}
@media (min-width: 1024px) {
  .booking-panel__meta { border-top: none; padding-top: var(--space-2); }
}
.booking-panel__extras { margin: 0; min-width: 0; width: 100%; }
.booking-panel__foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--space-3);
  flex-direction: column;
  align-items: stretch;
}
.payment-methods {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.45;
  padding: var(--space-2) var(--space-3);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.booking-panel__legal {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin: 0;
  line-height: 1.45;
  flex: 1;
  min-width: 12rem;
}
.booking-panel__wa { flex-shrink: 0; }

.vehicle-strip {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3); border-radius: var(--radius-md);
  background: var(--color-surface); border: 1px solid var(--color-border);
}
.vehicle-strip__thumb {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  object-fit: cover; flex-shrink: 0;
}
.vehicle-strip__text {
  display: flex; flex-direction: column; gap: 2px; min-width: 0;
}
.vehicle-strip__text strong {
  font-size: var(--text-sm); font-weight: 600; color: var(--color-text);
}
.vehicle-strip__text span {
  font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.35;
}

.form-extras {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  overflow: hidden;
}
.form-extras summary {
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  cursor: pointer;
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.form-extras summary::-webkit-details-marker { display: none; }
.form-extras summary::after {
  content: '+';
  margin-left: auto;
  font-weight: 600;
}
.form-extras[open] summary::after { content: '−'; }
.form-extras__body {
  padding: var(--space-3) var(--space-4) var(--space-4);
  display: grid;
  gap: var(--space-3);
  border-top: 1px solid var(--color-divider);
}
.form-extras__intro {
  display: grid;
  gap: var(--space-3);
  min-width: 0;
}
@media (min-width: 520px) {
  .form-extras__intro {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: stretch;
  }
  .form-extras__intro .vehicle-strip { height: 100%; }
}
.form-extras__quick {
  display: grid;
  gap: var(--space-3);
  min-width: 0;
}
@media (min-width: 520px) {
  .form-extras__quick {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.75fr) minmax(0, 0.75fr);
    align-items: end;
  }
}
.form-field--direction .radio-group {
  gap: var(--space-2) var(--space-3);
}
.form-field--direction .radio-group label {
  font-size: var(--text-sm);
  white-space: nowrap;
}
.form-extras__tail {
  display: grid;
  gap: var(--space-3);
  min-width: 0;
}
@media (min-width: 640px) {
  .form-extras__tail {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }
  #agreed-amount-field:not([hidden]) { grid-column: 1 / -1; }
}
.hero--airport .form-extras__body {
  padding: var(--space-2) var(--space-3) var(--space-3);
}
.hero--airport .form-extras__body .form-field input:not([type="checkbox"]):not([type="radio"]),
.hero--airport .form-extras__body .form-field select,
.hero--airport .form-extras__body .form-field textarea {
  width: 100%;
  min-width: 0;
}
.hero--airport .booking-panel__extras[open] .form-extras__body {
  max-height: min(52vh, 28rem);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.route-card__trust {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin: var(--space-1) 0 0;
}
.route-card__desc {
  font-size: var(--text-xs);
  line-height: 1.45;
  margin: var(--space-2) 0 0;
  min-height: 2.6em;
}

.trust-strip {
  padding-block: var(--space-4);
  background: var(--color-surface-2);
  border-block: 1px solid var(--color-border);
}
.trust-strip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
  justify-content: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.trust-strip__list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.trust-strip__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.audience__lead {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}
.audience-grid {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 768px) {
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
}
.audience-card {
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}
.audience-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

.form-field--custom-route .form-field { margin-bottom: 0; }
.form-field--custom-route .form-grid { margin-bottom: var(--space-2); }

.support-card {
  text-align: center;
  max-width: var(--content-narrow);
  margin-inline: auto;
  padding: var(--space-8);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}
.support-card:hover {
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--color-primary) 18%, var(--color-border));
}
.support-card h2 { margin-bottom: var(--space-2); }
.support-card p { margin-inline: auto; margin-bottom: var(--space-4); }

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-6); }
.trust-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.trust-list li {
  font-size: var(--text-sm); color: var(--color-text-muted);
  display: flex; gap: var(--space-3); align-items: flex-start;
}
.trust-list li > span[aria-hidden="true"] {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  border-radius: 50%;
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  font-size: 12px; font-weight: 700; line-height: 1;
}
.media-block { display: grid; gap: var(--space-8); align-items: center; }
@media (min-width: 900px) {
  .media-block { grid-template-columns: 1fr 1fr; gap: var(--space-12); }
}
.media-block__visual { aspect-ratio: 3 / 2; }
.status-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 500; margin-bottom: var(--space-4);
  background: var(--color-primary-highlight); color: var(--color-primary);
}
.status-badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--color-success);
}
.hero-sticky-cta {
  position: fixed;
  left: var(--space-4);
  right: var(--space-4);
  bottom: calc(var(--space-3) + env(safe-area-inset-bottom, 0px));
  z-index: 50;
  max-width: var(--content-narrow);
  margin-inline: auto;
  opacity: 1;
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
}
.hero-sticky-cta .btn {
  min-height: var(--sticky-cta-h);
  padding-block: var(--space-2);
  font-size: var(--text-sm);
  box-shadow: var(--shadow-lg);
}
.hero-sticky-cta.is-hidden { opacity: 0; pointer-events: none; transform: translateY(12px); }
@media (min-width: 900px) { .hero-sticky-cta { display: none; } }

.routes-picker { margin-top: var(--space-8); }
.routes-picker__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3) var(--space-4);
  margin-bottom: var(--space-2);
}
.routes-picker__hint {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 42ch;
}
.routes-picker__nav {
  display: flex;
  gap: var(--space-2);
  flex-shrink: 0;
}
.routes-picker__scroll {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  color: var(--color-text);
  font-size: var(--text-lg);
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms var(--ease-out), background 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}
.routes-picker__scroll:hover {
  border-color: color-mix(in srgb, var(--color-primary) 35%, var(--color-border));
  background: var(--color-surface);
}
.routes-picker__scroll:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
@media (max-width: 639px) {
  .routes-picker__nav { display: none; }
}

.routes-carousel {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-block: var(--space-3) var(--space-5);
  padding-inline: var(--space-1);
  margin-inline: calc(-1 * var(--space-1));
  scroll-padding-inline: var(--space-4);
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--color-primary) 35%, transparent) transparent;
  align-items: stretch;
}
.routes-carousel::-webkit-scrollbar { height: 6px; }
.routes-carousel::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--color-primary) 30%, var(--color-border));
  border-radius: var(--radius-full);
}
.routes-carousel .route-card {
  flex: 0 0 min(300px, 82vw);
  scroll-snap-align: start;
  max-width: 320px;
  align-self: stretch;
}
@media (min-width: 1024px) {
  .routes-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    scroll-snap-type: none;
    margin-inline: 0;
    padding-inline: 0;
    scroll-padding-inline: 0;
    gap: var(--space-5);
    padding-block: var(--space-4) var(--space-6);
  }
  .routes-carousel .route-card {
    flex: none;
    max-width: none;
  }
  .routes-picker__nav { display: none; }
}
.routes-grid { display: grid; gap: var(--space-5); }
@media (min-width: 640px) { .routes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .routes-grid { grid-template-columns: repeat(3, 1fr); } }

.section-title--center { text-align: center; max-width: none; margin-inline: auto; }

.section-head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: var(--space-4);
}
.section-head h2 { margin-bottom: var(--space-2); }
.section-head__sub { margin: 0; max-width: 52ch; }
.section-head__link {
  font-size: var(--text-sm); font-weight: 600; white-space: nowrap;
}
.section--fleet { background: var(--color-bg); }

.route-card {
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
  display: flex; flex-direction: column;
  isolation: isolate;
  cursor: pointer;
  min-width: 0;
}
.route-card.is-selected {
  border-color: color-mix(in srgb, var(--color-primary) 55%, var(--color-border));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-primary) 35%, transparent), var(--shadow-md);
}
.route-card.is-selected .route-card__thumb::after {
  background: linear-gradient(to top, rgba(20, 20, 18, 0.48), transparent 62%);
}
.route-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: no-preference) {
  .route-card:hover {
    box-shadow: var(--shadow-md);
    border-color: color-mix(in srgb, var(--color-primary) 24%, var(--color-border));
  }
  .route-card:hover .route-card__thumb img { transform: scale(1.045); }
}
.route-card__thumb {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: var(--color-surface-offset);
}
.route-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 360ms var(--ease-out);
  transform-origin: center center;
}
.route-card__thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 18, 0.38), transparent 58%);
  pointer-events: none;
  transition: opacity 220ms var(--ease-out);
}
.route-card:hover .route-card__thumb::after { opacity: 0.92; }
.route-card__body { padding: var(--space-5); flex: 1; display: flex; flex-direction: column; min-width: 0; }
.route-card__title {
  color: inherit; text-decoration: none;
  transition: color 180ms var(--ease-out);
}
.route-card__title:hover { color: var(--color-primary); text-decoration: none; }
.route-card h3 { margin: 0 0 var(--space-2); }
.route-card__stats {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  font-size: var(--text-xs); color: var(--color-text-muted); margin-bottom: var(--space-3);
}
.route-card__stats span:not(:first-child)::before {
  content: '·';
  margin-right: var(--space-2);
  color: var(--color-text-faint);
}
.route-card .price { font-size: var(--text-xl); margin: 0 0 var(--space-1); }
.route-card__foot {
  margin-top: auto; padding-top: var(--space-4);
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3);
}
.route-card__select {
  width: 100%;
  justify-content: center;
}
.route-card__more {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  width: 100%;
  text-align: center;
  padding-block: var(--space-1);
}
.route-card__more:hover { color: var(--color-primary); }
.route-card.is-selected .route-card__select {
  background: color-mix(in srgb, var(--color-primary) 88%, var(--color-text));
}
.routes-footnote { text-align: center; max-width: none; }

.fleet-block { display: grid; gap: var(--space-8); align-items: center; }
@media (min-width: 900px) {
  .fleet-block { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-12); }
}
.fleet-block__visual {
  margin: 0; aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--color-border); box-shadow: var(--shadow-md);
}
.fleet-block__visual img { width: 100%; height: 100%; object-fit: cover; }
.fleet-block__content h2 { margin-bottom: var(--space-3); }
.fleet-specs {
  list-style: none; padding: 0; margin: var(--space-6) 0;
  display: flex; flex-direction: column; gap: var(--space-2);
}
.fleet-specs li {
  font-size: var(--text-sm); color: var(--color-text-muted);
  display: flex; gap: var(--space-2); align-items: flex-start;
}
.fleet-specs li::before {
  content: '✓'; color: var(--color-primary); font-weight: 600; flex-shrink: 0;
}
.fleet-icons { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
@media (min-width: 480px) { .fleet-icons { grid-template-columns: repeat(4, 1fr); } }
.fleet-icon {
  text-align: center; padding: var(--space-4) var(--space-3);
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.fleet-icon__glyph {
  width: 28px; height: 28px; margin-inline: auto;
  color: var(--color-primary);
}
.fleet-icon span {
  display: block; margin-top: var(--space-2);
  font-size: var(--text-xs); color: var(--color-text-muted); font-weight: 500;
}

.advantages-row {
  display: grid; gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 540px) { .advantages-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .advantages-row { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .advantages-row { grid-template-columns: repeat(5, 1fr); } }
.advantage-card {
  text-align: center; padding: var(--space-6) var(--space-4);
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  min-width: 0;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}
@media (prefers-reduced-motion: no-preference) {
  .advantage-card:hover {
    border-color: color-mix(in srgb, var(--color-primary) 22%, var(--color-border));
    box-shadow: var(--shadow-md);
  }
}
.advantage-card__icon {
  width: 52px; height: 52px; margin: 0 auto var(--space-4);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--color-primary-highlight); color: var(--color-primary);
  transition: transform 220ms var(--ease-out);
}
.advantage-card:hover .advantage-card__icon { transform: scale(1.05); }
.advantage-card__icon svg { width: 24px; height: 24px; }
.advantage-card h3 { font-size: var(--text-sm); margin: 0 0 var(--space-2); }
.advantage-card p {
  font-size: var(--text-xs); color: var(--color-text-muted);
  margin: 0 auto; max-width: 22ch; line-height: 1.45;
}

.steps { display: grid; gap: var(--space-6); }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  display: flex; flex-direction: column; gap: var(--space-3);
  padding: var(--space-6);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.step__num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-primary-highlight); color: var(--color-primary);
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step p { font-size: var(--text-sm); color: var(--color-text-muted); margin: 0; }

.compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; border-collapse: collapse; font-size: var(--text-sm); min-width: 520px; }
.compare-table th, .compare-table td {
  padding: var(--space-4); border: 1px solid var(--color-border); text-align: left;
}
.compare-table thead th { background: var(--color-surface); font-weight: 600; }
.compare-table tbody tr:nth-child(even) { background: var(--color-surface-2); }
.compare-cards { display: none; }
@media (max-width: 639px) {
  .compare-table-wrap { display: none; }
  .compare-cards { display: flex; flex-direction: column; gap: var(--space-4); }
  .compare-card {
    background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--radius-lg); padding: var(--space-4);
  }
  .compare-card strong { display: block; margin-bottom: var(--space-2); }
}

.form-grid { display: grid; gap: var(--space-4); }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: var(--space-2); }
.form-field label { font-size: var(--text-sm); font-weight: 500; }
.form-field__hint {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  line-height: 1.4;
}
.form-field__hint.is-ok { color: var(--color-success); }
.form-field__hint.is-warn { color: var(--color-text-muted); }
.flight-paste {
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 0 var(--space-3);
  background: var(--color-surface);
}
.flight-paste summary {
  padding: var(--space-3) 0;
  font-size: var(--text-sm);
  color: var(--color-primary);
  cursor: pointer;
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.flight-paste summary::-webkit-details-marker { display: none; }
.flight-paste__body {
  display: grid;
  gap: var(--space-3);
  padding-bottom: var(--space-3);
}
.flight-paste textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  font: 400 var(--text-sm) var(--font-body);
  min-height: 4.5rem;
  resize: vertical;
  background: var(--color-surface-2);
  color: var(--color-text);
}
.label--plain { text-transform: none; letter-spacing: 0; }
.form-grid--booking { max-width: var(--content-narrow); margin-top: var(--space-8); }
.form-field input:not([type="checkbox"]):not([type="radio"]),
.form-field select,
.form-field textarea {
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4); background: var(--color-surface-2);
  color: var(--color-text); font: 400 var(--text-base) var(--font-body);
  min-height: 44px; transition: border-color 180ms ease;
  width: 100%; max-width: 100%;
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b6a65' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-8);
}
.form-field textarea { min-height: 100px; resize: vertical; }
.form-field input:not([type="checkbox"]):not([type="radio"]):focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-primary); outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 15%, transparent);
}
.form-check { display: flex; align-items: center; gap: var(--space-3); min-height: 44px; }
.form-field.form-check {
  flex-direction: row;
  align-items: center;
  gap: var(--space-3);
}
.form-check--inline { margin: 0 0 var(--space-1); min-height: 36px; }
.form-check--inline label { font-size: var(--text-sm); cursor: pointer; margin: 0; }

.route-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding-inline: var(--space-1);
  padding-block: var(--space-1) var(--space-2);
  margin-inline: calc(-1 * var(--space-1));
  padding-inline: var(--space-1);
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--color-primary) 35%, transparent) transparent;
}
.route-chips::-webkit-scrollbar { height: 4px; }
.route-chips::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--color-primary) 30%, var(--color-border));
  border-radius: var(--radius-full);
}
.route-chip {
  font: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-4);
  min-height: 56px;
  min-width: 118px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
  line-height: 1.2;
  transition: border-color 160ms var(--ease-out), background 160ms var(--ease-out), color 160ms var(--ease-out), transform 120ms var(--ease-out), box-shadow 160ms var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.route-chip__label { font-weight: 600; white-space: nowrap; }
.route-chip__price {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
}
.route-chip:hover {
  border-color: color-mix(in srgb, var(--color-primary) 40%, var(--color-border));
  box-shadow: 0 2px 12px rgba(26, 92, 115, 0.1);
}
.route-chip:active { transform: scale(0.98); }
.route-chip.is-active {
  border-color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 14%, var(--color-surface));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-primary) 35%, transparent);
}
.route-chip.is-active .route-chip__price { color: var(--color-primary); }
.route-chip:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.route-price-strip {
  margin-top: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--color-primary) 8%, var(--color-surface));
  border: 1px solid color-mix(in srgb, var(--color-primary) 22%, var(--color-border));
  animation: routePriceIn 220ms var(--ease-out);
}
@keyframes routePriceIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.route-price-strip__line {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
}
.route-price-strip__total {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-text);
}
.route-price-strip__prepay {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
}
.route-price-strip__hint {
  margin: var(--space-1) 0 0;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.35;
}
.route-booking-mode {
  margin: var(--space-2) 0 0;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  line-height: 1.45;
  font-weight: 500;
}
.route-booking-mode--instant {
  color: var(--color-success);
  background: color-mix(in srgb, var(--color-success) 12%, var(--color-surface));
  border: 1px solid color-mix(in srgb, var(--color-success) 28%, var(--color-border));
}
.route-card__booking-mode {
  margin: 0 0 var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1.35;
}
.route-card__booking-mode--instant {
  color: var(--color-success);
}

.booking-path-wrap {
  position: relative;
  margin: 0 0 var(--space-3);
}
.booking-path__progress {
  position: absolute;
  top: 0.6875rem;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--color-divider);
  border-radius: var(--radius-full);
  z-index: 0;
  overflow: hidden;
}
.booking-path__progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--color-primary);
  border-radius: inherit;
  transition: width 320ms var(--ease-out);
}
.booking-path {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-1);
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.625rem;
  color: var(--color-text-faint);
}
.booking-path__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  text-align: center;
  line-height: 1.25;
}
.booking-path__step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  border: 2px solid var(--color-divider);
  font-size: 0.625rem;
  font-weight: 700;
  transition: background 220ms var(--ease-out), border-color 220ms var(--ease-out), color 220ms var(--ease-out);
}
.booking-path__step.is-partial span {
  border-color: color-mix(in srgb, var(--color-primary) 55%, var(--color-divider));
  background: color-mix(in srgb, var(--color-primary) 12%, var(--color-surface-2));
  color: var(--color-primary);
}
.booking-path__step.is-done { color: var(--color-primary); font-weight: 600; }
.booking-path__step.is-done span {
  background: color-mix(in srgb, var(--color-primary) 16%, var(--color-surface-2));
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.booking-path__step.is-current { color: var(--color-text); font-weight: 600; }
.booking-path__step.is-current span {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 18%, transparent);
}
.booking-path__hint {
  margin: var(--space-2) 0 0;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.35;
  min-height: 1.35em;
}
.hero--airport .booking-path-wrap { margin-bottom: var(--space-2); }
.hero--airport .booking-path__hint {
  font-size: 0.6875rem;
  margin-top: var(--space-1);
}
.booking-panel.has-route { border-color: color-mix(in srgb, var(--color-primary) 24%, var(--color-border)); }
.hero--airport #price-summary { display: none; }

.schedule-toggle {
  margin: 0 0 var(--space-2);
  padding: 0;
  border: none;
}
.schedule-toggle__legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.schedule-toggle__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-1);
}
.schedule-toggle__option {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: var(--space-1) var(--space-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 600;
  cursor: pointer;
  background: var(--color-surface);
  transition: border-color 160ms var(--ease-out), background 160ms var(--ease-out);
}
.schedule-toggle__option:has(input:checked) {
  border-color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 10%, var(--color-surface));
  color: var(--color-primary);
}
.schedule-toggle__option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.hero--airport .schedule-toggle { margin-bottom: var(--space-1); }
.hero--airport .schedule-toggle__option { min-height: 32px; font-size: 0.6875rem; }
.time-slots-wrap {
  margin-top: var(--space-2);
}
.time-slots__legend {
  margin: 0 0 var(--space-1);
  font-size: 0.6875rem;
  color: var(--color-text-muted);
}
.time-slots {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-1);
  overflow-x: auto;
  padding-bottom: var(--space-1);
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.time-slot {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 3.25rem;
  padding: var(--space-1) var(--space-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.time-slot--free:hover {
  border-color: var(--color-primary);
}
.time-slot--busy {
  opacity: 0.45;
  cursor: not-allowed;
  text-decoration: line-through;
}
.time-slot--selected {
  border-color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 12%, var(--color-surface));
  color: var(--color-primary);
  font-weight: 600;
}
.form-field--flight input[type="time"] {
  min-height: 44px;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font: inherit;
  font-size: var(--text-sm);
  width: 100%;
  background: var(--color-surface-2);
}

.route-toast {
  position: fixed;
  bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  left: 50%;
  z-index: 95;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: var(--color-text);
  color: var(--color-bg);
  font-size: var(--text-sm);
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
}
.route-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (min-width: 900px) {
  .route-toast { bottom: var(--space-6); }
}

.form-check--addon { align-items: flex-start; }
.form-check--addon label { display: flex; flex-direction: column; gap: var(--space-1); cursor: pointer; flex: 1; min-width: 0; }
.form-field--plain { border: none; margin: 0; padding: 0; min-width: 0; }
.form-field--plain legend { padding: 0; margin-bottom: var(--space-2); }
.label-tag {
  font-size: var(--text-xs); font-weight: 500; color: var(--color-text-muted);
  background: var(--color-divider); padding: 0.1em 0.45em; border-radius: var(--radius-md); margin-left: var(--space-2);
}
.radio-group--stack { flex-direction: column; align-items: flex-start; gap: var(--space-2); }
.addon-list { display: flex; flex-direction: column; gap: var(--space-3); }
.addon-option__row { display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-3); width: 100%; }
.addon-option__title { font-weight: 500; color: var(--color-text); }
.addon-option__price { font-weight: 600; color: var(--color-accent); white-space: nowrap; flex-shrink: 0; }
.addon-option__hint { font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.45; }
.addon-option--bundle {
  padding: var(--space-3);
  border: 1px solid color-mix(in srgb, var(--color-primary) 22%, transparent);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--color-primary-highlight) 45%, transparent);
}
.radio-group { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.radio-group input[type="radio"],
.form-check > input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  min-height: 1rem;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  flex-shrink: 0;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.radio-group label {
  display: flex; align-items: center; gap: var(--space-2); min-height: 44px; cursor: pointer;
  font-weight: 400;
}
.form-extras .radio-group label {
  min-height: 0;
  padding-block: var(--space-1);
  font-size: var(--text-sm);
  line-height: 1.35;
}
.form-extras .radio-group--stack {
  gap: var(--space-1);
}
.form-extras .radio-group--stack label {
  align-items: flex-start;
}
.form-extras .radio-group--stack input[type="radio"] {
  margin-top: 0.15em;
}
.form-check > input[type="checkbox"] {
  align-self: flex-start;
  margin-top: 0.2em;
}

.faq { display: flex; flex-direction: column; gap: var(--space-2); }
.faq-item {
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  background: var(--color-surface-2); overflow: hidden;
}
.faq-item button {
  width: 100%; text-align: left; padding: var(--space-4) var(--space-6);
  background: none; border: none; font: 600 var(--text-base) var(--font-body);
  color: var(--color-text); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; min-height: 44px;
}
.faq-item__body { max-height: 0; overflow: hidden; transition: max-height 220ms ease-out; }
.faq-item__body-inner {
  padding: 0 var(--space-6) var(--space-4); color: var(--color-text-muted); font-size: var(--text-sm);
}
.faq-item.is-open .faq-item__body { max-height: 280px; }

.footer {
  background: var(--color-surface-offset); padding-block: var(--space-12);
  font-size: var(--text-sm); color: var(--color-text-muted);
}
.footer__grid {
  display: grid; gap: var(--space-10);
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; gap: var(--space-8); }
}
.footer__brand .logo { margin-bottom: var(--space-4); }
.footer__tagline {
  margin: 0; max-width: 32ch; line-height: 1.55; color: var(--color-text-muted);
}
.footer__heading {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--color-text-faint); margin: 0 0 var(--space-4);
}
.footer__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: var(--space-2);
}
.footer__list a { color: var(--color-text-muted); text-decoration: none; }
.footer__list a:hover { color: var(--color-primary); text-decoration: none; }
.footer__bottom {
  margin-top: var(--space-10); padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: var(--space-4);
}
.footer__copy { margin: 0; font-size: var(--text-xs); color: var(--color-text-faint); }
.footer__seller {
  margin: var(--space-1) 0 0;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  max-width: 36ch;
}
.footer__bottom-start { display: flex; flex-direction: column; gap: var(--space-1); }
.footer__legal {
  margin: 0; font-size: var(--text-xs); display: flex; flex-wrap: wrap; gap: var(--space-2);
}
.footer__legal a { color: var(--color-text-faint); text-decoration: none; }
.footer__legal a:hover { color: var(--color-primary); }
.footer__copy [data-site-version] { color: var(--color-text-faint); font-size: inherit; }

/* Route SEO pages (C1) */
.route-page__crumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-6);
}
.route-page__crumb a { color: var(--color-text-muted); text-decoration: none; }
.route-page__crumb a:hover { color: var(--color-primary); }
.route-page__hero {
  display: grid; gap: var(--space-8); align-items: start;
}
@media (min-width: 900px) {
  .route-page__hero { grid-template-columns: 1fr 1fr; gap: var(--space-10); }
}
.route-page__lead { font-size: var(--text-lg); color: var(--color-text-muted); max-width: 52ch; }
.route-page__meta { display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--space-4); margin-top: var(--space-4); }
.route-page__stats {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  font-size: var(--text-sm); color: var(--color-text-muted);
}
.route-page__stats span {
  padding: 0.25rem 0.65rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
}
.route-page__actions {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  margin-top: var(--space-6);
}
.route-page__visual {
  margin: 0; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-md);
}
.route-page__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.route-page__content {
  margin-top: var(--space-10); max-width: 68ch;
}
.route-page__content p { color: var(--color-text-muted); margin-bottom: var(--space-4); }
.route-page__trust { margin-top: var(--space-6); }
.route-page__related {
  margin-top: var(--space-10); padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
}
.route-page__related h2 { font-size: var(--text-xl); margin-bottom: var(--space-4); }
.route-page__related ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: var(--space-3);
}
.route-page__related a {
  display: inline-block; padding: 0.5rem 1rem;
  border: 1px solid var(--color-border); border-radius: var(--radius-pill);
  text-decoration: none; color: var(--color-primary); font-size: var(--text-sm);
}
.route-page__related a:hover { border-color: var(--color-primary); }
.route-page__how { margin-top: var(--space-10); padding-top: var(--space-8); border-top: 1px solid var(--color-divider); }
.route-page__how h2 { font-size: var(--text-xl); margin-bottom: var(--space-4); }
.route-page__steps { margin: 0; padding-left: 1.25rem; color: var(--color-text-muted); }
.route-page__steps li { margin-bottom: var(--space-3); }
.route-page__faq { margin-top: var(--space-8); }
.route-page__faq h2 { font-size: var(--text-xl); margin-bottom: var(--space-4); }
.route-page__faq-list { display: flex; flex-direction: column; gap: var(--space-2); }
.route-faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface-2);
}
.route-faq-item summary { cursor: pointer; font-weight: 500; }
.route-faq-item p { margin: var(--space-2) 0 0; color: var(--color-text-muted); font-size: var(--text-sm); }
.footer__contacts { margin: var(--space-2) 0; font-size: var(--text-sm); }
.footer__contacts a { color: var(--color-text-muted); }
.footer__contacts a:hover { color: var(--color-primary); }
.footer--compact { padding: var(--space-6) 0; margin-top: var(--space-10); }
.footer--compact .footer__inner { justify-content: center; }
.footer--compact a { color: var(--color-text-faint); }

.review-page { max-width: 32rem; }
.review-page__lead { font-size: var(--text-lg); }
.review-page__actions {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  margin-top: var(--space-8);
}
.review-page__note { margin-top: var(--space-6); font-size: var(--text-sm); }

.legal-page h2 { font-size: var(--text-xl); margin-top: var(--space-8); }
.legal-page h2:first-of-type { margin-top: var(--space-6); }
.legal-page ul { padding-left: var(--space-6); max-width: 68ch; }
.legal-page li { margin-bottom: var(--space-2); }

.requisites-card {
  margin-top: var(--space-8);
  padding: var(--space-6);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  max-width: 40rem;
}
.requisites-list { margin: 0; }
.requisites-list__row {
  display: grid;
  gap: var(--space-1);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--color-divider);
}
.requisites-list__row:last-child { border-bottom: none; padding-bottom: 0; }
.requisites-list__row:first-child { padding-top: 0; }
.requisites-list dt {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin: 0;
}
.requisites-list dd {
  margin: 0;
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.5;
}

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 400ms ease-out, transform 400ms ease-out; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  .hero__intro,
  .booking-panel {
    animation: hero-in 560ms var(--ease-out) both;
  }
  .booking-panel { animation-delay: 100ms; }
}
@keyframes hero-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
