/* ============================================================
   7GO Delivery - site stylesheet
   Mobile first. Base styles target a 375px phone; min-width
   media queries widen the layout at 600px, 900px and 1200px.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@600;700;800;900&display=swap');

:root {
  /* Brand */
  --brand-blue: #1750E8;
  --brand-blue-hover: #0F3FC2;
  --brand-red: #E02424;
  --brand-red-hover: #C01E1E;
  --accent-green: #10B981;
  --accent-amber: #F59E0B;

  /* Ink and surfaces */
  --ink: #0F172A;
  --ink-soft: #334155;
  /* #475569 clears 7:1 on white. Small text on this site gets read
     outdoors on a phone, where the usual #64748B washes out. */
  --ink-muted: #475569;
  --surface: #F8FAFC;
  --surface-alt: #F1F5F9;
  --line: #E2E8F0;

  /* Dark sections */
  --dark-bg: #0B1220;
  --dark-bg-alt: #131C2E;
  --dark-line: rgba(255, 255, 255, 0.12);
  --dark-text: #E2E8F0;
  --dark-text-dim: #B6C2D2;

  /* Type */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Motion */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --gutter: 20px;
  --nav-height: 64px;
  --tap: 48px;               /* minimum touch target */
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  /* Stop anchor targets hiding behind the sticky header. */
  scroll-padding-top: calc(var(--nav-height) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-locked {
  overflow: hidden;
}

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

/* Class-level display rules below would otherwise beat the UA rule for
   [hidden], leaving empty error slots and success panels on screen. */
[hidden] {
  display: none !important;
}

a {
  color: var(--brand-blue);
}

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

/* Visible focus ring everywhere, for keyboard users. */
:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--brand-blue);
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

/* ============================================================
   Announcement bar
   ============================================================ */
.top-bar {
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-red) 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 8px var(--gutter);
  line-height: 1.35;
}

.top-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

/* ============================================================
   Navigation
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: var(--nav-height);
  padding: 0 var(--gutter);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Uses the -tight.svg copies. The original brand files carry 27% empty
   space above and below the artwork, which made the logo render small. */
.nav-brand-logo {
  height: 40px;
  width: auto;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 26px;
  align-items: center;
}

.nav-link {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--brand-blue);
}

.nav-link.is-active {
  color: var(--brand-blue);
  border-bottom-color: var(--brand-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* .btn sets display:inline-flex later in this file, so this needs the
   extra specificity to win - otherwise the desktop CTA shows on phones. */
.nav-actions .nav-desktop-only {
  display: none;
}

/* Hamburger */
.hamburger-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--tap);
  height: var(--tap);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger-bars {
  position: relative;
}

.hamburger-bars,
.hamburger-bars::before,
.hamburger-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.hamburger-bars::before,
.hamburger-bars::after {
  content: '';
  position: absolute;
}

.hamburger-bars::before { transform: translateY(-6px); }
.hamburger-bars::after  { transform: translateY(6px); }

.hamburger-toggle.is-open .hamburger-bars {
  background: transparent;
}

.hamburger-toggle.is-open .hamburger-bars::before {
  transform: rotate(45deg);
}

.hamburger-toggle.is-open .hamburger-bars::after {
  transform: rotate(-45deg);
}

/* Mobile drawer */
.mobile-nav-drawer {
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px var(--gutter) 32px;
  background: #fff;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.mobile-nav-drawer.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  padding: 16px 4px;
  min-height: var(--tap);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--surface-alt);
}

.mobile-nav-link.is-active {
  color: var(--brand-blue);
}

.mobile-nav-cta {
  margin-top: 20px;
  width: 100%;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  min-height: var(--tap);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

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

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-hover) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(224, 36, 36, 0.28);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-hover) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(23, 80, 232, 0.28);
}

.btn-outline {
  background: #fff;
  border: 1.5px solid #CBD5E1;
  color: var(--ink);
}

.section-dark .btn-outline {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(15, 23, 42, 0.18);
  color: var(--ink);
}

.btn-lg {
  padding: 15px 28px;
  min-height: 54px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* ============================================================
   Section shell
   ============================================================ */
.section {
  padding: 44px var(--gutter);
}

.section-tight {
  padding-top: 32px;
  padding-bottom: 32px;
}

.section-light {
  background: var(--surface);
  color: var(--ink);
}

.section-dark {
  background: var(--dark-bg);
  color: var(--dark-text);
}

.section-header {
  max-width: 680px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-tag {
  display: block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 1.4px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--brand-red);
}

.section-tag-blue {
  color: var(--brand-blue);
}

.section-dark .section-tag {
  color: var(--accent-amber);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.section-desc {
  font-size: 1rem;
  color: var(--ink-muted);
}

.section-dark .section-desc {
  color: var(--dark-text-dim);
}

.section-cta {
  margin-top: 28px;
  text-align: center;
}

/* ============================================================
   Home hero
   ============================================================ */
.section-hero-light {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--surface-alt) 100%);
  padding: 28px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--brand-red);
  background: rgba(224, 36, 36, 0.08);
  padding: 5px 12px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
  text-wrap: balance;
}

/* Own line, so the headline always breaks after "Local stores,".
   width: fit-content matters: without it the box is as wide as the
   column, the text only covers part of it, and the gradient never
   reaches blue - which is why it used to look flat red. Hugging the
   text makes the sweep land the same way at every screen size. */
.hero-title span {
  display: block;
  width: fit-content;
  background: linear-gradient(115deg, var(--brand-red) 0%, #9C2A8F 55%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--brand-red); /* shown if background-clip: text is unsupported */
}

.hero-subtitle {
  font-size: 1.03rem;
  color: var(--ink-muted);
  margin-bottom: 22px;
  max-width: 44ch;
}

/* Email capture pill */
.address-search-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.address-input {
  flex: 1;
  min-height: var(--tap);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 16px; /* 16px stops iOS zooming on focus */
  color: var(--ink);
  background: var(--surface);
}

.address-input::placeholder {
  color: #7A8798;
}

.address-search-box .btn {
  width: 100%;
}

.form-note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 10px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  list-style: none;
  margin-top: 22px;
}

.hero-points li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
}

.hero-points-center {
  justify-content: center;
  margin-top: 24px;
}

.hero-image-showcase {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.16);
}

.hero-showcase-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.hero-float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 13px;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
}

.hero-float-badge-1 { top: 14px; left: 14px; }
.hero-float-badge-3 { bottom: 14px; right: 14px; }

.badge-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70%  { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ============================================================
   Interior page hero
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, #FFFFFF 0%, var(--surface-alt) 100%);
  padding: 36px var(--gutter) 40px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.page-hero-driver {
  background: linear-gradient(160deg, #0B1220 0%, #16233C 100%);
  border-bottom: none;
  color: #fff;
}

.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.page-hero-sub {
  font-size: 1rem;
  color: var(--ink-muted);
  max-width: 52ch;
  margin: 0 auto;
}

.page-hero-driver .page-hero-title { color: #fff; }
.page-hero-driver .page-hero-sub   { color: var(--dark-text); }
.page-hero-driver .hero-eyebrow {
  color: #FFD9A0;
  background: rgba(245, 158, 11, 0.16);
}
.page-hero-driver .hero-points li { color: var(--dark-text); }

.page-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

/* ============================================================
   Store cards
   ============================================================ */
.preview-note {
  max-width: 760px;
  margin: 0 auto 22px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #FFE3B0;
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: center;
}

.preview-note strong { color: var(--accent-amber); }
.preview-note a { color: #FFE3B0; }

.section-light .preview-note {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.4);
  color: #7A4E05;
}

.section-light .preview-note strong { color: #7A4E05; }

.category-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 22px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.category-chips::-webkit-scrollbar { display: none; }

.category-chip {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: var(--dark-text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.category-chip.active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}

.marketplace-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.store-card {
  background: var(--dark-bg-alt);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.store-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.25);
}

.store-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1E293B, #0F172A);
}

.store-banner-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.store-cat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
}

.store-body {
  padding: 16px;
}

.store-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.store-tags {
  font-size: 0.85rem;
  color: var(--dark-text-dim);
  margin-bottom: 12px;
}

.store-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-amber);
}

.store-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-amber);
}

.stores-empty {
  text-align: center;
  color: var(--dark-text-dim);
  padding: 32px 0;
}

/* ============================================================
   Ecosystem / benefit / process cards
   ============================================================ */
.ecosystem-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.ecosystem-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.ecosystem-icon,
.benefit-icon {
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 14px;
}

.ecosystem-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.ecosystem-desc {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.benefit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 7px;
}

.benefit-card p {
  color: var(--ink-muted);
  font-size: 0.93rem;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  list-style: none;
}

.process-card {
  position: relative;
  background: var(--dark-bg-alt);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-lg);
  padding: 22px 20px 22px 62px;
}

.process-num {
  position: absolute;
  left: 18px;
  top: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-hover));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
}

.process-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.process-card p {
  color: var(--dark-text-dim);
  font-size: 0.9rem;
}

/* ============================================================
   Panels and lists
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.panel-muted {
  background: var(--surface-alt);
  box-shadow: none;
}

.panel p {
  color: var(--ink-muted);
  margin-bottom: 12px;
}

.panel-subhead {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 24px 0 10px;
}

.panel-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--ink-muted);
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.panel-actions .btn { flex: 1 1 160px; }

.check-list,
.numbered-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.check-list-plain li::before {
  background: rgba(23, 80, 232, 0.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231750E8' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.numbered-list {
  counter-reset: step;
}

.numbered-list li {
  position: relative;
  padding-left: 34px;
  font-size: 0.94rem;
  color: var(--ink-soft);
  counter-increment: step;
}

.numbered-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

/* ============================================================
   Cards: estimator and order journey
   ============================================================ */
.interactive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.card-light-glass {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.card-sub {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.card-footnote {
  margin-top: 14px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

.range-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 8px;
}

.range-value {
  color: var(--brand-red-hover);
  font-weight: 800;
}

.range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 6px;
  background: linear-gradient(to right, var(--brand-red) var(--range-fill, 20%), var(--line) var(--range-fill, 20%));
  outline: none;
  margin-top: 10px;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand-red);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.2);
  cursor: pointer;
}

.range-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand-red);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.2);
  cursor: pointer;
}

.fare-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 6px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--surface-alt);
  border: 1px solid var(--line);
}

.fare-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.fare-formula {
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.fare-amount {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--brand-red);
  letter-spacing: -0.02em;
}

/* Order-journey stepper.
   Default state = everything lit and the line fully coloured, so with
   JavaScript off the list still reads correctly. app.js adds
   .is-tracking, which dims it back down and drives --progress on scroll. */
.tracker-stepper {
  --progress: 100%;
  position: relative;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 4px;
}

/* The unfilled track */
.tracker-stepper::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 3px;
  background: var(--line);
}

/* The coloured fill that grows as you scroll. Blue at the start,
   green by the time it reaches "Delivered". */
.tracker-stepper::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 12px;
  width: 3px;
  height: var(--progress);
  max-height: calc(100% - 24px);
  border-radius: 3px;
  background: linear-gradient(180deg, var(--brand-blue) 0%, #0E7FC4 55%, var(--accent-green) 100%);
  transition: height 0.15s linear;
}

.tracker-stepper.is-tracking { --progress: 0%; }

.tracker-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--brand-blue);
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  transition: border-color 0.35s ease, color 0.35s ease,
              box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dormant: waiting for the fill to reach it. */
.tracker-stepper.is-tracking .step-icon {
  border-color: var(--line);
  color: #94A3B8;
}

.tracker-stepper.is-tracking .step-info h3 {
  color: var(--ink-muted);
  transition: color 0.35s ease;
}

/* Lit: the fill has passed this step. */
.tracker-stepper.is-tracking .tracker-step.is-lit .step-icon {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(23, 80, 232, 0.12);
  transform: scale(1.06);
}

.tracker-stepper.is-tracking .tracker-step.is-lit .step-info h3 {
  color: var(--ink);
}

/* The last step is the delivery itself, so it lands on green. */
.tracker-stepper.is-tracking .tracker-step:last-child.is-lit .step-icon {
  border-color: var(--accent-green);
  color: #067A55;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.16);
}

.step-info h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.step-info p {
  font-size: 0.86rem;
  color: var(--ink-muted);
}

/* ============================================================
   Forms
   ============================================================ */
.form-shell {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  /* The forms sit inside .section-dark, whose light text would otherwise
     inherit into this white card and wash out every unselected option. */
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}

.form-shell-flush {
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.form-fieldset {
  border: none;
  margin-bottom: 24px;
}

.form-legend {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--brand-blue);
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  width: 100%;
}

.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
}

.form-help {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 6px;
}

.form-input,
.form-select {
  width: 100%;
  min-height: var(--tap);
  padding: 12px 14px;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-md);
  background: #fff;
  font-family: var(--font-body);
  font-size: 16px; /* 16px stops iOS zooming on focus */
  color: var(--ink);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-textarea {
  min-height: 96px;
  resize: vertical;
  line-height: 1.5;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2352616F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(23, 80, 232, 0.15);
}

.form-input[aria-invalid="true"],
.form-select[aria-invalid="true"] {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(224, 36, 36, 0.12);
}

/* --brand-red-hover, not --brand-red: the lighter red misses 4.5:1 on
   white at this size. The icon means colour is never the only signal. */
.field-error {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-red-hover);
}

.field-error::before {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C01E1E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Yes / No pills */
.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-pill {
  flex: 1 1 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  padding: 10px 16px;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-md);
  background: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.radio-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-pill:has(input:checked) {
  border-color: var(--brand-blue);
  background: rgba(23, 80, 232, 0.08);
  color: var(--brand-blue);
}

.radio-pill:has(input:focus-visible) {
  outline: 3px solid var(--brand-blue);
  outline-offset: 2px;
}

/* Vehicle picker */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.choice-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 88px;
  padding: 14px 10px;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-md);
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-fast);
}

.choice-tile input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-emoji {
  font-size: 1.6rem;
  line-height: 1;
}

.choice-label {
  font-size: 0.88rem;
  font-weight: 700;
}

.choice-tile:has(input:checked) {
  border-color: var(--brand-blue);
  border-width: 2px;
  background: rgba(23, 80, 232, 0.08);
  color: var(--brand-blue);
}

.choice-tile:has(input:focus-visible) {
  outline: 3px solid var(--brand-blue);
  outline-offset: 2px;
}

/* Status and success */
.form-status {
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 600;
}

.form-status-error   { color: var(--brand-red-hover); }
.form-status-success { color: #067A55; }

.form-success {
  text-align: center;
  padding: 34px 20px;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.14);
  color: var(--accent-green);
  font-size: 1.7rem;
  font-weight: 800;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--ink-muted);
  max-width: 40ch;
  margin: 0 auto;
}

/* ============================================================
   FAQ - native <details> accordion, works with no JavaScript
   ============================================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand-blue);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-title {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--tap);
  padding: 16px 48px 16px 18px;
  cursor: pointer;
  list-style: none;
}

.faq-title::-webkit-details-marker { display: none; }
.faq-title::marker { content: ''; }

.faq-title h3 {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
}

.faq-title::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  border-right: 2.5px solid var(--brand-blue);
  border-bottom: 2.5px solid var(--brand-blue);
  transform: rotate(45deg);
  transition: transform var(--transition-fast);
}

.faq-card[open] .faq-title::after {
  transform: rotate(-135deg);
  margin-top: -2px;
}

.faq-card[open] .faq-title {
  padding-bottom: 6px;
}

.faq-desc {
  padding: 0 18px 18px;
  font-size: 0.93rem;
  color: var(--ink-muted);
}

.faq-title:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: -3px;
}

/* ============================================================
   CTA blocks
   ============================================================ */
.split-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.split-cta-card {
  background: var(--dark-bg-alt);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
}

.split-cta-card h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.split-cta-card p {
  color: var(--dark-text-dim);
  font-size: 0.93rem;
  margin-bottom: 18px;
}

.closing-cta {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.closing-cta h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.closing-cta p {
  color: var(--dark-text-dim);
  margin-bottom: 20px;
}

.closing-cta-note {
  margin-top: 16px;
  font-size: 0.85rem;
}

.closing-cta-note a {
  color: #fff;
  text-decoration: underline;
}

/* ============================================================
   Sticky mobile CTA (drivers page)
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}

body:has(.sticky-cta) .footer {
  padding-bottom: 96px;
}

/* ============================================================
   Contact list
   ============================================================ */
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-muted);
}

.contact-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  min-height: 28px;
  display: flex;
  align-items: center;
}

a.contact-value { color: var(--brand-blue); }

/* ============================================================
   WhatsApp float
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 96;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float-raised {
  bottom: calc(84px + env(safe-area-inset-bottom));
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #070A12;
  color: var(--dark-text);
  padding: 40px var(--gutter) 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto 28px;
}

.footer-logo {
  height: 38px;
  width: auto;
  margin-bottom: 14px;
}

.footer-about {
  font-size: 0.9rem;
  color: var(--dark-text-dim);
  max-width: 42ch;
}

.footer-col h2 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #fff;
  margin-bottom: 14px;
}

.footer-links,
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links a,
.footer-contact a,
.footer-contact li {
  color: var(--dark-text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 7px 0;
  display: inline-block;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--dark-text-dim);
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a {
  color: var(--dark-text-dim);
  text-decoration: none;
}

/* ============================================================
   600px and up - small tablets, large phones
   ============================================================ */
@media (min-width: 600px) {
  :root { --gutter: 32px; }

  .section { padding: 60px var(--gutter); }
  .section-title { font-size: 2.1rem; }
  .nav-brand-logo { height: 44px; }
  .hero-title { font-size: 3.15rem; }
  .page-hero-title { font-size: 2.4rem; }
  .page-hero { padding: 52px var(--gutter) 56px; }

  .address-search-box {
    flex-direction: row;
    align-items: center;
    padding: 10px 10px 10px 16px;
    border-radius: 40px;
  }

  .address-input {
    border: none;
    background: transparent;
    padding: 12px 6px;
  }

  .address-search-box .btn {
    width: auto;
    border-radius: 30px;
    flex-shrink: 0;
  }

  .page-hero-actions {
    flex-direction: row;
    justify-content: center;
  }

  .marketplace-grid,
  .ecosystem-grid,
  .benefit-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
  }

  .form-shell { padding: 32px 28px; }
  .panel { padding: 30px 26px; }
  .card-light-glass { padding: 28px 26px; }

  .choice-grid { grid-template-columns: repeat(4, 1fr); }

  .split-cta { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-showcase-img { height: 340px; }
}

/* ============================================================
   900px and up - desktop
   ============================================================ */
@media (min-width: 900px) {
  :root { --gutter: 5%; --nav-height: 76px; }

  .nav-links { display: flex; }
  .nav-actions .nav-desktop-only { display: inline-flex; }
  .hamburger-toggle { display: none; }
  .mobile-nav-drawer { display: none; }
  .nav-brand-logo { height: 52px; }

  .section { padding: 80px var(--gutter); }
  .section-tight { padding-top: 56px; padding-bottom: 56px; }
  .section-header { margin-bottom: 44px; }
  .section-title { font-size: 2.4rem; }

  .section-hero-light {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 48px;
    padding: 64px var(--gutter) 80px;
  }

  .hero-title { font-size: 3.65rem; }
  .hero-subtitle { font-size: 1.12rem; max-width: 42ch; }
  .hero-showcase-img { height: 480px; }

  .page-hero { padding: 72px var(--gutter); }
  .page-hero-title { font-size: 3rem; }
  .page-hero-sub { font-size: 1.1rem; }

  .marketplace-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .ecosystem-grid  { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .benefit-grid    { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .process-grid    { grid-template-columns: repeat(5, 1fr); gap: 16px; }

  .process-card { padding: 24px 20px; }
  .process-num { position: static; margin-bottom: 14px; }

  .two-col { grid-template-columns: 1fr 1fr; gap: 24px; }
  .two-col-form { grid-template-columns: 0.85fr 1.15fr; }

  .interactive-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; }

  /* The sticky mobile CTA is only for phones. */
  .sticky-cta { display: none; }
  body:has(.sticky-cta) .footer { padding-bottom: 24px; }
  .whatsapp-float-raised { bottom: calc(16px + env(safe-area-inset-bottom)); }

  .whatsapp-float { right: 24px; bottom: 24px; width: 58px; height: 58px; }
}

/* ============================================================
   1200px and up - wide screens
   ============================================================ */
@media (min-width: 1200px) {
  .section-hero-light,
  .section,
  .page-hero {
    padding-left: max(5%, calc((100% - 1320px) / 2));
    padding-right: max(5%, calc((100% - 1320px) / 2));
  }

  .hero-title { font-size: 4.15rem; }
}

/* ============================================================
   Motion
   Restrained on purpose: things settle into place once, and
   hover gives a small lift. Nothing loops, nothing bounces.
   ============================================================ */

/* The hidden start state only applies once app.js has confirmed it can
   run and that motion is wanted. With JavaScript off, nothing is hidden. */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-reveal [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* Hover lift - pointer devices only, so a tap on a phone never sticks. */
@media (hover: hover) and (pointer: fine) {
  .ecosystem-card,
  .benefit-card,
  .process-card,
  .faq-card,
  .split-cta-card {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal),
                border-color var(--transition-normal);
  }

  .ecosystem-card:hover,
  .benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
  }

  .process-card:hover,
  .split-cta-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.28);
  }

  .faq-card:hover {
    border-left-width: 5px;
  }

  .btn:hover {
    transform: translateY(-2px);
  }

  .btn-primary:hover { box-shadow: 0 8px 22px rgba(224, 36, 36, 0.36); }
  .btn-secondary:hover { box-shadow: 0 8px 22px rgba(23, 80, 232, 0.36); }

  .store-card:hover .store-banner-img {
    transform: scale(1.05);
  }
}

/* The fare figure gives a small nudge each time it changes, so the
   number is noticed without the layout moving. */
.fare-amount.is-bumped {
  animation: fare-bump 0.28s ease-out;
}

@keyframes fare-bump {
  0%   { transform: none; }
  40%  { transform: scale(1.07); }
  100% { transform: none; }
}

/* FAQ answer slides open rather than snapping. */
.faq-card[open] .faq-desc {
  animation: faq-open 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* Store cards unfolding in place on the home page */
.store-card.is-unfolded {
  animation: store-unfold 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes store-unfold {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* Everything above is switched off for anyone who asks for less motion. */
@media (prefers-reduced-motion: reduce) {
  .js-reveal [data-reveal],
  .js-reveal [data-reveal].is-revealed {
    opacity: 1;
    transform: none;
  }

  .faq-card[open] .faq-desc { animation: none; }
  .fare-amount.is-bumped { animation: none; }
  .store-card.is-unfolded { animation: none; }
  .tracker-stepper { --progress: 100%; }
}
