:root {
  --bg: #0B1D2A;
  --surface: #132236;
  --surface2: #1a3048;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --text: #ffffff;
  --text-muted: #8FA3B1;
  --border: #1e3450;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-brand {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 48px 80px;
  gap: 48px;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.3;
  pointer-events: none;
}
.hero-content { position: relative; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text);
}
.headline-accent { color: var(--accent); }
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 32px;
  width: fit-content;
}
.hero-stat { text-align: center; padding: 0 32px; }
.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* PHONE MOCKUP */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-mockup {
  background: #111827;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 36px;
  padding: 12px;
  width: 280px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,166,35,0.15);
}
.mockup-screen {
  background: #0B1D2A;
  border-radius: 28px;
  padding: 20px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mockup-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
}
.mockup-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #22c55e;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
}
.mockup-map {
  background: linear-gradient(135deg, var(--surface) 0%, #1a3a5c 100%);
  border-radius: 16px;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.mockup-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.mockup-map::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  background: var(--accent);
  border: 3px solid var(--bg);
  border-radius: 50%;
  top: 40%; left: 45%;
  box-shadow: 0 0 0 8px rgba(245,166,35,0.2);
}
.mockup-driver {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}
.driver-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.driver-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.driver-meta { flex: 1; }
.driver-name { display: block; font-weight: 600; font-size: 14px; }
.driver-vehicle { display: block; font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.driver-eta { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--accent); font-size: 18px; }
.eta-bar {
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.eta-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  transition: width 0.5s;
}
.mockup-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mockup-action {
  padding: 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
.mockup-action.call { background: var(--accent); color: var(--bg); }
.mockup-action.cancel { background: var(--surface2); color: var(--text-muted); border: 1px solid var(--border); }

/* SECTION SHARED */
.section-header {
  margin-bottom: 56px;
}
.section-header.centered {
  text-align: center;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step {
  padding: 0 32px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 20px;
}
.step-icon { margin-bottom: 20px; }
.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step p { color: var(--text-muted); font-size: 15px; line-height: 1.65; }
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 40px;
}

/* SERVICES */
.services {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.service-icon { margin-bottom: 16px; }
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* DIFFERENTIATORS */
.differentiators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  align-items: start;
}
.diff-lead {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.diff-list { display: flex; flex-direction: column; gap: 20px; }
.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.diff-check {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.diff-item strong { display: block; font-size: 15px; font-weight: 600; }
.diff-item span { display: block; font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* COMPARISON TABLE */
.comparison-table {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.comp-header {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  background: var(--surface2);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  gap: 8px;
}
.comp-col:not(:first-child) { color: var(--text-muted); }
.comp-col:last-child { color: var(--accent); }
.comp-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.comp-row:last-child { border-bottom: none; }
.comp-feature { text-align: left; color: var(--text-muted); font-size: 13px; }
.comp-yes { color: var(--text-muted); font-size: 12px; }
.comp-no { color: #ef4444; font-size: 12px; }
.comp-maybe { color: var(--text-muted); font-size: 12px; }
.comp-resq { color: var(--accent); font-size: 13px; font-weight: 600; }

/* CLOSING */
.closing {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 28px;
}
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing p { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-bottom: 48px; }
.closing-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
}
.close-stat { text-align: center; }
.close-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
}
.close-desc {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* FOOTER */
footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links span {
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}
.footer-links span:hover { color: var(--text); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .differentiators { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    text-align: center;
  }
  .hero-stat-row { justify-content: center; }
  .hero-visual { display: none; }
  .steps-row { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .how-it-works, .services, .differentiators, .closing { padding: 60px 24px; }
  .closing-stats { gap: 32px; flex-wrap: wrap; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .services-grid { grid-template-columns: 1fr; }
}