/* ═══════════════════════════════════════════════════════════
   A2B LIFT — Professional Marketing Site
   Brand: Black / White / Luxury
   Font: Inter
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --black:    #0A0A0A;
  --white:    #ffffff;
  --grey-50:  #f8f8f8;
  --grey-100: #f1f1f1;
  --grey-200: #e2e2e2;
  --grey-400: #9a9a9a;
  --grey-600: #555555;
  --grey-900: #111111;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow:    0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.13);
  --nav-h:     68px;
  --max-w:     1160px;
  --t:         0.2s ease;
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:var(--font); font-size:16px; line-height:1.6; color:var(--grey-900); background:var(--white); -webkit-font-smoothing:antialiased; }
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
button { border:none; background:none; cursor:pointer; font-family:var(--font); }
ul, ol { list-style:none; }

/* ── UTILITIES ── */
.container { max-width:var(--max-w); margin:0 auto; padding:0 24px; }
.section { padding:100px 0; }
.section--dark { background:var(--black); color:var(--white); }
.section--grey { background:var(--grey-50); }
.section--mid  { background:#0f0f0f; color:var(--white); }

.label {
  display:inline-flex; align-items:center; gap:6px;
  font-size:11px; font-weight:700; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--grey-400); margin-bottom:14px;
}
.label--light { color:rgba(255,255,255,0.4); }

.heading {
  font-size:clamp(30px,4vw,50px); font-weight:800;
  line-height:1.08; letter-spacing:-0.025em; margin-bottom:48px;
}
.heading em { font-style:italic; font-weight:400; }
.heading--light { color:var(--white); }
.heading--sm { font-size:clamp(24px,3vw,36px); margin-bottom:24px; }

/* ── BUTTONS ── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 26px; border-radius:100px;
  font-size:14px; font-weight:600; transition:all var(--t);
  white-space:nowrap; cursor:pointer;
}
.btn-primary   { background:var(--black); color:var(--white); }
.btn-primary:hover   { background:#222; transform:translateY(-1px); box-shadow:var(--shadow); }
.btn-ghost     { background:transparent; color:var(--grey-900); border:1.5px solid var(--grey-200); }
.btn-ghost:hover     { border-color:var(--grey-900); }
.btn-outline   { background:transparent; color:var(--grey-900); border:1.5px solid var(--grey-900); }
.btn-outline:hover   { background:var(--black); color:var(--white); }
.btn-white     { background:var(--white); color:var(--black); }
.btn-white:hover     { background:var(--grey-100); }
.btn-sm { padding:9px 18px; font-size:13px; }
.btn svg { width:16px; height:16px; flex-shrink:0; }

/* ── NAV ── */
.nav {
  position:fixed; top:0; left:0; right:0;
  height:var(--nav-h);
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--grey-200);
  z-index:1000; transition:box-shadow var(--t);
}
.nav.scrolled { box-shadow:var(--shadow-sm); }
.nav-inner {
  max-width:var(--max-w); margin:0 auto; padding:0 24px;
  height:100%; display:flex; align-items:center; gap:32px;
}
.logo { display:flex; align-items:center; gap:9px; flex-shrink:0; }
.logo-img { width:30px; height:30px; border-radius:7px; object-fit:contain; }
.logo-text { font-size:17px; font-weight:400; letter-spacing:-0.02em; }
.logo-text strong { font-weight:800; }
.logo--light .logo-text { color:var(--white); }

.nav-links { display:flex; align-items:center; gap:4px; flex:1; }
.nav-links a {
  font-size:14px; font-weight:500; color:var(--grey-600);
  padding:6px 12px; border-radius:8px; transition:all var(--t);
}
.nav-links a:hover, .nav-links a.active { color:var(--black); background:var(--grey-50); }

.nav-actions { display:flex; align-items:center; gap:10px; margin-left:auto; }

/* hamburger */
.hamburger {
  display:none; flex-direction:column; justify-content:center;
  gap:5px; width:36px; height:36px; padding:6px; margin-left:auto;
}
.hamburger span { display:block; height:1.5px; background:var(--black); border-radius:2px; transition:all var(--t); }

/* mobile nav overlay */
.mobile-nav {
  display:none; position:fixed; inset:var(--nav-h) 0 0 0;
  background:var(--white); z-index:999; flex-direction:column;
  padding:24px; overflow-y:auto; border-top:1px solid var(--grey-200);
}
.mobile-nav.open { display:flex; }
.mobile-nav a {
  font-size:18px; font-weight:600; color:var(--grey-900);
  padding:14px 0; border-bottom:1px solid var(--grey-100);
  display:flex; align-items:center; justify-content:space-between;
}
.mobile-nav a:last-child { border-bottom:none; }
.mobile-nav .mobile-cta { margin-top:24px; display:flex; flex-direction:column; gap:10px; }
.mobile-nav .mobile-cta .btn { justify-content:center; }

/* ── HERO (HOMEPAGE) ── */
.hero {
  min-height:100vh; position:relative; overflow:hidden;
  background:var(--black); color:var(--white);
  display:flex; align-items:center; padding-top:var(--nav-h);
}
.hero--light {
  min-height:92vh;
  background:linear-gradient(180deg, #fbfbfa 0%, #f1f1ef 100%);
  color:var(--grey-900);
}
.hero-bg {
  position:absolute; inset:0;
  background-image:url('https://images.unsplash.com/photo-1617814076367-b759c7d7e738?auto=format&fit=crop&w=1600&q=80');
  background-size:cover; background-position:center 40%;
}
.hero-bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(105deg, rgba(0,0,0,0.62) 40%, rgba(0,0,0,0.20) 100%);
}
.hero--light .hero-bg {
  background-image:url('assets/images/rides.png?v=20260505b');
  background-repeat:no-repeat;
  background-size:min(56vw, 780px) auto;
  background-position:right 36px bottom 52px;
}
.hero--light .hero-bg::after {
  background:linear-gradient(90deg, rgba(251,251,250,0.98) 0%, rgba(251,251,250,0.95) 40%, rgba(251,251,250,0.72) 66%, rgba(251,251,250,0.18) 100%);
}
.hero-content {
  position:relative; z-index:1; max-width:var(--max-w);
  margin:0 auto; padding:80px 24px; width:100%;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; font-weight:600; color:rgba(255,255,255,0.7);
  background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.15);
  border-radius:100px; padding:6px 16px; margin-bottom:28px;
  backdrop-filter:blur(8px);
}
.hero-badge-dot { width:6px; height:6px; border-radius:50%; background:#4ade80; flex-shrink:0; }
.hero-title {
  font-size:clamp(44px,6vw,82px); font-weight:800;
  line-height:1.02; letter-spacing:-0.035em;
  max-width:640px; margin-bottom:24px;
}
.hero-title em { font-style:italic; font-weight:300; }
.hero-sub {
  font-size:18px; color:rgba(255,255,255,0.65);
  max-width:480px; line-height:1.75; margin-bottom:44px;
}
.hero--light .hero-title,
.hero--light .hero-stat-num { color:var(--grey-900); }
.hero--light .hero-sub,
.hero--light .hero-stat-label { color:var(--grey-600); }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; align-items:center; }
.hero-stats {
  display:flex; gap:40px; margin-top:60px;
  padding-top:40px; border-top:1px solid rgba(255,255,255,0.1);
}
.hero--light .hero-stats { border-top-color:var(--grey-200); }
.hero-stat-label { font-size:13px; color:rgba(255,255,255,0.45); margin-top:4px; }
.hero-stat-num   { font-size:28px; font-weight:800; letter-spacing:-0.02em; color:var(--white); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background:var(--black); color:var(--white);
  padding:calc(var(--nav-h) + 64px) 0 72px;
}
.page-hero .label { color:rgba(255,255,255,0.4); }
.page-hero-title {
  font-size:clamp(36px,5vw,64px); font-weight:800;
  line-height:1.05; letter-spacing:-0.03em; max-width:680px;
  margin-bottom:20px;
}
.page-hero-sub {
  font-size:18px; color:rgba(255,255,255,0.6);
  max-width:560px; line-height:1.75; margin-bottom:36px;
}
.page-hero--photo { position:relative; overflow:hidden; min-height:480px; display:flex; align-items:flex-end; }
.page-hero--photo .page-hero-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
}
.page-hero--photo .page-hero-bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.22) 50%, rgba(0,0,0,0.05) 100%);
}
.page-hero--photo .container { position:relative; z-index:1; padding-bottom:64px; }

/* ── STORE BUTTONS ── */
.store-btn {
  display:inline-flex; align-items:center; justify-content:center;
  height:auto; border-radius:14px; overflow:hidden;
  border:none;
  line-height:0;
  transition:all var(--t);
}
.store-btn:hover { transform:translateY(-1px); opacity:0.92; }
.store-btn img { width:150px; height:45px; max-width:100%; object-fit:contain; flex-shrink:0; }
.store-btn--dark:hover { opacity:0.9; }

/* ── SERVICES GRID ── */
.service-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.service-card {
  background:var(--grey-50); border-radius:var(--radius);
  padding:28px 24px; border:1px solid var(--grey-200);
  transition:all var(--t); display:flex; flex-direction:column; gap:14px;
  text-decoration:none;
}
.service-card:hover { border-color:#bbb; transform:translateY(-2px); box-shadow:var(--shadow); }
.service-card--dark { background:var(--black); color:var(--white); border-color:var(--black); }
.service-card--dark .service-desc { color:rgba(255,255,255,0.55); }
.service-icon {
  width:44px; height:44px; border-radius:10px; background:var(--white);
  border:1px solid var(--grey-200); display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.service-card--dark .service-icon { background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.12); }
.service-icon svg { width:22px; height:22px; }
.service-card h3 { font-size:16px; font-weight:700; }
.service-desc { font-size:13px; color:var(--grey-600); line-height:1.6; flex:1; }
.service-link { font-size:13px; font-weight:600; color:var(--grey-400); margin-top:auto; display:inline-flex; align-items:center; gap:4px; }
.service-link:hover { color:var(--black); }
.service-card--dark .service-link:hover { color:var(--white); }
.service-card--dark .service-link { color:rgba(255,255,255,0.4); }

/* ── SPLIT SECTION ── */
.split { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.split--rev .split-body { order:2; }
.split--rev .split-visual { order:1; }
.split-body p, .split-desc {
  font-size:17px; line-height:1.75; color:var(--grey-600); margin-bottom:36px;
}
.section--dark .split-desc { color:rgba(255,255,255,0.55); }
.split-visual img {
  width:100%; border-radius:var(--radius-lg); object-fit:cover;
  box-shadow:var(--shadow-lg);
}
.split-visual-ratio { aspect-ratio:4/3; overflow:hidden; border-radius:var(--radius-lg); }
.split-visual-ratio img { width:100%; height:100%; object-fit:cover; }

/* ── STEPS ── */
.steps { display:flex; flex-direction:column; gap:28px; margin-bottom:40px; }
.step { display:flex; gap:18px; align-items:flex-start; }
.step-num {
  font-size:11px; font-weight:700; letter-spacing:0.08em;
  color:rgba(255,255,255,0.25); flex-shrink:0; margin-top:3px; min-width:20px;
}
.step strong { display:block; font-size:16px; font-weight:700; color:var(--white); margin-bottom:4px; }
.step p { font-size:14px; color:rgba(255,255,255,0.5); line-height:1.65; }

/* ROUTE CARDS (long-distance section mock) */
.route-cards { display:flex; flex-direction:column; gap:14px; }
.route-card {
  background:var(--white); border-radius:var(--radius);
  padding:18px 22px; box-shadow:var(--shadow); border:1px solid var(--grey-200);
}
.route-card:nth-child(2) { margin-left:28px; opacity:0.6; }
.route-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; }
.route-cities { display:flex; align-items:center; gap:8px; font-weight:700; font-size:15px; }
.route-sep { color:var(--grey-400); }
.route-date { font-size:12px; color:var(--grey-400); }
.route-driver { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.driver-avatar {
  width:34px; height:34px; border-radius:50%;
  background:var(--black); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:13px; flex-shrink:0;
}
.driver-info strong { display:block; font-size:13px; font-weight:700; }
.driver-info span  { font-size:11px; color:var(--grey-400); }
.route-price { font-size:15px; font-weight:800; margin-left:auto; }
.route-seats { font-size:11px; color:var(--grey-400); font-weight:600; }

/* ── HOW IT WORKS ── */
.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:48px; }
.step-card { text-align:center; }
.step-circle {
  width:64px; height:64px; border-radius:50%; background:var(--grey-50);
  border:1px solid var(--grey-200); display:flex; align-items:center; justify-content:center;
  margin:0 auto 24px;
}
.step-circle svg { width:28px; height:28px; }
.step-card-num { font-size:11px; font-weight:700; letter-spacing:0.1em; color:var(--grey-400); margin-bottom:8px; }
.step-card h3 { font-size:18px; font-weight:700; margin-bottom:10px; }
.step-card p  { font-size:14px; color:var(--grey-600); line-height:1.65; }

/* ── STATS ── */
.stats-bar {
  display:grid; grid-template-columns:repeat(4,1fr);
  background:var(--black); border-radius:var(--radius-lg); overflow:hidden;
}
.stat-item { padding:36px 28px; text-align:center; }
.stat-item + .stat-item { border-left:1px solid rgba(255,255,255,0.08); }
.stat-num   { display:block; font-size:36px; font-weight:800; letter-spacing:-0.025em; color:var(--white); }
.stat-label { display:block; font-size:12px; color:rgba(255,255,255,0.4); margin-top:6px; }

/* ── DRIVER / EARN CARDS ── */
.earn-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:56px; }
.earn-card {
  border:1.5px solid var(--grey-200); border-radius:var(--radius);
  padding:32px 28px; display:flex; flex-direction:column; gap:14px;
  transition:all var(--t);
}
.earn-card:hover { border-color:var(--black); }
.earn-icon {
  width:48px; height:48px; border-radius:10px;
  background:var(--grey-50); border:1px solid var(--grey-200);
  display:flex; align-items:center; justify-content:center;
}
.earn-icon svg { width:24px; height:24px; }
.earn-card h3 { font-size:20px; font-weight:700; }
.earn-card p  { font-size:15px; color:var(--grey-600); flex:1; line-height:1.65; }

/* ── CHECKLIST ── */
.checklist { display:flex; flex-direction:column; gap:14px; margin-bottom:36px; }
.checklist li {
  display:flex; align-items:flex-start; gap:12px;
  font-size:15px; font-weight:500; line-height:1.5;
}
.check-icon {
  width:20px; height:20px; border-radius:50%;
  background:var(--black); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; margin-top:1px;
}
.check-icon svg { width:11px; height:11px; }
.section--grey .check-icon { background:var(--grey-900); }

/* ── SAFETY PHOTO ── */
.safety-img {
  width:100%; border-radius:var(--radius-lg);
  aspect-ratio:4/5; object-fit:cover; object-position:top;
  box-shadow:var(--shadow-lg);
}

/* ── DOWNLOAD SECTION ── */
.download-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:80px; align-items:center;
}
.download-phones { position:relative; display:flex; justify-content:center; }
.download-phones img { height:420px; width:auto; object-fit:contain; }

/* ── BLOG GRID ── */
.blog-section-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:40px; }
.blog-grid { display:grid; grid-template-columns:1.4fr 1fr; gap:20px; }
.blog-card { border-radius:var(--radius); overflow:hidden; display:flex; flex-direction:column; transition:transform var(--t), box-shadow var(--t); }
.blog-card:hover { transform:translateY(-2px); box-shadow:var(--shadow); }
.blog-card-img { aspect-ratio:16/9; overflow:hidden; background:var(--grey-200); }
.blog-card-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform:scale(1.04); }
.blog-card--featured .blog-card-img { aspect-ratio:16/10; }
.blog-card-body { padding:24px; flex:1; display:flex; flex-direction:column; gap:8px; background:var(--white); border:1px solid var(--grey-200); border-top:none; border-radius:0 0 var(--radius) var(--radius); }
.blog-tag { font-size:11px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--grey-400); }
.blog-card h3 { font-size:17px; font-weight:700; line-height:1.35; }
.blog-card-featured h3 { font-size:20px; }
.blog-card p  { font-size:14px; color:var(--grey-600); flex:1; line-height:1.65; }
.blog-read { font-size:13px; font-weight:700; color:var(--black); margin-top:auto; }
.blog-side { display:flex; flex-direction:column; gap:16px; }
.blog-card--sm { flex-direction:row; }
.blog-card--sm .blog-card-img { width:120px; min-width:120px; aspect-ratio:auto; height:auto; }
.blog-card--sm .blog-card-body { border-left:none; border-radius:0 var(--radius) var(--radius) 0; border:1px solid var(--grey-200); border-left:none; padding:16px 18px; }
.blog-card--sm h3 { font-size:14px; }
.blog-date { font-size:12px; color:var(--grey-400); }

/* ── FOOTER ── */
.footer { background:#050505; color:var(--white); padding:80px 0 36px; }
.footer-top {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:48px; margin-bottom:56px; padding-bottom:56px;
  border-bottom:1px solid rgba(255,255,255,0.07);
}
.footer-brand p { font-size:14px; color:rgba(255,255,255,0.4); margin-top:16px; max-width:280px; line-height:1.75; }
.social-row { display:flex; gap:10px; margin-top:20px; }
.social-btn {
  width:36px; height:36px; border-radius:50%;
  border:1px solid rgba(255,255,255,0.12);
  display:flex; align-items:center; justify-content:center;
  transition:all var(--t); color:rgba(255,255,255,0.5);
}
.social-btn:hover { border-color:rgba(255,255,255,0.5); color:var(--white); }
.social-btn svg { width:16px; height:16px; }
.footer-col h4 { font-size:13px; font-weight:700; letter-spacing:0.04em; margin-bottom:16px; color:var(--white); }
.footer-col { display:flex; flex-direction:column; }
.footer-col a { font-size:14px; color:rgba(255,255,255,0.4); padding:5px 0; transition:color var(--t); }
.footer-col a:hover { color:var(--white); }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  font-size:13px; color:rgba(255,255,255,0.25);
}
.footer-bottom a { color:rgba(255,255,255,0.25); margin-left:24px; }
.footer-bottom a:hover { color:rgba(255,255,255,0.7); }
.footer-legal { display:flex; }

/* ── LOGIN PAGE ── */
.auth-page {
  min-height:100vh; background:var(--grey-50);
  display:flex; flex-direction:column; padding-top:var(--nav-h);
}
.auth-wrap {
  flex:1; display:flex; align-items:center; justify-content:center;
  padding:48px 24px;
}
.auth-card {
  background:var(--white); border-radius:var(--radius-lg);
  border:1px solid var(--grey-200); padding:48px;
  width:100%; max-width:520px; box-shadow:var(--shadow);
}
.auth-logo { margin-bottom:32px; }
.auth-tabs { display:flex; border-bottom:2px solid var(--grey-200); margin-bottom:32px; }
.auth-tab {
  flex:1; padding:10px; text-align:center;
  font-size:15px; font-weight:600; color:var(--grey-400);
  border-bottom:2px solid transparent; margin-bottom:-2px;
  cursor:pointer; transition:all var(--t); background:none;
}
.auth-tab.active { color:var(--black); border-bottom-color:var(--black); }
.auth-form { display:flex; flex-direction:column; gap:16px; }
.auth-name-row { display:grid; grid-template-columns:repeat(2, minmax(0, 1fr)); gap:12px; }
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-group label { font-size:13px; font-weight:600; color:var(--grey-900); }
.form-group input {
  padding:12px 14px; border:1.5px solid var(--grey-200); border-radius:var(--radius-sm);
  font-size:15px; font-family:var(--font); color:var(--grey-900); outline:none;
  transition:border-color var(--t);
}
.form-group input:focus { border-color:var(--black); }
.form-group input::placeholder { color:var(--grey-400); }
.form-divider { text-align:center; font-size:13px; color:var(--grey-400); padding:4px 0; }
.form-submit { width:100%; justify-content:center; padding:14px; font-size:15px; border-radius:var(--radius-sm); }
.auth-footer-text { text-align:center; font-size:13px; color:var(--grey-400); margin-top:20px; }
.auth-footer-text a { color:var(--black); font-weight:600; }
.auth-panel-login, .auth-panel-register { display:none; }
.auth-panel-login.active, .auth-panel-register.active { display:flex; flex-direction:column; gap:0; }
.forgot-link { font-size:13px; color:var(--grey-400); align-self:flex-end; }
.forgot-link:hover { color:var(--black); }
.social-auth { display:flex; flex-direction:column; gap:10px; margin-bottom:4px; }
.btn-social-auth {
  display:flex; align-items:center; justify-content:center; gap:10px;
  padding:12px; border-radius:var(--radius-sm); font-size:14px; font-weight:500;
  border:1.5px solid var(--grey-200); background:var(--white);
  cursor:pointer; transition:all var(--t); width:100%;
}
.btn-social-auth:hover { border-color:var(--grey-900); }
.btn-social-auth svg { width:18px; height:18px; }

/* ── INNER PAGE CONTENT ── */
.prose { max-width:720px; }
.prose h2 { font-size:28px; font-weight:700; letter-spacing:-0.02em; margin:48px 0 16px; }
.prose h2:first-child { margin-top:0; }
.prose p { font-size:16px; color:var(--grey-600); line-height:1.8; margin-bottom:16px; }
.prose ul { display:flex; flex-direction:column; gap:8px; margin-bottom:16px; }
.prose ul li { font-size:16px; color:var(--grey-600); padding-left:20px; position:relative; line-height:1.7; }
.prose ul li::before { content:''; position:absolute; left:0; top:10px; width:6px; height:6px; border-radius:50%; background:var(--grey-400); }

/* ── FEATURE GRID (rides page etc.) ── */
.feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:56px; }
.feature-card {
  padding:32px 28px; border:1px solid var(--grey-200); border-radius:var(--radius);
  display:flex; flex-direction:column; gap:14px;
}
.feature-icon {
  width:48px; height:48px; border-radius:10px;
  background:var(--grey-50); border:1px solid var(--grey-200);
  display:flex; align-items:center; justify-content:center;
}
.feature-icon svg { width:24px; height:24px; }
.feature-card h3 { font-size:17px; font-weight:700; }
.feature-card p  { font-size:14px; color:var(--grey-600); line-height:1.65; }

/* ── CTA BAND ── */
.cta-band {
  background:var(--black); border-radius:var(--radius-lg);
  padding:56px 48px; display:flex; align-items:center;
  justify-content:space-between; gap:40px; margin:80px 0;
}
.cta-band h2 { font-size:32px; font-weight:800; letter-spacing:-0.025em; color:var(--white); max-width:480px; line-height:1.15; }
.cta-band-actions { display:flex; gap:12px; flex-shrink:0; }

/* ── DOCS PAGE ── */
.docs-layout { display:grid; grid-template-columns:240px 1fr; gap:64px; padding:64px 0; }
.docs-sidebar { position:sticky; top:calc(var(--nav-h) + 24px); height:fit-content; }
.docs-sidebar h4 { font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--grey-400); margin-bottom:8px; margin-top:24px; }
.docs-sidebar h4:first-child { margin-top:0; }
.docs-sidebar ul { display:flex; flex-direction:column; gap:2px; }
.docs-sidebar a {
  font-size:14px; color:var(--grey-600); padding:5px 10px;
  border-radius:6px; display:block; transition:all var(--t);
}
.docs-sidebar a:hover, .docs-sidebar a.active { color:var(--black); background:var(--grey-50); }
.docs-content h2 { font-size:24px; font-weight:700; letter-spacing:-0.02em; margin:40px 0 14px; padding-top:40px; border-top:1px solid var(--grey-100); }
.docs-content h2:first-child { margin-top:0; padding-top:0; border-top:none; }
.docs-content h3 { font-size:18px; font-weight:700; margin:28px 0 10px; }
.docs-content p  { font-size:15px; color:var(--grey-600); line-height:1.8; margin-bottom:14px; }
.docs-content ul { padding-left:20px; list-style:disc; display:flex; flex-direction:column; gap:6px; margin-bottom:14px; }
.docs-content ul li { font-size:15px; color:var(--grey-600); line-height:1.7; }

/* ── DRIVER REGISTER ── */
.register-layout { display:grid; grid-template-columns:1fr 1fr; min-height:calc(100vh - var(--nav-h)); }
.register-form-panel { padding:64px 56px; display:flex; flex-direction:column; }
.register-photo-panel {
  background-image:url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=800&q=80');
  background-size:cover; background-position:center;
  position:sticky; top:var(--nav-h); height:calc(100vh - var(--nav-h));
}
.register-steps { display:flex; gap:8px; margin-bottom:40px; }
.reg-step { flex:1; height:3px; background:var(--grey-200); border-radius:2px; transition:background var(--t); }
.reg-step.done { background:var(--black); }
.register-form-panel h2 { font-size:26px; font-weight:800; letter-spacing:-0.02em; margin-bottom:8px; }
.register-form-panel > p { font-size:15px; color:var(--grey-600); margin-bottom:32px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-group select {
  padding:12px 14px; border:1.5px solid var(--grey-200); border-radius:var(--radius-sm);
  font-size:15px; font-family:var(--font); color:var(--grey-900); background:var(--white);
  outline:none; transition:border-color var(--t); appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center;
  padding-right:36px;
}
.form-group select:focus { border-color:var(--black); }
.step-nav { display:flex; gap:12px; margin-top:32px; }
.step-nav .btn { flex:1; justify-content:center; }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .footer-top { grid-template-columns:1fr 1fr; }
  .stats-bar { grid-template-columns:repeat(2,1fr); }
  .stat-item { border:none !important; border-bottom:1px solid rgba(255,255,255,0.08) !important; }
  .register-layout { grid-template-columns:1fr; }
  .register-photo-panel { display:none; }
  .docs-layout { grid-template-columns:1fr; }
  .docs-sidebar { display:none; }
}

@media (max-width:768px) {
  :root { --nav-h:60px; }
  .nav-links, .nav-actions { display:none; }
  .hamburger { display:flex; }

  .hero-title { font-size:42px; }
  .hero-stats { flex-direction:column; gap:20px; }
  .hero--light .hero-bg {
    background-size:min(88vw, 520px) auto;
    background-position:center bottom 36px;
  }
  .section { padding:64px 0; }
  .heading { font-size:30px; }

  .split { grid-template-columns:1fr; gap:40px; }
  .split--rev .split-body { order:1; }
  .split--rev .split-visual { order:2; }

  .service-grid { grid-template-columns:1fr 1fr; gap:10px; }
  .steps-grid { grid-template-columns:1fr; gap:32px; }
  .earn-grid { grid-template-columns:1fr; }
  .feature-grid { grid-template-columns:1fr 1fr; }
  .blog-grid { grid-template-columns:1fr; }
  .blog-card--sm { flex-direction:row; }

  .stats-bar { grid-template-columns:1fr 1fr; }
  .cta-band { flex-direction:column; align-items:flex-start; padding:40px 28px; }
  .cta-band h2 { font-size:26px; }

  .download-grid { grid-template-columns:1fr; text-align:center; }
  .download-phones img { height:280px; }

  .blog-section-header { flex-direction:column; align-items:flex-start; gap:14px; }
  .footer-top { grid-template-columns:1fr 1fr; gap:28px; }

  .auth-card { padding:32px 24px; }
  .auth-name-row { grid-template-columns:1fr; }
  .register-form-panel { padding:40px 24px; }
  .form-row { grid-template-columns:1fr; }

  .page-hero--photo { min-height:360px; }
  .page-hero-title { font-size:32px; }
}

@media (max-width:480px) {
  .container { padding:0 16px; }
  .service-grid { grid-template-columns:1fr; }
  .feature-grid { grid-template-columns:1fr; }
  .stats-bar { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:10px; text-align:center; }
  .footer-legal { justify-content:center; }
  .hero-title { font-size:36px; }
  .cta-band-actions { flex-direction:column; width:100%; }
  .cta-band-actions .btn { justify-content:center; }
}