/* ═══════════════════════════════════════════════
   AdonWheels NZ — styles.css
   Premium Mobile Advertising Platform for NZ
   ═══════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:     #0066ff;
  --blue-dk:  #0050cc;
  --teal:     #00d4aa;
  --teal-dk:  #00a888;
  --orange:   #ff6b35;
  --pink:     #ff3a8c;
  --purple:   #7b2fff;
  --yellow:   #ffbe0b;
  --green:    #00c853;
  --dark:     #0a1628;
  --dark-2:   #0f2040;
  --dark-3:   #1a2e4a;
  --body-bg:  #f8fafc;
  --white:    #ffffff;
  --text:     #1e293b;
  --text-2:   #475569;
  --text-3:   #94a3b8;
  --border:   #e2e8f0;
  --radius:   12px;
  --radius-lg:20px;
  --shadow:   0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:0 8px 48px rgba(0,0,0,.12);
  --nav-h:    72px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--body-bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: 96px; }

/* ── Section Labels / Titles ─────────────────── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: #0066ff12;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
  text-align: center;
}

.section-title.left { text-align: left; }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 56px;
  text-align: center;
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px #0066ff44;
}
.btn-primary:hover {
  background: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px #0066ff55;
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 20px #00d4aa44;
}
.btn-teal:hover {
  background: var(--teal-dk);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

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

.btn-white {
  background: var(--white);
  color: var(--dark);
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-hero-primary {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0,102,255,.45);
  transition: var(--transition);
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,102,255,.55); }

.btn-hero-secondary {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  color: var(--white);
  padding: 14px 34px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.3);
  transition: var(--transition);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-3px);
}
.btn-hero-highlight {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 28px rgba(249,115,22,.45);
  animation: pulse-highlight 2.5s ease-in-out infinite;
}
.btn-hero-highlight:hover {
  background: linear-gradient(135deg, #fbbf24, #fb923c);
  border-color: transparent;
  box-shadow: 0 12px 36px rgba(249,115,22,.6);
  transform: translateY(-3px);
}
@keyframes pulse-highlight {
  0%, 100% { box-shadow: 0 8px 28px rgba(249,115,22,.45); }
  50% { box-shadow: 0 8px 36px rgba(249,115,22,.75); }
}

/* ── Reveal Animations ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="150"] { transition-delay: .15s; }
.reveal[data-delay="300"] { transition-delay: .3s; }
.reveal[data-delay="450"] { transition-delay: .45s; }

/* ════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
}

.nav-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  transition: color .3s;
  flex-shrink: 0;
}
.navbar.scrolled .logo { color: var(--dark); }

.logo-icon { width: 40px; height: 28px; flex-shrink: 0; }

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .3px;
  white-space: nowrap;
  transition: opacity .3s;
}
.logo-ad {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.25em;
}
.logo-wheels {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.logo-wheels::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 2px;
  transition: width .35s ease;
}
.logo:hover .logo-wheels::after { width: 100%; }
.logo:hover .logo-text { opacity: .85; }
.logo-img {
  height: 56px;
  max-height: calc(var(--nav-h) - 12px);
  width: auto;
  max-width: 360px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}
.logo-nz {
  color: var(--teal);
  font-size: .85em;
  vertical-align: super;
  margin-left: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-inline: auto;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text-2); }
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.navbar.scrolled .nav-links a:hover {
  color: var(--blue);
  background: #0066ff0f;
}

.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-actions .btn-ghost {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.3);
  font-size: .85rem;
  padding: 9px 18px;
}
.navbar.scrolled .nav-actions .btn-ghost { color: var(--text-2); border-color: var(--border); }
.nav-actions .btn-primary { font-size: .85rem; padding: 9px 20px; }

.nav-driver-btn {
  background: linear-gradient(135deg, #00c6ff, #0072ff) !important;
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: .3px;
  box-shadow: 0 0 0 0 #0066ff66;
  animation: driver-btn-pulse 2.4s ease-in-out infinite;
  border-radius: 10px !important;
  margin-left: 6px;
}
.nav-driver-btn:hover {
  background: linear-gradient(135deg, #0072ff, #005ce6) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px #0066ff55 !important;
  animation: none;
}
@keyframes driver-btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 #0066ff55; }
  50%       { box-shadow: 0 0 0 7px #0066ff00; }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }

/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,.85) 0%,
    rgba(0,10,30,.80) 100%
  );
}

/* Hero — two-column, single viewport */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  min-height: 100vh;
  padding-top: var(--nav-h);
  padding-bottom: 60px;
  box-sizing: border-box;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
}

.hero-logo {
  width: 100%;
  max-width: 760px;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  margin-bottom: 32px;
  border-radius: 12px;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.5));
}

/* Hero image slider */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,212,170,.18), 0 8px 40px rgba(0,0,0,.6);
  background: #0a1628;
  margin-bottom: 36px;
  flex-shrink: 0;
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider-track .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slider-track .hero-slide.active { opacity: 1; }

.hero-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}
.hero-slider-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #00d4aa, #0066ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.82);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 16px 28px;
  width: fit-content;
}

.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 24px;
}
.stat-pill strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-pill span { color: var(--teal); font-weight: 700; font-size: 1.4rem; }
.stat-pill p { color: rgba(255,255,255,.7); font-size: .78rem; margin-top: 3px; white-space: nowrap; }

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.2);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ════════════════════════════════════════════════
   TICKER
   ════════════════════════════════════════════════ */
.ticker-wrap {
  background: var(--dark);
  overflow: hidden;
  padding-block: 14px;
  border-top: 2px solid var(--blue);
  border-bottom: 2px solid var(--teal);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}

.ticker-track span {
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 500;
}

.ticker-dot {
  color: var(--teal) !important;
  font-size: .5rem !important;
}

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

/* ════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════ */
.how-it-works {
  background: var(--white);
  text-align: center;
}

.hiw-tabs {
  display: flex;
  gap: 4px;
  background: var(--body-bg);
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 56px;
}

.tab-btn {
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-2);
  transition: var(--transition);
}
.tab-btn.active {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}

.step-card {
  background: var(--body-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #0066ff0e;
  line-height: 1;
  margin-bottom: -12px;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-icon svg { width: 26px; height: 26px; }

.step-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.step-card p { font-size: .9rem; color: var(--text-2); line-height: 1.65; }

.step-arrow {
  font-size: 1.8rem;
  color: var(--text-3);
  padding-inline: 16px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════
   TWO-COLUMN GRID
   ════════════════════════════════════════════════ */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col-grid.reverse { direction: rtl; }
.two-col-grid.reverse > * { direction: ltr; }

/* ════════════════════════════════════════════════
   ADVERTISERS SECTION
   ════════════════════════════════════════════════ */
.advertisers-section {
  background: var(--body-bg);
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 36px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-icon svg { width: 20px; height: 20px; }
.benefit-icon.blue  { background: #0066ff18; color: var(--blue); }
.benefit-icon.teal  { background: #00d4aa18; color: var(--teal); }
.benefit-icon.orange{ background: #ff6b3518; color: var(--orange); }
.benefit-icon.purple{ background: #7b2fff18; color: var(--purple); }

.benefit-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.benefit-item p { font-size: .88rem; color: var(--text-2); line-height: 1.6; }

/* ════════════════════════════════════════════════
   VISUAL CARD (image with badges)
   ════════════════════════════════════════════════ */
.visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.visual-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.visual-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  font-size: .82rem;
  z-index: 2;
}
.visual-badge svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
.visual-badge span { color: var(--text-3); display: block; margin-bottom: 2px; }
.visual-badge strong { color: var(--dark); font-weight: 700; display: block; }
.visual-badge.top-right { top: -16px; right: -16px; }
.visual-badge.bottom-left { bottom: -16px; left: -16px; }

/* ════════════════════════════════════════════════
   DRIVERS SECTION
   ════════════════════════════════════════════════ */
.drivers-section { background: var(--white); }

.drivers-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* Interactive Earnings Calculator */
.drivers-calc {
  width: 100%;
  margin: 28px 0 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,102,255,.10);
  background: var(--white);
}

.calc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  padding: 14px 20px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
}

.calc-body {
  padding: 20px 24px;
  background: var(--dark);
}

/* Tabs */
.calc-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}
.calc-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  font-size: .83rem;
  font-weight: 500;
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}
.calc-tab:hover {
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.85);
}
.calc-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 4px 14px #0066ff55;
}

/* Slider */
.calc-slider-group { margin-bottom: 22px; }
.calc-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}
.calc-slider-label strong.km-display {
  color: var(--teal);
  font-size: .9rem;
}
.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 50px;
  background: rgba(255,255,255,.12);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--white);
  box-shadow: 0 2px 10px #0066ff88;
  cursor: pointer;
  transition: transform .15s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.calc-slider::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--white);
  cursor: pointer;
}
.calc-slider-marks {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  margin-top: 6px;
}

/* Result */
.calc-result {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 14px;
  text-align: center;
}
.calc-result-label {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 8px;
}
.calc-result-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 14px;
}
.calc-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
}
.calc-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -1px;
}
.calc-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,.1);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 8px;
}
.calc-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 50px;
  transition: width .3s ease;
}
.calc-min-max {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: rgba(255,255,255,.35);
}
.calc-note {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  line-height: 1.5;
}

.driver-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.perk-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #00d4aa10;
  border: 1px solid #00d4aa30;
  color: var(--dark);
  font-size: .84rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 50px;
}
.perk-chip svg { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }

.requirements-box {
  background: var(--body-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0 32px;
}
.requirements-box h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.requirements-box li {
  font-size: .84rem;
  color: var(--text-2);
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
}
.requirements-box li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
}

/* Earnings Widget */
.earnings-widget {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
  width: 240px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  z-index: 2;
}
.earnings-header {
  background: var(--blue);
  padding: 10px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
}
.earnings-body { padding: 12px 16px; }
.earnings-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.earnings-row:last-child { border: none; }
.earnings-row span { font-size: .8rem; color: rgba(255,255,255,.65); }
.earnings-row strong { font-size: .85rem; color: var(--teal); font-weight: 700; }
.earnings-row.highlight strong { color: var(--yellow); font-size: .95rem; }

/* ════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════ */
.services-section { background: var(--body-bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.service-img-wrap {
  overflow: hidden;
  background: var(--dark-2);
  aspect-ratio: 16 / 9;
}

.service-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-body { padding: 28px 28px 32px; }

.service-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.service-tag.teal-tag   { background: linear-gradient(135deg, var(--teal), var(--green)); }
.service-tag.orange-tag { background: linear-gradient(135deg, var(--orange), var(--pink)); }
.service-tag.purple-tag { background: linear-gradient(135deg, var(--purple), var(--blue)); }

.service-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-body > p { font-size: .9rem; color: var(--text-2); line-height: 1.65; margin-bottom: 18px; }

.service-features {
  margin-bottom: 24px;
}
.service-features li {
  font-size: .85rem;
  color: var(--text-2);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ════════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════════ */
.gallery-section {
  background: var(--dark);
  --section-label-bg: rgba(0,102,255,.2);
  --section-label-color: var(--teal);
}
.gallery-section .section-label { color: var(--teal); background: rgba(0,212,170,.18); }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-subtitle { color: rgba(255,255,255,.6); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  height: 260px;
}
.gallery-item.large {
  grid-column: auto;
  height: 260px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.9) 0%, transparent 50%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

.gallery-tag {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
  width: fit-content;
}
.gallery-caption h4 { color: var(--white); font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.gallery-caption p  { color: rgba(255,255,255,.7); font-size: .78rem; }

/* ════════════════════════════════════════════════
   WHY US
   ════════════════════════════════════════════════ */
.why-us { background: var(--white); text-align: center; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--body-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: left;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color, var(--blue));
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--color, var(--blue)) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color, var(--blue));
}
.feature-icon svg { width: 24px; height: 24px; }

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.feature-card p { font-size: .88rem; color: var(--text-2); line-height: 1.65; }

/* ════════════════════════════════════════════════
   STATS BAND
   ════════════════════════════════════════════════ */
.stats-band {
  background: linear-gradient(135deg, var(--dark) 0%, #0f2a5a 50%, var(--dark) 100%);
  padding-block: 64px;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,102,255,.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
}

.stat-item {
  text-align: center;
}
.stat-item strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-item span { color: var(--teal); font-weight: 700; font-size: 2rem; }
.stat-item p {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--body-bg);
  text-align: center;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  padding: 8px 0 24px;
  position: relative;
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: var(--transition);
  text-align: left;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }

.quote {
  font-size: .93rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.quote::before { content: '"'; }
.quote::after  { content: '"'; }

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: var(--white);
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: .9rem; color: var(--dark); font-weight: 700; }
.reviewer span   { font-size: .78rem; color: var(--text-3); }

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.tnav-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  font-size: 1.1rem;
  color: var(--text-2);
  transition: var(--transition);
}
.tnav-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.tnav-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.tnav-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.tnav-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* ════════════════════════════════════════════════
   COVERAGE
   ════════════════════════════════════════════════ */
.coverage-section { background: var(--white); text-align: center; }

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.city-card {
  background: var(--body-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: left;
  transition: var(--transition);
}
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}

.city-icon { font-size: 1.8rem; margin-bottom: 10px; }
.city-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.city-card > p { font-size: .82rem; color: var(--text-3); margin-bottom: 12px; }

.city-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 10px;
  overflow: hidden;
}
.city-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 3px;
  transition: width 1.5s ease;
}

.city-status {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 50px;
}
.city-status.active  { background: #00c85318; color: #00c853; }
.city-status.growing { background: #ffbe0b18; color: #d4930a; }
.city-status.soon    { background: #94a3b818; color: #64748b; }

/* ════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════ */
.pricing-section { background: var(--body-bg); text-align: center; }

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 48px;
}

.ptoggle-label { font-size: .9rem; font-weight: 500; color: var(--text-2); }

.toggle-switch { position: relative; display: inline-block; width: 50px; height: 26px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-track {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 13px;
  cursor: pointer;
  transition: var(--transition);
}
.toggle-track::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  top: 3px; left: 3px;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.toggle-switch input:checked + .toggle-track { background: var(--blue); }
.toggle-switch input:checked + .toggle-track::before { transform: translateX(24px); }

.save-badge {
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 6px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
  text-align: left;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.popular {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px #0066ff18;
  transform: translateY(-8px);
}
.pricing-card.popular:hover { transform: translateY(-14px); }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-header { margin-bottom: 24px; }
.pricing-icon { font-size: 2rem; margin-bottom: 8px; }
.pricing-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.pricing-header p { font-size: .85rem; color: var(--text-3); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.price-currency { font-size: .85rem; font-weight: 600; color: var(--text-2); }
.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.price-period { font-size: .85rem; color: var(--text-3); }
.hidden { display: none; }

.pricing-desc { font-size: .85rem; color: var(--text-2); line-height: 1.65; margin-bottom: 24px; }

.pricing-features { margin-bottom: 28px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .87rem;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border: none; }
.pricing-features li svg { width: 16px; height: 16px; flex-shrink: 0; }
.pricing-features li.disabled { color: var(--text-3); }

/* ════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════ */
.faq-section { background: var(--white); }
.faq-container { max-width: 1100px; }

/* Section toggle */
.section-toggle-btn {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--body-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  transition: background .2s, border-color .2s, box-shadow .2s;
  margin-bottom: 8px;
}
.section-toggle-btn:hover {
  background: #eef4ff;
  border-color: var(--blue);
  box-shadow: 0 4px 16px #0066ff15;
}
.section-toggle-btn.collapsed {
  border-color: var(--border);
  background: var(--body-bg);
}
.toggle-icon {
  font-size: 1.3rem;
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  flex-shrink: 0;
  transition: transform .3s ease, background .2s;
}
.section-toggle-btn.collapsed .toggle-icon {
  transform: rotate(-90deg);
  background: var(--text-3);
}
.section-toggle-content {
  overflow: hidden;
  transition: max-height .45s ease, opacity .35s ease;
  max-height: 3000px;
  opacity: 1;
}
.section-toggle-content.collapsed {
  max-height: 0;
  opacity: 0;
}

.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.faq-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  font-size: .92rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  gap: 12px;
  transition: color .2s;
}
.faq-q:hover { color: var(--blue); }
.faq-q span {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--body-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.faq-item.open .faq-q span {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.7;
  padding-bottom: 16px;
}

/* ════════════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, #0040aa 40%, #003a8e 100%);
  padding-block: 72px;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}
.cta-band::before {
  width: 400px; height: 400px;
  background: rgba(255,255,255,.05);
  top: -200px; right: 10%;
}
.cta-band::after {
  width: 300px; height: 300px;
  background: rgba(0,212,170,.1);
  bottom: -150px; left: 5%;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-content p { color: rgba(255,255,255,.75); max-width: 480px; line-height: 1.65; }

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════ */
.contact-section { background: var(--body-bg); }

.contact-grid { align-items: start; }

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ci-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 20px; height: 20px; }
.contact-info-item span { font-size: .78rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; }
.contact-info-item strong { display: block; font-size: .95rem; color: var(--dark); margin-top: 2px; }

.col-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--dark); }
.form-section-label { font-size: .9rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .05em; margin: 8px 0 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: .9rem;
  color: var(--text);
  background: var(--body-bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  resize: vertical;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px #0066ff18;
  background: var(--white);
}

.input-error { border-color: #e53e3e !important; background: #fff5f5 !important; box-shadow: 0 0 0 3px #e53e3e18 !important; }
.field-error { display: block; color: #e53e3e; font-size: .75rem; font-weight: 500; margin-top: 4px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.visible { display: block; }
.success-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px #00c85340;
}
.form-success h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 8px; }
.form-success p  { color: var(--text-2); }

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding-top: 72px;
  padding-bottom: 32px;
}

/* Brand row */
.footer-brand-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 36px;
}
.footer-brand-left { display: flex; flex-direction: column; gap: 12px; }
.footer-logo { color: var(--white) !important; }
.footer-tagline {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  max-width: 340px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.social-links a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px #0066ff44;
}
.social-links svg { width: 17px; height: 17px; }

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin-bottom: 36px;
}

/* 3-col link grid */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 36px;
}
.footer-col-title {
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col--horizontal ul { flex-direction: row; flex-wrap: wrap; gap: 8px 16px; }
.footer-col a {
  font-size: .85rem;
  color: rgba(255,255,255,.48);
  transition: color .2s, padding-left .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col a:hover {
  color: var(--teal);
  padding-left: 4px;
}

.footer-contact-list { gap: 12px !important; }
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  color: rgba(255,255,255,.48);
}
.footer-contact-list svg { flex-shrink: 0; color: var(--teal); }

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: var(--teal); }
.footer-nz-badge {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

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

/* ════════════════════════════════════════════════
   BACK TO TOP
   ════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px; height: 46px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px #0066ff55;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--blue-dk);
  transform: translateY(-3px);
}
.back-to-top svg { width: 20px; height: 20px; }

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; min-height: auto; padding-top: calc(var(--nav-h) + 32px); padding-bottom: 48px; }
  .hero-slider { height: 280px; }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-arrow { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding-block: 64px; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .logo-img { height: 44px; max-width: 200px; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--dark);
    padding: 20px 24px 32px;
    gap: 4px;
    box-shadow: 0 16px 40px rgba(0,0,0,.3);
  }
  .nav-links.open a { color: rgba(255,255,255,.8); padding: 12px 16px; border-radius: 10px; font-size: 1rem; }
  .nav-links.open a:hover { background: rgba(255,255,255,.08); color: var(--white); }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    width: 100%;
  }
  .stat-divider { width: 100%; height: 1px; }
  .stat-pill { flex-direction: row; gap: 6px; align-items: baseline; }

  .two-col-grid { grid-template-columns: 1fr; gap: 40px; }
  .two-col-grid.reverse { direction: ltr; }
  .visual-img { height: 300px; }
  .visual-badge { display: none; }
  .earnings-widget { position: static; width: 100%; margin-top: 20px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: auto; }

  .testimonial-card { min-width: 85vw; }

  .features-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: translateY(0); }

  .faq-cols { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  .form-row { grid-template-columns: 1fr; }
  .col-form { padding: 24px; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .hiw-tabs { flex-direction: column; }
  .tab-btn { text-align: center; }
  .stats-inner { flex-direction: column; gap: 24px; }
}

/* ── Quote Modal ───────────────────────────────── */
.quote-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 12, 30, 0.82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.quote-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.quote-modal {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.quote-modal-overlay.open .quote-modal {
  transform: translateY(0) scale(1);
}
.quote-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--body-bg);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.quote-modal-close:hover { background: #fee2e2; border-color: #fca5a5; }
.quote-modal-close svg { width: 16px; height: 16px; color: var(--text-2); }
.quote-modal-header { margin-bottom: 24px; }
.quote-modal-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.quote-modal-header p { font-size: .9rem; color: var(--text-2); line-height: 1.6; }
.req { color: var(--blue); }
.field-optional { font-weight: 400; color: var(--text-3); font-size: .78rem; }
.quote-modal--wide { max-width: 640px; }
.contact-modal-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  background: var(--body-bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 24px;
}
.cmi-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
}
.cmi-item svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--blue); }
.cmi-item:hover { color: var(--blue); }
@media (max-width: 480px) {
  .quote-modal { padding: 28px 20px; }
  .quote-modal-header h2 { font-size: 1.3rem; }
}

/* ── Transformation Slider ─────────────────────── */
.transformation-section { background: var(--dark); color: var(--white); }
.transformation-section .section-label { color: var(--teal); }
.transformation-section .section-title { color: var(--white); }
.transformation-section .section-subtitle { color: rgba(255,255,255,.7); }

.transformation-slider-wrap {
  max-width: 860px;
  margin: 48px auto 0;
}

.transformation-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 800 / 512;
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
  box-shadow: 0 16px 64px rgba(0,0,0,.4);
}

.ts-before,
.ts-after {
  position: absolute;
  inset: 0;
}

.ts-before img,
.ts-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.ts-before img { filter: grayscale(1); }

.ts-after {
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
}

.ts-label {
  position: absolute;
  bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  pointer-events: none;
}
.ts-label-before { left: 12px; background: #1e293b; color: #fff; }
.ts-label-after  { right: 12px; background: var(--teal); color: #fff; }

/* handle */
.ts-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  z-index: 10;
  pointer-events: none;
}
.ts-line {
  position: absolute;
  inset: 0;
  background: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,.4);
}
.ts-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e2e8f0;
}

.ts-hint {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}

/* Drag overlay */
.ts-drag {
  position: absolute;
  inset: 0;
  z-index: 20;
  cursor: ew-resize;
  touch-action: none;
}
