/* ═══════════════════════════════════════════════════════════════
   ON THE SPOT AUTO SPA — Design System v2 (Professional)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@400,500,700,800,900&f[]=satoshi@400,500,700&display=swap');

/* ─── TOKENS: LIGHT MODE ─────────────────────────────────────── */
:root {
  /* Surfaces */
  --bg:            #FFFFFF;
  --bg-secondary:  #F8FAFC;
  --bg-tertiary:   #F1F5F9;
  --bg-dark:       #0B1220;
  --bg-dark-2:     #111827;

  /* Text */
  --text:          #0F172A;
  --text-secondary:#475569;
  --text-muted:    #94A3B8;
  --text-inverse:  #F8FAFC;

  /* Brand */
  --primary:       #1D4ED8;
  --primary-hover: #1E40AF;
  --primary-light: #EFF6FF;
  --primary-dim:   rgba(29, 78, 216, 0.12);
  --accent:        #D97706;
  --accent-hover:  #B45309;
  --accent-light:  #FFFBEB;
  --accent-dim:    rgba(217, 119, 6, 0.12);

  /* Status */
  --success:       #059669;
  --success-light: #ECFDF5;
  --error:         #DC2626;
  --error-light:   #FEF2F2;
  --warning:       #D97706;
  --warning-light: #FFFBEB;

  /* Borders */
  --border:        #E2E8F0;
  --border-strong: #CBD5E1;
  --border-focus:  var(--primary);

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(15,23,42,0.05);
  --shadow-sm:  0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md:  0 4px 8px rgba(15,23,42,0.07), 0 2px 4px rgba(15,23,42,0.04);
  --shadow-lg:  0 10px 24px rgba(15,23,42,0.09), 0 4px 8px rgba(15,23,42,0.05);
  --shadow-xl:  0 24px 48px rgba(15,23,42,0.12), 0 8px 16px rgba(15,23,42,0.06);
  --shadow-2xl: 0 40px 80px rgba(15,23,42,0.15);

  /* Radii */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;
  --r-full:9999px;

  /* Typography */
  --font-display: 'Cabinet Grotesk', -apple-system, sans-serif;
  --font-body:    'Satoshi', -apple-system, sans-serif;

  /* Type Scale (fluid) */
  --text-xs:   clamp(0.7rem,  0.7rem  + 0.1vw, 0.75rem);
  --text-sm:   clamp(0.8rem,  0.8rem  + 0.15vw, 0.875rem);
  --text-base: clamp(0.9rem,  0.9rem  + 0.2vw, 1rem);
  --text-md:   clamp(1rem,    1rem    + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.1rem,  1.1rem  + 0.4vw, 1.25rem);
  --text-xl:   clamp(1.25rem, 1.25rem + 0.6vw, 1.5rem);
  --text-2xl:  clamp(1.5rem,  1.5rem  + 1vw, 2rem);
  --text-3xl:  clamp(1.875rem,1.875rem+ 1.5vw, 2.5rem);
  --text-4xl:  clamp(2.25rem, 2.25rem + 2vw, 3.25rem);
  --text-5xl:  clamp(2.75rem, 2.75rem + 2.5vw, 4.25rem);

  /* Spacing */
  --sp-1:  4px;  --sp-2:  8px;   --sp-3:  12px; --sp-4:  16px;
  --sp-5:  20px; --sp-6:  24px;  --sp-8:  32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px;  --sp-20: 80px; --sp-24: 96px; --sp-32: 128px;

  /* Layout */
  --max-w: 1200px;
  --max-w-sm: 720px;
  --max-w-xs: 560px;
  --header-h: 72px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;
}

/* ─── TOKENS: DARK MODE ──────────────────────────────────────── */
[data-theme="dark"] {
  --bg:            #0B1220;
  --bg-secondary:  #111827;
  --bg-tertiary:   #1E293B;
  --text:          #F1F5F9;
  --text-secondary:#94A3B8;
  --text-muted:    #64748B;
  --primary:       #3B82F6;
  --primary-hover: #60A5FA;
  --primary-light: #1E3A8A;
  --primary-dim:   rgba(59, 130, 246, 0.15);
  --accent:        #F59E0B;
  --accent-hover:  #FCD34D;
  --accent-light:  #1C0A00;
  --accent-dim:    rgba(245, 158, 11, 0.15);
  --border:        #1E293B;
  --border-strong: #334155;
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.2);
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:  0 4px 8px rgba(0,0,0,0.25);
  --shadow-lg:  0 10px 24px rgba(0,0,0,0.3);
  --shadow-xl:  0 24px 48px rgba(0,0,0,0.4);
}

/* ─── LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(var(--sp-5), 5vw, var(--sp-12));
}
.container--sm { max-width: var(--max-w-sm); }
.container--xs { max-width: var(--max-w-xs); }

.section {
  padding-block: clamp(var(--sp-16), 8vw, var(--sp-32));
}
.section--sm { padding-block: clamp(var(--sp-12), 5vw, var(--sp-20)); }
.section--dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
}
.section--gray { background: var(--bg-secondary); }

.grid { display: grid; gap: var(--sp-6); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
.display-1 { font-family: var(--font-display); font-size: var(--text-5xl); font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; }
.display-2 { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; }
.heading-1 { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
.heading-2 { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; letter-spacing: -0.015em; line-height: 1.2; }
.heading-3 { font-family: var(--font-display); font-size: var(--text-xl);  font-weight: 700; letter-spacing: -0.01em; line-height: 1.25; }
.heading-4 { font-family: var(--font-display); font-size: var(--text-lg);  font-weight: 600; line-height: 1.3; }
.body-lg    { font-size: var(--text-md); color: var(--text-secondary); line-height: 1.7; }
.body       { font-size: var(--text-base); color: var(--text-secondary); line-height: 1.65; }
.label      { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.price      { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }

/* Section header */
.section-header { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: var(--sp-12); }
.section-header .label { margin-bottom: var(--sp-3); display: block; }
.section-header h2 { margin-bottom: var(--sp-4); }
.section-header p { font-size: var(--text-md); color: var(--text-secondary); line-height: 1.7; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0 var(--sp-6);
  height: 48px;
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--dur-base) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 2px rgba(29,78,216,0.2), 0 4px 12px rgba(29,78,216,0.25);
}
.btn--primary:hover { background: var(--primary-hover); box-shadow: 0 2px 4px rgba(29,78,216,0.25), 0 8px 24px rgba(29,78,216,0.3); transform: translateY(-1px); }

.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(217,119,6,0.2), 0 4px 12px rgba(217,119,6,0.25);
}
.btn--accent:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 2px 4px rgba(217,119,6,0.3), 0 8px 24px rgba(217,119,6,0.3); }

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
  box-shadow: var(--shadow-xs);
}
.btn--outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-dim); }

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
}
.btn--ghost:hover { background: var(--bg-tertiary); color: var(--text); }

.btn--white {
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-md);
}
.btn--white:hover { background: var(--bg-secondary); transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.btn--lg { height: 56px; padding: 0 var(--sp-8); font-size: var(--text-base); border-radius: var(--r-lg); }
.btn--sm { height: 36px; padding: 0 var(--sp-4); font-size: var(--text-xs); border-radius: var(--r-sm); }
.btn--full { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

/* ─── CARD ───────────────────────────────────────────────────── */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  transition: box-shadow var(--dur-base) var(--ease), transform var(--dur-base) var(--ease), border-color var(--dur-base);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--border-strong);
}
.card--flat { box-shadow: none; }
.card--flat:hover { transform: none; }

/* ─── BADGE ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
}
.badge--primary { background: var(--primary-dim); color: var(--primary); }
.badge--accent  { background: var(--accent-dim);  color: var(--accent);  }
.badge--success { background: var(--success-light); color: var(--success); }
.badge--outline { border: 1px solid var(--border); color: var(--text-secondary); }

/* ─── TAG ─────────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

/* ─── DIVIDER ────────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-6);
}
.divider--accent { background: var(--accent); }
.divider--center { margin-inline: auto; }

/* ─── FORM ELEMENTS ──────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.form-group label .req { color: var(--error); margin-left: 2px; }

.input {
  width: 100%;
  height: 48px;
  padding: 0 var(--sp-4);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast);
}
.input:hover { border-color: var(--border-strong); }
.input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
  background: var(--bg);
}
.input::placeholder { color: var(--text-muted); }
.input.is-error { border-color: var(--error); }
.input.is-error:focus { box-shadow: 0 0 0 3px rgba(220,38,38,0.12); }

textarea.input { height: auto; padding: var(--sp-3) var(--sp-4); resize: vertical; min-height: 120px; }
select.input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px; cursor: pointer; }

.field-hint { font-size: var(--text-xs); color: var(--text-muted); margin-top: var(--sp-1); }
.field-error { font-size: var(--text-xs); color: var(--error); font-weight: 500; margin-top: var(--sp-1); display: flex; align-items: center; gap: 4px; }

/* ─── HEADER ─────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: all var(--dur-base) var(--ease);
}
[data-theme="dark"] .header {
  background: rgba(11,18,32,0.92);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  max-width: var(--max-w);
  width: 100%;
  box-sizing: border-box;
  margin-inline: auto;
  padding-inline: clamp(var(--sp-4), 4vw, var(--sp-12));
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text { line-height: 1; }
.logo-text .wordmark {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  display: block;
  white-space: nowrap;
}
.logo-text .sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
}

/* Navigation */
.nav { display: flex; align-items: center; gap: var(--sp-1); }
.nav-cta { display: none; }
.nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  transition: color var(--dur-fast), background var(--dur-fast);
  white-space: nowrap;
}
.nav a:hover { color: var(--text); background: var(--bg-tertiary); }
.nav a.active { color: var(--primary); background: var(--primary-dim); font-weight: 600; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }

/* Theme toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur-fast);
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--border-strong); color: var(--text); background: var(--bg-tertiary); }
.theme-toggle svg { width: 16px; height: 16px; }

/* Mobile nav toggle */
.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .nav, .header-actions .btn { display: none; }
  .menu-toggle { display: flex; }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: #0B1220;
    padding: var(--sp-6) var(--sp-5);
    gap: var(--sp-2);
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid var(--border);
  }
  .nav.is-open a {
    padding: var(--sp-4);
    font-size: var(--text-base);
    border-radius: var(--r-lg);
    border-bottom: 1px solid var(--border);
  }
  .nav.is-open .nav-cta {
    margin-top: var(--sp-4);
    display: block;
  }
  .nav.is-open .btn {
    display: flex;
    width: 100%;
    height: 52px;
    font-size: var(--text-base);
  }
}

/* Header scrolled state */
.header.scrolled {
  box-shadow: var(--shadow-md);
}

/* Page body offset for fixed header */
body { padding-top: var(--header-h); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-10);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--sp-12);
}
.footer-brand .logo-text .wordmark { color: #fff; }
.footer-brand .logo-text .sub { color: var(--primary); }
.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  margin-top: var(--sp-4);
  line-height: 1.65;
  max-width: 260px;
}
.footer-social { display: flex; gap: var(--sp-2); margin-top: var(--sp-6); }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--dur-fast);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.footer-social a svg { width: 15px; height: 15px; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col ul li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--dur-fast);
}
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  margin-top: var(--sp-16);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer-bottom p { font-size: var(--text-xs); color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: var(--sp-5); }
.footer-bottom-links a { font-size: var(--text-xs); color: rgba(255,255,255,0.35); transition: color var(--dur-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--bg-dark);
  color: #fff;
  min-height: clamp(600px, 85vh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 60%, rgba(29,78,216,0.25) 0%, transparent 60%),
              radial-gradient(ellipse 60% 40% at 80% 30%, rgba(217,119,6,0.12) 0%, transparent 50%),
              linear-gradient(135deg, #0B1220 0%, #0d1a35 50%, #0B1220 100%);
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-16);
}
.hero-left { display: flex; flex-direction: column; }
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: var(--sp-8);
}
.hero-card-float {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  width: 100%;
  max-width: 360px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.hcf-header {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #D97706;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hcf-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--sp-1);
}
.hcf-price {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--accent);
  margin-bottom: var(--sp-6);
  line-height: 1;
}
.hcf-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.hcf-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
}
.hcf-list li svg { flex-shrink: 0; }
.hcf-btn {
  display: block;
  width: 100%;
  padding: var(--sp-4);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: var(--r-lg);
  text-align: center;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.hcf-btn:hover { background: var(--accent-hover); transform: translateY(-1px); color: #fff; }
.hero-float-badge {
  position: absolute;
  bottom: var(--sp-4);
  left: -20px;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: var(--sp-3) var(--sp-4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.hfb-val {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
}
.hfb-sub {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 14px;
  border-radius: var(--r-full);
  background: rgba(29,78,216,0.2);
  border: 1px solid rgba(29,78,216,0.35);
  color: #93C5FD;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
}
.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: var(--sp-6);
  max-width: 720px;
}
.hero-title .accent { color: var(--accent); }
.hero-title .highlight {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.6);
}
.hero-desc {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: var(--sp-10);
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.hero-stats { display: flex; align-items: center; gap: var(--sp-8); margin-top: var(--sp-12); flex-wrap: wrap; }
.hero-stat-value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat-label { font-size: var(--text-xs); color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.04em; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

/* ─── SERVICE CARDS ──────────────────────────────────────────── */
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--dur-base) var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: var(--primary);
}
.service-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
  position: relative;
}
.service-card-badge {
  background: var(--primary);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: var(--sp-2) var(--sp-4);
}
.service-card-body { padding: var(--sp-8); flex: 1; display: flex; flex-direction: column; }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  background: var(--primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  color: var(--primary);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: var(--text-xl); font-family: var(--font-display); font-weight: 700; color: var(--text); margin-bottom: var(--sp-2); }
.service-card .tagline { font-size: var(--text-sm); color: var(--text-muted); font-style: italic; margin-bottom: var(--sp-4); }
.service-card .price-row { display: flex; align-items: baseline; gap: var(--sp-2); margin-bottom: var(--sp-6); padding-bottom: var(--sp-5); border-bottom: 1px solid var(--border); }
.service-card .price-from { font-size: var(--text-xs); color: var(--text-muted); font-weight: 500; }
.service-card .price-amount { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 900; color: var(--text); letter-spacing: -0.03em; }
.service-card .price-suffix { font-size: var(--text-sm); color: var(--text-muted); }
.service-card .inclusions { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); flex: 1; margin-bottom: var(--sp-8); }
.service-card .inclusions li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}
.service-card .inclusions li svg { flex-shrink: 0; margin-top: 2px; color: var(--success); width: 16px; height: 16px; }

/* ─── PRICING TABLE (vehicle upcharges) ───────────────────────── */
.price-table { width: 100%; border-collapse: collapse; }
.price-table th {
  text-align: left;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.price-table td {
  padding: var(--sp-4);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--bg-secondary); }
.price-table td:first-child { font-weight: 500; color: var(--text); }
.price-table td:last-child { font-family: var(--font-display); font-weight: 700; color: var(--text); text-align: right; white-space: nowrap; }
.price-table .base-row td { background: var(--primary-dim); }
.price-table .base-row td:first-child { color: var(--primary); font-weight: 600; }

/* ─── STATS ROW ──────────────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: var(--border); border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); }
.stat-item { background: var(--bg); padding: var(--sp-8) var(--sp-6); text-align: center; }
.stat-item .value { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 900; color: var(--text); letter-spacing: -0.03em; }
.stat-item .value .accent { color: var(--primary); }
.stat-item .label { font-size: var(--text-xs); color: var(--text-muted); margin-top: var(--sp-1); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }

/* ─── REVIEW CARDS ───────────────────────────────────────────── */
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: all var(--dur-base) var(--ease);
}
.review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.review-stars { display: flex; gap: 2px; }
.review-stars svg { width: 16px; height: 16px; color: #F59E0B; fill: #F59E0B; }
.review-quote { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; flex: 1; font-style: italic; }
.review-quote::before { content: '"'; font-size: 1.5em; color: var(--primary); line-height: 0; vertical-align: -0.3em; margin-right: 2px; font-style: normal; font-family: var(--font-display); }
.review-author { display: flex; align-items: center; gap: var(--sp-3); }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.review-info .name { font-size: var(--text-sm); font-weight: 600; color: var(--text); }
.review-info .meta { font-size: var(--text-xs); color: var(--text-muted); margin-top: 2px; }
.review-service { display: inline-flex; align-items: center; gap: 5px; background: var(--primary-dim); color: var(--primary); padding: 3px 8px; border-radius: var(--r-full); font-size: 10px; font-weight: 600; letter-spacing: 0.04em; margin-top: var(--sp-2); }

/* ─── ACCORDION ──────────────────────────────────────────────── */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg);
  transition: all var(--dur-fast);
}
.accordion-item + .accordion-item { margin-top: var(--sp-3); }
.accordion-item[open] { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary-dim); }

.accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-q { font-size: var(--text-base); font-weight: 600; color: var(--text); line-height: 1.4; }
.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: all var(--dur-fast);
  background: var(--bg-secondary);
}
.accordion-icon svg { width: 14px; height: 14px; transition: transform var(--dur-fast); }
.accordion-item[open] .accordion-icon { background: var(--primary); border-color: var(--primary); color: #fff; }
.accordion-item[open] .accordion-icon svg { transform: rotate(45deg); }
.accordion-body {
  padding: 0 var(--sp-6) var(--sp-6);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: var(--sp-5);
}

/* ─── STEPPER (Booking Wizard) ───────────────────────────────── */
.stepper { display: flex; align-items: flex-start; gap: 0; margin-bottom: var(--sp-12); }
.step-item { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; }
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(50% + 20px);
  right: calc(-50% + 20px);
  height: 1.5px;
  background: var(--border);
  transition: background var(--dur-base);
}
.step-item.done:not(:last-child)::after { background: var(--primary); }

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  border: 2px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--dur-base) var(--ease);
  position: relative;
  z-index: 1;
}
.step-item.active .step-circle {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 4px var(--primary-dim);
}
.step-item.done .step-circle {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.step-label {
  margin-top: var(--sp-2);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 72px;
}
.step-item.active .step-label { color: var(--primary); }
.step-item.done .step-label { color: var(--text-secondary); }

/* Booking layout */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--sp-8);
  align-items: start;
}
@media (max-width: 900px) {
  .booking-layout { grid-template-columns: 1fr; }
}

.booking-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  min-height: 480px;
}
.booking-step { display: none; }
.booking-step.active { display: block; }

.booking-step h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}
.booking-step .step-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--sp-8);
}
.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
}

/* Service options */
.service-options { display: flex; flex-direction: column; gap: var(--sp-3); }
.service-option {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-5);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: all var(--dur-base) var(--ease);
  background: var(--bg);
}
.service-option:hover { border-color: var(--primary); background: var(--primary-dim); }
.service-option.selected { border-color: var(--primary); background: var(--primary-dim); box-shadow: 0 0 0 1px var(--primary-dim); }
.service-option input[type="radio"] { display: none; }
.service-option .opt-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  transition: background var(--dur-fast);
}
.service-option.selected .opt-icon { background: rgba(29,78,216,0.15); }
.service-option .opt-icon svg { width: 20px; height: 20px; }
.service-option .opt-info { flex: 1; }
.service-option .opt-name { font-size: var(--text-sm); font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.service-option .opt-desc { font-size: var(--text-xs); color: var(--text-muted); margin-top: 2px; }
.service-option .opt-price { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 800; color: var(--text); letter-spacing: -0.02em; white-space: nowrap; }
.service-option.selected .opt-price { color: var(--primary); }

/* Vehicle options */
.vehicle-options { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
.vehicle-option {
  padding: var(--sp-4) var(--sp-4);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  cursor: pointer;
  text-align: center;
  transition: all var(--dur-base) var(--ease);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}
.vehicle-option:hover { border-color: var(--primary); background: var(--primary-dim); }
.vehicle-option.selected { border-color: var(--primary); background: var(--primary-dim); }
.vehicle-option input { display: none; }
.vehicle-option .v-icon { font-size: 26px; line-height: 1; }
.vehicle-option .v-name { font-size: var(--text-xs); font-weight: 700; color: var(--text); letter-spacing: -0.01em; line-height: 1.3; }
.vehicle-option .v-upcharge { font-size: var(--text-xs); color: var(--text-muted); font-weight: 500; }
.vehicle-option.selected .v-upcharge { color: var(--primary); }

/* Time slots */
.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-2); margin-top: var(--sp-4); }
.time-slot {
  padding: var(--sp-3) var(--sp-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--dur-fast);
  background: var(--bg);
}
.time-slot:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-dim); }
.time-slot.selected { border-color: var(--primary); background: var(--primary); color: #fff; }
.time-slot.disabled { opacity: 0.35; cursor: not-allowed; pointer-events: none; }

/* Booking sidebar */
.booking-sidebar { position: sticky; top: calc(var(--header-h) + var(--sp-6)); }
.sidebar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.sidebar-header {
  background: var(--bg-dark);
  color: #fff;
  padding: var(--sp-5) var(--sp-6);
}
.sidebar-header h3 { font-family: var(--font-display); font-size: var(--text-base); font-weight: 700; margin-bottom: var(--sp-1); }
.sidebar-header p { font-size: var(--text-xs); color: rgba(255,255,255,0.55); }
.sidebar-body { padding: var(--sp-6); }
.sidebar-line { display: flex; justify-content: space-between; align-items: center; font-size: var(--text-sm); padding: var(--sp-3) 0; border-bottom: 1px solid var(--border); }
.sidebar-line:last-child { border-bottom: none; }
.sidebar-line .label-text { color: var(--text-secondary); }
.sidebar-line .value-text { font-weight: 600; color: var(--text); text-align: right; }
.sidebar-total {
  padding: var(--sp-5) var(--sp-6);
  background: var(--bg-secondary);
  border-top: 2px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar-total .total-label { font-size: var(--text-sm); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.sidebar-total .total-amount { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 900; color: var(--text); letter-spacing: -0.03em; }
.sidebar-note { padding: var(--sp-4) var(--sp-6); font-size: var(--text-xs); color: var(--text-muted); line-height: 1.5; border-top: 1px solid var(--border); text-align: center; }

/* Confirm summary */
.confirm-summary {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--sp-6);
}
.confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--border);
  font-size: var(--text-sm);
}
.confirm-row:last-child { border-bottom: none; }
.confirm-row .c-label { color: var(--text-muted); font-weight: 500; }
.confirm-row .c-val { font-weight: 600; color: var(--text); }

/* Success screen */
.success-screen {
  text-align: center;
  padding: var(--sp-12) var(--sp-8);
  display: none;
}
.success-screen.visible { display: block; }
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--r-full);
  background: var(--success-light);
  border: 2px solid var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
}
.success-icon svg { color: var(--success); width: 32px; height: 32px; }

/* ─── PAYMENT FORM (Stripe) ──────────────────────────────────── */
.payment-form-wrapper {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  margin-bottom: var(--sp-6);
}
.payment-form-wrapper h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.payment-form-wrapper h3 svg { color: var(--success); width: 18px; height: 18px; }
#stripe-card-element, #payment-element {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px var(--sp-4);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
#stripe-card-element:focus-within, #payment-element:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}
.card-icons { display: flex; align-items: center; gap: var(--sp-2); margin-top: var(--sp-3); }
.card-icon { height: 22px; width: auto; border-radius: 4px; border: 1px solid var(--border); opacity: 0.8; }
.payment-security {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.payment-security svg { color: var(--success); width: 14px; height: 14px; flex-shrink: 0; }
#payment-error {
  color: var(--error);
  font-size: var(--text-sm);
  margin-top: var(--sp-3);
  display: none;
  align-items: center;
  gap: var(--sp-2);
}
#payment-error svg { width: 16px; height: 16px; flex-shrink: 0; }
#payment-error.visible { display: flex; }
.payment-methods { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; margin-bottom: var(--sp-5); }
.pay-method-btn {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 16px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--dur-fast);
  background: var(--bg);
}
.pay-method-btn.active { border-color: var(--primary); color: var(--primary); background: var(--primary-dim); }
.pay-method-btn svg { width: 18px; height: 18px; }

/* ─── MEMBERSHIP CARDS ───────────────────────────────────────── */
.membership-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0d1a35 100%);
  position: relative;
  overflow: hidden;
}
.membership-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(217,119,6,0.15) 0%, transparent 60%);
}
.membership-card {
  background: linear-gradient(135deg, #1D4ED8 0%, #1e40af 100%);
  border-radius: var(--r-2xl);
  padding: var(--sp-10);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.membership-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.05);
}
.membership-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -20px;
  width: 240px;
  height: 240px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.04);
}
.membership-card-inner { position: relative; z-index: 1; }
.membership-price {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin: var(--sp-3) 0;
}
.membership-price sup { font-size: 0.4em; vertical-align: super; }
.membership-price sub { font-size: 0.3em; font-weight: 500; color: rgba(255,255,255,0.7); vertical-align: baseline; }
.membership-perks { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); margin: var(--sp-8) 0; }
.membership-perks li { display: flex; align-items: center; gap: var(--sp-3); font-size: var(--text-sm); font-weight: 500; color: rgba(255,255,255,0.9); }
.membership-perks li svg { color: #86EFAC; width: 18px; height: 18px; flex-shrink: 0; }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); }
.compare-table th { padding: var(--sp-5) var(--sp-6); background: var(--bg-secondary); font-size: var(--text-sm); font-weight: 700; color: var(--text); text-align: center; border-bottom: 2px solid var(--border); }
.compare-table th:first-child { text-align: left; }
.compare-table th.member-col { background: var(--primary); color: #fff; }
.compare-table td { padding: var(--sp-4) var(--sp-6); font-size: var(--text-sm); color: var(--text-secondary); border-bottom: 1px solid var(--border); text-align: center; vertical-align: middle; }
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--text); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--bg-secondary); }
.compare-table .check { color: var(--success); font-size: 18px; }
.compare-table .cross { color: var(--text-muted); font-size: 18px; }
.compare-table td.member-col { background: var(--primary-dim); font-weight: 700; color: var(--primary); }

/* ─── WHY US / FEATURES ──────────────────────────────────────── */
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-xl);
  background: var(--primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  color: var(--primary);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  transition: all var(--dur-base) var(--ease);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--primary); }
.feature-card:hover .feature-icon { background: var(--primary); color: #fff; }
.feature-card h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--text); margin-bottom: var(--sp-3); }
.feature-card p { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.65; }

/* ─── HOURS BADGE ────────────────────────────────────────────── */
.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--sp-4); }
.hours-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  text-align: center;
}
.hours-item.open { border-color: var(--success); background: var(--success-light); }
.hours-item.closed { opacity: 0.5; }
.hours-day { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: var(--sp-2); }
.hours-item.open .hours-day { color: var(--success); }
.hours-item.open .hours-time { color: #0F172A; }
.hours-time { font-size: var(--text-sm); font-weight: 600; color: var(--text); }
.hours-item.closed .hours-time { color: var(--text-muted); font-weight: 400; }

/* ─── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(29,78,216,0.3) 0%, transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.65); }

/* ─── CONTACT PAGE ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-12);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info-item { display: flex; align-items: flex-start; gap: var(--sp-4); }
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-lg);
  background: var(--primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-text .c-title { font-size: var(--text-sm); font-weight: 700; color: var(--text); margin-bottom: 4px; }
.contact-info-text .c-value { font-size: var(--text-sm); color: var(--text-secondary); }

/* ─── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background: var(--bg-dark);
  padding: clamp(var(--sp-16), 6vw, var(--sp-24)) 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(29,78,216,0.2) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .label { color: rgba(255,255,255,0.5); margin-bottom: var(--sp-3); display: block; }
.page-hero h1 { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; color: #fff; margin-bottom: var(--sp-4); }
.page-hero p { font-size: var(--text-md); color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.7; }
.page-hero .breadcrumb { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--text-xs); color: rgba(255,255,255,0.4); margin-bottom: var(--sp-5); }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.4); transition: color var(--dur-fast); }
.page-hero .breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.6); font-weight: 500; }

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: none; }
[data-reveal="right"] { transform: none; }

/* ─── LOADING SPINNER ────────────────────────────────────────── */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── RESPONSIVE UTILITIES ───────────────────────────────────── */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; gap: var(--sp-10); }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .vehicle-options { grid-template-columns: 1fr; }
  .hero-stats { gap: var(--sp-5); }
  .stepper { overflow-x: auto; padding-bottom: var(--sp-3); }
  .step-label { display: none; }
}
@media (max-width: 560px) {
  .booking-panel { padding: var(--sp-5); }
  .service-option { gap: var(--sp-3); }
}

/* ═══════════════════════════════════════════════════════════════
   ENHANCED STYLES — Professional Redesign v3
   ═══════════════════════════════════════════════════════════════ */

/* ─── NAV BOOK NOW BUTTON — ACCENT COLORED ──────────────────── */
.header-actions .btn--primary,
.nav-cta .btn--primary {
  background: var(--accent);
  color: #fff !important;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 2px rgba(217,119,6,0.2), 0 4px 12px rgba(217,119,6,0.25);
}
.header-actions .btn--primary:hover,
.nav-cta .btn--primary:hover {
  background: var(--accent-hover);
  color: #fff !important;
  box-shadow: 0 2px 4px rgba(217,119,6,0.3), 0 8px 24px rgba(217,119,6,0.3);
  transform: translateY(-1px);
}
/* Mobile menu Book Now — larger and more prominent */
@media (max-width: 768px) {
  .nav-cta .btn--primary {
    background: var(--accent);
    color: #fff !important;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
    border: 2px solid rgba(255,255,255,0.15);
  }
}

/* ─── ANIMATED HERO GRADIENT ────────────────────────────────── */
@keyframes hero-gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.hero-bg-gradient {
  background: 
    radial-gradient(ellipse 80% 60% at 30% 60%, rgba(29,78,216,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(217,119,6,0.15) 0%, transparent 50%),
    linear-gradient(135deg, #0B1220 0%, #0d1a35 25%, #0f1e3d 50%, #0d1a35 75%, #0B1220 100%);
  background-size: 200% 200%;
  animation: hero-gradient-shift 12s ease infinite;
}

/* ─── ENHANCED CARD STYLES ──────────────────────────────────── */
.card,
.feature-card,
.review-card {
  box-shadow: var(--shadow-sm);
}
.card:hover,
.feature-card:hover,
.review-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

/* ─── BETTER BUTTON STYLES ──────────────────────────────────── */
.btn--accent {
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  box-shadow: 0 2px 4px rgba(217,119,6,0.3), 0 6px 16px rgba(217,119,6,0.2);
}
.btn--accent:hover {
  background: linear-gradient(135deg, #B45309 0%, #92400E 100%);
  box-shadow: 0 4px 8px rgba(217,119,6,0.35), 0 12px 28px rgba(217,119,6,0.25);
}
.btn--primary {
  background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
}

/* ─── AREAS WE SERVE SECTION ────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-4);
}
.area-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
  transition: all var(--dur-base) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
}
.area-card:hover {
  border-color: var(--primary);
  background: var(--primary-dim);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.area-card svg { color: var(--primary); flex-shrink: 0; }
.area-card span {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
}

/* ─── ENHANCED SERVICE CARDS (services page) ────────────────── */
.service-card {
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  box-shadow: 0 20px 40px rgba(15,23,42,0.12), 0 8px 16px rgba(15,23,42,0.06);
  transform: translateY(-6px);
}
.service-card.featured {
  box-shadow: 0 0 0 2px var(--primary), var(--shadow-lg);
}

/* ─── ENHANCED PRICING TABLE ────────────────────────────────── */
.price-table-wrapper {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table-wrapper .price-table th {
  background: var(--bg-dark);
  color: #fff;
  padding: var(--sp-4) var(--sp-5);
}
.price-table-wrapper .price-table td {
  padding: var(--sp-4) var(--sp-5);
}

/* ─── MEMBERSHIP ENHANCED ───────────────────────────────────── */
.membership-card {
  background: linear-gradient(135deg, #1D4ED8 0%, #1e40af 50%, #1e3a8a 100%);
  box-shadow: 0 20px 60px rgba(29,78,216,0.3), 0 8px 24px rgba(29,78,216,0.2);
}
.membership-value-card {
  background: var(--bg);
  border: 2px solid var(--primary);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.membership-value-card .value-math {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text);
  line-height: 1.8;
}
.membership-value-card .value-math .highlight {
  color: var(--primary);
  font-size: var(--text-2xl);
  font-weight: 900;
}

/* ─── FAQ ENHANCED ──────────────────────────────────────────── */
.faq-category {
  margin-bottom: var(--sp-10);
}
.faq-category-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.accordion-item {
  box-shadow: var(--shadow-xs);
}
.accordion-item[open] {
  box-shadow: var(--shadow-md);
}

/* ─── CONTACT FORM ENHANCED ─────────────────────────────────── */
.contact-form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-md);
}
.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--sp-2);
}
.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-10);
}
.form-success.visible {
  display: block;
}
.form-success .success-icon {
  margin-bottom: var(--sp-4);
}

/* ─── CONFIRMATION PAGE ─────────────────────────────────────── */
.confirmation-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--sp-12);
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 640px;
  margin-inline: auto;
}
.confirmation-checkmark {
  width: 80px;
  height: 80px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, #059669 0%, #10B981 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  box-shadow: 0 8px 24px rgba(5,150,105,0.3);
}
.confirmation-checkmark svg {
  color: #fff;
  width: 36px;
  height: 36px;
}

/* ─── BOOKING VISUAL POLISH ─────────────────────────────────── */
.booking-panel {
  box-shadow: var(--shadow-md);
}
.sidebar-card {
  box-shadow: var(--shadow-md);
}

/* ─── IMPROVED MOBILE RESPONSIVENESS ────────────────────────── */
@media (max-width: 560px) {
  .areas-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-header h2 {
    font-size: var(--text-2xl);
  }
  .contact-form-card {
    padding: var(--sp-6);
  }
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE-FIRST COMPREHENSIVE FIXES
   ═══════════════════════════════════════════════════════════════ */

/* Prevent horizontal overflow on all screens */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
*, *::before, *::after {
  box-sizing: border-box;
  min-width: 0;
}

/* ─── TABLET (≤900px) ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .container { padding-inline: var(--sp-5); }

  /* Grids → 1 column */
  .services-grid,
  .reviews-grid,
  .features-grid,
  .areas-grid,
  .faq-grid,
  .membership-grid { grid-template-columns: 1fr !important; }

  /* Membership card full width */
  .membership-card { max-width: 100%; }

  /* Page hero font scale */
  .page-hero h1 { font-size: var(--text-3xl) !important; }

  /* Hero stats row → wrap */
  .hero-stats { flex-wrap: wrap; gap: var(--sp-4); }

  /* Sidebar below steps on mobile */
  .booking-sidebar { order: 2; }
}

/* ─── PHONE (≤600px) ──────────────────────────────────────────── */
@media (max-width: 600px) {
  /* Container padding */
  .container { padding-inline: var(--sp-4); }

  /* Sections */
  .section, .section--sm { padding-block: var(--sp-12); }

  /* Headings */
  .section-header h2 { font-size: var(--text-2xl) !important; }
  .page-hero h1 { font-size: var(--text-2xl) !important; }

  /* Service option cards — stack icon + text neatly */
  .service-option {
    flex-direction: row;
    align-items: flex-start;
    padding: var(--sp-4);
    gap: var(--sp-3);
  }
  .opt-icon { width: 36px; height: 36px; flex-shrink: 0; }
  .opt-name { font-size: var(--text-sm); }
  .opt-price { font-size: var(--text-sm); }
  .opt-desc { font-size: 12px; }

  /* Booking panel */
  .booking-panel { padding: var(--sp-4) !important; }
  .booking-step h2 { font-size: var(--text-xl) !important; }

  /* Steps label — hide on smallest */
  .stepper { gap: var(--sp-2); }
  .step-circle { width: 28px; height: 28px; font-size: 11px; }

  /* Vehicle options → 1 column */
  .vehicle-options { grid-template-columns: 1fr !important; }

  /* Time slots → 2 columns */
  .time-slots { grid-template-columns: repeat(2, 1fr); }

  /* Payment form wrapper */
  .payment-form-wrapper { padding: var(--sp-4); }

  /* Booking nav buttons */
  .booking-nav { flex-wrap: wrap; gap: var(--sp-3); }
  .booking-nav .btn { flex: 1; min-width: 120px; text-align: center; justify-content: center; }

  /* Confirm summary */
  .confirm-row { flex-wrap: wrap; gap: var(--sp-1); }
  .c-label, .c-val { font-size: var(--text-sm); }

  /* Reviews */
  .review-card { padding: var(--sp-5); }
  .reviews-grid { grid-template-columns: 1fr !important; }

  /* FAQ */
  .faq-accordion summary { padding: var(--sp-4); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-brand { margin-bottom: var(--sp-6); }

  /* Hero float badge */
  .hero-float-badge { 
    padding: var(--sp-3) var(--sp-4);
    font-size: var(--text-xs);
    right: var(--sp-4);
  }

  /* Membership value card */
  .membership-value-card { padding: var(--sp-5); }
  .membership-price sup { font-size: var(--text-xl); }
  .membership-price { font-size: var(--text-4xl); }

  /* Pay method buttons */
  .pay-method-btn { font-size: var(--text-xs); padding: var(--sp-3) var(--sp-3); }

  /* Forms */
  .form-row { grid-template-columns: 1fr !important; }
  input, select, textarea { font-size: 16px !important; } /* Prevents iOS zoom */

  /* Services page feature rows */
  .service-row, .service-row.reverse { flex-direction: column !important; }

  /* Confirmation page */
  .confirm-summary { margin-inline: 0; }

  /* Success screen */
  .success-icon { width: 60px; height: 60px; }
}

/* ─── TINY PHONE (≤380px) ─────────────────────────────────────── */
@media (max-width: 380px) {
  .container { padding-inline: var(--sp-3); }
  .btn { font-size: var(--text-xs); padding: var(--sp-3) var(--sp-4); }
  .hero-float-badge { display: none; }
  .step-item { flex: 0 0 auto; }
  .booking-nav .btn { font-size: 13px; }
}

/* ─── PAYMENT STEP BUTTON — FULL WIDTH ON MOBILE ─────────────── */
@media (max-width: 768px) {
  #step-5 .booking-nav {
    flex-direction: column;
    align-items: stretch;
  }
  #step-5 .booking-nav #s5-pay-link,
  #step-5 .booking-nav #s5-pay,
  #step-5 .booking-nav #s5-back {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: center;
    text-align: center;
  }
}

/* ─── DATE INPUT OVERFLOW FIX ────────────────────────────────── */
input[type="date"].input,
input[type="date"] {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.booking-panel {
  overflow: hidden;
}

/* ─── IOS HAMBURGER NAV FIX ──────────────────────────────────── */
@media (max-width: 900px) {
  /* Cover the full screen from top (header sits on top via z-index) */
  .nav.is-open {
    top: 0 !important;
    padding-top: calc(var(--header-h) + var(--sp-4)) !important;
    background: #0B1220 !important;
    z-index: 9999 !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/* ─── HEADER ABOVE NAV OVERLAY ON IOS ───────────────────────── */
.header {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 10000 !important;
}



/* ─── CHECKOUT BUTTON — BIGGER ON MOBILE ─────────────────────── */
#s5-pay-link {
  display: none; /* JS controls this */
}
@media (max-width: 600px) {
  #step-5 .booking-nav {
    flex-direction: column;
    gap: var(--sp-3);
  }
  #s5-pay-link {
    width: 100% !important;
    font-size: 17px !important;
    padding: 18px 24px !important;
    text-align: center;
  }
  #step-5 #s5-back {
    width: 100%;
    justify-content: center;
  }
}

/* ─── FOOTER SOCIAL ICONS ────────────────────────────────────── */
.footer-social {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}