/* ═══════════════════════════════════════════════════════
   Rydio Taxi — Uber-Standard Design System
   Black/white monochrome with clean typography
   ═══════════════════════════════════════════════════════ */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --panel: #ffffff;
  --panel-strong: #f0f0f0;
  --text: #000000;
  --muted: #6b6b6b;
  --border: #e5e5e5;
  --brand: #000000;
  --brand-2: #000000;
  --brand-3: #000000;
  --danger: #e11900;
  --ok: #05944f;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
  --radius: 16px;
  --container: 1200px;
}

:root[data-theme='dark'] {
  --bg: #000000;
  --bg-soft: #141414;
  --panel: #1a1a1a;
  --panel-strong: #262626;
  --text: #ffffff;
  --muted: #a3a3a3;
  --border: #333333;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.brand__mark {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  background: var(--text);
  color: var(--bg);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav a {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.15s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: var(--panel-strong);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: none;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: 0.15s ease;
  background: var(--panel-strong);
  color: var(--text);
}

.btn:hover {
  opacity: 0.85;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}

.theme-btn,
.menu-toggle {
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border-radius: 999px;
  display: none;
}

/* ── Language Switch ── */
.language-switch { position: relative; }

.language-trigger {
  min-width: 6.2rem;
  justify-content: space-between;
  border: 1px solid var(--border);
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: 0.2s ease;
  min-width: 8rem;
}

.language-switch.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-option {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-weight: 600;
  padding: 0.6rem 0.8rem;
  cursor: pointer;
}

.language-option:hover,
.language-option.is-active {
  background: var(--panel-strong);
}

/* ── Mobile Nav ── */
.mobile-nav { display: none; }

main { padding-bottom: 4rem; }

/* ── Hero ── */
.hero { padding: 3.5rem 0 2rem; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: stretch;
}

.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

h1, h2, h3, h4, p { margin: 0; }

.hero h1 {
  margin-top: 0.5rem;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.hero p {
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hero-badges {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--bg-soft);
  font-weight: 600;
}

/* ── Grid & Sections ── */
.grid { display: grid; gap: 1rem; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.section { padding: 3rem 0; }

.section-heading { margin-bottom: 1.2rem; }

.section-heading h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.section-heading p {
  margin-top: 0.5rem;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.6;
}

/* ── Cards ── */
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 1.25rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.card p {
  margin-top: 0.4rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.9rem;
}

/* ── Course Cards ── */
.course-card-landing {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.course-card-landing__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.course-card-landing__title { font-size: 1.05rem; margin: 0; letter-spacing: -0.01em; }
.course-card-landing__desc { margin: 0.2rem 0 0; color: var(--muted); line-height: 1.5; font-size: 0.88rem; }

.course-card-landing__badge {
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.22rem 0.55rem;
  background: rgba(225, 25, 0, 0.08);
  color: var(--danger);
  white-space: nowrap;
}

.course-card-landing__meta { display: grid; gap: 0.3rem; color: var(--muted); font-size: 0.82rem; }
.course-card-landing__meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.course-card-landing__foot { display: flex; justify-content: space-between; align-items: center; gap: 0.6rem; }
.course-card-landing__price { font-weight: 800; letter-spacing: -0.02em; font-size: 1.05rem; }
.course-card-landing__spots { color: var(--muted); font-size: 0.78rem; }

.course-catalog-empty {
  border: 1px dashed var(--border);
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--muted);
  padding: 1.2rem;
  text-align: center;
}

/* ── KPI / Stats ── */
.kpi { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.kpi strong { font-size: 1.6rem; letter-spacing: -0.03em; }
.kpi span { color: var(--muted); font-size: 0.88rem; text-align: right; }

/* ── Icons ── */
.asset-icon-chip {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  margin-bottom: 0.7rem;
}

.asset-icon { width: 1.2rem; height: 1.2rem; object-fit: contain; }

/* ── Media Showcase ── */
.media-showcase { align-items: stretch; }

.media-panel { padding: 0; overflow: hidden; border: none; background: none; box-shadow: none; }

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ── Timeline ── */
.timeline { position: relative; display: grid; gap: 0.8rem; }

.timeline-item {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.7rem;
  align-items: start;
}

.timeline-step {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
}

/* ── Tech List ── */
.tech-list { display: grid; gap: 0.6rem; }
.tech-list li { list-style: none; padding-left: 1.3rem; position: relative; color: var(--muted); line-height: 1.5; }
.tech-list li::before { content: '—'; position: absolute; left: 0; color: var(--text); font-weight: 700; }

/* ── Forms ── */
.form { display: grid; gap: 0.75rem; }
.field { display: grid; gap: 0.3rem; }
.field label, .form legend { font-weight: 600; font-size: 0.85rem; color: var(--muted); }

.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
  font-family: inherit;
}

.field textarea { min-height: 120px; resize: vertical; }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--text);
}

.form-status {
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status.ok { border-color: var(--ok); background: rgba(5, 148, 79, 0.06); color: var(--ok); }
.form-status.error { border-color: var(--danger); background: rgba(225, 25, 0, 0.06); color: var(--danger); }

.support-lead {
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.65;
}

.support-guidance {
  margin-top: 1rem;
}

.support-checklist {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.support-checklist h3 {
  font-size: 1rem;
  margin-bottom: 0.65rem;
}

.resource-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.resource-card {
  display: grid;
  gap: 0.32rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.resource-card:hover {
  border-color: var(--text);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.resource-kicker {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.resource-card strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.resource-card span:last-child {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.support-footnote {
  margin-top: 0.95rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

/* ── Fare Output ── */
.fare-output {
  margin-top: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem;
  background: var(--bg-soft);
}

.fare-output strong { font-size: 1.4rem; color: var(--text); }

/* ── Fleet Options ── */
.fleet-options { margin-top: 0.9rem; display: grid; gap: 0.5rem; }

.fleet-option {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.6rem 0.75rem;
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: center;
  gap: 0.6rem;
  background: var(--panel);
  transition: border-color 0.15s;
}

.fleet-option:hover { border-color: var(--text); }

.fleet-option img { width: 2.6rem; height: 2.6rem; object-fit: contain; border-radius: 8px; }
.fleet-option strong { font-size: 0.9rem; display: block; }
.fleet-option p { margin: 0.1rem 0 0; color: var(--muted); font-size: 0.8rem; }

/* ── Live Map ── */
.live-map-shell { margin-top: 0.9rem; position: relative; }

.live-map {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  min-height: 320px;
  overflow: hidden;
}

.map-overlay {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 550;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.map-stat {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.45rem 0.65rem;
  min-width: 7rem;
  box-shadow: var(--shadow);
}

.map-stat span { display: block; font-size: 0.72rem; color: var(--muted); font-weight: 600; }
.map-stat strong { display: block; margin-top: 0.06rem; font-size: 1rem; letter-spacing: -0.02em; }

/* ── Vehicle Feed ── */
.vehicle-feed { margin-top: 0.8rem; display: grid; gap: 0.4rem; }
.vehicle-feed__loading { margin: 0; color: var(--muted); font-size: 0.88rem; }

.vehicle-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.55rem 0.7rem;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.vehicle-item strong { font-size: 0.88rem; letter-spacing: -0.02em; }
.vehicle-meta { margin-top: 0.15rem; font-size: 0.78rem; color: var(--muted); }

.vehicle-pill {
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  white-space: nowrap;
}

.vehicle-pill--available { background: rgba(5, 148, 79, 0.1); color: var(--ok); }
.vehicle-pill--pickup { background: rgba(245, 158, 11, 0.1); color: #d97706; }
.vehicle-pill--trip { background: rgba(0, 0, 0, 0.06); color: var(--text); }

.map-fallback { min-height: 320px; display: grid; place-items: center; text-align: center; color: var(--muted); padding: 1rem; }

/* ── CTA Strip ── */
.cta-strip { margin-top: 0.85rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* ── FAQ ── */
.faq details {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  background: var(--panel);
}

.faq details + details { margin-top: 0.5rem; }
.faq summary { cursor: pointer; font-weight: 700; font-size: 0.95rem; }
.faq p { margin-top: 0.5rem; color: var(--muted); line-height: 1.55; font-size: 0.9rem; }

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  background: var(--bg-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.2rem;
}

.footer-links { display: grid; gap: 0.4rem; }
.footer-links a { color: var(--muted); font-weight: 500; font-size: 0.9rem; }
.footer-links a:hover { color: var(--text); }

.footer-bottom {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ── Login Modal ── */
.login-modal { position: fixed; inset: 0; z-index: 60; display: none; }
.login-modal.is-open { display: block; }
.login-modal__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.5); }

.login-modal__panel {
  position: relative;
  width: min(460px, calc(100% - 1.4rem));
  margin: 9vh auto 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem;
}

.login-modal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.login-role-list { display: grid; gap: 0.5rem; }

.login-role {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-soft);
  font-weight: 600;
  transition: border-color 0.15s;
}

.login-role:hover { border-color: var(--text); }
.login-role small { color: var(--muted); }

/* ── Reveal Animation ── */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity 0.45s ease, transform 0.45s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── Hero Location ── */
.hero-location {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ── Uber-style Booking Form ── */
.booking-shell { margin-top: 1.5rem; }

.booking-inputs {
  display: flex;
  flex-direction: column;
  padding-left: 0.12rem;
}

.booking-input-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.booking-marker { width: 0.55rem; height: 0.55rem; flex: 0 0 auto; }
.booking-marker--pickup { border-radius: 999px; background: var(--text); }
.booking-marker--dropoff { border-radius: 2px; background: var(--text); }

.booking-connector {
  width: 2px;
  height: 1rem;
  background: var(--border);
  margin-left: 0.16rem;
}

.booking-field { flex: 1; position: relative; }

.booking-field input,
.booking-input-row input {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  transition: 0.15s ease;
}

.booking-field input::placeholder,
.booking-input-row input::placeholder { color: var(--muted); }

.booking-field input:focus,
.booking-input-row input:focus {
  outline: none;
  border-color: var(--text);
}

.booking-locate {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.15s ease;
  flex: 0 0 auto;
  font-size: 0.85rem;
}

.booking-locate:hover { color: var(--text); border-color: var(--text); }

.booking-submit {
  width: 100%;
  margin-top: 0.85rem;
  padding: 0.95rem;
  font-size: 1rem;
  border-radius: 12px;
}

.hero-call { margin-top: 0.6rem; font-size: 0.85rem; color: var(--muted); }
.hero-call a { color: var(--text); font-weight: 700; text-decoration: underline; }

/* ── Autocomplete Dropdown ── */
.ac-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0; right: 0;
  z-index: 40;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  max-height: 280px;
  overflow-y: auto;
  padding: 0.3rem;
}

.ac-dropdown.is-open { display: block; }

.ac-category {
  padding: 0.4rem 0.65rem 0.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.ac-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.12s ease;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.ac-item:hover, .ac-item.is-focused { background: var(--bg-soft); }
.ac-item i { width: 1.2rem; text-align: center; color: var(--muted); font-size: 0.85rem; }
.ac-item small { margin-left: auto; color: var(--muted); font-size: 0.78rem; white-space: nowrap; }

/* ── Fare Panel ── */
.fare-panel {
  margin-top: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
  padding: 1rem;
  animation: fadeSlideIn 0.3s ease;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.fare-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.7rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.fare-meta-item { display: flex; align-items: center; gap: 0.35rem; }
.fare-meta-item strong { color: var(--text); font-size: 0.92rem; }

/* ── Ride Options ── */
.ride-options { display: grid; gap: 0.4rem; }

.ride-option {
  display: grid;
  grid-template-columns: 2.8rem 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.15s ease;
  background: var(--bg-soft);
}

.ride-option:hover { border-color: var(--border); }

.ride-option.is-selected {
  border-color: var(--text);
  background: var(--panel);
}

.ride-option img { width: 2.4rem; height: 2.4rem; object-fit: contain; }

.ride-option-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--panel-strong);
  font-size: 1rem;
}

.ride-option-name { font-weight: 700; font-size: 0.92rem; }
.ride-option-eta { font-size: 0.78rem; color: var(--muted); margin-top: 0.08rem; }
.ride-option-price { font-weight: 800; font-size: 1.1rem; text-align: right; white-space: nowrap; }

/* ── Booking Details ── */
.booking-details { margin-top: 0.7rem; animation: fadeSlideIn 0.3s ease; }

.booking-schedule-toggle {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.7rem;
  background: var(--bg-soft);
  padding: 3px;
}

.schedule-btn {
  flex: 1;
  padding: 0.65rem 0.85rem;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: 0.15s ease;
  border-radius: 999px;
}

.schedule-btn.is-active {
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.schedule-btn:not(.is-active):hover { color: var(--text); }

.booking-schedule-picker { margin-bottom: 0.65rem; animation: fadeSlideIn 0.3s ease; }

.booking-schedule-row { display: flex; gap: 0.5rem; }

.booking-schedule-row input {
  flex: 1;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font-size: 0.88rem;
  font-family: inherit;
}

.booking-schedule-row input:focus { outline: none; border-color: var(--text); }

.booking-schedule-confirm {
  margin-top: 0.45rem;
  padding: 0.45rem 0.65rem;
  background: rgba(5, 148, 79, 0.06);
  border: 1px solid rgba(5, 148, 79, 0.2);
  border-radius: 8px;
  color: var(--ok);
  font-size: 0.82rem;
}

.booking-schedule-error {
  margin-top: 0.45rem;
  padding: 0.45rem 0.65rem;
  background: rgba(225, 25, 0, 0.06);
  border: 1px solid rgba(225, 25, 0, 0.2);
  border-radius: 8px;
  color: var(--danger);
  font-size: 0.82rem;
}

.booking-confirm-btn {
  width: 100%;
  margin-top: 0.6rem;
  padding: 0.95rem;
  font-size: 1rem;
  border-radius: 12px;
}

.booking-confirm-btn:disabled { opacity: 0.45; cursor: not-allowed; }

.booking-status { margin-top: 0.5rem; font-size: 0.85rem; text-align: center; }
.booking-status.is-sending { color: var(--muted); }
.booking-status.is-error { color: var(--danger); }

/* ── Hero Visual ── */
.hero-visual {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 380px;
}

.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-visual-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.1rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-visual-overlay .btn {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-visual-overlay .btn:hover { background: rgba(255, 255, 255, 0.25); }

/* ── Suggestion Cards ── */
.suggestion-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 1.1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  transition: 0.15s ease;
}

.suggestion-card:hover { border-color: var(--text); }

.suggestion-card strong { font-size: 1.05rem; display: block; }
.suggestion-card p { margin-top: 0.25rem; color: var(--muted); font-size: 0.85rem; line-height: 1.45; }
.suggestion-card img { width: 4.5rem; height: 4.5rem; object-fit: contain; }

.suggestion-icon {
  width: 4.5rem;
  height: 4.5rem;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: var(--text);
  background: var(--bg-soft);
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* ── Destination Grid ── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.6rem;
}

.dest-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--panel);
  padding: 0.7rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  transition: 0.15s ease;
  text-decoration: none;
}

.dest-btn:hover { border-color: var(--text); }
.dest-btn i { color: var(--muted); font-size: 0.9rem; width: 1.2rem; text-align: center; }

/* ── Step Number ── */
.step-number {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

/* ── Vehicle Cards ── */
.vehicle-card-img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  margin-bottom: 0.7rem;
  padding: 0.5rem;
}

.vehicle-card-cta { margin-top: 0.75rem; }
.vehicle-card-cta .btn { width: 100%; }

.price-from {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.26rem 0.6rem;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

/* ── CTA Banner ── */
.cta-banner {
  border-radius: var(--radius);
  background: var(--text);
  padding: 3.5rem 2rem;
  text-align: center;
}

.cta-banner h2 {
  color: var(--bg);
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  letter-spacing: -0.03em;
}

.cta-banner p { color: rgba(255, 255, 255, 0.65); margin-top: 0.5rem; max-width: 48ch; margin-inline: auto; }

.cta-banner .btn {
  margin-top: 1.2rem;
  background: var(--bg);
  color: var(--text);
  padding: 0.85rem 2.2rem;
  font-size: 1rem;
}

.cta-banner .btn:hover { opacity: 0.9; }

/* ── Support Teaser ── */
.support-teaser {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--panel) 0%, var(--bg-soft) 100%);
  box-shadow: var(--shadow);
}

.support-teaser__copy {
  display: grid;
  gap: 0.45rem;
}

.support-teaser__copy h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.support-teaser__copy p:last-child {
  color: var(--muted);
  line-height: 1.6;
  max-width: 58ch;
}

.support-teaser__actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ── Responsive ── */
@media (max-width: 1080px) {
  .site-nav { display: none; }
  .menu-toggle, .theme-btn { display: inline-flex; align-items: center; justify-content: center; }

  .mobile-nav { display: none; border-top: 1px solid var(--border); background: var(--bg); }
  .mobile-nav.is-open { display: block; }
  .mobile-nav .container { display: grid; gap: 0.3rem; padding: 0.75rem 0; }
  .mobile-nav a { padding: 0.6rem 0.4rem; border-radius: 10px; font-weight: 600; color: var(--muted); }
  .mobile-nav a:hover, .mobile-nav a.is-active { color: var(--text); background: var(--bg-soft); }

  .hero-grid, .grid.two, .grid.three, .grid.four, .footer-grid { grid-template-columns: 1fr; }
  .support-teaser { flex-direction: column; align-items: flex-start; }
  .support-teaser__actions { width: 100%; justify-content: flex-start; }
  .header-actions .btn { display: none; }
  .header-actions .menu-toggle, .header-actions .theme-btn, .header-actions .btn[data-open-login] { display: inline-flex; }
  .language-switch { display: none; }
  .dest-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

@media (max-width: 700px) {
  .hero { padding-top: 2.5rem; }
  .panel, .card { padding: 1rem; }
  .btn { width: 100%; }
  .hero-actions, .cta-strip { flex-direction: column; }
  .hero-visual { min-height: 240px; }
  .suggestions-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 2rem 1.2rem; }
}
