/* ═══════════════════════════════════════════════
   HAMAAL – Global Stylesheet
   Theme: Porter-inspired · Bold Orange · Modern
   ═══════════════════════════════════════════════ */

:root {
  --orange: #2563EB;
  --orange-dark: #1D4ED8;
  --orange-light: #3B82F6;
  --orange-pale: #EFF6FF;
  --black: #0D0D0D;
  --dark: #111418;
  --dark-2: #1A1F26;
  --dark-3: #242B34;
  --mid: #4A5568;
  --muted: #718096;
  --border: #E2E8F0;
  --border-dark: #2A3140;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --text: #1A202C;
  --text-light: #4A5568;

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.16);

  --max-w: 1200px;
  --section-pad: 100px 0;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo-mark svg { width: 100%; height: 100%; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--black);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.nav-active { color: var(--black); }
.nav-cta { margin-left: auto; }
.btn-nav {
  background: var(--orange);
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-nav:hover { background: var(--orange-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  padding: 16px 24px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-weight: 500;
  color: var(--mid);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover { background: var(--orange-pale); color: var(--orange); }
.btn-mobile-cta {
  background: var(--orange) !important;
  color: white !important;
  text-align: center;
  margin-top: 8px;
}

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,69,10,0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--black);
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--black); }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--orange);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.3); }

/* ══════════════════════════════════
   SECTION COMMON
══════════════════════════════════ */
.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-tag.orange { background: var(--orange-pale); color: var(--orange); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: 140px 24px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,69,10,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,69,10,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,69,10,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-container {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(232,69,10,0.2);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 20px;
}
.title-accent { color: var(--orange); }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 28px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: fit-content;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Phone mockup */
.hero-visual {
  position: relative;
  flex-shrink: 0;
}
.phone-mockup {
  width: 280px;
  background: var(--dark);
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.06);
}
.phone-screen {
  background: #F8F9FA;
  border-radius: 22px;
  overflow: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
}
.app-logo-small {
  width: 28px; height: 28px;
  background: var(--orange);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}
.app-notif { color: var(--orange); margin-left: auto; font-size: 0.7rem; }
.app-map-placeholder {
  height: 130px;
  background: #E8F4FD;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.app-map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 20px,
    rgba(100,180,255,0.1) 20px, rgba(100,180,255,0.1) 21px
  ),
  repeating-linear-gradient(
    90deg, transparent, transparent 20px,
    rgba(100,180,255,0.1) 20px, rgba(100,180,255,0.1) 21px
  );
}
.map-dot {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid white;
}
.map-dot-1 { background: var(--orange); top: 30px; left: 60px; animation: mapBounce 2s infinite; }
.map-dot-2 { background: #22C55E; bottom: 25px; right: 50px; }
@keyframes mapBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.map-line {
  position: absolute;
  top: 36px; left: 66px;
  width: 130px; height: 60px;
  border-left: 2px dashed rgba(232,69,10,0.5);
  border-bottom: 2px dashed rgba(232,69,10,0.5);
  border-bottom-left-radius: 12px;
}
.map-label {
  position: absolute;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--orange);
  top: 14px; left: 52px;
}
.map-label-2 {
  color: #16A34A;
  top: auto; left: auto;
  bottom: 8px; right: 38px;
}
.app-card {
  background: white;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.card-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vehicle-icon { font-size: 1.4rem; }
.card-title { font-size: 0.8rem; font-weight: 700; color: var(--black); }
.card-sub { font-size: 0.7rem; color: var(--muted); }
.card-eta {
  margin-left: auto;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
}
.app-btn {
  background: var(--orange);
  color: white;
  text-align: center;
  border-radius: 10px;
  padding: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

/* Floating chips */
.floating-chip {
  position: absolute;
  background: white;
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--black);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.chip-1 { top: 20px; left: -80px; animation: float1 4s ease-in-out infinite; }
.chip-2 { bottom: 60px; left: -60px; animation: float2 4s ease-in-out infinite 1s; }
.chip-3 { top: 50%; right: -50px; animation: float1 4s ease-in-out infinite 2s; }
@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ══════════════════════════════════
   TRUST STRIP
══════════════════════════════════ */
.trust-strip {
  background: var(--dark);
  padding: 18px 24px;
}
.trust-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-cities {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-cities span {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.trust-cities .sep { color: rgba(255,255,255,0.2); }

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services {
  padding: var(--section-pad);
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.5s ease forwards;
}
.service-card:nth-child(1) { animation-delay: 0.0s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }
.service-card:nth-child(5) { animation-delay: 0.4s; }
.service-card:nth-child(6) { animation-delay: 0.5s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.service-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ══════════════════════════════════
   HOW IT WORKS
══════════════════════════════════ */
.how-it-works {
  padding: var(--section-pad);
  background: var(--dark);
}
.how-it-works .section-title { color: white; }
.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
}
.step-card {
  flex: 1;
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(232,69,10,0.15);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon { font-size: 1.8rem; margin-bottom: 12px; }
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.step-card p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.step-connector {
  width: 60px;
  flex-shrink: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(37,99,235,0.3));
  position: relative;
}
.step-connector::after {
  content: '▶';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 0.7rem;
}

/* ══════════════════════════════════
   VEHICLES
══════════════════════════════════ */
.vehicles {
  padding: var(--section-pad);
  background: var(--off-white);
}
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vehicle-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.vehicle-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.vehicle-card.featured {
  border-color: var(--orange);
  background: var(--orange-pale);
}
.vehicle-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.vehicle-emoji { font-size: 3rem; margin-bottom: 16px; }
.vehicle-info h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.vehicle-info p { font-size: 0.82rem; color: var(--muted); margin-bottom: 10px; }
.vehicle-capacity {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
}
.vehicle-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vehicle-tag.orange { color: var(--orange); }

/* ══════════════════════════════════
   WHY HAMAAL
══════════════════════════════════ */
.why-hamaal {
  padding: var(--section-pad);
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.why-check {
  width: 24px; height: 24px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-list li > div strong {
  display: block;
  font-weight: 700;
  color: var(--black);
  font-size: 0.95rem;
}
.why-list li > div span {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Features Card */
.features-card {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.fc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}
.fc-logo {
  width: 32px; height: 32px;
  background: var(--orange);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.fc-live {
  margin-left: auto;
  font-size: 0.72rem;
  color: #22C55E;
  font-weight: 700;
}
.fc-map {
  background: #1E2532;
  border-radius: var(--radius);
  height: 140px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.fc-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 20px,
    rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 21px
  );
}
.route-line {
  position: absolute;
  top: 30px; left: 50px;
  width: 140px; height: 70px;
  border: 2px dashed rgba(232,69,10,0.6);
  border-right: none;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.fc-pin {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: white;
}
.fc-pin.from { background: var(--orange); top: 20px; left: 40px; }
.fc-pin.to { background: #22C55E; bottom: 20px; right: 40px; }
.truck-moving {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  animation: driveTruck 3s ease-in-out infinite;
}
@keyframes driveTruck {
  0%, 100% { left: 40%; }
  50% { left: 60%; }
}
.fc-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.fc-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.fc-detail-row span { color: rgba(255,255,255,0.4); }
.fc-detail-row strong { color: white; }
.fc-actions {
  display: flex;
  gap: 10px;
}
.fc-btn {
  flex: 1;
  background: var(--dark-3);
  color: white;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.fc-btn:hover { background: var(--orange); border-color: var(--orange); }
.fc-btn.sos { background: rgba(239,68,68,0.15); border-color: rgba(239,68,68,0.3); color: #EF4444; }
.fc-btn.sos:hover { background: #EF4444; border-color: #EF4444; color: white; }

/* ══════════════════════════════════
   DRIVER CTA
══════════════════════════════════ */
.driver-cta {
  padding: var(--section-pad);
  background: var(--orange);
}
.driver-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.driver-content .section-tag.white-tag {
  background: rgba(255,255,255,0.2);
  color: white;
}
.driver-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
  margin-top: 8px;
}
.driver-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.driver-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.driver-perks li {
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  font-weight: 500;
}
.driver-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.d-stat {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}
.d-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}
.d-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ══════════════════════════════════
   DOWNLOAD
══════════════════════════════════ */
.download {
  padding: var(--section-pad);
  background: var(--off-white);
}
.download-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  background: white;
  border-radius: var(--radius-xl);
  padding: 60px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.download-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  margin-top: 8px;
}
.download-text p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.download-form {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.phone-input {
  flex: 1;
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.95rem;
  color: var(--black);
  transition: border-color 0.2s;
  outline: none;
}
.phone-input:focus { border-color: var(--orange); }
.form-note { font-size: 0.78rem; color: var(--muted); margin-bottom: 24px; }
.store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.store-badge:hover { background: var(--dark-3); }

/* QR placeholder */
.qr-placeholder {
  width: 180px; height: 180px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}
.qr-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.qr-grid {
  width: 100px; height: 100px;
  background:
    repeating-conic-gradient(var(--dark) 0% 25%, transparent 0% 50%) 0 0 / 10px 10px;
  border-radius: 4px;
}
.qr-inner span { font-size: 0.72rem; color: var(--muted); font-weight: 600; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 72px 0 32px;
}
.footer-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-main {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 32px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: white; }
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px;
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s;
}
.social-links a:hover { background: var(--orange); color: white; border-color: var(--orange); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a,
.footer-col li span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col li a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .driver-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .download-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { flex-direction: column; gap: 12px; }
  .step-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--orange), rgba(232,69,10,0.3)); }
  .step-connector::after { content: '▼'; right: auto; left: 50%; transform: translateX(-50%); top: auto; bottom: -8px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 120px 24px 60px; }
  .hero-stats { flex-direction: column; gap: 16px; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: 1fr 1fr; }
  .driver-stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .download-form { flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .vehicles-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .driver-stat-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .download-inner { padding: 32px 24px; }
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
