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

:root {
  --orange: #FF6B00;
  --orange-dark: #e05e00;
  --orange-light: #fff3e8;
  --dark: #1a1a2e;
  --text: #333;
  --muted: #666;
  --bg: #fafafa;
  --white: #ffffff;
  --border: #eee;
  --radius: 14px;
}

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-size: 20px; font-weight: 800; color: var(--orange); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 15px; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: var(--orange); }
@media (max-width: 640px) { .nav-links { display: none; } }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #16213e 60%, #0f3460 100%);
  color: #fff;
  padding: 80px 24px 100px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,107,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-block; background: rgba(255,107,0,0.2); border: 1px solid rgba(255,107,0,0.4);
  color: #ffb27a; font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 20px;
  margin-bottom: 20px;
}
.hero-title { font-size: 52px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero-title span { color: var(--orange); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 500px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff;
  padding: 14px 28px; border-radius: 10px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-primary.btn-large { padding: 18px 36px; font-size: 18px; }

.btn-secondary {
  display: inline-flex; align-items: center;
  color: rgba(255,255,255,0.7); font-size: 15px; font-weight: 500;
  text-decoration: none; padding: 14px 4px;
  transition: color 0.15s;
}
.btn-secondary:hover { color: #fff; }

.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.stat { display: flex; align-items: center; gap: 8px; }
.stat-n { font-size: 18px; }
.stat-l { font-size: 14px; color: rgba(255,255,255,0.65); }

/* PHONE MOCK */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.phone-mock {
  width: 260px; background: #0d0d1a;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 32px; padding: 28px 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-screen { display: flex; flex-direction: column; gap: 16px; }
.mock-status {
  background: rgba(255,152,0,0.15); border: 1px solid rgba(255,152,0,0.3);
  color: #FFB300; font-size: 13px; font-weight: 600;
  padding: 8px 12px; border-radius: 8px; text-align: center;
}
.mock-route { background: rgba(255,255,255,0.05); border-radius: 10px; padding: 14px; }
.mock-point { font-size: 13px; color: rgba(255,255,255,0.8); padding: 4px 0; }
.mock-point.pickup { color: #4CAF50; }
.mock-point.dropoff { color: #FF6B00; }
.mock-arrow { text-align: center; color: rgba(255,255,255,0.3); font-size: 18px; padding: 4px 0; }
.mock-price { text-align: center; font-size: 28px; font-weight: 800; color: #FF6B00; }
.mock-btn {
  background: var(--orange); color: #fff;
  text-align: center; padding: 12px; border-radius: 8px;
  font-size: 13px; font-weight: 700;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-title { font-size: 38px; }
}

/* SECTIONS */
.section { padding: 80px 24px; }
.section-alt { background: var(--white); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-inner.center { text-align: center; }
.section-tag {
  display: inline-block; background: var(--orange-light); color: var(--orange);
  font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: 20px;
  margin-bottom: 16px; letter-spacing: 0.3px;
}
.section h2 { font-size: 36px; font-weight: 800; line-height: 1.2; margin-bottom: 48px; color: var(--dark); }
@media (max-width: 640px) { .section h2 { font-size: 28px; } }

/* FEATURES GRID */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.feature-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* DRIVER SECTION */
.driver-grid { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
@media (max-width: 860px) { .driver-grid { grid-template-columns: 1fr; } }

.driver-steps { display: flex; flex-direction: column; gap: 28px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-content h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.step-content p { font-size: 14px; color: var(--muted); }

.driver-perks {
  background: var(--dark); border-radius: var(--radius);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 14px;
}
.perk { font-size: 15px; color: rgba(255,255,255,0.82); font-weight: 500; }

/* TRUST GRID */
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 8px;
}
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trust-grid { grid-template-columns: 1fr; } }

.trust-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  text-align: left;
}
.trust-icon { font-size: 32px; margin-bottom: 14px; }
.trust-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.trust-card p { font-size: 14px; color: var(--muted); }

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9400 100%);
  padding: 80px 24px; text-align: center;
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-section h2 { font-size: 40px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.cta-section .btn-primary {
  background: #fff; color: var(--orange);
  font-size: 18px; padding: 18px 36px;
}
.cta-section .btn-primary:hover { background: rgba(255,255,255,0.92); }

/* FOOTER */
.footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 48px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer .nav-logo { color: var(--orange); display: block; margin-bottom: 8px; }
.footer-brand p { font-size: 14px; margin-bottom: 28px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
