/* WaslNAC marketing landing — styles
 * Source: claude.ai/design package (handoff bundle h/RVuu0ZgKSFn1lNm8lO7YDQ)
 * Converted from React-prototype tokens to vanilla CSS with --accent fixed.
 * Design direction: dark theme, infrastructural, Syne+Cairo type system.
 */

/* ── Reset / tokens ─────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: #0D1117; color: #E8E6E3; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Cairo', system-ui, -apple-system, sans-serif; line-height: 1.55; overflow-x: hidden; }
:root {
  --bg: #0D1117;
  --bg-1: #14191F;
  --bg-2: #1A2027;
  --bg-3: #232C36;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --fg: #F2F0EC;
  --fg-2: rgba(242,240,236,0.75);
  --fg-3: rgba(242,240,236,0.5);
  --fg-4: rgba(242,240,236,0.35);
  --accent: #E63946;
  --accent-soft-20: rgba(230,57,70,0.20);
  --accent-soft-18: rgba(230,57,70,0.18);
  --accent-soft-15: rgba(230,57,70,0.15);
  --accent-soft-10: rgba(230,57,70,0.10);
  --accent-soft-08: rgba(230,57,70,0.08);
  --accent-soft-06: rgba(230,57,70,0.06);
  --container: 1240px;
  --rad: 14px;
  --space: 1;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--accent); color: #fff; }

.font-display { font-family: 'Syne', 'Cairo', system-ui, sans-serif; font-weight: 700; letter-spacing: -0.02em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; width: 100%; }

/* RTL/LTR fonts */
[dir="rtl"] body, body[dir="rtl"] { font-family: 'Cairo', system-ui, sans-serif; }
[dir="ltr"] .font-display, [dir="ltr"] h1, [dir="ltr"] h2 { font-family: 'Syne', system-ui, sans-serif; }
[dir="rtl"] h1, [dir="rtl"] h2 { font-family: 'Cairo', system-ui, sans-serif; font-weight: 800; }

/* App shell */
.app { min-height: 100vh; background: var(--bg); }

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  background: rgba(13,17,23,0.78);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; background: var(--accent); }
.logo-text { font-family: 'Syne', 'Cairo', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.logo-text-accent { color: var(--accent); font-family: 'Syne', sans-serif; margin-inline-start: 4px; }

.nav-links { display: flex; gap: calc(28px * var(--space)); }
.nav-links a { font-size: 14px; color: var(--fg-2); transition: color .15s; font-weight: 500; }
.nav-links a:hover { color: var(--fg); }

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-lang {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-2); color: var(--fg-2);
  font-size: 12px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s; font-family: 'Syne', sans-serif;
}
.nav-lang:hover { border-color: var(--accent); color: var(--fg); }
.nav-cta {
  padding: 10px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: #fff;
  background: var(--accent);
  transition: transform .15s, filter .15s;
}
.nav-cta:hover { transform: translateY(-1px); filter: brightness(1.1); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-size: 15px; font-weight: 600;
  transition: transform .15s, filter .15s, background .15s, border-color .15s;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 24px -8px rgba(230,57,70,.5); }
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.08); }
.btn-outline { border: 1px solid var(--line-2); color: var(--fg); }
.btn-outline:hover { border-color: var(--fg); background: rgba(255,255,255,0.04); }
.btn-light { background: #fff; color: var(--bg); }
.btn-light:hover { transform: translateY(-1px); filter: brightness(0.95); }

/* ── Section heads ─────────────────────────────────────────── */
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.kicker {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 18px; font-family: 'Syne', sans-serif;
  color: var(--accent);
}
.section-h {
  font-family: 'Syne', 'Cairo', sans-serif;
  font-weight: 700; font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05; letter-spacing: -0.025em;
  color: var(--fg);
  text-wrap: balance;
}
[dir="rtl"] .section-h { font-weight: 800; line-height: 1.2; }
.section-h .muted { color: var(--fg-3); }
.section-sub {
  margin-top: 18px; font-size: 17px; color: var(--fg-2);
  max-width: 56ch; margin-inline: auto;
  text-wrap: pretty;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero { position: relative; padding: calc(60px * var(--space)) 0 calc(80px * var(--space)); overflow: hidden; }
.hero-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 70% at 50% 100%, rgba(230,57,70,0.25), transparent 70%); }
.hero-grid {
  position: relative;
  max-width: var(--container); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}

.hero-text { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  font-size: 13px; color: var(--fg-2); font-weight: 500;
  margin-bottom: 28px;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(230,57,70,0.2); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(230,57,70,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(230,57,70,0.05); }
}

.hero-h {
  font-family: 'Syne', 'Cairo', sans-serif;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 700; line-height: 1.02; letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
[dir="rtl"] .hero-h { font-weight: 800; line-height: 1.18; letter-spacing: -0.01em; }
.hero-h-line { display: block; }
.hero-h-line.accent { font-style: italic; color: var(--accent); }
[dir="rtl"] .hero-h-line.accent { font-style: normal; }

.hero-sub { font-size: 18px; color: var(--fg-2); max-width: 52ch; line-height: 1.6; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-soon-badge { font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 999px; letter-spacing: 0.05em; text-transform: uppercase; font-family: 'Syne', sans-serif; background: var(--accent-soft-20); color: var(--accent); }

.hero-meta { display: flex; align-items: center; gap: 28px; }
.hero-meta-num { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 700; line-height: 1; color: var(--accent); }
.hero-meta-lbl { font-size: 12px; color: var(--fg-3); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.hero-meta-divider { width: 1px; height: 32px; background: var(--line); }

/* Phone in hero */
.hero-phone-wrap { position: relative; display: flex; justify-content: center; align-items: center; min-height: 620px; }
.hero-phone-orbit {
  position: absolute; width: 540px; height: 540px; border-radius: 50%;
  border: 1px dashed rgba(230,57,70,0.30); opacity: 0.5; pointer-events: none;
}
.hero-phone-shadow { position: absolute; bottom: -40px; width: 400px; height: 100px; filter: blur(40px); background: radial-gradient(ellipse 60% 30% at 50% 100%, rgba(230,57,70,0.4), transparent 70%); }

.hero-float-card {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 12px;
  background: rgba(26,32,39,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.hero-float-1 { top: 18%; inset-inline-end: -10px; animation: float 4s ease-in-out infinite; }
.hero-float-2 { bottom: 18%; inset-inline-start: -10px; animation: float 4s ease-in-out infinite reverse; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-float-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  background: var(--accent-soft-20); color: var(--accent);
}
.hero-float-t { font-size: 13px; font-weight: 600; color: var(--fg); }
.hero-float-s { font-size: 11px; color: var(--fg-3); margin-top: 2px; }

/* ── Phone mockup ──────────────────────────────────────────── */
.phone-frame {
  position: relative; width: 300px; height: 610px;
  background: #1a1f26;
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 0 0 1.5px #2a2f36,
    0 0 0 8px #0e1216,
    0 30px 60px -10px rgba(0,0,0,0.7),
    0 50px 100px -20px rgba(230,57,70,0.25);
}
.phone-notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: #000; border-radius: 14px; z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  background: #0D1117;
  border-radius: 36px; overflow: hidden;
  display: flex; flex-direction: column;
  font-family: 'Cairo', sans-serif;
  color: #fff;
  position: relative;
}
.ph-status { display: flex; align-items: center; justify-content: space-between; padding: 14px 22px 8px; font-size: 14px; font-weight: 600; color: #fff; }
.ph-stat-icons { display: flex; align-items: center; gap: 5px; color: #fff; }

.ph-topbar { display: flex; align-items: center; justify-content: space-between; padding: 8px 18px; }
.ph-loc-label { font-size: 10px; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.ph-loc-value { display: flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; }
.ph-avatar { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, #E63946, #b22a35); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }

.ph-search {
  margin: 8px 18px; padding: 10px 12px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55); font-size: 12px;
}

.ph-promo {
  margin: 12px 18px; padding: 14px 16px; border-radius: 14px;
  background: var(--accent);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 6px;
}
.ph-promo-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.85; }
.ph-promo-title { font-size: 17px; font-weight: 800; line-height: 1.2; max-width: 70%; }
.ph-promo-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; font-size: 11px; }
.ph-promo-time { display: flex; align-items: center; gap: 4px; opacity: 0.85; }
.ph-promo-cta { font-weight: 700; }
.ph-promo-blob { position: absolute; right: -20px; top: -20px; width: 110px; height: 110px; border-radius: 50%; background: rgba(255,255,255,0.12); }

.ph-section-h { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px 8px; font-size: 13px; font-weight: 700; }
.ph-section-link { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 500; }

.ph-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; padding: 0 18px; }
.ph-cat { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 10px 6px; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.ph-cat-icon { font-size: 18px; }
.ph-cat-label { font-size: 10px; font-weight: 600; }
.ph-cat-count { font-size: 9px; color: rgba(255,255,255,0.45); }

.ph-rest { margin: 8px 18px; background: rgba(255,255,255,0.04); border-radius: 12px; overflow: hidden; }
.ph-rest-img {
  height: 92px;
  background:
    linear-gradient(135deg, rgba(230,57,70,0.4), rgba(230,57,70,0.1)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 8px, transparent 8px 16px);
  position: relative;
}
.ph-rest-fav { position: absolute; top: 8px; right: 8px; width: 24px; height: 24px; border-radius: 50%; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; font-size: 12px; }
.ph-rest-badge { position: absolute; bottom: 8px; left: 8px; padding: 3px 8px; border-radius: 999px; font-size: 10px; font-weight: 700; color: #fff; background: var(--accent); }
.ph-rest-body { padding: 10px 12px 12px; }
.ph-rest-row { display: flex; justify-content: space-between; align-items: center; }
.ph-rest-name { font-size: 13px; font-weight: 700; }
.ph-rest-rating { font-size: 11px; color: #ffc34d; }
.ph-rest-tags { font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 2px; }

.ph-nav {
  margin-top: auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 10px 8px 22px;
  background: rgba(13,17,23,0.6);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.ph-nav-item { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 9px; color: rgba(255,255,255,0.5); position: relative; padding: 4px 0; }
.ph-nav-item.active { color: var(--accent); }
.ph-nav-dot { position: absolute; top: 4px; right: 18px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.ph-home-indicator { position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); width: 100px; height: 4px; background: rgba(255,255,255,0.4); border-radius: 2px; }

/* ── Stats bar ─────────────────────────────────────────────── */
.stats { padding: 0 32px calc(40px * var(--space)); }
.stats-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  overflow: hidden;
}
.stat { padding: 36px 28px; border-inline-end: 1px solid var(--line); }
.stat:last-child { border-inline-end: none; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 700; line-height: 1; letter-spacing: -0.02em; color: var(--accent); }
[dir="rtl"] .stat-num { font-family: 'Syne', 'Cairo', sans-serif; }
.stat-label { margin-top: 10px; font-size: 13px; color: var(--fg-3); line-height: 1.4; }

/* ── How it works ──────────────────────────────────────────── */
.how { padding: calc(100px * var(--space)) 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.step {
  position: relative;
  padding: 36px 28px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  transition: border-color .2s, transform .2s, background .2s;
}
.step:hover { border-color: var(--line-2); transform: translateY(-2px); background: var(--bg-2); }
.step-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--accent-soft-10);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}
.step-num {
  position: absolute; top: 24px; inset-inline-end: 24px;
  font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--fg-4); letter-spacing: 0.05em;
}
.step-t { font-size: 22px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
[dir="rtl"] .step-t { font-weight: 800; }
.step-d { font-size: 15px; color: var(--fg-2); line-height: 1.55; }
.step-arrow {
  position: absolute; top: 50%; inset-inline-end: -16px;
  transform: translateY(-50%);
  font-size: 20px; color: var(--fg-4);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.step-arrow .arrow-rtl { display: none; }
[dir="rtl"] .step-arrow .arrow-ltr { display: none; }
[dir="rtl"] .step-arrow .arrow-rtl { display: inline; }

/* ── Categories ────────────────────────────────────────────── */
.cats-section { padding: calc(100px * var(--space)) 0; }
.cats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 980px; margin: 0 auto; }
.cat-card {
  display: flex; align-items: center; gap: 20px;
  padding: 28px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  transition: all .2s;
  position: relative;
}
.cat-card:hover { border-color: var(--accent); background: var(--bg-2); transform: translateY(-2px); }
.cat-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0;
  transition: background .2s;
}
.cat-card:hover .cat-icon { background: var(--accent-soft-15); }
.cat-body { flex: 1; min-width: 0; }
.cat-row { display: flex; align-items: baseline; gap: 12px; }
.cat-name { font-size: 20px; font-weight: 700; }
[dir="rtl"] .cat-name { font-weight: 800; }
.cat-sub { font-size: 13px; color: var(--fg-3); }
.cat-tag { font-size: 13px; color: var(--fg-2); margin-top: 4px; }
.cat-arrow { font-size: 22px; opacity: 0; transition: opacity .2s, transform .2s; color: var(--accent); }
.cat-card:hover .cat-arrow { opacity: 1; transform: translateX(0); }
.cat-arrow .arrow-rtl { display: none; }
[dir="rtl"] .cat-arrow .arrow-ltr { display: none; }
[dir="rtl"] .cat-arrow .arrow-rtl { display: inline; }

/* ── Partners ──────────────────────────────────────────────── */
.partners { padding: calc(100px * var(--space)) 0; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 100%); }
.partners-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.partners-text .kicker { margin-bottom: 16px; }
.partners-text .section-h { text-align: start; margin-bottom: 18px; }
.partners-text .section-sub { text-align: start; margin: 0 0 32px; }

.benefits { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.benefits li { display: flex; gap: 14px; align-items: flex-start; }
.benefit-check { width: 24px; height: 24px; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; background: var(--accent-soft-20); color: var(--accent); }
.benefit-t { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
[dir="rtl"] .benefit-t { font-weight: 800; }
.benefit-d { font-size: 14px; color: var(--fg-3); line-height: 1.5; }

/* Dashboard mock */
.dash {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 0 0 1px var(--line);
}
.dash-chrome {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--bg-3); }
.dash-chrome-label { font-size: 12px; color: var(--fg-3); flex: 1; text-align: center; }
.dash-chrome-spacer { width: 50px; }

.dash-body { display: grid; grid-template-columns: 160px 1fr; min-height: 520px; }
.dash-side { background: var(--bg-2); border-inline-end: 1px solid var(--line); padding: 14px 10px; }
.dash-side-logo { display: flex; align-items: center; gap: 8px; padding: 6px 10px 14px; font-size: 13px; font-weight: 700; }
.dash-side-logo-mark { width: 18px; height: 18px; border-radius: 5px; background: var(--accent); }
.dash-side-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 7px;
  font-size: 12px; color: var(--fg-3); margin-bottom: 2px;
  position: relative;
}
.dash-side-item.active { font-weight: 600; background: var(--accent-soft-18); color: var(--accent); }
.dash-side-i { font-size: 14px; opacity: 0.8; }
.dash-side-badge { position: absolute; inset-inline-end: 10px; min-width: 18px; height: 18px; border-radius: 9px; padding: 0 6px; font-size: 10px; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; background: var(--accent); }

.dash-main { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.dash-row { display: flex; justify-content: space-between; align-items: center; }
.dash-greet { font-size: 16px; font-weight: 700; }
.dash-greet-sub { font-size: 11px; color: var(--fg-4); margin-top: 2px; }
.dash-live { display: flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px; background: var(--accent-soft-10); font-size: 11px; font-weight: 600; color: var(--accent); }
.dash-live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse-dot 1.5s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dash-kpi { background: var(--bg-2); border: 1px solid var(--line); border-radius: 9px; padding: 12px; }
.dash-kpi-l { font-size: 11px; color: var(--fg-3); }
.dash-kpi-v { font-size: 20px; font-weight: 700; margin-top: 4px; font-family: 'Syne', sans-serif; }
.dash-kpi-d { font-size: 11px; font-weight: 600; margin-top: 2px; color: var(--accent); }

.dash-chart { background: var(--bg-2); border: 1px solid var(--line); border-radius: 9px; padding: 14px; }
.dash-chart-h { display: flex; justify-content: space-between; font-size: 12px; font-weight: 600; margin-bottom: 14px; }
.dash-chart-tot { color: var(--fg-3); font-weight: 500; }
.dash-bars { display: flex; gap: 8px; align-items: flex-end; height: 80px; }
.dash-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; }
.dash-bar { width: 100%; border-radius: 4px 4px 2px 2px; min-height: 4px; background: rgba(230,57,70,0.33); }
.dash-bar.peak { background: var(--accent); }
.dash-bar-l { font-size: 10px; color: var(--fg-4); }

.dash-orders { background: var(--bg-2); border: 1px solid var(--line); border-radius: 9px; padding: 14px; }
.dash-orders-h { font-size: 12px; font-weight: 600; margin-bottom: 10px; }
.dash-order { display: grid; grid-template-columns: auto 1fr auto auto; gap: 10px; align-items: center; padding: 8px 0; border-top: 1px solid var(--line); font-size: 12px; }
.dash-order:first-of-type { border-top: none; padding-top: 0; }
.dash-order-id { font-family: 'Syne', sans-serif; color: var(--fg-3); }
.dash-order-name { font-weight: 600; }
.dash-order-status { padding: 3px 8px; border-radius: 999px; font-size: 10px; font-weight: 600; color: var(--accent); background: var(--accent-soft-18); }
.dash-order-amt { font-weight: 700; }

/* ── Drivers ───────────────────────────────────────────────── */
.drivers { position: relative; padding: calc(100px * var(--space)) 0; background: linear-gradient(180deg, #1a0d10 0%, #0D1117 100%); overflow: hidden; }
.drivers-glow { position: absolute; inset: 0; opacity: 0.3; pointer-events: none; background: radial-gradient(ellipse 80% 100% at 50% 0%, var(--accent), transparent 60%); }
.drivers-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.drivers-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.drivers-head .kicker { color: rgba(255,255,255,0.7); }
.drivers-head .section-h, .drivers-head .section-sub { color: #fff; }

.earnings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; width: 100%; }
.earn-card {
  padding: 32px 28px; border-radius: var(--rad);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  transition: transform .2s, background .2s;
}
.earn-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.08); }
.earn-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.earn-v { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 700; line-height: 1; letter-spacing: -0.02em; color: #fff; }
.earn-u { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); }
.earn-t { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: #fff; }
[dir="rtl"] .earn-t { font-weight: 800; }
.earn-d { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ── Download ──────────────────────────────────────────────── */
.download { padding: calc(100px * var(--space)) 0; }
.download-card {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: center;
  padding: 56px 56px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.download-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 30% 50%, rgba(230,57,70,0.18), transparent 60%); }
.download-text { position: relative; z-index: 1; }
.download-text .kicker { margin-bottom: 16px; }
.download-text .section-h { text-align: start; }
.download-text .section-sub { text-align: start; margin: 18px 0 32px; }

.soon-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.soon-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: var(--bg-2); border: 1px solid var(--line); font-size: 13px; color: var(--fg-2); font-weight: 500; }
.soon-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.notify-form { display: flex; align-items: center; gap: 8px; padding: 6px; border-radius: 999px; background: var(--bg-2); border: 1px solid var(--line); max-width: 460px; }
.notify-input { flex: 1; min-width: 0; background: none; border: none; outline: none; padding: 10px 16px; color: var(--fg); font: inherit; font-size: 14px; }
.notify-input::placeholder { color: var(--fg-4); }
.notify-btn { padding: 10px 20px; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 600; font-size: 14px; transition: filter .15s, transform .15s; }
.notify-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.notify-ok { font-size: 18px; padding: 0 10px; opacity: 0; transition: opacity .25s; color: var(--accent); }
.notify-ok.shown { opacity: 1; }
.notify-helper { font-size: 12px; color: var(--fg-4); margin-top: 10px; }

.download-qr { display: flex; flex-direction: column; align-items: center; gap: 14px; position: relative; z-index: 1; }
.qr { padding: 14px; background: #fff; border-radius: 14px; }
.qr-label { font-size: 13px; color: var(--fg-3); font-weight: 500; }

/* ── Footer ────────────────────────────────────────────────── */
.footer { padding: calc(70px * var(--space)) 0 32px; border-top: 1px solid var(--line); background: var(--bg); }
.footer-top { display: grid; grid-template-columns: 1.4fr 2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.footer-tag { font-size: 14px; color: var(--fg-3); margin: 16px 0 24px; max-width: 36ch; line-height: 1.5; }
.footer-social { display: flex; gap: 8px; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--bg-1); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--fg-2);
  font-family: 'Syne', sans-serif;
  transition: all .15s;
}
.footer-social-btn:hover { border-color: var(--accent); color: var(--accent); }

.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-h { font-size: 12px; font-weight: 700; color: var(--fg); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; font-family: 'Syne', sans-serif; }
.footer-col a { font-size: 14px; color: var(--fg-3); transition: color .15s; }
.footer-col a:hover { color: var(--fg); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 13px; color: var(--fg-4); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-phone-wrap { min-height: 580px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-inline-end: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .cats-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .earnings { grid-template-columns: 1fr; }
  .download-card { grid-template-columns: 1fr; padding: 36px 28px; text-align: center; }
  .download-text .section-h, .download-text .section-sub { text-align: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .nav-links { display: none; }
  .hero-meta { flex-wrap: wrap; }
}

/* ─────────────────────────────────────────────────────────────────────────
 * PAGE STYLES (partner / driver registration shared)
 * Below this point: the styles needed by partner-new.html + driver-new.html.
 * The original homepage at marketing-landing.html doesn't use them.
 * ─────────────────────────────────────────────────────────────────────── */

.page { padding: calc(60px * var(--space)) 0 calc(80px * var(--space)); min-height: calc(100vh - 90px); }
.page-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; max-width: 1100px; margin: 0 auto; }
.page-aside { position: sticky; top: 100px; }
.page-kicker { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; color: var(--accent); }
.page-h { font-family: 'Syne', 'Cairo', sans-serif; font-size: clamp(36px, 4vw, 52px); font-weight: 700; line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 20px; color: var(--fg); }
[dir="rtl"] .page-h { font-weight: 800; line-height: 1.2; }
.page-sub { font-size: 16px; color: var(--fg-2); line-height: 1.6; max-width: 48ch; margin-bottom: 32px; }
.page-bullets { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.page-bullet { display: flex; gap: 14px; align-items: flex-start; }
.page-bullet-i { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; font-family: 'Syne', sans-serif; background: var(--accent-soft-20); color: var(--accent); }
.page-bullet-t { font-size: 15px; font-weight: 700; color: var(--fg); }
[dir="rtl"] .page-bullet-t { font-weight: 800; }
.page-bullet-d { font-size: 13px; color: var(--fg-3); margin-top: 2px; line-height: 1.5; }

/* ─── Form card ─────────────────────────────────────────── */
.form-card { background: var(--bg-1); border: 1px solid var(--line); border-radius: 18px; padding: 36px; }
.steps-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; }
.step-pill { flex: 1; height: 4px; border-radius: 999px; background: var(--bg-3); transition: background .25s; }
.step-pill.done { background: var(--accent); }
.step-pill.current { background: var(--accent); }
.step-counter { font-family: 'Syne', sans-serif; font-size: 12px; color: var(--fg-3); font-weight: 600; }
.form-h { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 6px; color: var(--fg); }
[dir="rtl"] .form-h { font-weight: 800; }
.form-sub { font-size: 14px; color: var(--fg-3); margin-bottom: 26px; }

/* ─── Fields ─────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.field-row .field { margin-bottom: 0; }
.field-l { font-size: 12px; color: var(--fg-2); font-weight: 600; }
.field-l-opt { color: var(--fg-4); font-weight: 400; margin-inline-start: 6px; }
.field input, .field select, .field textarea {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 12px 14px; font: inherit; font-size: 14px; color: var(--fg);
  outline: none; transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); background: var(--bg-3); }
.field input::placeholder, .field textarea::placeholder { color: var(--fg-4); }
.field textarea { resize: vertical; min-height: 84px; }
.field-hint { font-size: 11px; color: var(--fg-4); }

/* ─── Chips (radio-as-cards) ─────────────────────────────── */
.chip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.chip {
  padding: 14px 16px; border-radius: 12px;
  background: var(--bg-2); border: 1px solid var(--line);
  cursor: pointer; transition: all .15s;
  display: flex; align-items: flex-start; gap: 10px;
  text-align: start; font: inherit; color: var(--fg);
}
.chip:hover { border-color: var(--line-2); background: var(--bg-3); }
.chip.selected { border-color: var(--accent); background: var(--accent-soft-08); }
.chip-i { font-size: 22px; line-height: 1; }
.chip-t { font-size: 14px; font-weight: 700; color: var(--fg); }
[dir="rtl"] .chip-t { font-weight: 800; }
.chip-d { font-size: 12px; color: var(--fg-3); margin-top: 2px; }

/* ─── Upload tiles ───────────────────────────────────────── */
.upload-tile {
  display: flex; align-items: center; gap: 12px;
  padding: 14px; border-radius: 12px;
  background: var(--bg-2); border: 1px dashed var(--line-2);
  cursor: pointer; transition: all .15s;
}
.upload-tile:hover { border-color: var(--accent); background: var(--bg-3); }
.upload-tile.uploaded { border-style: solid; border-color: var(--accent); background: var(--accent-soft-06); }
.upload-i { width: 36px; height: 36px; border-radius: 8px; background: var(--bg-3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--fg-3); }
.upload-tile.uploaded .upload-i { background: var(--accent-soft-15); color: var(--accent); }
.upload-t { font-size: 13px; font-weight: 700; color: var(--fg); }
[dir="rtl"] .upload-t { font-weight: 800; }
.upload-d { font-size: 11px; color: var(--fg-4); margin-top: 2px; }
.upload-status { margin-inline-start: auto; font-size: 11px; font-weight: 600; color: var(--fg-3); }

/* ─── Step navigation ────────────────────────────────────── */
.step-nav { display: flex; justify-content: space-between; gap: 10px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.step-back, .step-next { padding: 12px 22px; border-radius: 999px; font-size: 14px; font-weight: 600; transition: all .15s; }
.step-back { background: transparent; color: var(--fg-2); border: 1px solid var(--line-2); }
.step-back:hover { color: var(--fg); border-color: var(--fg-3); }
.step-back:disabled { opacity: 0.3; cursor: not-allowed; }
.step-next { color: #fff; background: var(--accent); border: none; }
.step-next:hover { filter: brightness(1.08); transform: translateY(-1px); }
.step-next:disabled { opacity: 0.5; cursor: not-allowed; }
.step-next:disabled:hover { filter: none; transform: none; }

/* ─── Success state ──────────────────────────────────────── */
.success-card { text-align: center; padding: 56px 36px; }
.success-mark { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; font-size: 36px; color: #fff; }
.success-h { font-family: 'Syne', 'Cairo', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; color: var(--fg); }
[dir="rtl"] .success-h { font-weight: 800; }
.success-d { font-size: 15px; color: var(--fg-2); max-width: 40ch; margin: 0 auto 28px; line-height: 1.6; }
.success-meta { display: flex; justify-content: center; gap: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.success-meta-v { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700; color: var(--fg); }
.success-meta-l { font-size: 11px; color: var(--fg-4); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── Earnings calculator (driver page aside) ─────────────── */
.calc { background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 24px; margin-top: 24px; }
.calc-h { font-size: 14px; font-weight: 700; margin-bottom: 18px; color: var(--fg); }
[dir="rtl"] .calc-h { font-weight: 800; }
.calc-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-size: 13px; }
.calc-l { color: var(--fg-3); }
.calc-v { font-family: 'Syne', sans-serif; font-weight: 600; color: var(--fg); }
.calc-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; background: var(--bg-3); border-radius: 2px; outline: none; }
.calc-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); cursor: pointer; box-shadow: 0 0 0 4px var(--accent-soft-20); }
.calc-slider::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); border: none; cursor: pointer; box-shadow: 0 0 0 4px var(--accent-soft-20); }
.calc-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 18px; margin-top: 10px; border-top: 1px solid var(--line); }
.calc-total-l { font-size: 13px; color: var(--fg-2); font-weight: 600; }
.calc-total-v { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 700; letter-spacing: -0.02em; }

/* ─── Map picker (partner page step 3) ────────────────────── */
.map-picker { display: flex; flex-direction: column; gap: 10px; }
.map-picker-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0d12;
  border: 1px solid var(--line);
  user-select: none;
}
.map-svg { width: 100%; height: 100%; display: block; }
.map-zone-pill {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid;
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  pointer-events: none;
}
[dir="rtl"] .map-zone-pill { font-family: 'Cairo', sans-serif; }
.map-zone-pill-dot { width: 7px; height: 7px; border-radius: 50%; }
.map-coords-readout {
  position: absolute; bottom: 14px; left: 14px;
  display: flex; flex-direction: column; gap: 2px;
  padding: 8px 12px; border-radius: 8px;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  pointer-events: none;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
}
.map-coords-l { font-size: 9px; color: var(--fg-4); letter-spacing: 0.1em; }
.map-coords-v { font-size: 12px; color: var(--fg); font-weight: 600; }
.map-legend { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.map-legend-i { font-size: 12px; color: var(--fg-3); }
.map-recenter {
  background: var(--bg-2); border: 1px solid var(--line); color: var(--fg-2);
  font: inherit; font-size: 12px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px; cursor: pointer; transition: all 0.15s;
}
.map-recenter:hover { border-color: var(--accent); color: var(--fg); }

/* ─── Page responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .map-picker-frame { aspect-ratio: 4 / 3; }
  .page-grid { grid-template-columns: 1fr; }
  .page-aside { position: static; }
  .field-row { grid-template-columns: 1fr; }
  .chip-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
}

/* ─────────────────────────────────────────────────────────────────────────
 * CONTENT-PAGE STYLES (about / faq / terms / privacy / contact)
 * Used by long-form text pages with article layout.
 * ─────────────────────────────────────────────────────────────────────── */
.content-page { padding: calc(60px * var(--space)) 0 calc(80px * var(--space)); min-height: calc(100vh - 90px); }
.content-page .container { max-width: 760px; }
.content-hero { text-align: start; margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.content-hero .kicker { color: var(--accent); margin-bottom: 14px; }
.content-hero h1 { font-family: 'Syne', 'Cairo', sans-serif; font-size: clamp(36px, 4.5vw, 56px); font-weight: 700; line-height: 1.05; letter-spacing: -0.025em; color: var(--fg); }
[dir="rtl"] .content-hero h1 { font-weight: 800; line-height: 1.2; }
.content-hero p { font-size: 17px; color: var(--fg-2); line-height: 1.6; margin-top: 18px; max-width: 56ch; }
.content-body h2 { font-family: 'Syne','Cairo',sans-serif; font-size: 24px; font-weight: 700; letter-spacing: -0.015em; color: var(--fg); margin: 36px 0 14px; }
[dir="rtl"] .content-body h2 { font-weight: 800; }
.content-body h3 { font-size: 17px; font-weight: 700; color: var(--fg); margin: 24px 0 8px; }
[dir="rtl"] .content-body h3 { font-weight: 800; }
.content-body p { font-size: 16px; color: var(--fg-2); line-height: 1.7; margin-bottom: 14px; }
.content-body ul, .content-body ol { margin: 0 0 14px; padding-inline-start: 24px; color: var(--fg-2); font-size: 16px; line-height: 1.7; }
.content-body ul li, .content-body ol li { margin-bottom: 6px; list-style: disc; }
.content-body ol li { list-style: decimal; }
.content-body strong { color: var(--fg); font-weight: 700; }
.content-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.content-body a:hover { filter: brightness(1.2); }
.content-body code { background: var(--bg-2); border: 1px solid var(--line); border-radius: 4px; padding: 1px 6px; font-size: 13px; color: var(--fg); }

/* FAQ list */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--bg-1); border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; transition: border-color .15s; }
.faq-item:hover { border-color: var(--line-2); }
.faq-item summary { font-size: 16px; font-weight: 700; color: var(--fg); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
[dir="rtl"] .faq-item summary { font-weight: 800; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: 'Syne', sans-serif; font-size: 22px; color: var(--accent); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 15px; color: var(--fg-2); line-height: 1.65; margin: 14px 0 0; padding-top: 14px; border-top: 1px solid var(--line); }

/* Contact list / cards */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 24px 0 36px; }
.contact-card { background: var(--bg-1); border: 1px solid var(--line); border-radius: 14px; padding: 24px; }
.contact-card-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--accent-soft-15); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 16px; margin-bottom: 14px; }
.contact-card-l { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-3); font-family: 'Syne', sans-serif; font-weight: 600; margin-bottom: 6px; }
.contact-card-v { font-size: 16px; font-weight: 700; color: var(--fg); }
[dir="rtl"] .contact-card-v { font-weight: 800; }
.contact-card-v a { color: var(--fg); text-decoration: none; }
.contact-card-v a:hover { color: var(--accent); }

/* Legal-page disclaimer banner */
.legal-disclaimer { background: rgba(244, 162, 97, 0.08); border: 1px solid rgba(244, 162, 97, 0.3); border-radius: 12px; padding: 18px 22px; margin-bottom: 32px; font-size: 14px; color: #f4a261; line-height: 1.55; }
.legal-disclaimer strong { color: #f4a261; }

/* ─────────────────────────────────────────────────────────────────────────
 * MOBILE BREAKPOINT — ≤ 640px
 * Handles narrow phones (360px – 640px wide). The 980px + 900px breakpoints
 * above cover desktop→tablet; this block closes the phone gap.
 * ─────────────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {

  /* Nav — tighter padding, hide "← Home" ghost CTA if it overflows */
  .nav { padding: 12px 16px; }
  .nav-cta { display: none; }

  /* Container — less horizontal gutter so content doesn't feel cramped */
  .container { padding: 0 16px; }

  /* ─── Hero ──────────────────────────────────────────── */
  /* Phone mockup (300×610px) is wider than most phone screens — hide it;
     the text hero stands alone and is already compelling enough. */
  .hero-phone-wrap { display: none; }
  /* Give the hero text a bit more room without the image competing */
  .hero-inner { gap: 32px; }
  .hero-h { font-size: clamp(30px, 8vw, 44px); }
  .hero-sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-meta { gap: 16px; }
  .hero-meta-v { font-size: 22px; }

  /* ─── Stats bar ─────────────────────────────────────── */
  .stats { padding: 32px 0; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
  .stat-num { font-size: 32px; }

  /* ─── Section titles ────────────────────────────────── */
  .section-h { font-size: clamp(26px, 7vw, 38px); }
  .section-sub { font-size: 15px; }

  /* ─── Steps / How it works ──────────────────────────── */
  .steps { padding: 56px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { padding: 24px 20px; }

  /* ─── Category grid ─────────────────────────────────── */
  .cats { padding: 56px 0; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-card { padding: 20px 16px; }

  /* ─── Partners / drivers sections ───────────────────── */
  .partners { padding: 56px 0; }
  .partners-grid { grid-template-columns: 1fr; gap: 40px; }
  /* Hide the dashboard mock on very small screens — it's too dense to read */
  .dash { display: none; }

  .drivers { padding: 56px 0; }
  .earnings { grid-template-columns: 1fr; gap: 14px; }
  .earn-card { padding: 24px 20px; }
  .earn-v { font-size: 34px; }

  /* ─── Download / CTA card ───────────────────────────── */
  .download { padding: 56px 0; }
  .download-card { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .download-img { display: none; }
  .notify-form { flex-direction: column; gap: 10px; }
  .notify-input { width: 100%; }
  .notify-btn { width: 100%; justify-content: center; }

  /* ─── Footer ────────────────────────────────────────── */
  .footer-top { padding: 48px 0 32px; }
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  /* ─── Page layout (partner.html / driver.html forms) ── */
  .page { padding: 32px 0 56px; }
  .form-card { padding: 20px 16px; border-radius: 14px; }
  .form-h { font-size: 19px; }
  .step-back, .step-next { padding: 11px 18px; font-size: 13px; }
  /* Keep chip-grid at 2 columns on most phones; single column only on very small */
  .chip-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .chip { padding: 12px; }

  /* ─── Content pages (terms / privacy / faq / contact) ─ */
  .content-hero h1 { font-size: clamp(26px, 7vw, 36px); }
  .content-hero p { font-size: 15px; }
  .content-body h2 { font-size: 20px; }
  .faq-item { padding: 16px 18px; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────────────────────
 * VERY SMALL PHONES — ≤ 390px
 * Extra tweaks for 360px–390px handsets (Galaxy A-series, older iPhones).
 * ─────────────────────────────────────────────────────────────────────── */
@media (max-width: 390px) {
  .chip-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; gap: 14px; }
  .cats-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { font-size: 14px; padding: 13px 20px; }
}
