/* =====================================================
   CarVolt  ·  Pulse Design System  ·  2026
   Modern · Light · Dynamic · Animated
   ===================================================== */

/* ── Design Tokens ──────────────────────────────────── */
:root {
  --green:         #00c67a;
  --green-deep:    #00a366;
  --green-light:   #00e890;
  --green-10:      rgba(0, 198, 122, 0.10);
  --green-15:      rgba(0, 198, 122, 0.15);
  --green-20:      rgba(0, 198, 122, 0.20);
  --green-glow:    rgba(0, 198, 122, 0.35);

  --blue:          #2563eb;
  --blue-soft:     #3b82f6;
  --blue-10:       rgba(37, 99, 235, 0.10);
  --blue-15:       rgba(37, 99, 235, 0.16);
  --blue-glow:     rgba(37, 99, 235, 0.25);

  --purple:        #7c3aed;
  --purple-10:     rgba(124, 58, 237, 0.10);
  --amber:         #f59e0b;
  --amber-10:      rgba(245, 158, 11, 0.12);

  --bg:            #ffffff;
  --bg-alt:        #f0f7ff;
  --bg-tint:       #f8faff;
  --bg-deep:       #e8f0fe;
  --surface:       #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.85);

  --text:          #0a1628;
  --text-2:        #1e3a5f;
  --text-muted:    #64748b;
  --text-light:    #94a3b8;

  --border:        rgba(15, 23, 42, 0.08);
  --border-2:      rgba(15, 23, 42, 0.14);
  --border-green:  rgba(0, 198, 122, 0.30);

  --shadow-xs:  0 1px 2px rgba(15,23,42,0.05);
  --shadow-sm:  0 2px 8px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.04);
  --shadow:     0 4px 20px rgba(15,23,42,0.08), 0 2px 8px rgba(15,23,42,0.04);
  --shadow-md:  0 8px 32px rgba(15,23,42,0.10), 0 2px 8px rgba(15,23,42,0.05);
  --shadow-lg:  0 20px 60px rgba(15,23,42,0.12), 0 4px 16px rgba(15,23,42,0.06);
  --shadow-xl:  0 32px 80px rgba(15,23,42,0.14);
  --shadow-phone: 0 40px 100px rgba(10,22,40,0.28), 0 8px 32px rgba(10,22,40,0.14);
  --shadow-green: 0 8px 32px rgba(0, 198, 122, 0.28);
  --shadow-blue:  0 8px 32px rgba(37, 99, 235, 0.22);

  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --header-h: 72px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-phone: 44px;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.03em; font-weight: 800; }

.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: 1rem; top: -100px; z-index: 200;
  background: var(--text); color: #fff;
  padding: .4rem 1rem; border-radius: 8px; font-weight: 700;
}
.skip-link:focus { top: .75rem; }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.container.narrow { max-width: 720px; }

/* ── Gradient text ─────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #00c67a 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════════════
   PAGE LOADER
══════════════════════════════════════════════════════ */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s var(--ease), visibility .5s;
}
.page-loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.loader-bolt { animation: loader-bounce .8s var(--spring) infinite alternate; }
@keyframes loader-bounce { to { transform: translateY(-8px); } }
.loader-bar {
  width: 140px; height: 3px;
  background: var(--bg-alt); border-radius: 99px; overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 99px;
  animation: loader-fill 2s var(--ease) forwards;
}
@keyframes loader-fill { from { width: 0 } to { width: 100% } }

/* ══════════════════════════════════════════════════════
   AMBIENT BLOBS
══════════════════════════════════════════════════════ */
.ambient {
  position: fixed; inset: 0; pointer-events: none;
  z-index: 0; overflow: hidden;
}
.glow {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0;
  animation: blob-drift 20s ease-in-out infinite;
}
@media (prefers-reduced-motion: no-preference) {
  .glow { opacity: 1; }
}
.glow-a {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,198,122,0.12) 0%, transparent 70%);
  top: -10%; left: -15%;
  animation-delay: 0s;
}
.glow-b {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.10) 0%, transparent 70%);
  top: 20%; right: -10%;
  animation-delay: -7s;
}
.glow-c {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
  bottom: 5%; left: 30%;
  animation-delay: -14s;
}
@keyframes blob-drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.05); }
  66%  { transform: translate(-20px, 20px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ══════════════════════════════════════════════════════
   CURSOR GLOW
══════════════════════════════════════════════════════ */
.cursor-glow {
  position: fixed; pointer-events: none;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,198,122,0.06) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  transition: opacity .3s;
  z-index: 1;
  opacity: 0;
}
@media (hover: hover) { .cursor-glow { opacity: 1; } }

/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h); z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav {
  height: 100%; display: flex; align-items: center;
  gap: 1rem;
}
.logo {
  display: flex; align-items: center; gap: .55rem;
  font-size: 1.2rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--text); text-decoration: none;
  flex-shrink: 0;
}
.logo-mark { flex-shrink: 0; border-radius: 9px; }
.logo-accent { color: var(--green); }

.nav-links {
  display: flex; align-items: center; gap: .15rem;
  margin-left: auto; list-style: none;
}
.nav-links a {
  display: block; padding: .45rem .75rem;
  font-size: .875rem; font-weight: 500;
  color: var(--text-muted);
  border-radius: 10px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-alt); }
.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: .45rem 1rem !important;
  border-radius: 10px !important;
  box-shadow: var(--shadow-green);
  transition: transform .2s var(--spring), box-shadow .2s !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(0,198,122,0.35) !important;
}

.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: .5rem;
  flex-direction: column; gap: 5px;
  margin-left: auto;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column; align-items: stretch;
    padding: 1rem;
    border-top: 1px solid var(--border);
    transform: translateY(-100%); opacity: 0;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s;
    margin-left: 0;
  }
  .nav-links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: .75rem 1rem; font-size: 1rem; }
}

/* ══════════════════════════════════════════════════════
   SECTIONS base
══════════════════════════════════════════════════════ */
.section { padding: 6rem 0; position: relative; z-index: 1; }
.section.section-tight { padding: 3rem 0; }
.section-alt { background: var(--bg-alt); }
.section-stats { background: var(--bg-tint); }

.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  color: var(--text);
  margin-bottom: .75rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.6;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--green); margin-bottom: .85rem;
}
.live-eyebrow { color: var(--text-muted); }
.live-eyebrow .pulse-dot { background: var(--green); }

/* Pulse dot */
.pulse-dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(0,198,122,.4);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 8px rgba(0,198,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,198,122,0); }
}

/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: var(--radius);
  font-size: .975rem; font-weight: 700;
  cursor: pointer; border: none; text-decoration: none;
  transition: transform .2s var(--spring), box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover { box-shadow: 0 16px 48px rgba(0,198,122,.4); }

.btn-ghost {
  background: var(--bg-alt);
  color: var(--text-2);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { background: var(--bg-deep); }

.btn-sm { padding: .65rem 1.25rem; font-size: .9rem; }

.btn-cta {
  background: #fff;
  color: var(--text);
  font-size: 1.05rem;
  padding: 1rem 2rem;
  box-shadow: var(--shadow-lg);
}
.btn-cta:hover { box-shadow: 0 24px 60px rgba(255,255,255,.15); }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 2rem;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(160deg, #f8fbff 0%, #ffffff 40%, #f0fdf8 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - var(--header-h) - 6rem);
}

/* Hero badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1rem;
  background: var(--green-10);
  border: 1px solid var(--border-green);
  border-radius: 999px;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 1.5rem;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.06;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-stats {
  display: flex; gap: 0; align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-sm);
  width: fit-content;
}
.hstat { display: flex; flex-direction: column; align-items: center; padding: 0 1.2rem; }
.hstat strong {
  font-size: 1.4rem; font-weight: 800;
  color: var(--text); line-height: 1.1;
}
.hstat strong.is-skeleton {
  background: linear-gradient(90deg, #e8f0fe 25%, #d8e8f8 50%, #e8f0fe 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  color: transparent; border-radius: 6px;
  min-width: 40px; min-height: 1.4rem;
}
@keyframes shimmer { to { background-position: -200% 0; } }
.hstat span { font-size: .75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.hstat-div { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* ── Hero visual / single phone ── */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}

.hero-phone-wrap {
  position: relative;
  display: flex; justify-content: center;
}

.hero-phone {
  position: relative;
  animation: phone-float 4s ease-in-out infinite;
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}

/* The phone frame — outer bezel */
.hero-phone-frame {
  position: relative;
  width: 280px;
  background: #f7f8fc;
  border-radius: 52px;
  padding: 12px;
  padding-top: 44px;     /* notch altında içerik başlasın */
  box-shadow:
    0 0 0 8px #1a1a1a,
    0 0 0 10px rgba(0,0,0,0.25),
    0 40px 100px rgba(10,22,40,0.30),
    0 10px 40px rgba(10,22,40,0.15);
  overflow: hidden;
}

/* Image fills screen — no distortion */
.hero-phone-frame img {
  display: block;
  width: 100%;
  height: auto;       /* natural aspect ratio */
  border-radius: 0 0 38px 38px;
  user-select: none;
  -webkit-user-drag: none;
}

/* Dynamic island — sits in the white top bar */
.hero-phone-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 30px;
  background: #1a1a1a;
  border-radius: 0 0 20px 20px;
  z-index: 10;
  pointer-events: none;
}

/* Floating chips */
.float-chip {
  position: absolute;
  display: flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  padding: .45rem .9rem;
  border-radius: 999px;
  font-size: .78rem; font-weight: 700;
  color: var(--text-2);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  z-index: 20;
  pointer-events: none;
}
.chip-dc {
  top: 60px; right: -70px;
  animation: chip-float 3.5s ease-in-out infinite;
}
.chip-dc svg { color: var(--amber); }
.chip-km {
  bottom: 100px; left: -70px;
  animation: chip-float 4s ease-in-out infinite .6s;
}
.chip-km svg { color: var(--green); }
@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* Shared phone frame outer (used in feature rows and carousel) */
.phone-frame-outer {
  position: relative;
  background: #111;
  border-radius: var(--radius-phone);
  padding: 12px;
}
.phone-frame-outer img {
  display: block;
  width: 100%;
  height: auto;       /* natural ratio — never distort */
  border-radius: 34px;
  user-select: none;
  -webkit-user-drag: none;
}
.phone-island {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 26px;
  background: #111; border-radius: 0 0 16px 16px;
  z-index: 5; pointer-events: none;
}

/* Hero wave */
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
}
.hero-wave svg { width: 100%; height: auto; display: block; }

/* ══════════════════════════════════════════════════════
   STATS GRID
══════════════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform .25s var(--spring), box-shadow .25s;
  cursor: default;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.stat-icon-green { background: var(--green-10); color: var(--green); }
.stat-icon-blue  { background: var(--blue-10); color: var(--blue); }
.stat-icon-purple{ background: var(--purple-10); color: var(--purple); }
.stat-icon-amber { background: var(--amber-10); color: var(--amber); }
.stat-card strong {
  display: block;
  font-size: 2rem; font-weight: 900; line-height: 1;
  color: var(--text); margin-bottom: .3rem;
}
.stat-card span { font-size: .8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }

/* ══════════════════════════════════════════════════════
   FEATURE ROWS
══════════════════════════════════════════════════════ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row-reverse { direction: rtl; }
.feature-row-reverse > * { direction: ltr; }

.feature-icon-wrap {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.icon-green { background: var(--green-10); color: var(--green); }
.icon-blue  { background: var(--blue-10); color: var(--blue); }
.icon-amber { background: var(--amber-10); color: var(--amber); }

.feature-text h3 {
  font-size: 1.7rem; margin-bottom: .75rem; color: var(--text);
}
.feature-text p {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 1.25rem;
}
.feature-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .55rem;
  margin-bottom: 1.5rem;
}
.feature-list li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .95rem; font-weight: 600; color: var(--text-2);
}
.feature-list li svg { color: var(--green); flex-shrink: 0; }

.feature-phone { position: relative; display: flex; justify-content: center; }
.phone-mockup-sm {
  position: relative;
  transition: transform .4s var(--spring);
}
.phone-mockup-sm .phone-frame-outer {
  width: 280px;
  box-shadow: var(--shadow-phone);
}
.phone-mockup-sm .phone-island { width: 80px; height: 26px; }
.phone-mockup-sm:hover { transform: scale(1.02); }

.feature-glow {
  position: absolute; width: 300px; height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none; z-index: -1;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.glow-green { background: rgba(0,198,122,.18); }
.glow-blue  { background: rgba(37,99,235,.15); }
.glow-amber { background: rgba(245,158,11,.15); }

/* ══════════════════════════════════════════════════════
   APP SCREENS CAROUSEL
══════════════════════════════════════════════════════ */
.section-screens { padding: 5rem 0 4rem; overflow: hidden; }
.screens-carousel-wrap { margin-top: 2.5rem; position: relative; }
.screens-track {
  display: flex; gap: 1.5rem;
  padding: 1rem 2rem 2rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  cursor: grab;
}
.screens-track::-webkit-scrollbar { display: none; }
.screens-track:active { cursor: grabbing; }

.screen-item {
  flex-shrink: 0; scroll-snap-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; margin: 0;
}
.screen-item figcaption {
  font-size: .85rem; font-weight: 700;
  color: var(--text-muted); text-align: center;
}

.phone-mockup-xs .phone-frame-outer {
  width: 200px;
  box-shadow: var(--shadow-lg);
  transition: transform .3s var(--spring), box-shadow .3s;
}
.phone-mockup-xs .phone-frame-outer:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-xl);
}
.phone-mockup-xs .phone-island { width: 70px; height: 22px; }
.phone-mockup-xs img { width: 100%; border-radius: 30px; }

.carousel-dots {
  display: flex; justify-content: center; gap: .5rem;
  padding: .5rem 0 1rem;
}
.cdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border-2);
  transition: all .3s var(--ease);
}
.cdot.active { width: 22px; border-radius: 3px; background: var(--green); }

/* ══════════════════════════════════════════════════════
   ROUTE DEMO
══════════════════════════════════════════════════════ */
.route-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.route-steps {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 1.1rem;
  margin: 1.5rem 0;
}
.route-steps li {
  display: flex; align-items: flex-start; gap: 1rem;
  font-size: .975rem; color: var(--text-muted);
  padding: .75rem 1rem;
  border-radius: var(--radius);
  background: transparent;
  border: 1px solid var(--border);
  transition: all .3s;
}
.route-steps li.is-done {
  color: var(--text-2); background: var(--green-10);
  border-color: var(--border-green);
}
.route-steps li.is-active {
  color: var(--text); background: var(--bg);
  border-color: var(--green);
  box-shadow: var(--shadow-sm), 0 0 0 3px var(--green-10);
}
.step-dot {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.step-dot-pulse {
  background: var(--green);
  animation: pulse 2s ease infinite;
}
.step-dot-empty { background: var(--border-2); }

.route-battery {
  margin: 1.5rem 0;
}
.route-battery-bar {
  height: 12px; background: var(--bg-alt);
  border-radius: 999px; overflow: visible;
  position: relative; border: 1px solid var(--border);
  margin-bottom: .5rem;
}
.route-battery-bar i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 999px;
  position: relative;
}
.battery-label {
  position: absolute; right: -2px; top: -22px;
  font-size: .75rem; font-weight: 700; color: var(--green);
}
.route-battery p { font-size: .875rem; color: var(--text-muted); }

.route-map-card {
  background: var(--surface); border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform .3s var(--spring);
}
.route-map-card:hover { transform: translateY(-4px); }
.route-map-header {
  padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
  font-size: .875rem; font-weight: 700;
  color: var(--text-2);
  gap: .5rem;
}
.route-map-title {
  display: flex; align-items: center; gap: .4rem;
}
.route-map-title svg { color: var(--blue); }
.route-map-badge {
  background: var(--blue-10); color: var(--blue);
  padding: .2rem .6rem; border-radius: 999px;
  font-size: .75rem; font-weight: 700;
}
.demo-route-svg { width: 100%; display: block; }
.demo-path { stroke-dasharray: 600; stroke-dashoffset: 600; animation: draw-path 2s var(--ease) 0.5s forwards; }
@keyframes draw-path { to { stroke-dashoffset: 0; } }
.demo-stop-pulse { animation: pulse 2.5s ease infinite; }
.car-marker { animation: move-car 6s ease-in-out infinite alternate; }
@keyframes move-car {
  0%   { transform: translate(40px, 185px); }
  100% { transform: translate(190px, 95px); }
}
.route-map-footer {
  padding: .75rem 1rem;
  display: flex; flex-wrap: wrap; gap: .5rem;
  border-top: 1px solid var(--border);
}
.route-info-chip {
  background: var(--bg-alt); border-radius: 999px;
  padding: .3rem .75rem;
  font-size: .78rem; font-weight: 600; color: var(--text-2);
}

/* ══════════════════════════════════════════════════════
   DISCOVERY CARDS
══════════════════════════════════════════════════════ */
.discovery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.discovery-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: transform .25s var(--spring), box-shadow .25s;
}
.discovery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.dc-icon { color: var(--text-muted); }
.discovery-card h3 { font-size: 1rem; color: var(--text); margin-bottom: .5rem; }
.discovery-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

.badge {
  display: inline-flex; align-items: center;
  padding: .3rem .75rem; border-radius: 999px;
  font-size: .75rem; font-weight: 700; white-space: nowrap;
}
.badge-public    { background: var(--green-10); color: var(--green-deep); }
.badge-likely    { background: var(--blue-10); color: var(--blue); }
.badge-unknown   { background: var(--amber-10); color: #b45309; }
.badge-restricted{ background: rgba(239,68,68,.10); color: #dc2626; }

/* ══════════════════════════════════════════════════════
   OPERATORS MARQUEE
══════════════════════════════════════════════════════ */
.section-operators { padding: 4rem 0 3rem; }
.marquee {
  overflow: hidden; position: relative;
  padding: .75rem 0; margin: 1.5rem 0;
}
.marquee::before,
.marquee::after {
  content: ''; position: absolute;
  top: 0; bottom: 0; width: 80px;
  z-index: 2;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.section-alt .marquee::before { background: linear-gradient(to right, var(--bg-alt), transparent); }
.section-alt .marquee::after  { background: linear-gradient(to left, var(--bg-alt), transparent); }

.marquee-track {
  display: flex; gap: 1rem;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }

.op-chip {
  display: flex; align-items: center; gap: .6rem;
  padding: .6rem 1.2rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .85rem; font-weight: 700; color: var(--text-2);
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
  transition: transform .2s, box-shadow .2s;
}
.op-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.op-chip img { width: 20px; height: 20px; object-fit: contain; border-radius: 4px; }

.op-top {
  display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.op-card {
  display: flex; align-items: center; gap: .6rem;
  padding: .75rem 1.25rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .875rem; font-weight: 700; color: var(--text-2);
  transition: transform .25s var(--spring), box-shadow .25s;
}
.op-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.op-card span { color: var(--text-muted); font-weight: 500; font-size: .8rem; margin-left: .25rem; }

/* ══════════════════════════════════════════════════════
   STEPS GRID
══════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  list-style: none; padding: 0;
  counter-reset: steps;
}
.steps-grid li {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  position: relative; overflow: hidden;
  transition: transform .25s var(--spring), box-shadow .25s;
}
.steps-grid li:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-num-wrap { margin-bottom: 1rem; }
.step-num {
  display: inline-block;
  font-size: .75rem; font-weight: 900;
  letter-spacing: .08em;
  color: var(--green);
  padding: .25rem .6rem;
  background: var(--green-10); border-radius: 8px;
}
.step-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2); margin-bottom: 1rem;
}
.steps-grid h3 { font-size: 1.1rem; color: var(--text); margin-bottom: .5rem; }
.steps-grid p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════════════
   VEHICLE SECTION
══════════════════════════════════════════════════════ */
.vehicle-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.vehicle-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.25rem 0; }
.vtag {
  padding: .35rem .85rem;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .8rem; font-weight: 700; color: var(--text-2);
}
.vtag-more { background: var(--green-10); border-color: var(--border-green); color: var(--green-deep); }
.note-pill {
  display: inline-block;
  background: var(--amber-10); border: 1px solid rgba(245,158,11,.25);
  padding: .6rem 1rem; border-radius: var(--radius);
  font-size: .875rem; color: #78350f; line-height: 1.5;
  margin-top: .5rem;
}

.vehicle-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  transition: transform .3s var(--spring);
}
.vehicle-card:hover { transform: translateY(-4px); }
.vehicle-card-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.vehicle-brand-logo { flex-shrink: 0; }
.vehicle-name { font-size: 1.1rem; font-weight: 800; color: var(--text); }
.vehicle-type { font-size: .8rem; color: var(--text-muted); font-weight: 500; }
.vehicle-badge {
  margin-left: auto;
  background: var(--blue-10); color: var(--blue);
  padding: .25rem .65rem; border-radius: 999px;
  font-size: .75rem; font-weight: 700;
}
.vehicle-stats-row {
  display: flex; gap: .75rem; margin-bottom: 1.25rem;
}
.vs-item {
  flex: 1; background: var(--bg-tint);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: .75rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .25rem;
}
.vs-item svg { color: var(--green); margin-bottom: .1rem; }
.vs-item span { font-size: 1rem; font-weight: 800; color: var(--text); }
.vs-item small { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.vehicle-dl { display: flex; flex-direction: column; gap: .5rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.vehicle-dl div { display: flex; justify-content: space-between; align-items: center; font-size: .9rem; }
.vehicle-dl dt { color: var(--text-muted); font-weight: 500; }
.vehicle-dl dd { font-weight: 700; color: var(--text); margin: 0; }

/* ══════════════════════════════════════════════════════
   CITY SEARCH
══════════════════════════════════════════════════════ */
.city-layout { max-width: 640px; }
.city-search-wrap { width: 100%; }
.city-search-box {
  position: relative; display: flex; align-items: center;
  background: var(--surface); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color .2s, box-shadow .2s;
}
.city-search-box:focus-within {
  border-color: var(--green);
  box-shadow: var(--shadow), 0 0 0 3px var(--green-10);
}
.city-search-icon {
  position: absolute; left: 1rem;
  color: var(--text-muted); pointer-events: none;
}
.city-input {
  width: 100%; padding: 1rem 1rem 1rem 3rem;
  border: none; outline: none;
  background: transparent;
  font-size: 1rem; color: var(--text);
}
.city-status { margin-top: .75rem; font-size: .875rem; color: var(--text-muted); min-height: 1.5em; }
.city-results { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.city-result-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: transform .2s var(--spring), box-shadow .2s;
}
.city-result-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.city-result-name { font-weight: 700; color: var(--text); }
.city-result-count { font-size: .875rem; color: var(--green); font-weight: 700; }

/* ══════════════════════════════════════════════════════
   BENTO / WHY
══════════════════════════════════════════════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.bento-wide { grid-column: span 2; }
.bento-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: transform .25s var(--spring), box-shadow .25s;
}
.bento-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bento-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.bento-item h3 { font-size: 1.1rem; color: var(--text); margin-bottom: .5rem; }
.bento-item p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════ */
.faq-layout { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:has(.faq-q[aria-expanded="true"]) { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 700; color: var(--text);
  text-align: left; line-height: 1.4;
}
.faq-q:hover { color: var(--green); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: ''; position: absolute;
  background: currentColor; border-radius: 2px;
  top: 50%; left: 50%;
  transition: transform .3s var(--ease);
}
.faq-icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a { padding: 0 1.5rem 1.25rem; }
.faq-a p { font-size: .95rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ══════════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════════ */
.cta-final {
  background: linear-gradient(135deg, #0a1628 0%, #12284d 50%, #0f1f3a 100%);
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(0,198,122,.2) 0%, transparent 70%);
}
.cta-box {
  text-align: center; padding: 4rem 2rem;
  position: relative; z-index: 1;
}
.cta-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem 1rem;
  background: rgba(0,198,122,.15);
  border: 1px solid rgba(0,198,122,.35);
  border-radius: 999px;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--green); margin-bottom: 1.5rem;
}
.cta-box h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff; margin-bottom: 1rem;
}
.cta-box .section-sub { color: rgba(255,255,255,.65); max-width: 460px; margin-inline: auto; }
.cta-actions { display: flex; justify-content: center; margin: 2rem 0 1rem; }
.cta-trust {
  display: flex; align-items: center; justify-content: center;
  gap: .75rem; flex-wrap: wrap;
  font-size: .875rem; color: rgba(255,255,255,.5);
  font-weight: 500;
}
.cta-trust strong { color: rgba(255,255,255,.9); font-weight: 800; }
.cta-trust-div { color: rgba(255,255,255,.25); }
.app-soon {
  display: flex; align-items: center; gap: .5rem;
  font-size: .9rem; color: rgba(255,255,255,.6);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════
   LEGAL
══════════════════════════════════════════════════════ */
.section-legal h2 { font-size: 1.3rem; margin-bottom: .5rem; }
.section-legal p { color: var(--text-muted); }
.section-legal a { color: var(--green); text-decoration: underline; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,.75);
  padding: 3rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { color: #fff; margin-bottom: .75rem; }
.footer-tag { font-size: .875rem; line-height: 1.6; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .75rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
.social-link:hover { background: var(--green); color: #fff; }

.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: .5rem; }
.footer-col-title {
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.4); margin-bottom: .35rem;
}
.footer-col a {
  font-size: .875rem; color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0;
  font-size: .8rem; color: rgba(255,255,255,.35);
  flex-wrap: wrap; gap: .5rem;
}

/* ══════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.reveal-left { transform: translateX(-30px); }
.reveal.reveal-right { transform: translateX(30px); }
.reveal.reveal-scale { transform: scale(.96) translateY(20px); }
.reveal.reveal-delay { transition-delay: .15s; }
.reveal.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════════════════════════════════════════
   TILT
══════════════════════════════════════════════════════ */
[data-tilt], [data-tilt-subtle] {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; }
  .hero-badge, .hero-actions, .hero-stats { justify-content: center; }
  .hero-sub { margin-inline: auto; }
  .hero-stats { margin-inline: auto; }
  .hero-phone-frame { width: 240px; }
  .chip-dc  { right: -50px; }
  .chip-km  { left: -50px; }

  .feature-row,
  .feature-row-reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row-reverse { direction: ltr; }

  .route-grid { grid-template-columns: 1fr; }
  .vehicle-grid { grid-template-columns: 1fr; }

  .bento { grid-template-columns: 1fr 1fr; }
  .bento-wide { grid-column: span 2; }
}

@media (max-width: 680px) {
  .section { padding: 4rem 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .discovery-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav { flex-direction: column; }
  .hero-phone-frame { width: 210px; }
  .chip-dc, .chip-km { display: none; }
  .hero-stats { flex-wrap: wrap; width: 100%; }
  .hstat { flex: 1 1 40%; padding: .5rem; }
  .hstat-div { display: none; }
  .route-steps li { flex-direction: column; gap: .5rem; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .vehicle-stats-row { flex-direction: column; }
  .hero h1 { font-size: 2.2rem; }
}

/* ── Misc utilities ─────────────────────────────────── */
[hidden] { display: none !important; }
.is-skeleton {
  background: linear-gradient(90deg, #e8f0fe 25%, #d8e8f8 50%, #e8f0fe 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  color: transparent; border-radius: 6px;
  min-width: 50px; min-height: 1.2em;
  display: inline-block;
}
