*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1565C0;
  --primary-dark: #0D47A1;
  --accent: #FF6F00;
  --text: #1a1a2e;
  --text-muted: #666;
  --bg: #fff;
  --bg2: #f7f9fc;
  --green: #2e7d32;
  --red: #c62828;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ─── Nav ─── */
nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e0e0e0;
  z-index: 100;
  padding: 14px 20px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { font-size: 20px; font-weight: 700; color: var(--primary); }

.nav-cta {
  background: var(--primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s;
}
.nav-cta:hover { background: var(--primary-dark); }

/* ─── Hero ─── */
.hero {
  background: linear-gradient(135deg, #0D47A1 0%, #1565C0 50%, #1976D2 100%);
  color: #fff;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  min-height: 85vh;
}

.hero-content { max-width: 540px; }

.badge-pill {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 20px;
}

.hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.highlight { color: #FFD54F; }

.hero-sub { font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 32px; max-width: 480px; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  transition: transform .15s, box-shadow .15s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.25); }

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: border-color .15s;
}
.btn-outline:hover { border-color: #fff; }

.hero-note { font-size: 12px; color: rgba(255,255,255,.6); }

/* Phone mockup */
.phone-mockup {
  width: 240px;
  height: 460px;
  background: #111;
  border-radius: 36px;
  padding: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  border: 3px solid #333;
  flex-shrink: 0;
}

.phone-screen {
  background: #1a1a2e;
  border-radius: 24px;
  height: 100%;
  padding: 16px 12px;
  overflow: hidden;
}

.app-status {
  font-size: 11px;
  color: #69f0ae;
  margin-bottom: 16px;
  font-weight: 600;
}
.app-status.active::before { content: ''; display: inline-block; width: 8px; height: 8px; background: #69f0ae; border-radius: 50%; margin-right: 6px; animation: pulse 1.5s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.ride-card {
  background: #2a2a3e;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  border-left: 3px solid #69f0ae;
}
.ride-card.rejected { border-left-color: #ef5350; }
.ride-app { font-size: 11px; color: #bdbdbd; }
.ride-fare { font-size: 24px; font-weight: 800; color: #fff; }
.ride-accepted { font-size: 11px; color: #69f0ae; font-weight: 600; margin-top: 4px; }
.ride-rejected { font-size: 11px; color: #ef5350; font-weight: 600; margin-top: 4px; }

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--text);
  color: #fff;
  padding: 32px 20px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat strong { display: block; font-size: 28px; font-weight: 800; color: #FFD54F; }
.stat span { font-size: 13px; color: rgba(255,255,255,.7); }

/* ─── Features ─── */
.features { padding: 80px 20px; background: var(--bg2); }

h2 { font-size: 34px; font-weight: 800; margin-bottom: 12px; }
.section-sub { color: var(--text-muted); font-size: 16px; margin-bottom: 48px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }

.feature-icon { font-size: 32px; margin-bottom: 12px; }
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); }

/* ─── How It Works ─── */
.how-it-works { padding: 80px 20px; }

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.step { text-align: center; max-width: 220px; }
.step-num {
  width: 56px; height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 12px;
}
.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-muted); }
.step-arrow { font-size: 28px; color: var(--primary); padding: 0 8px; }

/* ─── Apps ─── */
.apps-section { padding: 60px 20px; background: var(--bg2); text-align: center; }
.apps-section h2 { margin-bottom: 28px; }
.app-chips { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.app-chip {
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 15px;
}
.uber    { background: #000; color: #fff; }
.rapido  { background: #FFD700; color: #000; }
.ola     { background: #00B050; color: #fff; }
.coming  { background: #e0e0e0; color: #555; }
.coming small { font-weight: 400; display: block; font-size: 11px; }

/* ─── Pricing ─── */
.pricing { padding: 80px 20px; }
.pricing-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.price-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  width: 280px;
  position: relative;
  transition: transform .2s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.popular { border-color: var(--primary); box-shadow: 0 8px 32px rgba(21,101,192,.2); }

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.price-card h3 { font-size: 18px; margin-bottom: 12px; }
.price { font-size: 44px; font-weight: 800; color: var(--primary); }
.price-dur { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.price-dur small { color: var(--green); font-weight: 600; }

.price-card ul { list-style: none; text-align: left; margin-bottom: 24px; }
.price-card li { padding: 6px 0; font-size: 14px; color: var(--text-muted); }

/* ─── Download ─── */
.download { padding: 80px 20px; background: linear-gradient(135deg, #0D47A1, #1565C0); color: #fff; text-align: center; }
.download h2 { color: #fff; }
.download p { color: rgba(255,255,255,.8); margin-bottom: 32px; }

.download-card {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 20px 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.dl-version { font-size: 18px; font-weight: 700; }
.dl-compat { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 4px; }

.btn-dl {
  display: inline-block;
  background: #FFD54F;
  color: #1a1a2e;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 16px;
  transition: transform .15s;
}
.btn-dl:hover { transform: scale(1.04); }

.install-steps {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  background: rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 24px;
}
.install-steps h3 { margin-bottom: 12px; }
.install-steps ol { padding-left: 20px; }
.install-steps li { margin-bottom: 8px; font-size: 14px; color: rgba(255,255,255,.85); }

/* ─── Changelog ─── */
.changelog { padding: 80px 20px; background: var(--bg2); }
.changelog-entry {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.cl-version { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.cl-date { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.changelog-entry ul { padding-left: 20px; }
.changelog-entry li { font-size: 14px; margin-bottom: 4px; color: var(--text-muted); }

.badge-new {
  background: var(--green);
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  vertical-align: middle;
  margin-left: 6px;
}

/* ─── Footer ─── */
footer {
  background: #1a1a2e;
  color: rgba(255,255,255,.7);
  padding: 48px 20px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-grid .logo { color: #FFD54F; margin-bottom: 8px; }
.footer-grid h4 { color: #fff; margin-bottom: 8px; font-size: 14px; }
.footer-grid a { color: rgba(255,255,255,.6); font-size: 14px; }
.footer-grid a:hover { color: #fff; }
.footer-grid p { font-size: 13px; margin-bottom: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; font-size: 12px; text-align: center; }

@media (max-width: 768px) {
  .hero { flex-direction: column; padding: 60px 20px; min-height: auto; }
  .hero h1 { font-size: 32px; }
  .stats-bar { gap: 32px; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-grid { flex-direction: column; align-items: center; }
}
