/* ==========================================================
   IA CARONA — Landing Site
   ========================================================== */

/* ---------- Variables ---------- */
:root {
  --ink:    #0A0E17;
  --ink-2:  #131C2B;
  --pine:   #15803D;
  --leaf:   #22C55E;
  --leaf-2: #16A34A;
  --mist:   #F0FDF4;
  --mist-2: #DCFCE7;
  --snow:   #FFFFFF;
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-700: #334155;
  --gray-900: #0F172A;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 100px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow:    0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.16);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--snow);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font); }
ul, ol { list-style: none; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--leaf);
  color: var(--snow);
  border-color: var(--leaf);
}
.btn-primary:hover {
  background: var(--leaf-2);
  border-color: var(--leaf-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,197,94,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--snow);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--snow);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--gray-900);
  border-color: var(--gray-200);
}
.btn-outline-dark:hover {
  border-color: var(--pine);
  color: var(--pine);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--ink);
  color: var(--snow);
  border-color: var(--ink);
}
.btn-dark:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-light {
  background: var(--snow);
  box-shadow: 0 1px 0 var(--gray-200);
}
.nav-light .nav-link { color: var(--gray-700); }
.nav-light .nav-link:hover { color: var(--pine); }
.nav-light .nav-logo { color: var(--gray-900); }
.nav-light .hamburger span { background: var(--gray-700); }

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--snow);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--leaf);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 20px; height: 20px; fill: var(--snow); }
.nav-logo span { color: var(--leaf); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--r-xs);
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--snow); background: rgba(255,255,255,0.07); }
.nav-link.active { color: var(--leaf); }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--r-xs);
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.08); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--snow);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--ink);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  z-index: 99;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 4px;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:last-of-type { border-bottom: none; margin-bottom: 12px; }
.mobile-menu a:hover { color: var(--leaf); }
.mobile-menu .btn { width: 100%; margin-top: 4px; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}
/* Glow orbs */
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,128,61,0.22) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.1) 0%, transparent 70%);
  bottom: -100px; left: 100px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--leaf);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--leaf);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--snow);
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero-title .hl {
  color: var(--leaf);
  position: relative;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.hero-social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-social-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}
.hero-store-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  color: var(--snow);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s;
}
.hero-store-badge:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.hero-store-badge svg { width: 18px; height: 18px; fill: var(--snow); }

/* Phone Mockup */
.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.phone {
  width: 280px;
  height: 560px;
  background: var(--ink-2);
  border-radius: 44px;
  border: 6px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 40px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 26px;
  background: var(--ink);
  border-radius: 20px;
  z-index: 10;
}
.phone-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}
/* Map area */
.phone-map {
  flex: 1;
  background: linear-gradient(160deg, #0f2416 0%, #0a1f16 40%, #0d2820 100%);
  position: relative;
  overflow: hidden;
}
/* Map grid lines */
.phone-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,197,94,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
/* Route line */
.phone-route {
  position: absolute;
  left: 40px; top: 60px;
  bottom: 30px; right: 80px;
  border: 2px dashed rgba(34,197,94,0.5);
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 40px;
}
.phone-dot-a {
  position: absolute;
  left: 36px; top: 56px;
  width: 10px; height: 10px;
  background: var(--leaf);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.2), 0 0 0 8px rgba(34,197,94,0.08);
}
.phone-dot-b {
  position: absolute;
  left: 36px; bottom: 26px;
  width: 10px; height: 10px;
  background: #F59E0B;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245,158,11,0.2);
}
/* Car icon */
.phone-car {
  position: absolute;
  right: 60px; top: 40%;
  transform: translate(50%, -50%);
}
.phone-car svg { width: 28px; height: 28px; fill: var(--leaf); filter: drop-shadow(0 2px 8px rgba(34,197,94,0.5)); }

/* Bottom UI card */
.phone-bottom {
  background: rgba(19,28,43,0.98);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px;
}
.phone-card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.phone-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pine), var(--leaf));
  flex-shrink: 0;
}
.phone-info { flex: 1; }
.phone-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--snow);
  margin-bottom: 2px;
}
.phone-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
}
.phone-stars {
  font-size: 0.65rem;
  color: #F59E0B;
}
.phone-btn {
  width: 100%;
  padding: 10px;
  background: var(--leaf);
  color: var(--snow);
  font-size: 0.78rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  text-align: center;
  letter-spacing: 0.02em;
}
.phone-tab-bar {
  display: flex;
  background: rgba(19,28,43,0.98);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 10px 0 6px;
}
.phone-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.phone-tab-icon {
  width: 20px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.15);
}
.phone-tab:first-child .phone-tab-icon { background: var(--leaf); }

/* Second phone (offset) */
.phone-secondary {
  width: 220px; height: 440px;
  position: absolute;
  right: -40px; bottom: 20px;
  border-radius: 36px;
  border: 5px solid rgba(255,255,255,0.08);
  background: var(--ink-2);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  overflow: hidden;
  opacity: 0.75;
}
.phone-sec-screen {
  height: 100%;
  background: linear-gradient(160deg, #0a1a0f, #0d2218);
  display: flex;
  flex-direction: column;
  padding: 40px 16px 16px;
  gap: 10px;
}
.phone-sec-bar {
  height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.08);
}
.phone-sec-bar.green { background: rgba(34,197,94,0.35); width: 70%; }
.phone-sec-bar.sm { width: 45%; height: 6px; background: rgba(255,255,255,0.05); }
.phone-sec-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 10px;
  margin-top: 8px;
}
.phone-sec-dot { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--pine), var(--leaf)); margin-bottom: 8px; }
.phone-sec-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.08); margin-bottom: 6px; }
.phone-sec-line.short { width: 60%; }

/* ---------- Stats Strip ---------- */
.stats-strip {
  background: var(--ink);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--leaf);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* ---------- Section layouts ---------- */
.section {
  padding: 100px 0;
}
.section-sm { padding: 60px 0; }
.section-alt { background: var(--gray-50); }
.section-mist { background: var(--mist); }
.section-dark { background: var(--ink); color: var(--snow); }

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pine);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 16px;
  text-wrap: balance;
}
.section-title.light { color: var(--snow); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 520px;
  line-height: 1.65;
}
.section-subtitle.light { color: rgba(255,255,255,0.55); }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ---------- How it works (Steps) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.6% + 24px);
  right: calc(16.6% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--leaf) 0%, var(--mist-2) 100%);
  background-repeat: no-repeat;
}
.step-card {
  background: var(--snow);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--mist-2);
}
.step-num {
  width: 52px; height: 52px;
  background: var(--mist);
  border: 2px solid var(--mist-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--pine);
  margin-bottom: 24px;
}
.step-icon {
  width: 52px; height: 52px;
  background: var(--mist);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.step-icon svg { width: 26px; height: 26px; fill: var(--pine); }
.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ---------- Feature Grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--snow);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--mist-2);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--mist);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; fill: var(--pine); }
.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* Dark feature cards */
.feature-card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
}
.feature-card-dark:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}
.feature-card-dark .feature-icon {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
}
.feature-card-dark .feature-icon svg { fill: var(--leaf); }
.feature-card-dark .feature-title { color: var(--snow); }
.feature-card-dark .feature-desc { color: rgba(255,255,255,0.5); }

/* ---------- Split Section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ink);
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,23,0.6) 0%, transparent 50%);
}
.split-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--snow);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
}
.split-badge-icon {
  width: 40px; height: 40px;
  background: var(--mist);
  border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center;
}
.split-badge-icon svg { width: 20px; height: 20px; fill: var(--pine); }
.split-badge-label { font-size: 0.75rem; color: var(--gray-500); }
.split-badge-value { font-size: 1rem; font-weight: 700; color: var(--gray-900); }
.split-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}

/* ---------- Driver section ---------- */
.driver-section {
  background: var(--ink);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.driver-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,128,61,0.18) 0%, transparent 70%);
  right: -100px; top: -100px;
  pointer-events: none;
}
.driver-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ---------- App download ---------- */
.download-section {
  background: linear-gradient(135deg, var(--pine) 0%, var(--leaf-2) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.download-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  top: -200px; right: -100px;
  border-radius: 50%;
}
.download-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.download-stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--snow);
  border-radius: var(--r-sm);
  color: var(--gray-900);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.22s var(--ease);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.store-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.store-btn svg { width: 24px; height: 24px; }
.store-btn-sub { font-size: 0.68rem; font-weight: 400; color: var(--gray-500); display: block; }
.download-qr {
  width: 120px; height: 120px;
  background: var(--snow);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.qr-inner {
  width: 100%; height: 100%;
  background: repeating-conic-gradient(#000 0% 25%, #fff 0% 50%) 0 0/8px 8px;
  border-radius: 4px;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--snow);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--mist-2); }
.testimonial-quote {
  font-size: 2rem;
  color: var(--leaf);
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--gray-600, #475569);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pine), var(--leaf));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--snow);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-900);
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--gray-500);
}
.stars {
  display: flex; gap: 2px; margin-bottom: 16px;
}
.stars svg { width: 14px; height: 14px; fill: #F59E0B; }

/* ---------- Cities strip ---------- */
.cities-strip {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  background: rgba(255,255,255,0.02);
}
.cities-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  overflow: hidden;
}
.cities-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  white-space: nowrap;
}
.city-dot {
  width: 6px; height: 6px;
  background: var(--leaf);
  border-radius: 50%;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--ink);
  padding: calc(var(--nav-h) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,128,61,0.15) 0%, transparent 70%);
  top: -100px; right: -50px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--snow);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  text-wrap: balance;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  line-height: 1.65;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--leaf); }
.breadcrumb span { color: rgba(255,255,255,0.2); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--gray-900);
  border-radius: var(--r-xl);
  padding: 64px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21,128,61,0.12) 0%, transparent 50%);
}
.cta-banner > * { position: relative; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: var(--snow);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s var(--ease);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--mist-2); }
.contact-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}
.contact-card-icon.green { background: var(--mist); }
.contact-card-icon.green svg { fill: var(--pine); }
.contact-card-icon svg { width: 28px; height: 28px; }
.contact-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
}
.contact-card-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pine);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
}
.contact-card-link:hover { gap: 12px; }

.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--mist-2); }
.faq-question {
  width: 100%;
  background: var(--snow);
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-item.open .faq-question { background: var(--mist); color: var(--pine); }
.faq-arrow {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.2s;
}
.faq-arrow svg { width: 12px; height: 12px; fill: var(--gray-500); }
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--mist-2); }
.faq-item.open .faq-arrow svg { fill: var(--pine); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  background: var(--snow);
}
.faq-item.open .faq-answer { display: block; }

/* ---------- About page ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--snow);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s var(--ease);
}
.value-card:hover { box-shadow: var(--shadow); border-color: var(--mist-2); transform: translateY(-2px); }
.value-icon {
  width: 44px; height: 44px;
  background: var(--mist);
  border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-icon svg { width: 22px; height: 22px; fill: var(--pine); }
.value-title { font-size: 0.95rem; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.value-desc { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

/* ---------- How it works page ---------- */
.steps-vertical { display: flex; flex-direction: column; gap: 0; }
.step-v {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: flex-start;
  padding-bottom: 48px;
  position: relative;
}
.step-v:last-child { padding-bottom: 0; }
.step-v-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  height: 100%;
}
.step-v-num {
  width: 52px; height: 52px;
  background: var(--pine);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--snow);
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--mist-2);
}
.step-v-connector {
  width: 2px;
  flex: 1;
  min-height: 60px;
  background: linear-gradient(to bottom, var(--pine), var(--mist-2));
  margin-top: 8px;
}
.step-v:last-child .step-v-connector { display: none; }
.step-v-content { padding-top: 12px; }
.step-v-title { font-size: 1.2rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; letter-spacing: -0.02em; }
.step-v-desc { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; max-width: 480px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 240px;
  margin-top: 16px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.social-link:hover { background: var(--pine); color: var(--snow); }
.social-link svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--snow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--leaf); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; }
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--leaf); }

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Utilities ---------- */
.text-green { color: var(--pine); }
.text-leaf { color: var(--leaf); }
.text-light { color: rgba(255,255,255,0.6); }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-3 { gap: 12px; }
.mt-8 { margin-top: 32px; }
.mt-6 { margin-top: 24px; }
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--mist-2);
  color: var(--pine);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; padding: 60px 0; }
  .phone-mockup { justify-content: flex-start; margin-top: 40px; }
  .phone-secondary { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
  .driver-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .download-grid { grid-template-columns: 1fr; text-align: center; }
  .download-stores { justify-content: center; }
  .download-qr { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-grid { padding: 48px 0; }
  .hero-title { font-size: 2.2rem; }
  .steps-grid, .feature-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .phone { width: 240px; height: 480px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .split-image { aspect-ratio: 4/3; }
  .page-hero { padding: calc(var(--nav-h) + 40px) 0 56px; }
  .cta-banner { padding: 44px 32px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; }
  .hero-social { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
}
