/* ============================================================
   LEASE LANDING PAGE — Design Tokens & Component Styles
   Art Direction: Premium automotive, dark-luxury meets clean trust
   Palette: Deep charcoal/navy base, warm ivory light, teal-gold accents
   ============================================================ */

/* --- Type Scale (Fluid) --- */
:root {
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* --- Spacing (4px base) --- */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* --- Radius --- */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* --- Transitions --- */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* --- Content Widths --- */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  /* --- Fonts --- */
  --font-display: 'General Sans', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;
}

/* ============================================================
   LIGHT MODE (default)
   Warm ivory surfaces, deep charcoal text, teal CTA, gold accents
   ============================================================ */
:root, [data-theme="light"] {
  --color-bg:             #f5f4f0;
  --color-surface:        #ffffff;
  --color-surface-2:      #fafaf8;
  --color-surface-offset: #eceae4;
  --color-divider:        #ddd9d2;
  --color-border:         #d0ccc4;

  --color-text:           #1a1a1a;
  --color-text-muted:     #6b6960;
  --color-text-faint:     #a8a59e;
  --color-text-inverse:   #f5f4f0;

  --color-primary:        #0a7a7a;
  --color-primary-hover:  #086464;
  --color-primary-active: #064e4e;
  --color-primary-light:  #e0f2f2;

  --color-accent:         #c9952a;
  --color-accent-hover:   #b3841f;

  --shadow-sm: 0 1px 2px oklch(0.2 0.01 80 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.2 0.01 80 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.2 0.01 80 / 0.12);

  --hero-gradient: linear-gradient(135deg, #1a2332 0%, #0d1a2a 50%, #142030 100%);
  --hero-text: #f0efe9;
  --hero-text-muted: #b0afaa;
}

/* ============================================================
   DARK MODE
   Deep charcoal/navy surfaces, warm light text, bright teal CTA
   ============================================================ */
[data-theme="dark"] {
  --color-bg:             #111318;
  --color-surface:        #181a20;
  --color-surface-2:      #1e2028;
  --color-surface-offset: #14161c;
  --color-divider:        #2a2c34;
  --color-border:         #33353e;

  --color-text:           #e2e0da;
  --color-text-muted:     #8a887f;
  --color-text-faint:     #55544e;
  --color-text-inverse:   #111318;

  --color-primary:        #3db5b5;
  --color-primary-hover:  #2a9e9e;
  --color-primary-active: #1f8787;
  --color-primary-light:  #1a2e2e;

  --color-accent:         #daa740;
  --color-accent-hover:   #c99530;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);

  --hero-gradient: linear-gradient(135deg, #0a0f18 0%, #0d1420 50%, #080d14 100%);
  --hero-text: #e8e7e1;
  --hero-text-muted: #9a998f;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #111318;
    --color-surface:        #181a20;
    --color-surface-2:      #1e2028;
    --color-surface-offset: #14161c;
    --color-divider:        #2a2c34;
    --color-border:         #33353e;
    --color-text:           #e2e0da;
    --color-text-muted:     #8a887f;
    --color-text-faint:     #55544e;
    --color-text-inverse:   #111318;
    --color-primary:        #3db5b5;
    --color-primary-hover:  #2a9e9e;
    --color-primary-active: #1f8787;
    --color-primary-light:  #1a2e2e;
    --color-accent:         #daa740;
    --color-accent-hover:   #c99530;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
    --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
    --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
    --hero-gradient: linear-gradient(135deg, #0a0f18 0%, #0d1420 50%, #080d14 100%);
    --hero-text: #e8e7e1;
    --hero-text-muted: #9a998f;
  }
}

/* ============================================================
   GLOBAL HELPERS
   ============================================================ */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.container--narrow {
  max-width: var(--content-default);
}

.section-padding {
  padding-block: clamp(var(--space-10), 6vw, var(--space-24));
}

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  border-radius: var(--radius-sm);
  z-index: 999;
  text-decoration: none;
}
.skip-link:focus { top: var(--space-2); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header--hidden { transform: translateY(-100%); }
.site-header--scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
}
.logo svg { width: 36px; height: 36px; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
}

.desktop-nav { display: none; }
@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: var(--space-6);
  }
}

.nav-link {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  padding: var(--space-1) 0;
  position: relative;
}
.nav-link:hover, .nav-link:focus { color: var(--color-text); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-interactive);
}
.nav-link:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Theme toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
}
.theme-toggle:hover { color: var(--color-text); background: var(--color-surface-offset); }

/* Hamburger */
.mobile-menu-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

.hamburger-icon {
  width: 24px;
  height: 18px;
  position: relative;
}
.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.hamburger-icon span:nth-child(1) { top: 0; }
.hamburger-icon span:nth-child(2) { top: 8px; }
.hamburger-icon span:nth-child(3) { top: 16px; }

.mobile-menu-btn[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  top: 8px; transform: rotate(45deg);
}
.mobile-menu-btn[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  top: 8px; transform: rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100dvh - 64px);
  height: calc(100vh - 64px);
  background: var(--color-bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: var(--space-8) var(--space-6);
  gap: var(--space-2);
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}
.mobile-nav--open {
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
}
.mobile-nav a {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-divider);
}

@media (min-width: 1024px) { .mobile-nav { display: none !important; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-6);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition: all var(--transition-interactive);
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}
.btn--primary:hover { background: var(--color-primary-hover); }
.btn--primary:active { background: var(--color-primary-active); transform: scale(0.98); }

.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.btn--secondary:hover {
  background: var(--color-primary-light);
}

.btn--hero {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-muted);
  padding: var(--space-2) var(--space-4);
}
.btn--ghost:hover { color: var(--color-text); background: var(--color-surface-offset); }

.btn--header {
  display: none;
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-xs);
}
@media (min-width: 1024px) { .btn--header { display: inline-flex; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--hero-gradient);
  color: var(--hero-text);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, oklch(0.35 0.08 200 / 0.25), transparent),
    radial-gradient(ellipse 50% 50% at 20% 80%, oklch(0.25 0.06 60 / 0.15), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-8);
  align-items: center;
  min-height: 75vh;
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
}
@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1fr 1fr; min-height: 80vh; }
}

.hero-content { max-width: 600px; }

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}

.hero-sub {
  font-size: var(--text-base);
  color: var(--hero-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-6);
  max-width: 50ch;
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-6);
  margin-bottom: var(--space-8);
  font-size: var(--text-sm);
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--hero-text-muted);
}
.hero-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}
[data-theme="dark"] .hero-bullets li::before,
:root:not([data-theme]) .hero-bullets li::before {
  background: var(--color-primary);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero-trust {
  margin-top: var(--space-6);
  font-size: var(--text-xs);
  color: oklch(from var(--hero-text-muted) l c h / 0.6);
  max-width: 55ch;
}

/* Hero visual placeholder (gradient + shapes) */
.hero-visual {
  display: none;
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, oklch(0.25 0.04 220 / 0.5), oklch(0.2 0.03 200 / 0.3));
}
@media (min-width: 768px) { .hero-visual { display: block; } }

.hero-visual-glow {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(ellipse at center, oklch(0.4 0.1 190 / 0.15), transparent 60%);
  animation: hero-pulse 8s ease-in-out infinite alternate;
}

@keyframes hero-pulse {
  0% { transform: translate(-5%, -5%) scale(1); }
  100% { transform: translate(5%, 5%) scale(1.05); }
}

.hero-visual-car {
  position: absolute;
  bottom: 10%;
  left: 5%;
  right: 5%;
  height: 60%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  padding-block: var(--space-8);
}
@media (min-width: 768px) {
  .trust-strip-inner { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.trust-item-icon {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
}
.trust-item-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--color-bg); }

.section-header {
  text-align: left;
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-16));
  max-width: 600px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}
.section-header p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

.steps-grid {
  display: grid;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
}

.step-card {
  position: relative;
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
}

.step-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: oklch(from var(--color-primary) l c h / 0.15);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.step-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us { background: var(--color-surface-offset); }

.why-grid {
  display: grid;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

.why-card {
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
}
.why-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.why-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================================
   LEASE CATEGORIES
   ============================================================ */
.lease-categories { background: var(--color-bg); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (min-width: 768px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
}

.category-card {
  padding: var(--space-5);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  text-align: center;
  transition: all var(--transition-interactive);
}
.category-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.category-card-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-3);
  color: var(--color-primary);
}
.category-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
}
.category-support {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 65ch;
}

/* ============================================================
   QUALIFICATION
   ============================================================ */
.qualification { background: var(--color-surface-offset); }

.qual-content {
  display: grid;
  gap: var(--space-8);
  align-items: start;
}
@media (min-width: 768px) {
  .qual-content { grid-template-columns: 1fr 1fr; }
}

.qual-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.qual-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.6;
}
.qual-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary);
}

.qual-note {
  padding: var(--space-5);
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================================
   LEAD FORM
   ============================================================ */
.lead-form-section {
  background: var(--color-bg);
}

.form-wrapper {
  max-width: 640px;
  margin-inline: auto;
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}

.form-step-tabs {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-6);
}
.form-step-tab {
  flex: 1;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--color-divider);
  transition: background var(--transition-interactive);
}
.form-step-tab--active {
  background: var(--color-primary);
}

.form-step { display: none; }
.form-step--active { display: block; }

.form-step-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-5);
}

.form-group {
  margin-bottom: var(--space-4);
}
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-1);
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-6);
  gap: var(--space-3);
}
.form-nav .btn { flex: 1; }

.form-reassurance {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
  line-height: 1.6;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--color-surface-offset); }

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-5);
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  background: none;
  border: none;
  gap: var(--space-3);
}
.faq-question:hover { background: oklch(from var(--color-text) l c h / 0.02); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-text-muted);
}
.faq-item--open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner {
  padding: 0 var(--space-5) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--hero-gradient);
  color: var(--hero-text);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, oklch(0.35 0.08 200 / 0.2), transparent);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}
.final-cta p {
  font-size: var(--text-base);
  color: var(--hero-text-muted);
  margin-bottom: var(--space-6);
  max-width: 50ch;
  margin-inline: auto;
}
.final-cta .sub-line {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: oklch(from var(--hero-text-muted) l c h / 0.6);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-10);
}

.footer-grid {
  display: grid;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-top: var(--space-3);
  max-width: 35ch;
}

.footer-links h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: var(--space-2); }
.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--color-primary); }

.footer-bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.footer-bottom a {
  color: var(--color-text-faint);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--color-primary); }

.footer-compliance {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  line-height: 1.6;
  max-width: 65ch;
}

/* ============================================================
   HEADER PHONE LINK
   ============================================================ */
.header-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all var(--transition-interactive);
}
.header-phone-link:hover {
  color: var(--color-primary);
  background: var(--color-surface-offset);
}

/* ============================================================
   MOBILE NAV CONTACT LINKS
   ============================================================ */
.mobile-nav-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
}
.mobile-nav-contact-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0 !important;
  font-size: var(--text-sm) !important;
  font-weight: 500;
  color: var(--color-primary) !important;
  text-decoration: none;
  border-bottom: none !important;
}
.mobile-nav-contact-link:hover {
  color: var(--color-primary-hover) !important;
}

/* ============================================================
   DIRECT CONTACT STRIP
   ============================================================ */
.contact-strip {
  background: var(--color-surface-offset);
}
.contact-strip-grid {
  display: grid;
  gap: var(--space-4);
  max-width: 800px;
  margin-inline: auto;
}
@media (min-width: 640px) {
  .contact-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-interactive);
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}
.contact-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
}
.contact-card-icon svg {
  width: 22px;
  height: 22px;
}
.contact-card-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.contact-card-value {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================================
   FORM FIELD VALIDATION
   ============================================================ */
.field-error {
  border-color: #d44 !important;
  box-shadow: 0 0 0 3px rgba(221, 68, 68, 0.15) !important;
}
.required-star {
  color: #d44;
  font-weight: 400;
}

/* Honeypot hidden field */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   FORM SUCCESS STATE
   ============================================================ */
.form-success-inner {
  text-align: center;
  padding: var(--space-6) 0;
}
.form-success-icon {
  color: var(--color-primary);
  margin: 0 auto var(--space-4);
  display: block;
}
.form-success-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.form-success-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 40ch;
  margin: 0 auto;
  line-height: 1.65;
}
.form-success-divider {
  width: 48px;
  height: 1px;
  background: var(--color-divider);
  margin: var(--space-6) auto;
}
.form-success-fallback-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.form-success-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}
.form-success-contact-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  background: var(--color-primary-light);
  transition: all var(--transition-interactive);
}
.form-success-contact-link:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ============================================================
   WHAT HAPPENS NEXT
   ============================================================ */
.next-steps {
  background: var(--color-bg);
}
.next-steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  max-width: 640px;
  margin-inline: auto;
}
.next-step-item {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}
.next-step-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
}
.next-step-icon svg {
  width: 24px;
  height: 24px;
}
.next-step-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
  color: var(--color-text);
}
.next-step-content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================================
   FINAL CTA ACTIONS
   ============================================================ */
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}
.final-cta-call {
  border-color: oklch(from var(--hero-text) l c h / 0.3);
  color: var(--hero-text);
}
.final-cta-call:hover {
  background: oklch(from var(--hero-text) l c h / 0.1);
}

/* ============================================================
   STICKY MOBILE CTA (UPGRADED)
   ============================================================ */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: var(--space-3) var(--space-4);
  background: oklch(from var(--color-bg) l c h / 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid oklch(from var(--color-text) l c h / 0.08);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-mobile-cta--visible { transform: translateY(0); }
.sticky-mobile-cta-inner {
  display: flex;
  gap: var(--space-2);
}
.sticky-cta-form-btn {
  flex: 1;
}
.sticky-cta-call-btn {
  flex-shrink: 0;
  width: 48px;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) { .sticky-mobile-cta { display: none; } }

/* ============================================================
   REVEAL CLASS
   ============================================================ */
.reveal,
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   FOOTER BOTTOM EXTRA SPACE FOR STICKY CTA ON MOBILE
   ============================================================ */
@media (max-width: 1023px) {
  .site-footer { padding-bottom: calc(var(--space-10) + 70px); }
}

/* ============================================================
   COMPLIANCE PAGES (Privacy Policy & Terms of Use)
   ============================================================ */
.compliance-page {
  padding-top: calc(var(--space-32) + var(--space-8));
}

.compliance-header {
  margin-bottom: var(--space-10);
}

.compliance-header h1 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.compliance-effective-date {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.compliance-content {
  line-height: 1.75;
  color: var(--color-text);
}

.compliance-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}

.compliance-content h2:first-of-type {
  margin-top: var(--space-6);
}

.compliance-content p {
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
  max-width: 65ch;
}

.compliance-content ul {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
  list-style: disc;
}

.compliance-content ul li {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
  max-width: 65ch;
}

.compliance-content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.compliance-content a:hover {
  color: var(--color-primary-hover);
}

.compliance-contact-list {
  list-style: none !important;
  padding-left: 0 !important;
}

.compliance-contact-list li {
  padding: var(--space-2) 0;
}

/* ============================================================
   CONSENT CHECKBOX
   ============================================================ */
.form-consent {
  margin-top: var(--space-6);
  margin-bottom: var(--space-2);
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  position: relative;
  line-height: 1.5;
}

.consent-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.consent-checkmark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  transition: all var(--transition-interactive);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.consent-checkmark::after {
  content: '';
  display: none;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

.consent-label input[type="checkbox"]:checked + .consent-checkmark {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.consent-label input[type="checkbox"]:checked + .consent-checkmark::after {
  display: block;
}

.consent-label input[type="checkbox"]:focus-visible + .consent-checkmark {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.consent-text {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.consent-text a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-text a:hover {
  color: var(--color-primary-hover);
}

/* Consent error state */
.consent-error .consent-checkmark {
  border-color: #dc3545;
}
.consent-error .consent-text {
  color: #dc3545;
}
