/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green:      #12A150;
  --green-dark: #0D7D3D;
  --green-lite: #E6F7EE;
  --black:      #0A0A0A;
  --ink:        #1A1A2E;
  --muted:      #6B7280;
  --border:     #E5E7EB;
  --bg:         #F9FAFB;
  --white:      #FFFFFF;
  --radius:     14px;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.14);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1,h2,h3,h4 { line-height: 1.2; }

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 96px 0; }
.section--alt { background: var(--bg); }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-lite); color: var(--green-dark);
  font-size: 13px; font-weight: 600; letter-spacing: .4px;
  padding: 6px 14px; border-radius: 999px;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px; font-size: 15px;
  font-weight: 600; cursor: pointer; transition: all .2s;
  border: none; text-decoration: none;
}
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(18,161,80,.35); }
.btn--outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn--outline:hover { background: var(--green-lite); }
.btn--dark { background: var(--black); color: #fff; }
.btn--dark:hover { background: #222; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.3); }

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 900; color: var(--ink);
}
.nav__logo-dot { color: var(--green); }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--muted); transition: color .15s; }
.nav__links a:hover { color: var(--green); }
.nav__cta { display: flex; gap: 10px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); margin: 5px 0;
  transition: all .25s;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 90vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #0A0A0A 0%, #0D3320 60%, #12A150 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(18,161,80,.25) 0%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute; width: 600px; height: 600px;
  border-radius: 50%; border: 1px solid rgba(18,161,80,.15);
  right: -100px; top: -100px;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green); font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px;
}
.hero__eyebrow-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.hero__title {
  font-size: clamp(42px, 5vw, 68px); font-weight: 900;
  color: #fff; letter-spacing: -.5px; margin-bottom: 20px;
}
.hero__title em { color: var(--green); font-style: normal; }
.hero__sub { font-size: 18px; color: rgba(255,255,255,.7); margin-bottom: 40px; max-width: 480px; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero__stats { display: flex; gap: 40px; }
.hero__stat-value { font-size: 28px; font-weight: 800; color: #fff; }
.hero__stat-label { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 2px; }

.hero__mockup {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero__phone {
  width: 260px; height: 520px;
  background: #111; border-radius: 40px;
  border: 8px solid #222;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px #333;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.hero__phone-bar {
  height: 36px; background: var(--green);
  display: flex; align-items: center; padding: 0 16px;
}
.hero__phone-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5); margin-right: 4px; }
.hero__phone-screen {
  flex: 1; background: #f4f4f4;
  display: flex; flex-direction: column;
}
.phone-map {
  flex: 1; background: linear-gradient(180deg, #e8f4e8 0%, #d4edda 100%);
  position: relative; overflow: hidden;
}
.phone-map::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(18,161,80,.08) 28px, rgba(18,161,80,.08) 29px),
    repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(18,161,80,.08) 28px, rgba(18,161,80,.08) 29px);
}
.phone-pin {
  position: absolute; top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 32px; height: 32px;
  background: var(--green); border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 4px 12px rgba(18,161,80,.5);
}
.phone-car {
  position: absolute; top: 55%; left: 42%;
  font-size: 24px;
  animation: float 3s ease-in-out infinite;
}
.phone-panel {
  padding: 14px 16px;
  background: #fff;
  border-top: 1px solid #eee;
}
.phone-panel-label { font-size: 10px; color: #999; margin-bottom: 4px; }
.phone-panel-dest {
  font-size: 12px; font-weight: 700; color: #111;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.phone-panel-row { display: flex; gap: 6px; margin-top: 10px; }
.phone-tag {
  flex: 1; text-align: center;
  background: var(--green); color: #fff;
  font-size: 9px; font-weight: 700; border-radius: 8px; padding: 6px 4px;
}
.phone-tag-alt { background: #111; }

/* glowing ring behind phone */
.hero__glow {
  position: absolute; width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18,161,80,.3) 0%, transparent 70%);
  z-index: -1;
}

/* ── How it works ─────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.step {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
  text-align: center; transition: box-shadow .2s, transform .2s;
}
.step:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.step__num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-lite); color: var(--green);
  font-size: 22px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step__title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step__desc { font-size: 14px; color: var(--muted); }

/* ── Features ─────────────────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.feature {
  padding: 32px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--border);
  transition: all .2s;
}
.feature:hover { border-color: var(--green); box-shadow: var(--shadow); }
.feature__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--green-lite); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.feature__title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature__desc { font-size: 14px; color: var(--muted); }

/* ── Section heading ──────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 16px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; margin-top: 12px; }
.section-head p { font-size: 17px; color: var(--muted); margin-top: 12px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ── Vehicle types ────────────────────────────────────────── */
.vehicles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.vehicle-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 20px;
  text-align: center; transition: all .2s; cursor: default;
}
.vehicle-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-3px); }
.vehicle-card__icon { font-size: 48px; margin-bottom: 14px; }
.vehicle-card__name { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.vehicle-card__desc { font-size: 13px; color: var(--muted); }

/* ── App download CTA ─────────────────────────────────────── */
.cta {
  background: linear-gradient(135deg, #0A0A0A 0%, #0D3320 100%);
  border-radius: 24px; padding: 72px 64px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}
.cta__text h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: #fff; }
.cta__text p { font-size: 17px; color: rgba(255,255,255,.6); margin-top: 12px; }
.cta__btns { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  background: #fff; color: var(--ink);
  padding: 14px 22px; border-radius: 12px;
  font-weight: 700; font-size: 14px;
  transition: all .2s;
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.store-btn__icon { font-size: 28px; }
.store-btn__sub { font-size: 11px; font-weight: 400; color: var(--muted); display: block; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--black); color: rgba(255,255,255,.7); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer__brand-name { font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.footer__brand-name span { color: var(--green); }
.footer__tagline { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); display: flex; align-items: center;
  justify-content: center; font-size: 16px; transition: background .2s;
}
.footer__social a:hover { background: var(--green); }
.footer__col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: .5px; }
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .15s; }
.footer__col ul li a:hover { color: var(--green); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px; display: flex;
  align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,.4);
}
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { color: rgba(255,255,255,.4); transition: color .15s; }
.footer__bottom-links a:hover { color: var(--green); }

/* ── Policy pages ─────────────────────────────────────────── */
.policy-hero {
  background: linear-gradient(135deg, #0A0A0A, #0D3320);
  padding: 80px 0 64px; text-align: center;
}
.policy-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; color: #fff; margin-top: 14px; }
.policy-hero p { font-size: 16px; color: rgba(255,255,255,.55); margin-top: 10px; }
.policy-body { max-width: 780px; margin: 0 auto; padding: 64px 24px 96px; }
.policy-body h2 {
  font-size: 22px; font-weight: 800; color: var(--ink);
  margin: 40px 0 14px; padding-top: 8px;
  border-top: 2px solid var(--green-lite);
}
.policy-body h2:first-child { margin-top: 0; }
.policy-body p { font-size: 15px; color: #444; margin-bottom: 16px; line-height: 1.8; }
.policy-body ul, .policy-body ol { margin: 12px 0 20px 24px; }
.policy-body li { font-size: 15px; color: #444; margin-bottom: 8px; line-height: 1.7; }
.policy-meta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.45);
  margin-top: 16px; justify-content: center;
}
.policy-meta span { display: flex; align-items: center; gap: 6px; }
.policy-nav {
  position: sticky; top: 68px; z-index: 10;
  background: var(--white); border-bottom: 1px solid var(--border);
}
.policy-nav__inner {
  display: flex; gap: 0; overflow-x: auto;
}
.policy-nav__inner a {
  padding: 14px 22px; font-size: 14px; font-weight: 600;
  color: var(--muted); border-bottom: 2px solid transparent;
  white-space: nowrap; transition: all .15s;
}
.policy-nav__inner a:hover,
.policy-nav__inner a.active { color: var(--green); border-bottom-color: var(--green); }
.highlight-box {
  background: var(--green-lite); border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0; padding: 16px 20px; margin: 20px 0;
}
.highlight-box p { margin: 0; color: var(--green-dark); font-weight: 500; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }
.animate { opacity: 0; }
.animate.visible { animation: fadeUp .6s ease forwards; }
.animate:nth-child(2) { animation-delay: .1s; }
.animate:nth-child(3) { animation-delay: .2s; }
.animate:nth-child(4) { animation-delay: .3s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__btns { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__mockup { display: none; }
  .steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .vehicles { grid-template-columns: 1fr 1fr; }
  .cta { flex-direction: column; text-align: center; padding: 48px 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .nav__links, .nav__cta { display: none; }
  .hamburger { display: block; }
  .features { grid-template-columns: 1fr; }
  .vehicles { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer__bottom-links { flex-wrap: wrap; justify-content: center; }
  .cta { padding: 40px 24px; }
  .cta__btns { justify-content: center; }
}

/* Mobile menu overlay */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--white); flex-direction: column;
  padding: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu__close { align-self: flex-end; background: none; border: none; font-size: 28px; cursor: pointer; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 0; margin-top: 24px; }
.mobile-menu__links a {
  font-size: 20px; font-weight: 600; padding: 16px 0;
  border-bottom: 1px solid var(--border); color: var(--ink);
}
.mobile-menu__cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
