
/* Critical: ensure above-fold content paints immediately */
.hero, nav.nav { contain: layout style; }
.hero-wrap, .booking-shell { contain: layout; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink: #06051A;
  --ink-2: #171b28;
  --muted: #667085;
  --line: #e4e7ec;
  --line-dark: rgba(255,255,255,.14);
  --surface: #ffffff;
  --soft: #f7f9fc;
  --blue: #3B25DC;
  --blue-hover: #2E1BB8;
  --green: #EE7F3A;
  --orange: #EE7F3A;
  --font: 'Plus Jakarta Sans', sans-serif;

  /* Section background palette */
  --bg-hero:     #f7f9fc;
  --bg-how:      #ffffff;
  --bg-why:      #F2F0FF;
  --bg-pricing:  #06051A;
  --bg-area:     #f5f7fa;
  --bg-cta:      #06051A;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--surface); overflow-x: hidden; }
a { color: inherit; }
button, input, select, textarea { font-family: inherit; }

body.modal-open { overflow: hidden; touch-action: none; }

.vec-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.vec-layer > * { position: absolute; }

/* how-it-works section vectors */
.vec-how-grid {
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 900px; height: 100%;
  opacity: .035;
}
.vec-how-spark {
  right: 60px; top: 60px;
  width: 64px; height: 64px;
  opacity: .25;
  animation: spinSlow 20s linear infinite reverse;
}

/* pricing vectors */
.vec-price-blob {
  left: -120px; top: -80px;
  width: 520px; height: 520px;
  opacity: .12;
}
.vec-price-lines {
  right: 0; bottom: 0;
  width: 340px; height: 340px;
  opacity: .06;
}

/* area vectors */
.vec-area-pin {
  right: 52%; top: 40px;
  width: 56px; height: 56px;
  opacity: .22;
  animation: floatY 3.5s ease-in-out infinite .4s;
}

/* cta vectors */
.vec-cta-burst {
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  opacity: .05;
  animation: spinSlow 80s linear infinite;
}

@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes floatY { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-14px); } }

/* ===================== NAV ===================== */

.nav {
  transition: background .4s ease, color .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.nav * {
  transition: color .3s ease, background .3s ease, filter .3s ease;
}

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: 72px; padding: 0 clamp(20px, 5vw, 72px);
  display: flex; align-items: center; justify-content: space-between;
  background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(6,5,26,.10);
  
  transition: background .4s ease, color .3s ease, box-shadow .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled { box-shadow: 0 2px 32px rgba(8,11,20,.16); }
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo-badge { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0; background: none; }
.logo-img { display: block; width: 150px; height: auto; object-fit: contain; filter: brightness(0); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a, .nav-actions a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 6px;
}
.nav-links a:hover, .nav-actions a:hover { color: var(--ink); }
.nav-links a::after, .nav-actions a:not(.btn-signup)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s ease;
}
.nav-links a:hover::after, .nav-actions a:not(.btn-signup):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-actions { display: flex; align-items: center; gap: 16px; }
.btn-signup { display: inline-flex; align-items: center; justify-content: center; text-align: center; height: 38px; padding: 0 18px; border-radius: 999px; background: var(--ink); color: #fff !important; text-decoration: none; font-size: 13px; font-weight: 800; line-height: 1; white-space: nowrap; transition: background .2s; }
.btn-signup:hover { background: #17134A !important; }
/* Segmented "Log in / Sign up" pill (two halves in one pill) */
.auth-pill { display: inline-flex; align-items: center; }
.auth-pill .auth-pill-seg { padding: 0 12px 6px; color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; line-height: 1; white-space: nowrap; transition: color .2s; }
.auth-pill .auth-pill-seg:first-child { padding-left: 0; }
.auth-pill .auth-pill-seg + .auth-pill-seg { border-left: 1px solid #d0d5dd; }
.auth-pill .auth-pill-seg:hover { color: var(--ink); }
.mobile-menu .auth-pill { display: flex; }
.mobile-menu .auth-pill .auth-pill-seg { padding-bottom: 0; }
.contact-modal {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: center; justify-content: center;
  padding: 24px; background: rgba(6,5,26,.58);
  padding-bottom: max(24px, env(safe-area-inset-bottom));
}
.contact-modal.open { display: flex; }
.contact-dialog {
  width: min(100%, 520px); border-radius: 24px; background: #fff;
  box-shadow: 0 28px 80px rgba(8,11,20,.28); padding: 26px;
  max-height: calc(100dvh - 48px); overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.contact-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.contact-head h3 { font-size: 24px; letter-spacing: -.04em; margin-bottom: 6px; }
.contact-head p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.contact-close {
  width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 999px;
  display: flex; align-items: center; justify-content: center; padding: 0;
  background: #fff; color: var(--ink); font-size: 20px; line-height: 1; cursor: pointer;
  flex-shrink: 0; letter-spacing: 0; font-family: Arial, sans-serif;
}
.contact-form { display: grid; gap: 12px; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid #e8ecf2; border-radius: 14px; background: #fafbfc;
  padding: 0 14px; color: var(--ink); font-size: 16px; outline: none;
  font-family: inherit; box-sizing: border-box;
}
.contact-form input { height: 48px; }
.contact-form textarea { min-height: 112px; padding-top: 12px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form > div .fueler-form textarea:focus {
  border-color: rgba(59,37,220,.55); background: #fff;
  box-shadow: 0 0 0 3px rgba(59,37,220,.1);
}
.contact-form button, .login-form button {
  width: 100%; height: 50px; border: 0; border-radius: 999px; background: var(--blue);
  color: #fff; font-size: 16px; font-weight: 700; cursor: pointer;
  font-family: inherit; display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .2s;
}
.contact-form button:hover, .login-form button:hover { background: var(--blue-hover); }
.login-form { display: grid; gap: 12px; }
.login-form input {
  width: 100%; height: 48px; border: 1px solid #e8ecf2; border-radius: 14px;
  background: #fafbfc; padding: 0 14px; color: var(--ink); font-size: 16px; outline: none;
  font-family: inherit; box-sizing: border-box;
}
.login-form input:focus {
  border-color: rgba(59,37,220,.55); background: #fff;
  box-shadow: 0 0 0 3px rgba(59,37,220,.1);
}
.signup-panel {
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line);
}
.signup-panel strong { display: block; margin-bottom: 6px; color: var(--ink); }
.signup-panel p { color: var(--muted); font-size: 13px; line-height: 1.55; margin-bottom: 12px; }
.signup-panel a {
  display: inline; color: var(--blue); text-decoration: underline;
  font-size: 13px; font-weight: 600;
}
.signup-panel a:hover { opacity: .75; }
.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(6,5,26,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.mobile-menu-toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: background .2s ease;
}
.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .25s ease, top .25s ease;
}
.mobile-menu-toggle span::before { top: -6px; }
.mobile-menu-toggle span::after { top: 6px; }
.nav.menu-open .mobile-menu-toggle span { background: transparent; }
.nav.menu-open .mobile-menu-toggle span::before { top: 0; transform: rotate(45deg); }
.nav.menu-open .mobile-menu-toggle span::after { top: 0; transform: rotate(-45deg); }
.mobile-menu {
  display: none;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: unset; padding: 100px clamp(20px, 5vw, 72px) 24px;
  background:
    radial-gradient(circle at 18% 26%, rgba(238,127,58,.075), transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(59,37,220,.07), transparent 36%),
    radial-gradient(circle at 78% 72%, rgba(238,127,58,.055), transparent 38%),
    linear-gradient(160deg, #F2F0FF 0%, #f7f9fc 45%, #fff 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -18%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 24% 28%, rgba(238,127,58,.09), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(59,37,220,.11), transparent 32%),
    radial-gradient(circle at 84% 66%, rgba(238,127,58,.06), transparent 30%);
  filter: blur(58px);
  opacity: .72;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 50% 12%, rgba(238,127,58,.035), transparent 42%);
  background-size: 100% 100%;
  opacity: .42;
}
.hero-wrap {
  position: relative; z-index: 1;
  max-width: 1360px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.08fr) 1px minmax(min(500px, 100%), .92fr);
  gap: clamp(32px, 4vw, 56px); align-items: start; padding-top: 20px;
}
.status-pill {
  display: inline-flex; align-items: center; gap: 9px; color: var(--blue);
  width: fit-content; padding: 10px 14px;
  border: 1px solid rgba(59,37,220,.28); border-radius: 999px;
  background: rgba(255,255,255,.62);
  font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .09em;
  margin-bottom: 26px;
}
.status-icon { width: 15px; height: 15px; flex: 0 0 auto; color: var(--green); }
@keyframes pulse { 0%,100%{ box-shadow:0 0 0 0 rgba(238,127,58,.45); } 50%{ box-shadow:0 0 0 7px rgba(238,127,58,0); } }
.hero-copy { max-width: 760px; }
.hero h1 { max-width: 760px; font-size: clamp(38px, 4.2vw, 62px); line-height: 1.05; letter-spacing: -.065em; font-weight: 700; margin-bottom: 24px; }
.typing-text { color: var(--blue); }
.hero-phrase { white-space: nowrap; }
.typing-text {
  display: inline-block;
  min-width: 9.5ch;
  white-space: nowrap;
}
.typing-text::after {
  content: '';
  display: inline-block;
  width: .08em;
  height: .85em;
  margin-left: .06em;
  background: var(--blue);
  vertical-align: -.06em;
  animation: typingCursor .8s steps(1) infinite;
}
.typing-text.done::after { animation: typingCursor .8s steps(1) infinite; opacity: 1; }
@keyframes typingCursor { 50% { opacity: 0; } }
.hero-lead { max-width: 620px; color: var(--muted); font-size: clamp(16px, 2.2vw, 21px); line-height: 1.65; margin-bottom: 22px; }
.hero-prices { max-width: 620px; margin-bottom: 30px; opacity: 1 !important; transform: none !important; }
.hero-prices-label { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.hero-prices-row { display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 20px; box-shadow: 0 8px 24px rgba(6,5,26,.06); }
.hp-item { display: inline-flex; align-items: baseline; gap: 8px; }
.hp-grade { font-size: 13px; font-weight: 600; color: var(--muted); }
.hp-val { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.hp-sep { color: var(--line); font-weight: 400; }
@media (max-width: 560px) {
  .hero-prices-row { gap: 12px; padding: 12px 16px; }
  .hp-val { font-size: 16px; }
}
.trust-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0; padding: 22px 0; border-top: 1px solid rgba(6,5,26,.18); border-bottom: 1px solid rgba(6,5,26,.18); max-width: 620px; }
.trust-chip { color: var(--ink-2); font-size: 15px; font-weight: 600; padding: 0 22px; border-right: 1px solid rgba(6,5,26,.18); }
.trust-chip:first-child { padding-left: 0; }
.trust-chip:last-child { padding-right: 0; border-right: none; }
.trust-chip::before { content: '✓'; color: var(--green); margin-right: 8px; }
.mini-panel { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 620px; margin-top: 34px; border-top: 1px solid rgba(6,5,26,.18); border-bottom: 1px solid rgba(6,5,26,.18); }
.metric { padding: 18px 20px 18px 0; border-right: 1px solid rgba(6,5,26,.18); }
.metric:last-child { border-right: none; padding-left: 20px; }
.metric:nth-child(2) { padding-left: 20px; }
.metric strong { display: block; font-size: 24px; letter-spacing: -.05em; margin-bottom: 5px; }
.metric span { color: var(--muted); font-size: 13px; line-height: 1.45; font-weight: 600; }

/* ===================== BOOKING FORM ===================== */
.booking-panel {
  position: relative;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
}
.booking-panel:hover { transform: none; }

.booking-shell { padding: 0; }
.booking-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 18px; padding-bottom: 20px; margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.booking-kicker {
  display: inline-flex; align-items: center; gap: 7px; color: var(--blue);
  font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 600;
  margin-bottom: 10px;
}
.booking-kicker::before { display: none; }
.booking-title { font-size: 24px; line-height: 1.12; letter-spacing: -.04em; font-weight: 700; }
.booking-note { color: var(--muted); font-size: 13px; line-height: 1.6; margin-top: 6px; font-weight: 400; }
.booking-secure {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px;
  border: 1px solid rgba(22,163,74,.3); border-radius: 999px; color: #16a34a;
  background: rgba(22,163,74,.06); font-size: 12px; font-weight: 600; white-space: nowrap;
  flex-shrink: 0;
}
.booking-secure::before { display: none; }

/* Step progress */
.progress {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr);
  margin-bottom: 22px; border-bottom: 1px solid #e8ecf2;
}
.progress::after {
  content: ''; position: absolute; left: 0; bottom: -1px;
  width: 25%; height: 2px; background: var(--green);
  transition: transform .34s cubic-bezier(.22,1,.36,1);
}
.progress.step-1::after { transform: translateX(0); }
.progress.step-2::after { transform: translateX(100%); }
.progress.step-3::after { transform: translateX(200%); }
.progress.step-4::after { transform: translateX(300%); }
.progress span {
  position: relative; min-height: 34px;
  text-align: center;
}
.progress span::after {
  color: var(--muted); font-size: 15px; font-weight: 600;
  letter-spacing: .01em;
  transition: color .25s ease, font-weight .25s ease;
}
.progress span:nth-child(1)::after { content: 'Location'; }
.progress span:nth-child(2)::after { content: 'Time'; }
.progress span:nth-child(3)::after { content: 'Vehicle'; }
.progress span:nth-child(4)::after { content: 'Payment'; }
.progress span.active::after { color: var(--ink); font-weight: 600; }

/* Form body */
.form-body { padding: 0; }
.step { display: none; }
.step.active { display: block; animation: formFade .3s ease; }
@keyframes formFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label {
  font-size: 12px; color: #8896aa;
  text-transform: uppercase; letter-spacing: .07em; font-weight: 500;
}
.field input, .field select {
  width: 100%; height: 52px; border: 1.5px solid #c8d0de;
  border-radius: 14px; background: #fff;
  padding: 0 14px; outline: none;
  color: var(--ink); font-size: 16px; font-weight: 400;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field input:hover, .field select:hover { border-color: #9ba3af; background: #fff; }
.field input:focus, .field select:focus {
  border-color: rgba(59,37,220,.5); background: #fff;
  box-shadow: 0 0 0 3px rgba(59,37,220,.08);
}
.field input::placeholder { color: #b0bac8; font-weight: 400; }
.address-field { position: relative; }
.address-suggestions {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 20;
  display: none; max-height: 228px; overflow-y: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid #e8ecf2; border-radius: 18px; background: #fff;
  box-shadow: 0 18px 38px rgba(8,11,20,.14);
}
.address-suggestions.open { display: block; }
.address-option {
  width: 100%; display: block; padding: 11px 13px; border: 0; border-bottom: 1px solid #f0f2f6;
  background: #fff; color: var(--ink); text-align: left; cursor: pointer;
}
.address-option:last-child { border-bottom: none; }
.address-option:hover, .address-option.active { background: #f7f6ff; }
.address-option strong { display: block; font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.address-option span { display: block; color: var(--muted); font-size: 12px; line-height: 1.35; }
.address-empty { padding: 12px 13px; color: var(--muted); font-size: 12px; }
.location-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -4px 0 14px;
}
.btn-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(59,37,220,.18);
  border-radius: 999px;
  background: rgba(59,37,220,.06);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .15s ease, color .2s ease;
}
.btn-location:hover {
  background: rgba(59,37,220,.1);
  border-color: rgba(59,37,220,.34);
  transform: translateY(-1px);
}
.btn-location:disabled {
  cursor: not-allowed;
  background: #f4f5f7;
  color: #98a2b3;
  border-color: #e8ecf2;
  transform: none;
}
.location-help {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.field select {
  appearance: none; -webkit-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='%23667085' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: calc(100% - 14px) center;
  background-size: 10px 6px;
  background-repeat: no-repeat;
  background-color: #fafbfc;
  cursor: pointer;
}

/* Fuel grade cards */
.option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.option-card {
  position: relative; padding: 16px 18px; cursor: pointer;
  border: 1.5px solid #e8ecf2; border-radius: 18px; background: #fafbfc;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .15s ease;
}
.option-card:hover { border-color: #c8d0de; background: #fff; transform: translateY(-1px); }
.option-card.selected {
  border-color: var(--blue); background: #F7F6FF;
  box-shadow: 0 4px 20px rgba(59,37,220,.12);
}
.option-card.selected::after {
  content: '✓'; position: absolute; top: 12px; right: 14px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.option-card strong { display: block; font-size: 30px; letter-spacing: -.06em; font-weight: 700; margin-bottom: 3px; color: var(--ink); }
.option-card strong small { font-size: 13px; font-weight: 500; letter-spacing: .01em; opacity: .65; }
.option-card span { display: block; color: var(--muted); font-size: 13px; font-weight: 500; margin-top: 4px; }
.option-card.selected strong { color: var(--blue); }
.option-card.selected span { color: rgba(59,37,220,.7); }

/* Info / summary */
.info-box {
  color: var(--muted); border: 1px solid rgba(59,37,220,.12);
  border-radius: 18px; background: rgba(59,37,220,.04);
  padding: 12px 14px; font-size: 13px; line-height: 1.6; font-weight: 400;
  margin: 0 0 16px;
}
.info-box strong { color: var(--ink); font-weight: 600; }
.service-alert {
  display: none; margin: 0 0 16px; padding: 12px 14px;
  border-radius: 18px; font-size: 13px; line-height: 1.55;
}
.service-alert.show { display: block; }
.service-alert.error { color: #991b1b; border: 1px solid rgba(153,27,27,.18); background: #fff1f1; }
.service-alert.success { color: #14532d; border: 1px solid rgba(22,163,74,.28); background: rgba(22,163,74,.08); display: flex; align-items: center; gap: 8px; }

.summary-box {
  border: 1px solid #e8ecf2; border-radius: 18px;
  background: #fafbfc; padding: 12px 16px; margin-bottom: 14px;
}
.summary-row {
  display: flex; justify-content: space-between; gap: 16px;
  color: var(--muted); font-size: 13px; padding: 7px 0; font-weight: 400;
}
.summary-row.total {
  color: var(--ink); border-top: 1px solid #e8ecf2;
  margin-top: 6px; padding-top: 14px; font-size: 16px; font-weight: 600;
}
.summary-note { color: var(--muted); font-size: 13px; line-height: 1.5; margin: 4px 0 8px; }

/* Card mock */
.card-mock {
  border: 1px solid rgba(255,255,255,.06); border-radius: 18px;
  background: linear-gradient(135deg, #17134A 0%, #06051A 100%);
  padding: 16px 18px; margin-bottom: 14px; color: #fff;
  box-shadow: 0 8px 28px rgba(8,11,20,.18);
}
.card-mock div {
  min-height: 36px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.55); font-size: 13px; font-weight: 400;
}
.card-mock div:last-child { border-bottom: none; }
.card-mock span:last-child { color: rgba(255,255,255,.9); font-weight: 500; }

.tos { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 13px; line-height: 1.55; margin-bottom: 14px; font-weight: 400; }
.tos input { margin-top: 2px; accent-color: var(--blue); }

.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid #e8ecf2; }
.btn-back, .btn-next, .btn-confirm { height: 54px; border: 0; padding: 0 24px; font-size: 16px; font-weight: 600; cursor: pointer; border-radius: 999px; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease; }
.btn-back { color: var(--muted); background: #f4f5f7; border: 1px solid #e8ecf2; }
.btn-back:hover { color: var(--ink); background: #eaecf0; transform: translateY(-1px); }
.btn-next, .btn-confirm {
  background: var(--blue); color: #fff; flex: 1;
  box-shadow: none;
}
.btn-next:hover, .btn-confirm:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: none; }
.btn-next:disabled, .btn-confirm:disabled {
  cursor: not-allowed; background: #d5d9e2; color: #7b8494; transform: none;
}
.btn-next.no-glow, .btn-next.no-glow:hover {
  box-shadow: none;
}


.confirmation { display: none; text-align: center; padding: 64px 30px; }
.check {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 18px;
  color: #fff; background: var(--green); font-size: 26px; font-weight: 700;
  box-shadow: 0 8px 24px rgba(238,127,58,.3);
}

/* ===================== SECTION BLOCKS ===================== */
/* Each section gets a distinct bg so blocks clearly separate */

/* HOW IT WORKS */
section.how-section {
  position: relative;
  padding: 48px clamp(20px, 5vw, 72px) 92px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
/* WHY FUELDROP */
section.why-section {
  position: relative;
  padding: 92px clamp(20px, 5vw, 72px);
  background: #F2F0FF;
  border-bottom: 1px solid #D9D3FF;
  overflow: hidden;
}
/* PRICING */
section.pricing-section {
  position: relative;
  padding: 92px clamp(20px, 5vw, 72px);
  background: var(--bg-pricing);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
/* AREA */
section.area-section {
  position: relative;
  padding: 92px clamp(20px, 5vw, 72px);
  background: #f5f7fa;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

/* Shared inner container */
.inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; }
.section-head { max-width: 650px; margin-bottom: 36px; }
.eyebrow { color: var(--blue); font-weight: 850; font-size: 12px; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 10px; }
.eyebrow-light { color: #A9A0FF; font-weight: 850; font-size: 12px; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 10px; }
.section-head h2 { font-size: clamp(31px, 4vw, 50px); line-height: 1.08; letter-spacing: -.06em; margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 16px; line-height: 1.7; }
.section-head-light h2 { color: #fff; }
.section-head-light p { color: rgba(255,255,255,.55); }

/* HOW STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step-card {
  padding: 28px 28px 28px 0; border-right: 1px solid var(--line);
  text-align: left;
  transition: background .25s;
}
.step-card:hover { background: #fafbff; }
.step-card + .step-card { padding-left: 28px; }
.step-card:last-child { border-right: none; }
.step-num {
  width: 34px; height: 34px; display: grid; place-items: center; margin: 0 0 14px;
  border-radius: 999px; background: var(--green); color: var(--ink);
  font-size: 15px; font-weight: 800;
}
.step-card h3 { font-size: 19px; letter-spacing: -.035em; margin-bottom: 9px; }
.step-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* WHY SPLIT */
.split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: start; }
.split-section h2 { font-size: clamp(31px, 4vw, 50px); line-height: 1.08; letter-spacing: -.06em; margin-bottom: 14px; }
.split-section p { color: var(--muted); line-height: 1.75; }
.benefits { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(59,37,220,.18); border-left: 1px solid rgba(59,37,220,.18); }
.benefit {
  padding: 22px; border-right: 1px solid rgba(59,37,220,.18); border-bottom: 1px solid rgba(59,37,220,.18);
  background: rgba(255,255,255,.7);
  transition: background .25s;
}
.benefit:hover { background: #fff; }
.benefit strong { display: block; margin-bottom: 7px; }
.benefit span { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* PRICING */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.price-card {
  padding: 30px 26px 30px 0; border-right: 1px solid rgba(255,255,255,.1); position: relative;
  transition: background .25s;
}
.price-card:hover { background: rgba(255,255,255,.04); }
.price-card + .price-card { padding-left: 26px; }
.price-card:last-child { border-right: none; }
.price-card.featured::before { content: 'Most popular'; display: inline-block; color: #A9A0FF; font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 12px; }
.price-card h3 { font-size: 15px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.price { font-size: 42px; font-weight: 850; letter-spacing: -.06em; margin-bottom: 6px; color: #fff; }
.price span { font-size: 14px; color: rgba(255,255,255,.4); font-weight: 650; letter-spacing: 0; }
.price-card p { color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.65; margin-bottom: 18px; }
.price-card ul { list-style: none; display: grid; gap: 10px; margin-bottom: 22px; }
.price-card li { color: rgba(255,255,255,.75); font-size: 14px; font-weight: 650; }
.price-card li::before { content: '✓'; color: var(--green); font-weight: 850; margin-right: 9px; }
.price-card button { width: 100%; height: 50px; border-radius: 999px; border: 1px solid rgba(255,255,255,.22); background: transparent; color: rgba(255,255,255,.8); font-size: 16px; font-weight: 700; cursor: pointer; transition: border-color .2s, background .2s, color .2s; }
.price-card button:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.price-card.featured button { background: var(--blue); color: #fff; border-color: var(--blue); }
.price-card.featured button:hover { background: var(--blue-hover); }

/* AREA */
.area-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}
.area-intro .section-head { margin-bottom: 0; }
.area-note {
  border: 1px solid rgba(59,37,220,.14);
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 18px 42px rgba(8,11,20,.05);
}
.area-note strong { display: block; font-size: 18px; letter-spacing: -.03em; margin-bottom: 8px; }
.area-note p { color: var(--muted); line-height: 1.7; font-size: 14px; }
.area-note p + p { margin-top: 10px; }
.area-primary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.area-card {
  position: relative;
  overflow: hidden;
  min-height: 154px;
  border: 1px solid rgba(59,37,220,.14);
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 18px 42px rgba(8,11,20,.05);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.area-card::before {
  content: '';
  position: absolute;
  right: -42px;
  top: -42px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: rgba(59,37,220,.08);
}
.area-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59,37,220,.4);
  box-shadow: 0 24px 58px rgba(59,37,220,.10), 0 8px 22px rgba(8,11,20,.05);
}
.area-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.area-card-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}
.area-card strong {
  display: block;
  font-size: 24px;
  letter-spacing: -.045em;
  margin-bottom: 7px;
}
.area-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.area-coverage {
  display: grid;
  grid-template-columns: .36fr .64fr;
  gap: 28px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.area-coverage h3 { font-size: 24px; letter-spacing: -.04em; margin-bottom: 8px; }
.area-coverage p { color: var(--muted); line-height: 1.7; font-size: 14px; }
.area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.area-pill {
  display: flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0 16px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.area-pill::before {
  content: '✓';
  color: var(--green);
  margin-right: 8px;
  font-weight: 900;
}
.area-pill:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-2px);
}
.area-pill:hover::before { color: #fff; }
.faq-mini { margin-top: 36px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { padding: 18px 0; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; font-weight: 850; transition: color .2s; }
.faq-q:hover { color: var(--blue); }
.faq-q span { transition: transform .25s; display: inline-block; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 260px; }
.faq-a p { color: var(--muted); font-size: 14px; line-height: 1.7; padding-bottom: 18px; }

/* CTA */
.cta {
  position: relative;
  padding: 84px clamp(20px, 5vw, 72px);
  background: #ffffff;
  color: var(--ink); text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.cta h2 { position: relative; z-index: 1; font-size: clamp(34px, 5vw, 58px); letter-spacing: -.065em; margin-bottom: 14px; color: var(--ink); }
.cta p { position: relative; z-index: 1; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.cta a { position: relative; z-index: 1; display: inline-flex; height: 52px; align-items: center; justify-content: center; padding: 0 28px; border-radius: 999px; background: var(--green); color: var(--ink); text-decoration: none; font-size: 15px; font-weight: 800; transition: background .2s, transform .2s; }
.cta a:hover { background: #d96f2f; transform: translateY(-2px); }

/* FOOTER */
.footer { background: #06051A; color: rgba(255,255,255,.62); padding: 0 clamp(20px, 5vw, 72px); }
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-main { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: clamp(24px, 4vw, 52px); padding: 64px 0 44px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand { max-width: 360px; }
.footer-logo { display: inline-flex; align-items: center; margin-bottom: 22px; }
.footer-logo img { width: 150px; height: auto; display: block; }
.footer-brand p { color: rgba(255,255,255,.58); line-height: 1.75; font-size: 14px; margin-bottom: 24px; }
.footer-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.footer-col a, .footer-col span { display: block; color: rgba(255,255,255,.58); text-decoration: none; font-size: 14px; line-height: 1.45; margin-bottom: 12px; }
.footer-col a:hover { color: #fff; }
.footer-col p { color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.footer-social { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.7); transition: background .18s, color .18s; text-decoration: none; }
.footer-social a:hover { background: rgba(255,255,255,.16); color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding: 22px 0 26px; color: rgba(255,255,255,.42); font-size: 13px; }
.footer-bottom-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,.58); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ===================== SCROLL REVEAL ANIMATIONS ===================== */
/* Base reveal */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Variants */
.reveal-left  { opacity:0; transform:translateX(-40px); transition:opacity .7s cubic-bezier(.22,1,.36,1),transform .7s cubic-bezier(.22,1,.36,1); }
.reveal-right { opacity:0; transform:translateX(40px);  transition:opacity .7s cubic-bezier(.22,1,.36,1),transform .7s cubic-bezier(.22,1,.36,1); }
.reveal-scale { opacity:0; transform:scale(.94);         transition:opacity .65s cubic-bezier(.22,1,.36,1),transform .65s cubic-bezier(.22,1,.36,1); }
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible { opacity:1; transform:none; }

/* Stagger delays */
.reveal-delay-1  { transition-delay:.08s; }
.reveal-delay-2  { transition-delay:.16s; }
.reveal-delay-3  { transition-delay:.24s; }
.reveal-delay-4  { transition-delay:.32s; }
.reveal-delay-5  { transition-delay:.40s; }
.reveal-delay-6  { transition-delay:.48s; }

/* Counter number count-up */
.count-up { display: inline-block; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1; transform: none; transition: none;
  }
  .vec-how-spark, .vec-cta-burst, .vec-area-pin, .booking-kicker::before {
    animation: none;
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .hero-wrap, .split-section, .area-intro, .area-coverage { grid-template-columns: 1fr; }
  .hero-copy, .hero h1 { max-width: 640px; }
  .hero-phrase { white-space: normal; }
  .booking-panel { max-width: 620px; }
  .steps, .price-grid { grid-template-columns: 1fr; }
  .step-card, .step-card + .step-card, .price-card, .price-card + .price-card { padding-left: 0; padding-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .step-card { border-bottom: 1px solid var(--line); }
  .step-card:last-child, .price-card:last-child { border-bottom: none; }
  .benefits, .area-primary { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: repeat(2, 1fr); }
  .trust-chip { font-size: 14px; padding: 0 16px; }
  .price { font-size: 36px; }
  .hero h1 { font-size: clamp(32px, 4vw, 56px); }
}
@media (max-width: 720px) {
  .nav { height: 66px; padding: 0 18px; }
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
  .mobile-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: rgba(6,5,26,.98);
    box-shadow: 0 22px 44px rgba(8,11,20,.22);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }
  .nav.menu-open .mobile-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }
  .mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
  }
  .mobile-menu a:hover { background: rgba(255,255,255,.08); }
  .mobile-menu .btn-signup {
    height: 46px;
    background: var(--green) !important;
    color: var(--ink) !important;
    justify-content: center;
    margin-top: 4px;
  }
  .logo-badge { min-height: 42px; padding: 0 8px 0 0; }
  .logo-img { width: 150px; }
  .hero { padding-top: 98px; }
  .hero h1 { font-size: 32px; }
  .trust-row { flex-wrap: nowrap; justify-content: space-between; gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .trust-chip { flex: 0 0 auto; font-size: 12px; padding: 0 10px; border-right: 1px solid var(--line); text-align: center; white-space: nowrap; }
  .trust-chip:first-child { padding-left: 0; text-align: left; }
  .trust-chip:last-child { padding-right: 0; border-right: none; text-align: right; }
  .trust-chip::before { margin-right: 4px; }
  .mini-panel { grid-template-columns: repeat(3, 1fr); }
  .grid-2, .option-grid { grid-template-columns: 1fr; }
  .metric, .metric:nth-child(2), .metric:last-child { padding: 12px 8px; border-right: 1px solid rgba(6,5,26,.18); border-bottom: none; text-align: center; }
  .metric:first-child { padding-left: 0; }
  .metric:last-child { padding-right: 0; border-right: none; }
  .metric strong { font-size: 18px; margin-bottom: 4px; }

  .metric span { font-size: 10px; line-height: 1.35; }
  .booking-shell { padding: 0; }
  .booking-top { flex-direction: row; align-items: center; }
  .booking-secure { color: #16a34a; align-self: flex-start; }
  .progress span { min-height: 28px; }
  .progress span::after { font-size: 13px; letter-spacing: .01em; }
  .option-grid { grid-template-columns: 1fr; }
  /* Make form footer stack on very narrow screens */
  .form-footer { flex-wrap: wrap; }
  .btn-back { flex: 1 1 auto; }
  .btn-next, .btn-confirm { flex: 2 1 auto; }
  /* Modal - centered card on mobile, not bottom-sheet */
  .contact-modal {
    padding: 16px;
    align-items: center;
    justify-content: center;
  }
  .contact-dialog {
    width: calc(100% - 0px);
    max-width: 480px;
    border-radius: 20px;
    max-height: calc(100dvh - 32px);
    padding: 20px 18px 24px;
  }
  .contact-head h3 { font-size: 19px; }
  .contact-head p { font-size: 13px; }
  .contact-form button, .login-form button,
  .fueler-form button[type="submit"] { height: 52px; font-size: 16px; }
  /* 2-col contact name/email → stack on mobile */
  .contact-form > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  section.how-section { padding-top: 24px; padding-bottom: 48px; } section.why-section, section.pricing-section, section.area-section { padding-top: 48px; padding-bottom: 48px; }
  .area-list { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; padding: 48px 0 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }

  /* ── Typography mobile fixes ── */
  .section-head p { font-size: 15px; }
  .step-card h3 { font-size: 17px; }
  .step-card p { font-size: 14px; }
  .price { font-size: 34px; }
  .price-card p { font-size: 13px; }
  .price-card li { font-size: 13px; }
  .price-card button { font-size: 16px; height: 52px; }
  .area-card strong { font-size: 20px; }
  .area-coverage h3 { font-size: 20px; }
  .area-note strong { font-size: 16px; }
  .contact-head h3 { font-size: 20px; }
  .contact-head p { font-size: 13px; }
  .faq-q { font-size: 14px; }
  .benefit strong { font-size: 14px; }
  .benefit span { font-size: 13px; }
  .cta p { font-size: 15px; }
  .footer-brand p { font-size: 13px; }
  .footer-col a, .footer-col span { font-size: 13px; }
  .booking-note { font-size: 12px; }
  .option-card strong { font-size: 24px; }
  .btn-back, .btn-next, .btn-confirm { font-size: 16px; height: 50px; padding: 0 20px; }
  .summary-row { font-size: 13px; }
  .summary-row.total { font-size: 15px; }
  .progress span::after { font-size: 14px; }
  .field label { font-size: 11px; }
}

/* Date + time window always stacks - date input needs full width on mobile */
@media (max-width: 860px) {
  .grid-date { grid-template-columns: 1fr !important; }
}
/* Date input: pill radius clips native picker icon - use rounded-rect instead */
input[type="date"],
input[type="date"]::-webkit-date-and-time-value {
  border-radius: 14px !important;
  padding-right: 12px;
  min-width: 0;
  width: 100%;
}
/* Prevent date input from overflowing its container on iOS */
input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  line-height: 52px;
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 390px) {
  .hero h1 { font-size: 28px; }
  .hero-phrase { white-space: normal; }
  .booking-title { font-size: 20px; }
  .progress span::after { font-size: 12px; letter-spacing: 0; }
  .mini-panel { grid-template-columns: 1fr; border-top: 2px solid rgba(6,5,26,.18); border-bottom: 2px solid rgba(6,5,26,.18); gap: 0; }
  .metric { border: none; border-bottom: 2px solid rgba(6,5,26,.18); text-align: left; padding: 10px 0; }
  .metric:last-child { border-bottom: none; }
  .logo-img { width: 120px; }
  .booking-shell { padding: 0; }
  .section-head h2 { font-size: 27px; letter-spacing: -.05em; }
  .hero-lead { font-size: 15px; }
  .price { font-size: 30px; }
  .step-card h3 { font-size: 16px; }
  .contact-head h3 { font-size: 18px; }
  .btn-back, .btn-next, .btn-confirm { font-size: 15px; height: 48px; }
  .cta h2 { font-size: 28px; }
  .area-coverage h3 { font-size: 18px; }
}

.nav.scrolled {
  background: rgba(6,5,26,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.nav.scrolled .nav-links a,
.nav.scrolled .nav-actions a {
  color: #ffffff;
}
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-actions a:hover {
  color: #ffffff;
  opacity: .8;
}
.nav.scrolled .nav-actions .btn-signup {
  background: #ffffff !important;
  color: #06051A !important;
}
.nav.scrolled .logo-img {
  filter: none;
}
.nav.scrolled .mobile-menu-toggle {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
}
.nav.scrolled .mobile-menu-toggle span,
.nav.scrolled .mobile-menu-toggle span::before,
.nav.scrolled .mobile-menu-toggle span::after {
  background: #fff;
}
.nav.scrolled.menu-open .mobile-menu-toggle span {
  background: transparent;
}
/* Mobile menu-open (not yet scrolled) also needs a solid bg so items are readable */
@media (max-width: 720px) {
  .nav.menu-open {
    background: rgba(6,5,26,.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .nav.menu-open .logo-img { filter: none; }
  .nav.menu-open .mobile-menu-toggle span { background: transparent !important; }
  .nav.menu-open .mobile-menu-toggle span::before,
  .nav.menu-open .mobile-menu-toggle span::after { background: #fff; }
  .nav.menu-open.scrolled .mobile-menu-toggle span { background: transparent !important; }
}


/* ── EARN SECTION ────────────────────────────────────────────────────────── */
section.earn-section {
  background: #06051A;
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  position: relative;
}
.earn-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.earn-copy .eyebrow-light { margin-bottom: 14px; }
.earn-copy h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.06;
  letter-spacing: -.06em;
  color: #fff;
  margin-bottom: 16px;
}
.earn-copy p {
  color: rgba(255,255,255,.55);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}
.earn-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}
.earn-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.earn-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(59,37,220,.25);
  border: 1px solid rgba(59,37,220,.45);
  color: #A9A0FF;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.earn-step-text strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}
.earn-step-text span {
  color: rgba(255,255,255,.5);
  font-size: 14px;
  line-height: 1.6;
}
.earn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
}
.earn-cta:hover { opacity: .9; transform: translateY(-1px); }
.earn-cta svg { flex-shrink: 0; }
.earn-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.earn-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 24px 22px;
  transition: border-color .2s, background .2s;
}
.earn-card:hover { background: rgba(255,255,255,.08); border-color: rgba(59,37,220,.5); }
.earn-card-icon {
  margin-bottom: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.earn-card strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.earn-card span {
  color: rgba(255,255,255,.48);
  font-size: 13px;
  line-height: 1.55;
}
.earn-card.featured-card {
  grid-column: span 2;
  background: rgba(59,37,220,.18);
  border-color: rgba(59,37,220,.45);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
}
.earn-card.featured-card .earn-card-icon { margin-bottom: 0; }
.earn-card.featured-card strong { margin-bottom: 2px; }
/* Decorative background blur */
.earn-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,37,220,.18) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 860px) {
  .earn-inner { grid-template-columns: 1fr; }
  .earn-cards { grid-template-columns: 1fr 1fr; }
  .earn-copy p { max-width: none; }
}
@media (max-width: 540px) {
  .earn-cards { grid-template-columns: 1fr; }
  .earn-card.featured-card { grid-column: span 1; flex-direction: column; align-items: flex-start; gap: 10px; }
  .earn-copy h2 { font-size: 30px; }
}

/* ── ENTERPRISE SECTION ──────────────────────────────────────────────────── */
section.enterprise-section {
  background: #fafbfc;
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(6,5,26,.06);
}
.enterprise-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.enterprise-copy .eyebrow-ent {
  color: var(--orange);
  font-weight: 850;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.enterprise-copy .eyebrow-ent::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(238,127,58,.18);
}
.enterprise-copy h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.06;
  letter-spacing: -.06em;
  color: var(--ink);
  margin-bottom: 16px;
}
.enterprise-copy h2 em {
  font-style: normal;
  color: var(--orange);
}
.enterprise-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}
.enterprise-bullets {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.enterprise-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.enterprise-bullet-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(238,127,58,.1);
  border: 1px solid rgba(238,127,58,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.enterprise-bullet-text strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: -.01em;
}
.enterprise-bullet-text span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.enterprise-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.enterprise-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.enterprise-cta:hover { background: #d96f2f; transform: translateY(-1px); }
.enterprise-cta svg { flex-shrink: 0; }
.enterprise-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  opacity: .7;
  transition: opacity .2s;
}
.enterprise-cta-secondary:hover { opacity: 1; }
/* Right column: stat card stack */
.enterprise-card {
  background: #fff;
  border: 1px solid rgba(6,5,26,.08);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(6,5,26,.06);
  position: relative;
  overflow: hidden;
}
.enterprise-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238,127,58,.1) 0%, transparent 70%);
  pointer-events: none;
}
.enterprise-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  position: relative;
}
.enterprise-card-head-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(238,127,58,.15);
}
.enterprise-card-head-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.enterprise-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
}
.enterprise-stat {
  background: #fafbfc;
  border: 1px solid rgba(6,5,26,.06);
  border-radius: 14px;
  padding: 18px 16px;
}
.enterprise-stat-value {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.03em;
  color: #000;
  line-height: 1;
  margin-bottom: 6px;
}
.enterprise-stat-value em {
  font-style: normal;
  color: var(--orange);
}
.enterprise-stat-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.enterprise-card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.enterprise-card-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 600;
}
.enterprise-card-feature svg { flex-shrink: 0; color: var(--orange); }
@media (max-width: 860px) {
  .enterprise-inner { grid-template-columns: 1fr; }
  .enterprise-copy p { max-width: none; }
}
@media (max-width: 540px) {
  .enterprise-copy h2 { font-size: 30px; }
  .enterprise-stat-grid { grid-template-columns: 1fr; }
  .enterprise-card { padding: 22px; }
  .enterprise-stat-value { font-size: 24px; }
  .enterprise-cta { font-size: 15px; height: 48px; padding: 0 22px; }
}


/* ── FUELER MODAL ─────────────────────────────────────────────────────────── */
.fueler-form input, .fueler-form select, .fueler-form textarea {
  width: 100%; border: 1px solid #e8ecf2; border-radius: 14px; background: #fafbfc;
  padding: 0 14px; color: var(--ink); font-size: 16px; outline: none;
  font-family: inherit; box-sizing: border-box;
}
.fueler-form input, .fueler-form select { height: 48px; }
.fueler-form textarea { min-height: 90px; padding-top: 12px; resize: vertical; }
.fueler-form input:focus, .fueler-form select:focus, .fueler-form textarea:focus {
  border-color: rgba(59,37,220,.55); background: #fff;
  box-shadow: 0 0 0 3px rgba(59,37,220,.1);
}
.fueler-form select { appearance: none; -webkit-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='%23667085' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: calc(100% - 14px) center; background-size: 10px 6px; background-repeat: no-repeat; background-color: #fafbfc; cursor: pointer;
}
.fueler-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fueler-form label { display: block; font-size: 12px; color: #8896aa; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 5px; }
.fueler-form .field { display: flex; flex-direction: column; }
.fueler-form .field-full { grid-column: span 2; }
.fueler-form button[type="submit"] {
  width: 100%; height: 50px; border: 0; border-radius: 999px;
  background: var(--blue); color: #fff; font-weight: 700; font-size: 16px;
  cursor: pointer; font-family: inherit; transition: background .2s;
}
.fueler-form button[type="submit"]:hover { background: var(--blue-hover); }
.fueler-form button[type="submit"]:disabled { opacity: .6; cursor: not-allowed; }
@media (max-width: 540px) {
  .fueler-form-grid { grid-template-columns: 1fr; }
  .fueler-form .field-full { grid-column: span 1; }
  .fueler-form-grid > .field:not(.field-full) { grid-column: span 1; }
}


/* ── LOGIN / SIGNUP FLIP ─────────────────────────────────────────────────── */
.flip-container { perspective: 1200px; }
.flip-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}
.flip-inner.flipped { transform: rotateY(180deg); }
.flip-front {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateY(180deg);
  background: #fff;
  border-radius: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/* When flipped: shrink front to 0, expand back to full height */
.flip-inner.flipped .flip-front {
  visibility: hidden;
  pointer-events: none;
}
.flip-inner:not(.flipped) .flip-back {
  overflow: hidden;
}




/* ── STATES ROLLER ───────────────────────────────────────────────────────── */
.states-roller {
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 32px 0;
  padding-top: 72px;
  position: relative;
}
.states-roller::before,
.states-roller::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 260px;
  z-index: 2;
  pointer-events: none;
}
.states-roller::before { left: 0; background: linear-gradient(to right, transparent 0%, transparent 100%); display: none; }
.states-roller::after  { right: 0; background: linear-gradient(to left, transparent 0%, transparent 100%); display: none; }
.states-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: statesScroll 90s linear infinite;
}
.states-track:hover { animation-play-state: paused; }
.states-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 26px;
  font-size: 16px;
  font-weight: 600;
  color: #9ba3af;
  letter-spacing: .02em;
  white-space: nowrap;
  border-right: 1px solid #e2e5ea;
}
.states-track span:last-child { border-right: none; }
.states-track span::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #c8cdd5;
  flex-shrink: 0;
}
@keyframes statesScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .states-track { animation: none; }
}

/* ══════════════════════════════════════════════════════
   TABLET (768px – 980px) - iPad, iPad Mini, Surface
══════════════════════════════════════════════════════ */
@media (max-width: 980px) and (min-width: 721px) {
  /* Hero */
  .hero { padding: 108px clamp(20px, 4vw, 48px) 52px; }
  .hero h1 { font-size: clamp(28px, 4vw, 50px); }
  .hero-lead { font-size: 16px; }
  .booking-panel { max-width: 100%; }

  /* Booking shell on tablet */
  .booking-shell { padding: 0; }
  .booking-title { font-size: 20px; }
  .progress span::after { font-size: 10px; }

  /* Nav */
  .nav { padding: 0 24px; }

  /* Sections */
  section.how-section,
  section.why-section,
  section.pricing-section,
  section.area-section { padding: 80px clamp(20px, 4vw, 48px); }
  .inner { padding: 0; }

  /* Earn section tablet */
  .earn-inner { gap: 40px; }
  .earn-copy h2 { font-size: 34px; }
  .earn-cards { grid-template-columns: 1fr 1fr; }

  /* Footer tablet */
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 52px 0 36px; }
  .footer-brand { grid-column: span 2; }

  /* FAQ */
  .faq-q { font-size: 15px; }

  /* Area section */
  .area-list { grid-template-columns: repeat(2, 1fr); }

  /* Price grid */
  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ══════════════════════════════════════════════════════
   LARGE TABLET / SMALL LAPTOP (980px – 1200px)
══════════════════════════════════════════════════════ */
@media (max-width: 1200px) and (min-width: 981px) {
  .hero { padding: 118px clamp(24px, 4vw, 56px) 58px; }
  .hero h1 { font-size: clamp(32px, 4.5vw, 56px); }
  .inner { max-width: 100%; padding: 0 clamp(24px, 4vw, 56px); }
  .footer-inner { padding: 0 clamp(24px, 4vw, 56px); }
  .earn-copy h2 { font-size: 40px; }
  .earn-cards { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════
   MOBILE - additional earn section fixes
══════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  /* Earn section */
  .earn-section { padding: 60px clamp(20px, 5vw, 32px); }
  .earn-inner { gap: 36px; }
  .earn-copy h2 { font-size: 28px; }
  .earn-copy p { font-size: 15px; }
  .earn-steps { gap: 16px; }
  .earn-cards { grid-template-columns: 1fr; }
  .earn-card.featured-card { grid-column: span 1; flex-direction: column; gap: 10px; }
  .earn-cta { font-size: 15px; height: 48px; padding: 0 22px; }

  /* States roller */
  .states-track span { font-size: 17px; padding: 0 22px; }

  /* CTA section */
  .cta { padding: 72px clamp(20px, 5vw, 32px); }
  .cta h2 { font-size: 28px; }
  .cta p { font-size: 15px; }
  .cta a { font-size: 14px; height: 48px; padding: 0 22px; }

  /* Hero booking panel full width on mobile */
  .hero-wrap { padding-top: 0; }
  .booking-panel { width: 100%; }

  /* Fueler form grid */
  .fueler-form-grid { grid-template-columns: 1fr !important; }
  .fueler-form .field-full { grid-column: span 1 !important; }

  /* Mini panel on mobile */
  .mini-panel { gap: 0; }

  /* Summary */
  .summary-box { padding: 14px; }
  .summary-row { font-size: 13px; }
}

/* ══════════════════════════════════════════════════════
   VERY SMALL PHONES (≤390px) - additional earn fixes
══════════════════════════════════════════════════════ */
@media (max-width: 390px) {
  .earn-copy h2 { font-size: 24px; }
  .earn-section { padding: 48px 16px; }
  .states-track span { font-size: 16px; padding: 0 18px; }
}


.booking-hero-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  border: 3px solid var(--blue);
  box-shadow: 0 0 0 5px rgba(59,37,220,.12);
}
@media (max-width: 720px) {
  .booking-hero-img { width: 100px; height: 100px; flex-shrink: 0; }
}


.hero-title-row {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.hero-title-img {
  width: 180px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-bottom: 8px;
}
@media (max-width: 980px) {
  .hero-title-img { width: 140px; }
}
@media (max-width: 720px) {
  .hero-title-img { width: 100px; }
}
@media (max-width: 390px) {
  .hero-title-img { width: 80px; }
}


/* ── HOW SECTION HEADING IMAGE ───────────────────────────────────────────── */
.how-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}
.how-head-row .section-head {
  flex: 1;
  max-width: 560px;
  margin-bottom: 0;
}
.how-head-img {
  width: auto;
  height: 320px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
@media (max-width: 980px) {
  .how-head-img { height: 260px; }
}
@media (max-width: 720px) {
  .how-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .how-head-row .section-head { order: 2; }
  .how-head-row .how-head-img { order: 1; }
  .how-head-img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
  }
}
@media (max-width: 480px) {
  .how-head-img {
    max-height: 220px;
  }
}
#how-img-1 { height: 380px; }
@media (max-width: 980px) { #how-img-1 { height: 300px; } }
@media (max-width: 720px) { #how-img-1 { height: auto; max-height: 340px; } }
@media (max-width: 480px) { #how-img-1 { max-height: 260px; } }


.area-intro-img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
}

@media (max-width: 720px) {
  .area-intro { grid-template-columns: 1fr; }
  .area-intro-img { max-height: 220px; border-radius: 0; }
}


/* ── AREA STATS ROW ──────────────────────────────────────────────────────── */
.area-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 40px;
  border-top: 2px solid var(--line);
  padding: 36px 0;
}
.area-stat {
  flex: 1;
  padding: 0 32px;
}
.area-stat:first-child { padding-left: 0; }
.area-stat:last-child  { padding-right: 0; }
.area-stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  margin-bottom: 6px;
}
.area-stat-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.area-stat-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.area-stat-divider {
  width: 2px;
  background: var(--line);
  flex-shrink: 0;
  align-self: stretch;
}
@media (max-width: 720px) {
  .area-stats {
    flex-direction: column;
    padding: 24px 0;
    gap: 0;
  }
  .area-stat { padding: 20px 0; }
  .area-stat-divider { width: 100%; height: 2px; }
}


/* ── AREA DIVIDER ROW ────────────────────────────────────────────────────── */
.area-divider-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  padding: 20px 0;
  gap: 0;
  margin-top: 20px;
}
.area-divider-row span {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 16px;
  border-right: 2px solid var(--line);
  white-space: nowrap;
  cursor: default;
  transition: color .2s ease, background .2s ease, letter-spacing .2s ease;
  border-radius: 4px;
}
.area-divider-row span:hover {
  color: var(--blue);
  background: rgba(59,37,220,.06);
  letter-spacing: .04em;
}
.area-divider-row span:last-child { border-right: none; }
@media (max-width: 720px) {
  .area-divider-row { flex-direction: column; padding: 0; }
  .area-divider-row span {
    width: 100%;
    text-align: left;
    border-right: none;
    border-bottom: 2px solid var(--line);
    padding: 14px 0;
  }
  .area-divider-row span:last-child { border-bottom: none; }
}


/* ── EARN DIVIDER LIST ───────────────────────────────────────────────────── */
.earn-divider-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,.12);
}
.earn-divider-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.earn-divider-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.earn-divider-text strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: -.02em;
}
.earn-divider-text span {
  color: rgba(255,255,255,.5);
  font-size: 13px;
  line-height: 1.6;
}


@media (max-width: 720px) {
  .hero {
    padding-left: clamp(12px, 3vw, 20px);
    padding-right: clamp(12px, 3vw, 20px);
  }
  .field input, .field select { height: 52px; font-size: 16px; }
  .field label { font-size: 12px; }
  .booking-title { font-size: 19px; }
  .booking-note { font-size: 12px; }
  .grid-2 { grid-template-columns: 1fr; }

}


/* ── HERO DIVIDER ────────────────────────────────────────────────────────── */
.hero-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent 0%, rgba(6,5,26,.14) 20%, rgba(6,5,26,.14) 80%, transparent 100%);
  flex-shrink: 0;
}
@media (max-width: 980px) {
  .hero-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(6,5,26,.14) 20%, rgba(6,5,26,.14) 80%, transparent 100%);
    margin: 8px 0;
  }
}

/* ── GAS PRICES BUTTON ───────────────────────────────────────────────────── */
.btn-gas-prices {
  display: inline-flex; align-items: center;
  height: 52px; padding: 0 28px; border-radius: 999px;
  border: none; background: #06051A;
  color: #fff; font-size: 16px; font-weight: 600;
  font-family: var(--font); cursor: pointer;
  transition: background .2s;
}
.btn-gas-prices:hover { background: #17134A; }
@media (max-width: 720px) {
  .hero-btn-row { justify-content: center; }
}

/* ── MAP MODAL ───────────────────────────────────────────────────────────── */
.map-modal {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: 24px; background: rgba(6,5,26,.62);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.map-modal.open { display: flex; }
.map-dialog {
  width: min(100%, 780px); border-radius: 22px;
  background: #fff; overflow: hidden;
  box-shadow: 0 32px 80px rgba(8,11,20,.3);
  display: flex; flex-direction: column;
  max-height: calc(100dvh - 48px);
}
.map-dialog-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--line); flex-shrink: 0;
}
.map-dialog-head h3 { font-size: 18px; font-weight: 700; letter-spacing: -.03em; }
.map-dialog-head p { font-size: 13px; color: var(--muted); margin-top: 2px; }
.map-close {
  width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; cursor: pointer; flex-shrink: 0; padding: 0;
  font-family: Arial, sans-serif; font-size: 18px; color: var(--ink);
  transition: background .2s;
}
.map-close:hover { background: #f4f5f7; }
.map-dialog { width: min(100%, 560px); }
.prices-body { padding: 22px; font-family: 'Plus Jakarta Sans', sans-serif; }
.prices-loc-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; background: #f7f8fa; border: 1px solid var(--line);
  border-radius: 12px; margin-bottom: 18px; flex-wrap: wrap;
}
.prices-loc-label { font-size: 13px; font-weight: 600; color: #06051A; }
.prices-loc-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border: none; border-radius: 999px;
  background: #3B25DC; color: #fff; font-size: 13px; font-weight: 700;
  font-family: inherit; cursor: pointer; white-space: nowrap; transition: opacity .15s;
}
.prices-loc-btn:hover { opacity: .9; }
.prices-loc-btn:disabled { opacity: .55; cursor: default; }
.prices-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.price-card {
  border: 1.5px solid var(--line); border-radius: 16px; padding: 18px 14px;
  text-align: center; background: #fff;
}
.price-card-grade {
  font-size: 12px; font-weight: 700; color: #667085;
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px;
}
.price-card-grade span { color: #98a2b3; }
.price-card-val { font-size: 26px; font-weight: 800; color: #06051A; letter-spacing: -.02em; line-height: 1; }
.price-card-unit { font-size: 11px; color: #98a2b3; margin-top: 6px; }
.prices-note { font-size: 11px; color: #98a2b3; margin-top: 16px; text-align: center; line-height: 1.5; }
@media (max-width: 560px) {
  .map-modal { padding: 12px; }
  .map-dialog { border-radius: 18px; }
  .prices-cards { grid-template-columns: 1fr; gap: 10px; }
  .price-card { display: flex; align-items: center; justify-content: space-between; text-align: left; padding: 14px 16px; }
  .price-card-grade { margin-bottom: 0; }
  .price-card-unit { display: none; }
}





/* ── HERO INLINE IMAGE WITH FADE ─────────────────────────────────────────── */
.hero-img-fade {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 160px;
  margin: 20px 0 18px;
  overflow: hidden;
  border-radius: 4px;
}
.hero-inline-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Fade all four edges into the background */
.hero-img-fade::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  var(--hero-bg, #f2f0ff) 0%, transparent 18%, transparent 82%, var(--hero-bg, #f2f0ff) 100%),
    linear-gradient(to bottom, var(--hero-bg, #f2f0ff) 0%, transparent 22%, transparent 78%, var(--hero-bg, #f2f0ff) 100%);
  pointer-events: none;
}
@media (max-width: 720px) {
  .hero-img-fade { height: 120px; max-width: 100%; }
}
@media (max-width: 390px) {
  .hero-img-fade { height: 90px; }
}


/* ── HERO GAS PRICES ────────────────────────────────────────────────────── */
.hero-gas-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.hero-gas-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.hero-gas-eyebrow strong {
  color: var(--ink);
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
}
.hero-gas-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  flex-shrink: 0;
  animation: gasDotPulse 2.4s ease-in-out infinite;
}
@keyframes gasDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .45; transform: scale(.75); }
}
.hero-gas-dot.inactive { background: #b0bac8; animation: none; }
.hero-gas-prices {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin: 14px 0 16px;
}
.hero-gas-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-gas-price {
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
}
.hero-gas-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.hero-gas-divider {
  width: 1px;
  height: 36px;
  background: rgba(6,5,26,.14);
  margin: 0 18px;
  flex-shrink: 0;
}

/* ── VEHICLE PREVIEW ────────────────────────────────────────────────────── */
.vehicle-preview-wrap {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.vehicle-preview {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--off, #f4f5f7);
  border: 3px solid var(--rule, #e4e4e8);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  flex-shrink: 0;
}
.vehicle-preview-overlay {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 260px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vehicle-preview-skeleton {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  border-radius: 50%;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── GAS PRICE UNAVAILABLE STATE ────────────────────────────────────────── */
.hero-gas-price.unavailable {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

/* ── GEOLOCATION BUTTON ─────────────────────────────────────────────────── */
.geo-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  border-radius: 8px;
  transition: background .15s, color .15s;
  padding: 0;
  flex-shrink: 0;
}
.geo-btn:hover { background: rgba(59,37,220,.07); }
.geo-btn.loading { animation: geoSpin .8s linear infinite; pointer-events: none; opacity: .6; }
@keyframes geoSpin { to { rotate: 1turn; } }
#vehicle-location { padding-right: 42px; }

/* ── HERO PURPLE DIVIDER ─────────────────────────────────────────────────── */
.hero-divider-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 520px;
  margin: 4px 0 0;
}
.hero-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(160,160,160,.25) 12%,
    rgba(160,160,160,.8) 40%,
    rgba(160,160,160,.9) 50%,
    rgba(160,160,160,.8) 60%,
    rgba(160,160,160,.25) 88%,
    transparent 100%
  );
  border-radius: 999px;
}
@media (max-width: 720px) {
  .hero-divider-wrap { max-width: 100%; }
  .hero-gas-prices { justify-content: center; }
  .hero-gas-header { justify-content: center; }
}

/* ── PANEL TABS ──────────────────────────────────────────────────────────── */
.panel-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  padding-bottom: 0;
  margin-bottom: 24px;
  position: relative;
}
.panel-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 44px;
  padding: 0 16px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #98a2b3;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  position: relative;
  transition: color .22s ease;
  white-space: nowrap;
  flex: 1;
  justify-content: center;
}
.panel-tab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform .28s cubic-bezier(.22,1,.36,1);
}
.panel-tab.active, .panel-tab[aria-selected="true"] {
  color: var(--ink);
  background: transparent;
}
.panel-tab.active::after, .panel-tab[aria-selected="true"]::after {
  transform: scaleX(1);
}
.panel-tab:hover:not(.active):not([aria-selected="true"]) {
  color: var(--ink);
}
.panel-tabs-border {
  height: 1px;
  background: rgba(6,5,26,.13);
  margin-bottom: 24px;
}
#panel-container { position: relative; overflow: hidden; }
.panel-pane {
  background: transparent;
  transition: opacity .28s ease, transform .28s cubic-bezier(.22,1,.36,1);
}
.panel-pane .booking-shell { padding: 0; }
.panel-pane .confirmation { padding: 48px 0; }
@media (max-width: 720px) {
  .panel-tab { font-size: 12px; height: 38px; padding: 0 10px; gap: 0; }
  .panel-tab svg { display: none; }
  .panel-tabs-border { margin-bottom: 20px; }
}


/* ── POST-ORDER ACCOUNT POPUP ── */
.account-popup-overlay {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(6,5,26,.5); align-items: center; justify-content: center;
}
.account-popup-overlay.open { display: flex; }
.account-popup {
  background: #fff; border-radius: 20px; width: min(480px, calc(100vw - 32px));
  padding: 36px 32px; box-shadow: 0 24px 64px rgba(0,0,0,.18);
  animation: slideUp .3s ease;
}
.account-popup h3 { font-size: 22px; font-weight: 600; letter-spacing: -.03em; margin-bottom: 8px; color: #06051A; }
.account-popup p { font-size: 14px; color: #667085; line-height: 1.65; margin-bottom: 24px; }
.account-popup-fields { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.account-popup-fields input {
  height: 48px; padding: 0 14px; border: 1.5px solid #e8ecf2; border-radius: 12px;
  font: 400 15px inherit; color: #06051A; background: #fafbfc; outline: none;
  transition: border-color .2s;
}
.account-popup-fields input:focus { border-color: rgba(59,37,220,.4); }
.account-popup-fields input.prefilled { background: #f0fdf4; border-color: #bbf7d0; color: #16a34a; }
.account-popup-btn {
  width: 100%; height: 52px; background: var(--blue); color: #fff; border: none;
  border-radius: 12px; font: 600 15px inherit; cursor: pointer; transition: background .15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.account-popup-btn:hover { background: var(--blue-hover); }
.account-popup-btn:disabled { opacity: .6; cursor: not-allowed; }
.account-popup-skip { text-align: center; margin-top: 14px; font-size: 13px; color: #667085; }
.account-popup-skip a { color: #667085; cursor: pointer; text-decoration: underline; }
.account-popup-benefits { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.account-popup-benefit { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #344054; }
.account-popup-benefit svg { flex-shrink: 0; color: #16a34a; }
#account-popup-success { display: none; text-align: center; padding: 16px 0; }
#account-popup-success .check { font-size: 40px; margin-bottom: 12px; }

