/* ============================================================
   Ahun — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---- Variables ---- */
:root {
  --orange:        #EA580C;
  --orange-dark:   #C2410C;
  --orange-light:  #FFF7ED;
  --orange-mid:    #FDBA74;
  --purple:        #8F007E;
  --dark:          #0f172a;
  --dark-2:        #1e293b;
  --dark-3:        #334155;
  --gray:          #64748b;
  --light:         #f8fafc;
  --border:        #e2e8f0;
  --white:         #ffffff;
  --radius:        14px;
  --radius-sm:     8px;
  --shadow:        0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -2px rgba(0,0,0,.06);
  --shadow-lg:     0 20px 40px -8px rgba(0,0,0,.18);
  --max-w:         1160px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark-2);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--gray); }

/* ---- Layout helpers ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 60px 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-size: .95rem; font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 16px rgba(234,88,12,.35);
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 6px 20px rgba(234,88,12,.45); }

.btn-secondary {
  background: rgba(255,255,255,.1); color: var(--white);
  border: 2px solid rgba(255,255,255,.3); backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: rgba(255,255,255,.18); }

.btn-outline {
  background: transparent; color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); }

.btn-dark {
  background: var(--dark); color: var(--white);
}
.btn-dark:hover { background: var(--dark-2); }

/* ---- Navigation ---- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; overflow: hidden;
}
.nav-logo {
  display: flex; align-items: center;
  height: 68px; overflow: hidden; flex-shrink: 0;
}
.nav-logo-img {
  height: 52px !important;
  width: auto !important;
  max-height: 52px !important;
  max-width: 160px !important;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: .9rem; font-weight: 600; color: var(--dark-3);
  transition: color .15s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-mobile { display: none; }

@media (max-width: 768px) {
  /* hide desktop nav links; keep nav-cta visible so lang toggle stays in bar */
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }   /* hide Download App button only */
  .nav-toggle { display: flex; }

  /* shrink logo on small screens */
  .nav-logo-img {
    height: 40px !important;
    max-height: 40px !important;
    max-width: 120px !important;
  }

  /* mobile dropdown — hidden by default, shown only when .is-open */
  .nav-mobile {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    z-index: 99;
    padding: 8px 0 20px;
    border-top: 1px solid var(--border);
    border-bottom: 2px solid var(--border);
    flex-direction: column; gap: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  }
  .nav-mobile a {
    display: block; padding: 15px 24px;
    font-weight: 600; color: var(--dark-2);
    border-bottom: 1px solid #f1f5f9;
    font-size: 1rem;
    transition: background .12s, color .12s;
  }
  .nav-mobile a:last-child {
    border-bottom: none;
    color: var(--orange);
    font-weight: 700;
    margin-top: 4px;
  }
  .nav-mobile a:active { background: var(--orange-light); }
  .nav-mobile.is-open { display: flex; }

  /* stats: always 3 across on mobile */
  .hero-stats { gap: 20px; flex-wrap: nowrap; }
  .hero-stat-value { font-size: 1.5rem; }
}

/* ---- Hero ---- */
.hero {
  background: var(--dark);
  padding: 96px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(234,88,12,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(234,88,12,.15); color: var(--orange-mid);
  border: 1px solid rgba(234,88,12,.25);
  padding: 6px 14px; border-radius: 50px; font-size: .8rem; font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }
.hero-sub { color: #94a3b8; font-size: 1.1rem; max-width: 480px; margin-bottom: 40px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-value { font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: .8rem; color: #64748b; margin-top: 4px; font-weight: 500; }

/* Phone mockup */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.phone-mockup {
  width: 260px; height: 480px;
  background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
}
.phone-mockup::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px;
  background: var(--dark); border-radius: 0 0 20px 20px;
}
.phone-screen-icon {
  width: 72px; height: 72px; border-radius: 18px;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
  font-size: 2rem; overflow: hidden;
  animation: iconFloat 3s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(234,88,12,0.45);
}

@keyframes iconFloat {
  0%   { transform: translateY(0px);    box-shadow: 0 8px 24px rgba(234,88,12,0.45); }
  50%  { transform: translateY(-10px);  box-shadow: 0 20px 36px rgba(234,88,12,0.25); }
  100% { transform: translateY(0px);    box-shadow: 0 8px 24px rgba(234,88,12,0.45); }
}
.phone-screen-text {
  color: var(--white); font-weight: 700; font-size: 1.1rem; text-align: center;
}
.phone-screen-sub { color: #64748b; font-size: .8rem; text-align: center; }
.phone-btn {
  background: var(--orange); color: var(--white);
  padding: 10px 28px; border-radius: 50px; font-size: .85rem; font-weight: 700;
  margin-top: 8px;
}

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

/* ---- Section headings ---- */
.section-tag {
  display: inline-block;
  background: var(--orange-light); color: var(--orange);
  padding: 5px 14px; border-radius: 50px;
  font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-heading { margin-bottom: 16px; color: var(--dark); }
.section-sub { color: var(--gray); font-size: 1.05rem; max-width: 540px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ---- How it works ---- */
.steps { background: var(--light); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 56px;
}
.step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-size: 1.25rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute; left: 52px; top: 50%; transform: translateY(-50%);
  width: calc((100vw - var(--max-w) / 3) / 3);
  max-width: 200px;
  height: 1px; background: var(--border);
}
.step:last-child .step-num::after { display: none; }
.step h3 { color: var(--dark); margin-bottom: 8px; }

@media (max-width: 640px) {
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .step-num::after { display: none; }
  .step { flex-direction: row; text-align: left; gap: 20px; }
  .step-num { flex-shrink: 0; }
}

/* ---- Features grid ---- */
.video-showcase {
  margin: 48px auto 0;
  display: flex; justify-content: center;
}
.showcase-video {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
  background: var(--dark);
  box-shadow: var(--shadow-lg);
  display: block;
}
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px; margin-top: 56px;
}
.feature-card {
  background: var(--white); padding: 32px;
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { color: var(--dark); margin-bottom: 8px; }

/* ---- Driver section ---- */
.driver-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1a0f2e 100%);
  position: relative; overflow: hidden;
}
.driver-section::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(143,0,126,.2) 0%, transparent 70%);
  pointer-events: none;
}
.driver-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.driver-content h2 { color: var(--white); }
.driver-content h2 span { color: var(--orange); }
.driver-content p { color: #94a3b8; margin: 16px 0 32px; font-size: 1.05rem; }
.driver-perks { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.driver-perk {
  display: flex; align-items: center; gap: 14px; color: #cbd5e1;
}
.perk-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(234,88,12,.2); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
}
.driver-visual {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 40px;
  text-align: center;
}
.driver-earning {
  font-size: 3.5rem; font-weight: 900; color: var(--orange);
  line-height: 1;
}
.driver-earning-label { color: #94a3b8; font-size: .9rem; margin-top: 8px; }
.driver-divider {
  border: none; border-top: 1px solid rgba(255,255,255,.08);
  margin: 28px 0;
}
.driver-plan {
  background: rgba(255,255,255,.05); border-radius: var(--radius-sm);
  padding: 20px; margin-top: 12px;
}
.driver-plan-name { color: #94a3b8; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.driver-plan-price { color: var(--white); font-size: 1.15rem; font-weight: 800; margin-top: 6px; white-space: nowrap; }
.driver-plan-detail { color: #64748b; font-size: .8rem; margin-top: 4px; }
.driver-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 0; }

@media (max-width: 860px) {
  .driver-grid { grid-template-columns: 1fr; gap: 48px; }
  .driver-plans { grid-template-columns: 1fr; }
}

/* ---- Download section ---- */
.download { background: var(--orange); }
.download h2 { color: var(--white); }
.download p { color: rgba(255,255,255,.8); }
.download-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; margin-top: 56px;
}
.download-text h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 12px; }
.download-text p { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.store-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--dark); color: var(--white);
  padding: 12px 22px; border-radius: 12px;
  font-weight: 600; font-size: .9rem;
  border: 1px solid rgba(255,255,255,.1);
  transition: background .15s, transform .15s;
}
.store-btn:hover { background: #1e293b; transform: translateY(-1px); }
.store-btn svg { flex-shrink: 0; }
.store-btn-text small { display: block; font-size: .7rem; font-weight: 400; opacity: .7; }

@media (max-width: 680px) {
  .download-grid { grid-template-columns: 1fr; }
}

/* ---- About snippet ---- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-img-placeholder {
  background: linear-gradient(135deg, var(--orange-light) 0%, #fde8d8 100%);
  border-radius: var(--radius); height: 380px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* ---- Contact / info cards ---- */
.info-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; margin-top: 48px;
}
.info-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.info-card-icon { font-size: 1.8rem; }
.info-card h4 { color: var(--dark); }
.info-card p { font-size: .9rem; }
.info-card a { color: var(--orange); font-weight: 600; font-size: .9rem; }

/* ---- Testimonials carousel ---- */
.testimonials { background: var(--dark); }
.testimonials .section-tag { background: rgba(234,88,12,.15); color: var(--orange-mid); }
.testimonials .section-heading { color: var(--white); }
.testimonials .section-sub { color: #94a3b8; }

.carousel-wrap { position: relative; margin-top: 56px; }
.carousel-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 32px;
  display: none; flex-direction: column; gap: 16px;
  transition: opacity .4s;
}
.t-card.active { display: flex; }
.t-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.t-quote { color: #cbd5e1; font-size: 1rem; line-height: 1.75; font-style: italic; flex: 1; }
.t-quote::before { content: '"'; }
.t-quote::after  { content: '"'; }
.t-author { display: flex; align-items: center; gap: 14px; margin-top: 8px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
  overflow: hidden;
}
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-name { font-weight: 700; color: var(--white); font-size: .95rem; }
.t-role { font-size: .8rem; color: #64748b; margin-top: 2px; }

.carousel-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 36px;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.carousel-dot.active { background: var(--orange); transform: scale(1.3); }
.carousel-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: var(--white); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.carousel-arrow:hover { background: rgba(255,255,255,.16); }

@media (max-width: 860px) {
  .carousel-track { grid-template-columns: 1fr; }
}

/* ---- Partners strip ---- */
.partners { background: var(--light); padding: 52px 0; overflow: hidden; }
.partners-label {
  text-align: center; font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--gray); margin-bottom: 28px;
}
.partners-scroll { overflow: hidden; }
.partners-track {
  display: flex; gap: 0; align-items: center;
  animation: partners-scroll 28s linear infinite;
  width: max-content;
}
.partners-track:hover { animation-play-state: paused; }
.partner-item {
  display: flex; align-items: center; justify-content: center;
  min-width: 180px; padding: 0 32px; height: 64px;
}
.partner-logo {
  max-height: 40px; max-width: 120px; object-fit: contain;
  filter: grayscale(100%); opacity: .55;
  transition: filter .2s, opacity .2s;
}
.partner-item:hover .partner-logo { filter: none; opacity: 1; }
.partner-name-only {
  font-weight: 700; font-size: .875rem; color: #94a3b8;
  white-space: nowrap; letter-spacing: .01em;
  transition: color .2s;
}
.partner-item:hover .partner-name-only { color: var(--orange); }
.partner-divider {
  width: 1px; height: 32px; background: var(--border); flex-shrink: 0;
}

@keyframes partners-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Footer ---- */
.footer {
  background: var(--dark); padding: 60px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
.footer-brand h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.footer-brand h3 span { color: var(--orange); }
.footer-brand p { color: #64748b; font-size: .9rem; max-width: 260px; }
.footer-col h4 { color: #94a3b8; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col a { display: block; color: #64748b; font-size: .9rem; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: #475569; font-size: .85rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: #475569; font-size: .85rem; transition: color .15s; }
.footer-legal a:hover { color: var(--orange); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---- Long-form content (Privacy / Terms) ---- */
.doc-hero {
  background: var(--dark); padding: 80px 0 64px;
}
.doc-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); }
.doc-hero p { color: #94a3b8; margin-top: 12px; font-size: 1rem; }
.doc-body { padding: 72px 0 96px; }
.doc-layout { display: grid; grid-template-columns: 240px 1fr; gap: 64px; align-items: start; }
.doc-nav {
  position: sticky; top: 90px;
  background: var(--light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.doc-nav h4 { color: var(--gray); font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.doc-nav a {
  display: block; color: var(--dark-3); font-size: .875rem; font-weight: 500;
  padding: 7px 0; border-bottom: 1px solid var(--border); transition: color .15s;
}
.doc-nav a:last-child { border-bottom: none; }
.doc-nav a:hover { color: var(--orange); }
.doc-content h2 {
  font-size: 1.4rem; color: var(--dark);
  margin: 48px 0 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.doc-content h2:first-child { border-top: none; margin-top: 0; }
.doc-content h3 { font-size: 1.05rem; color: var(--dark); margin: 24px 0 10px; }
.doc-content p { color: var(--dark-3); margin-bottom: 14px; line-height: 1.75; font-size: .975rem; }
.doc-content ul { margin: 10px 0 16px 20px; list-style: disc; }
.doc-content ul li { color: var(--dark-3); font-size: .975rem; padding: 4px 0; line-height: 1.6; }
.doc-content a { color: var(--orange); }
.doc-content strong { color: var(--dark); }
.doc-notice {
  background: var(--orange-light); border: 1px solid var(--orange-mid);
  border-radius: var(--radius-sm); padding: 20px 24px; margin-bottom: 32px;
}
.doc-notice p { color: var(--dark-3); margin: 0; font-size: .9rem; }

@media (max-width: 760px) {
  .doc-layout { grid-template-columns: 1fr; }
  .doc-nav { display: none; }
}

/* ---- About page ---- */
.about-hero { background: var(--dark); padding: 80px 0 64px; }
.about-hero h1 { color: var(--white); }
.about-hero p { color: #94a3b8; margin-top: 16px; font-size: 1.1rem; max-width: 560px; }
.value-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px; margin-top: 56px;
}
.value-card {
  padding: 32px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--border);
}
.value-card .value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { color: var(--dark); margin-bottom: 8px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 56px;
}
.contact-form {
  display: flex; flex-direction: column; gap: 16px;
}
.contact-form label { font-size: .875rem; font-weight: 600; color: var(--dark); }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: .95rem; font-family: inherit;
  background: var(--white); color: var(--dark-2);
  outline: none; transition: border-color .15s;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--orange);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item { display: flex; gap: 16px; }
.contact-info-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-info-item h4 { color: var(--dark); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: .9rem; color: var(--gray); }

@media (max-width: 680px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---- Animations ---- */
@media (prefers-reduced-motion: no-preference) {
  [data-fade] {
    opacity: 0; transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease;
  }
  [data-fade].visible { opacity: 1; transform: none; }
}

/* ============================================================
   MOBILE — comprehensive polish (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* --- Global spacing --- */
  .section    { padding: 56px 0; }
  .section-sm { padding: 36px 0; }
  .container  { padding: 0 20px; }

  /* --- Hero --- */
  .hero { padding: 48px 0 52px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: flex; justify-content: center; }
  .phone-mockup {
    width: 220px; height: 380px; border-radius: 32px;
  }
  .hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); margin-bottom: 16px; }
  .hero-sub { font-size: .975rem; margin-bottom: 28px; }
  .hero-actions {
    flex-direction: column; gap: 12px;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats {
    gap: 0;
    display: grid; grid-template-columns: repeat(3, 1fr);
    padding-top: 24px; margin-top: 0;
  }
  .hero-stats > div {
    text-align: center; padding: 0 8px;
    border-right: 1px solid rgba(255,255,255,.1);
  }
  .hero-stats > div:last-child { border-right: none; }
  .hero-stat-value { font-size: 1.4rem; }
  .hero-stat-label { font-size: .7rem; }

  /* --- How it works --- */
  .steps-grid { margin-top: 36px; gap: 24px; }

  /* --- Features --- */
  .video-showcase { margin-top: 32px; }
  .showcase-video { border-radius: 16px; }
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px; margin-top: 36px;
  }
  .feature-card { padding: 20px 18px; }
  .feature-icon { width: 44px; height: 44px; font-size: 1.3rem; margin-bottom: 14px; }
  .feature-card h3 { font-size: 1rem; margin-bottom: 6px; }
  .feature-card p { font-size: .85rem; }

  /* --- Testimonials --- */
  .carousel-wrap { margin-top: 36px; }
  .t-card { padding: 24px; }
  .t-quote { font-size: .9rem; }

  /* --- Partners --- */
  .partners { padding: 36px 0; }

  /* --- Driver section --- */
  .driver-grid { gap: 36px; }
  .driver-visual { padding: 28px 20px; }
  .driver-earning { font-size: 2.8rem; }
  .driver-plans {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .driver-plan { padding: 14px 8px; }
  .driver-plan-price { font-size: 1.1rem; }
  .driver-plan-detail { font-size: .72rem; }
  .driver-perks { gap: 12px; margin-bottom: 28px; }

  /* --- Download --- */
  .download { padding: 56px 0; }
  .download-grid {
    grid-template-columns: 1fr; gap: 36px; margin-top: 36px;
  }
  .download h3 { color: #fff; font-size: 1.2rem; margin-bottom: 8px; }
  .store-buttons { gap: 12px; }
  .store-btn { flex: 1; padding: 12px 14px; justify-content: center; font-size: .82rem; }

  /* --- Footer --- */
  .footer { padding: 44px 0 24px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr; gap: 32px;
    padding-bottom: 32px; margin-bottom: 24px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand h3 { font-size: 1.1rem; }
  .footer-col h4 { margin-bottom: 12px; }
  .footer-col a { padding: 4px 0; font-size: .85rem; }
  .footer-bottom { font-size: .8rem; }
  .footer-legal { gap: 14px; }

  /* --- Section headings --- */
  .section-heading { font-size: clamp(1.4rem, 5vw, 2rem); margin-bottom: 12px; }
  .section-sub { font-size: .9rem; }
  .section-tag { font-size: .7rem; padding: 4px 12px; }

  /* --- Buttons --- */
  .btn { padding: 13px 24px; font-size: .9rem; }
}
