/* ── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #1B5E12;
  --green-dark: #124A0D;
  --green-light: #2E7D1E;
  --green-surface: #E8F5E5;
  --navy: #1A1A2E;
  --white: #FFFFFF;
  --bg: #F8F8F8;
  --text: #1A1A1A;
  --text-muted: #757575;
  --border: #EEEEEE;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(27,94,18,.35); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green-surface); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: white; }
.btn-white { background: var(--white); color: var(--green); }
.btn-white:hover { background: #f0faf0; transform: translateY(-1px); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--green); }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--text-muted); transition: color .2s; }
.nav-links a:hover { color: var(--green); }
.nav-cta { margin-left: 16px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.nav-mobile { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 20px; border-top: 1px solid var(--border); }
.nav-mobile a { padding: 10px 0; font-weight: 500; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.nav-mobile a:last-child { border: none; margin-top: 8px; }
.nav-mobile.open { display: flex; }

/* ── HERO ─────────────────────────────────────────────────────────── */
.hero {
  padding-top: 68px;
  background: linear-gradient(160deg, #0d3d08 0%, #1B5E12 50%, #2E7D1E 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
}
.hero-blob-1 { width: 500px; height: 500px; background: #4CAF50; top: -100px; right: -100px; }
.hero-blob-2 { width: 350px; height: 350px; background: #81C784; bottom: 0; left: 100px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 120px;
}
.hero-text { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-text h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(90deg, #A5D6A7, #E8F5E9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 18px; color: rgba(255,255,255,.8); margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-note { font-size: 13px; color: rgba(255,255,255,.5); }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; }

/* Phone mockups */
.hero-phones {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone {
  position: absolute;
  border-radius: 36px;
  background: #0d1117;
  border: 2px solid rgba(255,255,255,.15);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.phone-front {
  width: 220px;
  height: 440px;
  right: 40px;
  z-index: 2;
  transform: rotate(3deg);
}
.phone-back {
  width: 200px;
  height: 400px;
  left: 40px;
  z-index: 1;
  transform: rotate(-5deg);
  opacity: .8;
}
.phone-screen { height: 100%; padding: 16px 12px; background: #f8f8f8; display: flex; flex-direction: column; gap: 8px; }
.phone-screen-back { background: #fff; }
.mock-header { height: 32px; background: var(--green); border-radius: 8px; }
.mock-card { height: 72px; background: #eee; border-radius: 10px; }
.mock-card-sm { height: 50px; }
.mock-topbar { display: flex; align-items: center; justify-content: space-between; padding: 4px 0; }
.mock-dot { width: 8px; height: 8px; background: #ccc; border-radius: 50%; }
.mock-pill { width: 60px; height: 8px; background: #ccc; border-radius: 4px; }
.mock-map { flex: 1; background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%); border-radius: 12px; min-height: 160px; position: relative; }
.mock-map::after { content: '📍'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 24px; }
.mock-sheet { background: #fff; border-radius: 16px 16px 0 0; padding: 12px; margin: 0 -12px -16px; display: flex; flex-direction: column; gap: 8px; }
.mock-handle { width: 32px; height: 4px; background: #ddd; border-radius: 2px; margin: 0 auto; }
.mock-title { height: 14px; background: #eee; border-radius: 4px; width: 70%; }
.mock-row { height: 10px; background: #f0f0f0; border-radius: 4px; }
.mock-row-sm { width: 50%; }
.mock-btn-green { height: 32px; background: var(--green); border-radius: 8px; margin-top: 4px; }

/* ── STATS ────────────────────────────────────────────────────────── */
.stats { background: var(--bg); padding: 48px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num { display: block; font-size: 40px; font-weight: 900; color: var(--green); line-height: 1; }
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 6px; display: block; }

/* ── SECTIONS ─────────────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: var(--green-surface);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.section-tag-dark { background: #f0f0f0; color: var(--navy); }
.section-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 540px; margin: 0 auto; }

/* ── TABS ─────────────────────────────────────────────────────────── */
.tab-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  background: var(--bg);
  padding: 6px;
  border-radius: 100px;
  width: fit-content;
  margin: 0 auto 40px;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: none;
  background: none;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all .2s;
}
.tab-btn.active { background: var(--white); color: var(--green); box-shadow: var(--shadow); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── STEPS GRID ───────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  position: absolute;
  top: 20px; right: 20px;
  width: 28px; height: 28px;
  background: var(--green-surface);
  color: var(--green);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step-icon { font-size: 36px; margin-bottom: 16px; }
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ── FEATURES ─────────────────────────────────────────────────────── */
.features-section { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-card-large { grid-column: span 2; display: flex; flex-direction: column; }
.feature-card-highlight { background: var(--navy); color: var(--white); border-color: var(--navy); }
.feature-card-highlight p { color: rgba(255,255,255,.75); }
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); }
.feature-tag {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 16px;
  width: fit-content;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── CTA CARDS ────────────────────────────────────────────────────── */
.cta-section { background: var(--bg); }
.cta-card {
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.cta-stores { background: linear-gradient(135deg, #1B5E12, #2E7D1E); color: white; }
.cta-riders { background: var(--bg); border: 1px solid var(--border); }
.cta-content h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.cta-stores .cta-content h2 { color: white; }
.cta-stores .cta-content p { color: rgba(255,255,255,.8); margin-bottom: 28px; }
.cta-riders .cta-content p { color: var(--text-muted); margin-bottom: 28px; }
.cta-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.cta-list li { font-weight: 500; font-size: 15px; }
.cta-stores .cta-list li { color: rgba(255,255,255,.9); }
.cta-list-dark li { color: var(--text); }

/* Store visual */
.cta-phone {
  background: #0d1117;
  border-radius: 28px;
  border: 2px solid rgba(255,255,255,.15);
  overflow: hidden;
  width: 220px;
  height: 380px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.mock-dashboard { padding: 16px 12px; height: 100%; background: #f8f8f8; display: flex; flex-direction: column; gap: 10px; }
.dash-header { height: 36px; background: var(--green); border-radius: 8px; }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.dash-stat { height: 52px; background: white; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.dash-order { height: 60px; background: white; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.dash-order-sm { height: 48px; }

/* Rider visual */
.cta-visual-left { display: flex; flex-direction: column; gap: 16px; align-items: center; justify-content: center; }
.rider-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  width: 280px;
}
.rider-avatar { font-size: 36px; }
.rider-info { flex: 1; }
.rider-name { height: 14px; background: #eee; border-radius: 4px; width: 80%; margin-bottom: 6px; }
.rider-sub { height: 10px; background: #f0f0f0; border-radius: 4px; width: 50%; }
.rider-badge {
  background: var(--green-surface);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.earnings-card {
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  width: 280px;
}
.earn-label { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.earn-num { font-size: 32px; font-weight: 900; color: var(--green); margin-bottom: 12px; }
.earn-bar { height: 8px; background: var(--green-surface); border-radius: 4px; }
.earn-fill { height: 100%; width: 70%; background: var(--green); border-radius: 4px; }

/* ── FORM ─────────────────────────────────────────────────────────── */
.form-section { background: var(--bg); }
.form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 64px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.interest-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--text); }
.form-group input, .form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus { border-color: var(--green); }
.form-note { font-size: 13px; color: var(--text-muted); text-align: center; }
.form-note a { color: var(--green); }
.form-success { text-align: center; padding: 48px 0; }
.success-icon { font-size: 56px; margin-bottom: 16px; }
.form-success h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); }

/* ── FAQ ──────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .2s;
}
.faq-q:hover { background: var(--bg); }
.faq-chevron { color: var(--green); font-size: 18px; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 24px 20px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ── DOWNLOAD ─────────────────────────────────────────────────────── */
.download-section { background: var(--bg); }
.download-card {
  background: linear-gradient(135deg, #1B5E12 0%, #2E7D1E 100%);
  border-radius: 24px;
  padding: 80px 64px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.dl-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .2;
}
.dl-blob-1 { width: 400px; height: 400px; background: #81C784; top: -150px; right: -100px; }
.dl-blob-2 { width: 300px; height: 300px; background: #A5D6A7; bottom: -100px; left: -50px; }
.download-content { position: relative; z-index: 1; }
.download-card h2 { font-size: 42px; font-weight: 900; margin-bottom: 16px; }
.download-card p { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.download-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 2px solid white;
  color: var(--green);
  padding: 14px 28px;
  border-radius: 14px;
  transition: all .2s;
}
.store-btn:hover { background: rgba(255,255,255,.9); transform: translateY(-2px); }
.store-btn small { display: block; font-size: 11px; opacity: .7; }
.store-btn strong { display: block; font-size: 17px; font-weight: 700; }
.store-btn-outline {
  background: transparent;
  color: white;
}
.store-btn-outline:hover { background: rgba(255,255,255,.1); }

/* ── FOOTER ───────────────────────────────────────────────────────── */
.footer { background: var(--navy); color: white; padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  padding-bottom: 48px;
}
.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6; }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); text-align: center; }

/* ── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-large { grid-column: span 1; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 80px; }
  .hero-phones { height: 340px; }
  .phone-front { width: 170px; height: 340px; right: 20px; }
  .phone-back { width: 155px; height: 310px; left: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 40px; }
  .cta-visual { display: none; }
  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .download-card { padding: 48px 28px; }
  .download-card h2 { font-size: 28px; }
  .tab-buttons { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero-text h1 { font-size: 34px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}
