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

:root {
  --emerald: #10b981;
  --emerald-dark: #059669;
  --emerald-light: #d1fae5;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --logo-bg: #F7F7F7;
  --gradient: linear-gradient(135deg, #10b981, #3b82f6);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--slate-800);
  background: var(--logo-bg);
  overflow-x: hidden;
}

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-tag { display: inline-block; background: var(--emerald-light); color: var(--emerald-dark); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 20px; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--slate-900); line-height: 1.2; margin-bottom: 12px; }
.section-sub { color: var(--slate-500); font-size: 16px; max-width: 560px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--emerald); color: #fff; padding: 12px 28px;
  border-radius: 10px; font-weight: 600; font-size: 15px; text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(16,185,129,.35);
}
.btn-primary:hover { background: var(--emerald-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(16,185,129,.4); }

.btn-outline {
  display: inline-block; border: 2px solid var(--emerald); color: var(--emerald);
  padding: 12px 28px; border-radius: 10px; font-weight: 600; font-size: 15px;
  text-decoration: none; transition: all .2s;
}
.btn-outline:hover { background: var(--emerald); color: #fff; transform: translateY(-2px); }

.btn-outline-white {
  display: inline-block; border: 2px solid rgba(255,255,255,.6); color: #fff;
  padding: 12px 28px; border-radius: 10px; font-weight: 600; font-size: 15px;
  text-decoration: none; transition: all .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }

.btn-nav {
  background: var(--emerald); color: #fff !important; padding: 8px 20px;
  border-radius: 8px; font-weight: 600; transition: background .2s;
}
.btn-nav:hover { background: var(--emerald-dark); }
.nav-download { display: flex; align-items: center; gap: 10px; }
.store-btn {
  display: flex; align-items: center; gap: 12px; background: var(--slate-900); color: #fff;
  padding: 14px 24px; border-radius: 14px; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); color: #fff; }
.store-btn-text span { display: block; font-size: 11px; color: #94a3b8; line-height: 1.2; font-weight: 400; }
.store-btn-text strong { display: block; font-size: 16px; color: #fff; font-weight: 700; line-height: 1.2; }
.nav-download .store-btn { padding: 8px 14px; border-radius: 12px; }
.nav-download .store-btn-text span { font-size: 9px; }
.nav-download .store-btn-text strong { font-size: 13px; }
.nav-links .store-btn:hover { color: #fff; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all .3s;
  background: var(--logo-bg);
}
.navbar.scrolled {
  background: var(--logo-bg);
  box-shadow: 0 1px 20px rgba(0,0,0,.08); padding: 12px 0;
}
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: center; text-decoration: none; line-height: 0; }
.logo img { height: 59px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--slate-700); font-weight: 500; font-size: 15px; transition: color .2s; }
.nav-links a:hover { color: var(--emerald); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--slate-800); border-radius: 2px; transition: all .3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: space-between;
  padding: 120px 24px 80px; max-width: 1200px; margin: 0 auto; gap: 60px; position: relative;
}
.hero-bg-shapes { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .15; }
.shape-1 { width: 600px; height: 600px; background: var(--emerald); top: -200px; right: -100px; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 400px; height: 400px; background: #3b82f6; bottom: -100px; left: -100px; animation: float 10s ease-in-out infinite reverse; }
.shape-3 { width: 300px; height: 300px; background: #8b5cf6; top: 40%; left: 40%; animation: float 12s ease-in-out infinite; }

@keyframes float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

.hero-content { flex: 1; max-width: 580px; }
.hero-badge { display: inline-block; background: var(--emerald-light); color: var(--emerald-dark); padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.hero-title { font-size: clamp(40px, 6vw, 72px); font-weight: 900; line-height: 1.1; color: var(--slate-900); margin-bottom: 20px; }
.hero-subtitle { font-size: 18px; color: var(--slate-500); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 24px; font-weight: 800; color: var(--slate-900); }
.stat-label { font-size: 12px; color: var(--slate-500); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--slate-300); }

/* ── PHONE MOCKUP ── */
.hero-visual { flex-shrink: 0; }
.phone-mockup {
  width: 280px; height: 560px; background: var(--slate-900); border-radius: 40px;
  padding: 12px; box-shadow: 0 40px 80px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.1);
  position: relative;
}
.phone-screen { background: #f8fafc; border-radius: 30px; height: 100%; overflow: hidden; }
.app-ui { padding: 20px 16px; height: 100%; display: flex; flex-direction: column; gap: 16px; }
.app-header { display: flex; justify-content: space-between; align-items: center; }
.app-logo { font-weight: 900; font-size: 18px; color: var(--emerald); }
.app-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--emerald-light); }
.map-placeholder {
  flex: 1; background: linear-gradient(135deg, #e0f2fe, #dcfce7); border-radius: 16px;
  position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.map-pin { position: absolute; top: 30%; left: 40%; width: 12px; height: 12px; background: var(--emerald); border-radius: 50%; box-shadow: 0 0 0 4px rgba(16,185,129,.3); animation: pulse 2s infinite; }
.map-route { position: absolute; top: 30%; left: 40%; width: 60px; height: 2px; background: var(--emerald); transform-origin: left; transform: rotate(30deg); }
.map-car { font-size: 24px; animation: drive 3s ease-in-out infinite; }
@keyframes drive { 0%,100% { transform: translateX(0); } 50% { transform: translateX(20px); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(16,185,129,.3); } 50% { box-shadow: 0 0 0 8px rgba(16,185,129,.1); } }
.ride-card { background: #fff; border-radius: 14px; padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.ride-info { display: flex; flex-direction: column; }
.ride-label { font-size: 10px; color: var(--slate-500); font-weight: 500; }
.ride-name { font-size: 14px; font-weight: 700; color: var(--slate-900); }
.ride-rating { font-size: 13px; font-weight: 600; color: var(--slate-700); }

/* ── FEATURES ── */
.features { padding: 100px 0; background: var(--slate-100); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feature-card {
  background: #fff; border-radius: 20px; padding: 32px; border: 1px solid #e2e8f0;
  transition: transform .3s, box-shadow .3s; cursor: default;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.08); }
.feature-icon { font-size: 32px; margin-bottom: 16px; width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.feature-icon.emerald { background: #d1fae5; }
.feature-icon.blue { background: #dbeafe; }
.feature-icon.purple { background: #ede9fe; }
.feature-icon.amber { background: #fef3c7; }
.feature-icon.rose { background: #ffe4e6; }
.feature-icon.teal { background: #ccfbf1; }
.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.feature-card p { color: var(--slate-500); font-size: 14px; line-height: 1.7; }

/* ── HOW IT WORKS ── */
.how-it-works { padding: 100px 0; }
.steps { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.step { background: #fff; border: 1px solid #e2e8f0; border-radius: 20px; padding: 32px; max-width: 280px; text-align: center; transition: transform .3s, box-shadow .3s; }
.step:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.08); }
.step-number { font-size: 48px; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 12px; }
.step-content h3 { font-size: 18px; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.step-content p { color: var(--slate-500); font-size: 14px; line-height: 1.7; }
.step-arrow { font-size: 28px; color: var(--emerald); font-weight: 700; }

/* ── SAFETY ── */
.safety-section { padding: 100px 0; background: var(--slate-900); color: #fff; }
.safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.safety-text .section-tag { background: rgba(16,185,129,.2); color: #6ee7b7; }
.safety-text .section-title { color: #fff; }
.safety-text p { color: #94a3b8; font-size: 16px; line-height: 1.8; margin-bottom: 24px; }
.safety-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.safety-list li { color: #cbd5e1; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.safety-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 24px; padding: 32px; backdrop-filter: blur(10px); }
.sos-badge { display: inline-block; background: #ef4444; color: #fff; padding: 8px 20px; border-radius: 20px; font-weight: 700; font-size: 16px; margin-bottom: 16px; animation: pulse-red 2s infinite; }
@keyframes pulse-red { 0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,.4); } 50% { box-shadow: 0 0 0 12px rgba(239,68,68,0); } }
.sos-text { color: #e2e8f0; font-size: 15px; margin-bottom: 20px; }
.sos-contacts { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.contact-chip { background: rgba(255,255,255,.1); color: #e2e8f0; padding: 6px 14px; border-radius: 20px; font-size: 13px; }
.sos-status { color: #6ee7b7; font-weight: 600; font-size: 15px; }

/* ── DRIVERS ── */
.drivers-section { padding: 100px 0; background: var(--slate-100); }
.driver-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-bottom: 48px; }
.driver-benefit { background: #fff; border-radius: 20px; padding: 28px; text-align: center; border: 1px solid #e2e8f0; transition: transform .3s, box-shadow .3s; }
.driver-benefit:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.08); }
.benefit-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.driver-benefit h4 { font-size: 16px; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.driver-benefit p { color: var(--slate-500); font-size: 14px; line-height: 1.6; }
.driver-cta { text-align: center; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 20px; padding: 28px; transition: transform .3s, box-shadow .3s; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.08); }
.stars { font-size: 16px; margin-bottom: 12px; }
.testimonial-card p { color: var(--slate-600, #475569); font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.testimonial-author strong { display: block; font-size: 14px; color: var(--slate-900); }
.testimonial-author span { font-size: 12px; color: var(--slate-500); }

/* ── CTA BANNER ── */
.cta-banner { padding: 100px 24px; background: var(--gradient); text-align: center; }
.cta-banner h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 18px; margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-primary { background: #fff; color: var(--emerald-dark); box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.cta-banner .btn-primary:hover { background: #f0fdf4; }

/* ── FOOTER ── */
.footer { background: var(--slate-900); color: #94a3b8; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand .logo { display: inline-block; margin-bottom: 16px; }
.footer-brand .logo img { height: 72px; width: auto; display: block; border-radius: 8px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; max-width: 260px; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); color: #e2e8f0; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 14px; font-weight: 700; transition: background .2s; }
.social-links a:hover { background: var(--emerald); color: #fff; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: #94a3b8; text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--emerald); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: #94a3b8; text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--emerald); }

/* ── ANIMATIONS ── */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp .7s ease forwards; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .5s; }
.animate-slide-right { opacity: 0; transform: translateX(40px); animation: slideRight .8s ease .4s forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes slideRight { to { opacity: 1; transform: translateX(0); } }

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ── PAGE HEADER (for inner pages) ── */
.page-hero { padding: 140px 24px 80px; background: linear-gradient(135deg, #0f172a, #1e293b); text-align: center; }
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 900; color: #fff; margin-bottom: 16px; }
.page-hero p { color: #94a3b8; font-size: 18px; max-width: 560px; margin: 0 auto; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .safety-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .hero { flex-direction: column; text-align: center; padding: 100px 24px 60px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--logo-bg); padding: 20px 24px; box-shadow: 0 8px 24px rgba(0,0,0,.1); gap: 16px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
