/* ============================================================
   PROTOTYPE AUTO GLASS — Premium Design System v3
   Human, crafted, automotive — not SaaS template
   ============================================================ */

/* --------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------- */
:root {
  /* Brand — Deep professional navy, not startup electric blue */
  --color-primary:        #0f2557;
  --color-primary-dk:     #091c42;
  --color-primary-lt:     #4f8ef7;
  --color-primary-ghost:  rgba(15,37,87,0.08);
  --color-primary-glow:   rgba(15,37,87,0.28);

  /* Accent — warm amber, used sparingly */
  --color-accent:         #d97706;
  --color-accent-lt:      #f59e0b;
  --color-accent-ghost:   rgba(217,119,6,0.10);
  --color-success:        #059669;
  --color-success-ghost:  rgba(5,150,105,0.10);

  /* Ink scale — GitHub-inspired dark neutrals */
  --color-ink-900: #0d1117;
  --color-ink-800: #161b22;
  --color-ink-700: #21262d;
  --color-ink-600: #30363d;
  --color-ink-500: #484f58;
  --color-ink-400: #6e7681;
  --color-ink-300: #8b949e;
  --color-ink-200: #c9d1d9;
  --color-ink-100: #e6edf3;
  --color-ink-50:  #f0f6fc;

  /* Surfaces */
  --surface-base:   #ffffff;
  --surface-subtle: #f7f8fb;   /* near-neutral, no blue cast */
  --surface-dark:   #080e1a;
  --surface-dark-2: #0d1528;
  --surface-dark-3: #111d35;

  /* Typography — Space Grotesk (distinctive, premium) + DM Sans (warm, readable) */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-hero: clamp(2.6rem, 5vw, 3.75rem);
  --text-page: clamp(1.9rem, 3.5vw, 2.75rem);

  --weight-regular:   400;
  --weight-medium:    500;
  --weight-semibold:  600;
  --weight-bold:      700;
  --weight-extrabold: 800;

  --leading-tight:   1.1;
  --leading-snug:    1.3;
  --leading-normal:  1.6;
  --leading-relaxed: 1.75;

  /* 8px spacing grid */
  --space-1:       0.25rem;
  --space-2:       0.5rem;
  --space-3:       0.75rem;
  --space-4:       1rem;
  --space-5:       1.25rem;
  --space-6:       1.5rem;
  --space-7:       1.75rem;
  --space-8:       2rem;
  --space-10:      2.5rem;
  --space-12:      3rem;
  --space-16:      4rem;
  --space-20:      5rem;
  --space-24:      6rem;
  --space-section: 7rem;

  /* Border radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --radius-pill: 9999px;

  /* Shadows — tuned per surface */
  --shadow-xs:     0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:     0 4px 12px rgba(0,0,0,0.07);
  --shadow-md:     0 8px 28px rgba(0,0,0,0.10);
  --shadow-lg:     0 20px 50px rgba(0,0,0,0.14);
  --shadow-xl:     0 30px 70px rgba(0,0,0,0.20);
  --shadow-card:   0 2px 4px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.07);
  --shadow-blue:   0 8px 28px rgba(15,37,87,0.32);
  --shadow-blue-lg:0 16px 48px rgba(15,37,87,0.42);
  --shadow-dark:   0 20px 60px rgba(0,0,0,0.5);

  /* Easing — smooth deceleration curve (ease-out-quint feel) */
  --ease-fast:   0.22s cubic-bezier(0.22, 1, 0.36, 1);
  --ease-base:   0.38s cubic-bezier(0.22, 1, 0.36, 1);
  --ease-slow:   0.60s cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: 0.50s cubic-bezier(0.34, 1.4,  0.64, 1);

  /* Layout */
  --container-max: 1240px;
  --navbar-h:  80px;
  --topbar-h:  44px;

  /* Z-depth shadow system */
  --shadow-z1: 0 1px 2px rgba(0,0,0,0.05), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-z2: 0 2px 4px rgba(0,0,0,0.07), 0 6px 18px rgba(0,0,0,0.08);
  --shadow-z3: 0 4px 8px rgba(0,0,0,0.09), 0 12px 32px rgba(0,0,0,0.10), 0 24px 48px rgba(0,0,0,0.08);
  --shadow-z4: 0 6px 12px rgba(0,0,0,0.12), 0 20px 48px rgba(0,0,0,0.14), 0 40px 72px rgba(0,0,0,0.10);
  --shadow-inset-top:      inset 0 1px 0 rgba(255,255,255,0.8);
  --shadow-inset-dark-top: inset 0 1px 0 rgba(255,255,255,0.07);
  --shadow-inset-press:    inset 0 2px 4px rgba(0,0,0,0.12);
}

/* --------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--topbar-h) + var(--navbar-h) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: #1c2433;
  background: var(--surface-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* --------------------------------------------------------
   3. LAYOUT
   -------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.section          { padding-block: var(--space-section); }
.section--sm      { padding-block: var(--space-20); }
.section--subtle  { background: var(--surface-subtle); }
.section--dark    { background: var(--surface-dark); }
.section--dark2   { background: var(--surface-dark-2); }

.grid-2    { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); }
.grid-3    { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-4    { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.grid-hero { display: grid; grid-template-columns: 55fr 45fr; gap: var(--space-16); align-items: center; }

.accent-word { color: var(--color-primary-lt); }

/* --------------------------------------------------------
   4. TOPBAR — ultra-dark, live indicator, sticky
   -------------------------------------------------------- */
.topbar {
  height: var(--topbar-h);
  background: #080c10;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: sticky;
  top: 0;
  z-index: 1001;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.topbar__live {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

.topbar__live-dot {
  width: 7px;
  height: 7px;
  background: var(--color-success);
  border-radius: 50%;
  flex-shrink: 0;
  animation: livePulse 2.5s ease-in-out infinite;
}

.topbar__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(245,158,11,0.12);
  color: var(--color-accent-lt);
  font-size: 0.7rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(245,158,11,0.25);
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.topbar__phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  transition: color var(--ease-fast);
  letter-spacing: 0.01em;
}
.topbar__phone:hover { color: #fff; }
.topbar__phone i { color: var(--color-primary-lt); font-size: 12px; }

/* --------------------------------------------------------
   5. NAVBAR — frosted glass, premium
   -------------------------------------------------------- */
.navbar {
  height: var(--navbar-h);
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: sticky;
  top: var(--topbar-h);
  z-index: 1000;
  transition: background var(--ease-base), box-shadow var(--ease-base);
}

.navbar.scrolled {
  background: rgba(8,12,16,0.98);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 8px 32px rgba(0,0,0,0.5);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

/* Brand — wordmark with blue accent pill */
.navbar__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.navbar__brand-logo {
  height: 60px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: opacity var(--ease-fast);
}
.navbar__brand:hover .navbar__brand-logo { opacity: 0.88; }

.navbar__brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: var(--weight-extrabold);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
}
.navbar__brand-text small {
  display: block;
  font-size: 0.65rem;
  font-weight: var(--weight-medium);
  color: var(--color-primary-lt);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1px;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navbar__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  color: rgba(255,255,255,0.68);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  border-radius: var(--radius-sm);
  transition: color var(--ease-fast), background var(--ease-fast);
  white-space: nowrap;
}
.navbar__link:hover, .navbar__link.active {
  color: #fff;
  background: rgba(255,255,255,0.07);
}
.navbar__link.active { color: var(--color-primary-lt); }

/* Dropdown */
.navbar__dropdown { position: relative; }

.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: #1a1f27;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top left;
  transition: opacity var(--ease-fast), transform var(--ease-fast);
}

.navbar__dropdown:hover .navbar__dropdown-menu,
.navbar__dropdown.open  .navbar__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.navbar__dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px var(--space-4);
  color: rgba(255,255,255,0.65);
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  transition: color var(--ease-fast), background var(--ease-fast), gap var(--ease-fast);
}
.navbar__dropdown-item:hover {
  color: #fff;
  background: rgba(15,37,87,0.18);
  gap: var(--space-4);
}
.navbar__dropdown-item i {
  color: var(--color-primary-lt);
  font-size: 13px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

/* Long location list dropdown: fixed height + scroll */
.navbar__dropdown-menu--areas {
  max-height: min(420px, calc(100vh - var(--topbar-h) - var(--navbar-h) - 24px));
  max-height: min(420px, calc(100dvh - var(--topbar-h) - var(--navbar-h) - 24px));
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.navbar__cta { display: flex; align-items: center; gap: var(--space-4); }

/* Mobile toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--ease-fast);
}
.navbar__toggle:hover { background: rgba(255,255,255,0.07); }

.navbar__toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: var(--ease-base);
}
.navbar__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.navbar__mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--topbar-h) + var(--navbar-h));
  left: 0; right: 0;
  background: #0f1318;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: var(--space-4) var(--space-5) var(--space-5);
  z-index: 1002;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  max-height: calc(100vh - var(--topbar-h) - var(--navbar-h));
  max-height: calc(100dvh - var(--topbar-h) - var(--navbar-h));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.navbar__mobile-menu.open { display: flex; }

.navbar__mobile-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 11px var(--space-4);
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  border-radius: var(--radius-md);
  transition: background var(--ease-fast), color var(--ease-fast);
}
.navbar__mobile-link:hover { background: rgba(255,255,255,0.06); color: #fff; }

/* --------------------------------------------------------
   6. BUTTONS — premium, multi-layered
   -------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  line-height: 1;
  border-radius: var(--radius-md);
  transition: all var(--ease-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Shine sweep */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -110%;
  width: 55%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,0.22), transparent);
  transition: left 0.5s ease;
}
.btn:hover::before { left: 160%; }

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-blue), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn--primary:hover {
  background: var(--color-primary-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue-lg), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn--primary:active { transform: translateY(0); box-shadow: var(--shadow-blue); }

.btn--dark {
  background: var(--color-ink-900);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn--dark:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue-lg);
}

.btn--outline {
  background: transparent;
  color: var(--color-ink-700);
  border: 1.5px solid var(--color-ink-200);
}
.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-ghost);
  transform: translateY(-1px);
}

.btn--outline-light {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
  border: 1.5px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(4px);
}
.btn--outline-light:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
  color: #fff;
  transform: translateY(-1px);
}

.btn--lg { padding: 15px 34px; font-size: var(--text-base); border-radius: var(--radius-lg); }
.btn--sm { padding: 8px 16px; font-size: var(--text-xs); }

.btn__icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: background var(--ease-fast);
}
.btn:hover .btn__icon { background: rgba(255,255,255,0.25); }

/* --------------------------------------------------------
   7. SECTION HEADER — premium eyebrow + divider system
   -------------------------------------------------------- */
.section-header { margin-bottom: var(--space-12); }
.section-header--center { text-align: center; }
.section-header--center .section-header__eyebrow { justify-content: center; display: inline-flex; }
.section-header--center .section-header__subtitle { margin-inline: auto; }

.section-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.72rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary-lt);
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: var(--space-4);
  position: relative;
}
/* Understated line before eyebrow text — signals craft without screaming template */
.section-header__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-primary-lt);
  border-radius: 2px;
  flex-shrink: 0;
  vertical-align: middle;
}

.section-header__eyebrow--accent {
  color: var(--color-accent-lt);
}
.section-header__eyebrow--accent::before {
  background: var(--color-accent-lt);
}

/* Eyebrow on dark section backgrounds */
.section-header__eyebrow--dark {
  color: var(--color-primary-lt);
}
.section-header__eyebrow--dark::before {
  background: var(--color-primary-lt);
}

.section-header__title {
  font-family: var(--font-display);
  font-weight: var(--weight-extrabold);
  line-height: var(--leading-tight);
  letter-spacing: -0.035em;
  color: var(--color-ink-900);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}
.section-header__title--light { color: #fff; }
.section-header__title--light .accent-word { color: var(--color-primary-lt); }

.section-header__subtitle {
  margin-top: var(--space-4);
  font-size: var(--text-lg);
  color: var(--color-ink-400);
  line-height: var(--leading-relaxed);
  max-width: 580px;
  font-weight: var(--weight-regular);
}
.section-header__subtitle--light { color: rgba(255,255,255,0.5); }

/* Decorative line under eyebrow */
.section-header__rule {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.section-header--center .section-header__rule { justify-content: center; }
.section-header__rule-line {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  border-radius: 2px;
}
.section-header__rule-dot {
  width: 5px; height: 5px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* --------------------------------------------------------
   8. HERO — premium two-column layout
   -------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, #020818 0%, #050d1f 25%, #080e1a 50%, #060c1c 75%, #020818 100%);
  min-height: calc(100vh - var(--topbar-h) - var(--navbar-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--topbar-h) + var(--navbar-h) + var(--space-4));
  padding-bottom: calc(var(--space-section) + 32px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
  z-index: 1;
}

/* Primary glow — top-right, large atmospheric haze */
.hero__glow-1 {
  position: absolute;
  width: 900px; height: 900px;
  background: radial-gradient(ellipse at center,
    rgba(15,37,87,0.55) 0%,
    rgba(79,142,247,0.12) 35%,
    transparent 65%);
  top: -300px; right: -200px;
  pointer-events: none; z-index: 0;
}
/* Secondary glow — mid-left, amber warmth */
.hero__glow-2 {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(217,119,6,0.14) 0%,
    transparent 60%);
  bottom: -100px; left: 10%;
  pointer-events: none; z-index: 0;
}

/* Fine noise texture — breaks up flat black, feels tactile */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none; z-index: 0;
  opacity: 0.6;
}

/* Bottom fade into trust bar */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(4,6,20,0.8) 0%, transparent 100%);
  pointer-events: none; z-index: 0;
}

/* Grid: content gets more room, image side is taller */
.grid-hero {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: var(--space-12);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 1;
  /* Breathing room at top so content doesn't feel top-pinned */
  padding-top: var(--space-4);
}

/* ── Live availability bar ── */
.hero__live-bar {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(45,212,168,0.07);
  border: 1px solid rgba(45,212,168,0.2);
  border-radius: var(--radius-pill);
  padding: 7px 16px 7px 12px;
  margin-bottom: var(--space-5);
  font-size: 0.8rem;
  font-weight: var(--weight-medium);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.01em;
}

.hero__live-dot {
  width: 7px; height: 7px;
  background: #2dd4a8;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(45,212,168,0.5);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%  { box-shadow: 0 0 0 0 rgba(45,212,168,0.5); }
  70% { box-shadow: 0 0 0 7px rgba(45,212,168,0); }
  100%{ box-shadow: 0 0 0 0 rgba(45,212,168,0); }
}

.hero__live-sep { color: rgba(255,255,255,0.18); margin: 0 3px; }
.hero__live-time { color: rgba(255,255,255,0.4); }

/* ── Hero title — editorial three-tier hierarchy ── */
.hero__title {
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-5);
}

/* "SAN GABRIEL VALLEY" — small amber kicker */
.hero__title-top {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: clamp(0.72rem, 0.9vw, 0.85rem);
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-lt);
  margin-bottom: var(--space-3);
}
.hero__title-top::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--color-accent-lt);
  border-radius: 2px;
  flex-shrink: 0;
}

/* "Mobile Auto Glass" — the hero word */
.hero__title-main {
  display: block;
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  font-weight: var(--weight-extrabold);
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.05;
  /* Subtle text shadow for depth */
  text-shadow: 0 2px 40px rgba(15,37,87,0.5);
}

/* "Windshield Repair in San Gabriel, CA" — secondary line, visually lighter */
.hero__title-sub {
  display: block;
  font-size: clamp(1.1rem, 1.8vw, 1.7rem);
  font-weight: var(--weight-regular);
  letter-spacing: -0.015em;
  /* Gradient: bright white fading to muted — feels dimensional */
  background: linear-gradient(90deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  margin-top: var(--space-2);
}

/* ── Description ── */
.hero__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: var(--space-6);
  font-weight: var(--weight-regular);
}

/* ── Feature pills ── */
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-7);
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: var(--weight-medium);
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.01em;
  transition: background var(--ease-fast), border-color var(--ease-fast), color var(--ease-fast);
}
.hero__pill:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
}
.hero__pill i {
  color: var(--color-accent-lt);
  font-size: 11px;
}

/* ── CTA row ── */
.hero__cta-row {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

/* Primary button gets a larger shadow on dark hero */
.hero__cta-primary {
  box-shadow: 0 8px 32px rgba(15,37,87,0.6), 0 2px 8px rgba(0,0,0,0.4),
              inset 0 1px 0 rgba(255,255,255,0.15);
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: var(--radius-lg);
}
.hero__cta-primary:hover {
  box-shadow: 0 12px 40px rgba(15,37,87,0.7), 0 4px 12px rgba(0,0,0,0.5);
  transform: translateY(-3px);
}

.hero__cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  font-weight: var(--weight-medium);
  text-decoration: none;
  transition: color var(--ease-fast);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.hero__cta-ghost:hover { color: rgba(255,255,255,0.9); }
.hero__cta-ghost i {
  font-size: 10px;
  transition: transform var(--ease-fast);
}
.hero__cta-ghost:hover i { transform: translateX(4px); }

/* ── Social proof strip ── */
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: var(--space-8);
}

.hero__stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
  font-size: 12px;
}

.hero__social-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.01em;
}
.hero__social-text strong {
  color: rgba(255,255,255,0.75);
  font-weight: var(--weight-semibold);
}

/* ── Stats row — prominent numbers ── */
.hero__stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: var(--space-6);
}

.hero__stat {
  flex: 1;
  padding-right: var(--space-8);
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat:last-child  { padding-right: 0; }
.hero__stat + .hero__stat {
  padding-left: var(--space-8);
  border-left: 1px solid rgba(255,255,255,0.08);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: var(--weight-extrabold);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero__stat-value span {
  color: var(--color-accent-lt);
  font-size: 0.75em;
}

.hero__stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: var(--weight-semibold);
  line-height: 1.3;
}

/* ── Image side ── */
.hero__visual {
  position: relative;
  z-index: 1;
  /* Enough height to allow floating cards to overflow without clipping */
  padding: var(--space-8) var(--space-8) var(--space-8) 0;
}

/* Glow halo behind the image */
.hero__image-ring {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(15,37,87,0.35) 0%,
    rgba(79,142,247,0.08) 40%,
    transparent 70%);
  border-radius: var(--radius-xl);
  pointer-events: none;
  z-index: 0;
}

.hero__image-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  /* Inset highlight top + shadow bottom = glass-like depth */
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -1px 0 rgba(0,0,0,0.5),
    0 32px 64px rgba(0,0,0,0.55),
    0 8px 24px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.07);
  /* Fallback when no image: a dark gradient placeholder */
  background: linear-gradient(145deg, #0d1528 0%, #111d35 40%, #0a1228 100%);
}

/* Vignette over image — merges it with the dark hero bg */
.hero__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(4,6,20,0.25) 0%, transparent 30%),
    linear-gradient(to top, rgba(4,6,20,0.6) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero__image-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.hero__image-wrap:hover img { transform: scale(1.025); }

/* ── Floating glassmorphic cards ──
   Positioned on .hero__visual (NOT inside image-wrap) so they are never clipped */
.hero__float-card {
  position: absolute;
  background: rgba(6,10,22,0.82);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow:
    0 20px 48px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.1);
  z-index: 3;
}

/* Review card — bottom-left of visual, overhangs image */
.hero__float-card--review {
  bottom: var(--space-4);
  left: calc(-1 * var(--space-5));
  min-width: 200px;
  animation: floatA 7s ease-in-out infinite;
  will-change: transform;
}

/* Availability card — top-right of visual */
.hero__float-card--avail {
  top: var(--space-4);
  right: calc(-1 * var(--space-4));
  display: flex;
  align-items: center;
  gap: var(--space-3);
  white-space: nowrap;
  animation: floatB 7s ease-in-out infinite 2s;
  will-change: transform;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(10px); }
}

.hero__float-card-stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
  font-size: 11px;
  margin-bottom: 5px;
}

.hero__float-card-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: var(--weight-bold);
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.hero__float-card-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 3px;
  line-height: 1.35;
}

/* Pulsing availability dot */
.hero__float-card-dot {
  width: 10px; height: 10px;
  background: #2dd4a8;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(45,212,168,0.5);
  animation: livePulse 2s ease-in-out infinite 0.4s;
}

/* --------------------------------------------------------
   9. TRUST BAR — white, flex row with pipe separators
   -------------------------------------------------------- */
.trust-bar {
  position: relative;
  z-index: 2;
  margin-top: 0;
  background: var(--surface-base);
  border-bottom: 1px solid var(--color-ink-100);
  padding-block: var(--space-6);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.hero + .trust-bar {
  margin-top: -40px;
}

.trust-bar__grid {
  display: flex;
  align-items: stretch;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-4);
  background: var(--surface-base);
  text-align: center;
  flex: 1;
  position: relative;
  transition: background var(--ease-fast), transform var(--ease-fast);
  cursor: default;
  border-radius: var(--radius-md);
}
.trust-bar__item:hover {
  background: var(--surface-subtle);
  transform: translateY(-2px);
}

/* Pipe separator between items — border-right on each, removed from last */
.trust-bar__item {
  border-right: 1px solid var(--color-ink-100);
}
.trust-bar__item:last-child {
  border-right: none;
}

.trust-bar__icon-wrap {
  width: 40px; height: 40px;
  background: rgba(217,119,6,0.08);
  border: 1px solid rgba(217,119,6,0.16);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
  transition: background var(--ease-fast), transform var(--ease-spring);
}
.trust-bar__item:hover .trust-bar__icon-wrap {
  background: rgba(217,119,6,0.15);
  transform: scale(1.08) translateY(-2px);
}

.trust-bar__icon { font-size: 18px; color: var(--color-accent); }

.trust-bar__label {
  font-size: 0.75rem;
  font-weight: var(--weight-semibold);
  color: var(--color-ink-600);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/* --------------------------------------------------------
   10. QUOTE FORM SECTION
   -------------------------------------------------------- */
.quote-section {
  background: var(--surface-dark-3);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(15,37,87,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.quote-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.quote-benefit {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  transition: background var(--ease-fast);
}
.quote-benefit:hover { background: rgba(255,255,255,0.03); }

.quote-benefit__icon {
  width: 42px; height: 42px;
  background: rgba(79,142,247,0.12);
  border: 1px solid rgba(79,142,247,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary-lt);
  font-size: 17px;
  transition: background var(--ease-base), transform var(--ease-spring);
}
.quote-benefit:hover .quote-benefit__icon {
  background: rgba(79,142,247,0.22);
  transform: scale(1.1);
}

.quote-benefit__title {
  font-weight: var(--weight-semibold);
  color: rgba(255,255,255,0.9);
  font-size: var(--text-base);
  margin-bottom: 3px;
}
.quote-benefit__text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.42);
  line-height: var(--leading-relaxed);
}

/* Form card — the hero of the quote section */
.quote-form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06), var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

/* Amber top accent — warm, premium, distinct from section headers */
.quote-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-lt), var(--color-accent));
  background-size: 200% 100%;
  animation: borderFlow 3s linear infinite;
}
@keyframes borderFlow {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.form-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-extrabold);
  color: var(--color-ink-900);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-1);
}
.form-subtitle {
  font-size: var(--text-sm);
  color: var(--color-ink-400);
  margin-bottom: var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.form-subtitle::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--color-success);
  border-radius: 50%;
  display: inline-block;
  animation: livePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.form-group { margin-bottom: var(--space-5); }

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-ink-600);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-ink-800);
  background: #fff;
  border: 1.5px solid var(--color-ink-100);
  border-radius: var(--radius-md);
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.10);
}
.form-control::placeholder { color: var(--color-ink-300); }

textarea.form-control { resize: vertical; min-height: 100px; }

select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236e7681' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

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

/* Trust strip below submit */
.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-4);
  flex-wrap: wrap;
}
.form-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: var(--color-ink-400);
  font-weight: var(--weight-medium);
}
.form-trust-item i { color: var(--color-success); font-size: 11px; }

/* --------------------------------------------------------
   10.5. PROCESS — "How It Works" dark section
   -------------------------------------------------------- */
.process-section {
  background: var(--surface-dark-2);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  bottom: -150px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(15,37,87,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 var(--space-5);
  position: relative;
}

.process-step__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: var(--weight-extrabold);
  color: rgba(255,255,255,0.13);
  line-height: 1;
  letter-spacing: -0.04em;
  position: absolute;
  top: -10px; right: var(--space-4);
  pointer-events: none;
  user-select: none;
}

.process-step__icon {
  width: 64px; height: 64px;
  background: rgba(30,58,138,0.18);
  border: 1px solid rgba(79,142,247,0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary-lt);
  font-size: 22px;
  margin: 0 auto var(--space-5);
  transition: background var(--ease-base), transform var(--ease-spring), border-color var(--ease-base);
}
.process-step:hover .process-step__icon {
  background: var(--color-primary);
  border-color: var(--color-primary-lt);
  color: #fff;
  transform: scale(1.08);
}

.process-step__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.process-step__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.68);
  line-height: var(--leading-relaxed);
  max-width: 200px;
  margin-inline: auto;
}

/* Connector arrow between steps */
.process-connector {
  width: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;  /* align with icon center (64px icon / 2 = 32px) */
  color: rgba(59,130,246,0.25);
  font-size: 14px;
}

/* --------------------------------------------------------
   11. SERVICE CARDS — subtle bg, white cards lift off it
   -------------------------------------------------------- */
.services-section { background: var(--surface-subtle); }

.service-card {
  background: #fff;
  border: 1px solid var(--color-ink-100);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: transform var(--ease-base), box-shadow var(--ease-base), border-color var(--ease-base);
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Mouse-follow glow */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(15,37,87,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--ease-base);
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }

/* Top accent line */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease-base);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  border-color: rgba(15,37,87,0.15);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 48px; height: 48px;
  background: var(--color-primary-ghost);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  font-size: 19px;
  margin-bottom: var(--space-5);
  transition: background var(--ease-base), transform var(--ease-spring), color var(--ease-fast);
}
.service-card:hover .service-card__icon {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-ink-900);
  margin-bottom: var(--space-3);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-ink-400);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}
.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.service-card__list li {
  font-size: var(--text-xs);
  color: var(--color-ink-400);
  line-height: var(--leading-relaxed);
  padding-left: var(--space-5);
  position: relative;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.6;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  transition: gap var(--ease-fast);
}
.service-card:hover .service-card__link { gap: var(--space-3); }

/* Service CTA links rendered inside dark why-cards (location pages) */
.why-card .service-card__link {
  margin-top: var(--space-4);
  color: var(--color-primary-lt);
  text-decoration: none;
}
.why-card .service-card__link:hover {
  color: #ffffff;
}

/* --------------------------------------------------------
   12. WHY US — dark section for strong visual rhythm
   -------------------------------------------------------- */
.why-section {
  background: var(--surface-dark);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(15,37,87,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.why-card {
  background: var(--surface-dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: transform var(--ease-base), box-shadow var(--ease-base), border-color var(--ease-base), background var(--ease-base);
}

.why-card__number {
  position: absolute;
  top: var(--space-4);
  right: var(--space-5);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: var(--weight-extrabold);
  color: rgba(255,255,255,0.08);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 40%;
  background: linear-gradient(180deg, var(--color-primary-lt), transparent);
  border-radius: 0 2px 2px 0;
  transition: height var(--ease-slow), background var(--ease-slow);
}
.why-card:hover {
  transform: translateY(-4px);
  background: var(--surface-dark-2);
  border-color: rgba(79,142,247,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.why-card:hover::after {
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary-lt), var(--color-accent-lt));
}

.why-card__icon {
  width: 50px; height: 50px;
  background: rgba(15,37,87,0.25);
  border: 1px solid rgba(79,142,247,0.2);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary-lt);
  font-size: 21px;
  margin-bottom: var(--space-5);
  transition: background var(--ease-base), transform var(--ease-spring), border-color var(--ease-base);
}
.why-card:hover .why-card__icon {
  background: var(--color-primary);
  border-color: transparent;
  color: #fff;
  transform: rotate(-6deg) scale(1.1);
}

.why-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.why-card__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.68);
  line-height: var(--leading-relaxed);
}

/* Review card overrides — light background variant */
.review-card {
  background: var(--surface-base) !important;
  border-color: var(--border-subtle) !important;
}
.review-card .why-card__desc {
  color: var(--color-ink-700);
}

/* --------------------------------------------------------
   13. CREDENTIALS — subtle light section
   -------------------------------------------------------- */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--surface-subtle);
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  transition: transform var(--ease-fast), box-shadow var(--ease-fast), border-color var(--ease-fast), background var(--ease-fast);
}
.cred-item:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: var(--shadow-md);
  border-color: rgba(30,58,138,0.12);
}

.cred-item__check {
  width: 36px; height: 36px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
  transition: transform var(--ease-spring);
}
.cred-item:hover .cred-item__check { transform: scale(1.12) rotate(-4deg); }

.cred-item__title {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-ink-800);
  margin-bottom: 3px;
  letter-spacing: -0.005em;
}
.cred-item__sub {
  font-size: var(--text-xs);
  color: var(--color-ink-600);
  line-height: 1.45;
}

/* Larger body copy for post-process enhanced sections */
.details-grid .cred-item__sub {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-ink-600);
}

/* --------------------------------------------------------
   14. AREAS — dark, chips with depth
   -------------------------------------------------------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
}

.area-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 10px var(--space-4);
  background: #fff;
  border: 1.5px solid var(--color-ink-100);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-ink-600);
  white-space: nowrap;
  text-align: center;
  transition: all var(--ease-fast);
  cursor: pointer;
}
.area-chip:hover {
  background: var(--color-primary-ghost);
  border-color: rgba(30,58,138,0.25);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.area-chip--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(30,58,138,0.3);
}
.area-chip--primary:hover {
  background: var(--color-primary-dk);
  color: #fff;
  border-color: var(--color-primary-dk);
}
.area-chip i { font-size: 10px; }

/* Area chips inside dark sections */
.section--dark2 .area-chip {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.65);
}
.section--dark2 .area-chip:hover {
  background: rgba(30,58,138,0.22);
  border-color: rgba(59,130,246,0.35);
  color: rgba(255,255,255,0.92);
  box-shadow: 0 4px 16px rgba(30,58,138,0.3);
  transform: translateY(-2px);
}
.section--dark2 .area-chip--primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(30,58,138,0.4);
}
.section--dark2 .area-chip--primary:hover {
  background: var(--color-primary-dk);
  border-color: var(--color-primary-dk);
}

/* Map container */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.07), var(--shadow-dark);
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 360px;
  filter: grayscale(0.3) contrast(1.05) brightness(0.9);
}

/* --------------------------------------------------------
   15. TESTIMONIALS — light section, dark cards (editorial contrast)
   -------------------------------------------------------- */
.testimonials-section {
  background: var(--surface-subtle);
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: var(--color-ink-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: transform var(--ease-base), box-shadow var(--ease-base), border-color var(--ease-base);
}
.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0%;
  background: linear-gradient(180deg, var(--color-primary-lt), var(--color-accent-lt));
  border-radius: 0 2px 2px 0;
  transition: height var(--ease-slow);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59,130,246,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}
.testimonial-card:hover::after { height: 100%; }

/* Large decorative quote mark */
.testimonial-card__quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4rem;
  line-height: 0.8;
  color: rgba(59,130,246,0.18);
  margin-bottom: var(--space-3);
  display: block;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent-lt);
  font-size: 12px;
  margin-bottom: var(--space-5);
}

.testimonial-card__text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--space-6);
}

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

.testimonial-card__avatar {
  width: 40px; height: 40px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.testimonial-card__name {
  font-weight: var(--weight-semibold);
  color: rgba(255,255,255,0.9);
  font-size: var(--text-sm);
}
.testimonial-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.testimonial-card__label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}
.testimonial-card__verified {
  font-size: 0.68rem;
  color: var(--color-success);
  font-weight: var(--weight-semibold);
  display: flex;
  align-items: center;
  gap: 3px;
}
.testimonial-card__verified i { font-size: 9px; }

/* Homepage top-rated team logo strip */
.logo-strip {
  margin-top: var(--space-8);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-5);
  align-items: center;
}
.logo-strip__item {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 14px;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}
.logo-strip__item img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 900px) {
  .logo-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .logo-strip { grid-template-columns: 1fr; }
}

/* Makes & models logo cards */
.makes-logo-grid {
  margin-top: var(--space-8);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-5);
}
.makes-logo-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 14px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}
.makes-logo-card img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.makes-logo-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-ink-800);
}
@media (max-width: 980px) {
  .makes-logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .makes-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .makes-logo-card__name { font-size: var(--text-lg); }
}

/* --------------------------------------------------------
   16. FINAL CTA — premium close, not bland
   -------------------------------------------------------- */
.cta-section {
  background: linear-gradient(160deg, #0a0f1a 0%, #0d1321 40%, #0a1128 100%);
  text-align: center;
  padding-block: var(--space-section);
  position: relative;
  overflow: hidden;
}
/* Glowing orb centre */
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(15,37,87,0.22) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
/* Diagonal texture — matches hero */
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 40px,
    rgba(255,255,255,0.012) 40px,
    rgba(255,255,255,0.012) 41px
  );
  pointer-events: none;
  z-index: 0;
}

.cta-section__inner { position: relative; z-index: 1; }

.cta-section__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.72rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary-lt);
  margin-bottom: var(--space-6);
}
.cta-section__tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-primary-lt);
  border-radius: 2px;
  flex-shrink: 0;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--weight-extrabold);
  color: #fff;
  letter-spacing: -0.035em;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-5);
}
.cta-section__title .accent {
  color: var(--color-accent-lt);
}

.cta-section__desc {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.5);
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  line-height: var(--leading-relaxed);
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.cta-section__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.cta-section__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
}
.cta-section__meta-item i { color: var(--color-primary-lt); font-size: 13px; }

/* --------------------------------------------------------
   17. FOOTER — premium close
   -------------------------------------------------------- */
.footer {
  background: #080c10;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-section);
  padding-bottom: var(--space-10);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-primary) 30%, var(--color-primary-lt) 70%, transparent 100%);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1.1fr 1.1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Brand col */
.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.footer__brand-logo {
  height: 72px;
  width: auto;
  display: block;
}

.footer__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.38);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  max-width: 320px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-3);
  line-height: 1.5;
  transition: color var(--ease-fast);
}
.footer__contact-item:hover { color: rgba(255,255,255,0.8); }
.footer__contact-item i {
  color: var(--color-primary-lt);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__col-title {
  font-size: 0.68rem;
  font-weight: var(--weight-semibold);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer__link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 5px 0;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.42);
  transition: color var(--ease-fast), gap var(--ease-fast);
}
.footer__link:hover { color: rgba(255,255,255,0.85); gap: var(--space-3); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-6);
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
}
.footer__legal {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.footer__legal a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
  transition: color var(--ease-fast);
}
.footer__legal a:hover { color: rgba(255,255,255,0.65); }

/* --------------------------------------------------------
   18. SCROLL REVEAL
   -------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* --------------------------------------------------------
   19. FLOATING MOBILE CTA
   -------------------------------------------------------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: var(--space-5);
  left: var(--space-5);
  right: var(--space-5);
  z-index: 900;
}
.mobile-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  width: 100%;
  padding: 16px;
  background: var(--color-primary);
  color: #fff;
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-blue-lg);
  text-decoration: none;
}
.mobile-cta__btn i { animation: ringShake 3s ease-in-out infinite; }

@keyframes ringShake {
  0%, 45%, 100% { transform: rotate(0); }
  50%  { transform: rotate(-18deg); }
  55%  { transform: rotate(14deg); }
  60%  { transform: rotate(-10deg); }
  65%  { transform: rotate(8deg); }
  70%  { transform: rotate(0); }
}

/* --------------------------------------------------------
   20. BACK TO TOP
   -------------------------------------------------------- */
.back-top {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-6);
  width: 42px; height: 42px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--ease-base);
  box-shadow: var(--shadow-blue);
  z-index: 800;
  border: none;
}
.back-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top:hover { background: var(--color-primary-dk); transform: translateY(-3px); }

/* --------------------------------------------------------
   21. COUNTERS & MISC
   -------------------------------------------------------- */
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  display: inline-block;
  animation: livePulse 2.5s ease-in-out infinite;
}

.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;
}

/* --------------------------------------------------------
   22. RESPONSIVE
   -------------------------------------------------------- */
@media (max-width: 1100px) {
  .creds-grid    { grid-template-columns: repeat(2, 1fr); }
  .areas-grid    { grid-template-columns: repeat(4, 1fr); }
  .footer__grid  { grid-template-columns: 1fr 1fr; gap: var(--space-10); }
  .grid-hero     { grid-template-columns: 1fr 1fr; gap: var(--space-10); }
  .hero__visual  { padding: var(--space-6) var(--space-4) var(--space-6) 0; }
  .trust-bar__grid { flex-wrap: wrap; }
  .trust-bar__item { flex: 0 0 calc(33.333% - 1px); }
  .trust-bar__item:nth-child(4)::before,
  .trust-bar__item:nth-child(5)::before { display: none; }
}

@media (max-width: 900px) {
  :root { --space-section: 5rem; }
  /* Stack hero — content on top, image below */
  .grid-hero     { grid-template-columns: 1fr; gap: var(--space-8); }
  .hero__visual  {
    max-width: 540px;
    margin-inline: auto;
    padding: var(--space-6) var(--space-8);
  }
  .hero__image-wrap img { height: 380px; }
  /* Float cards: tucked in since column is narrower */
  .hero__float-card--review { left: 0; bottom: var(--space-3); }
  .hero__float-card--avail  { right: 0; top: var(--space-3); }
  .grid-3        { grid-template-columns: repeat(2, 1fr); }
  .grid-4        { grid-template-columns: repeat(2, 1fr); }
  .navbar__nav, .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }
  .areas-grid    { grid-template-columns: repeat(3, 1fr); }
  .process-steps { flex-direction: column; align-items: center; gap: var(--space-4); }
  .process-connector { width: 1px; height: 32px; margin-top: 0; }
  .process-step { width: 100%; max-width: 380px; }
}

@media (max-width: 640px) {
  :root {
    --space-section: 4rem;
    --navbar-h:  64px;
    --topbar-h:  40px;
  }
  /* Remove hero clip — angled cut looks bad on narrow viewport */
  .hero { clip-path: none; padding-bottom: var(--space-section); }
  .trust-bar { margin-top: 0; }
  .container     { padding-inline: var(--space-4); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .creds-grid    { grid-template-columns: 1fr; }
  .areas-grid    { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__grid { flex-wrap: wrap; }
  .trust-bar__item { flex: 0 0 calc(50% - 1px); border-right: none; border-bottom: 1px solid var(--color-ink-100); }
  .trust-bar__item:nth-child(odd) { border-right: 1px solid var(--color-ink-100); }
  .trust-bar__item:nth-last-child(-n+2) { border-bottom: none; }
  .form-row      { grid-template-columns: 1fr; }
  /* Hero content */
  .hero__live-bar { font-size: 0.75rem; }
  .hero__cta-row { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .hero__cta-primary { width: 100%; justify-content: center; }
  /* Float cards hidden on small screens — not enough room */
  .hero__float-card--review,
  .hero__float-card--avail { display: none; }
  /* Hero visual hidden on small screens — too much scroll before content */
  .hero__visual  { display: none; }
  /* Stats: 2 per row */
  .hero__stats   { flex-wrap: wrap; }
  .hero__stat    { flex: 0 0 50%; padding-right: var(--space-4); padding-top: var(--space-6); }
  .hero__stat:first-child,
  .hero__stat:nth-child(2) { padding-top: 0; }
  .hero__stat:nth-child(even) { padding-left: var(--space-4); border-left: 1px solid rgba(255,255,255,0.08); }
  .hero__stat:nth-child(3),
  .hero__stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); }
  .hero__stat + .hero__stat { border-left: none; padding-left: 0; }
  .hero__stat:last-child { padding-right: 0; }
  .cta-section__actions { flex-direction: column; }
  .cta-section .btn { width: 100%; justify-content: center; }
  .faq-layout__sidebar { max-width: 100%; }
  .footer__grid  { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .mobile-cta    { display: block; }
  .back-top      { bottom: 90px; }
  .topbar__badge { display: none; }
  .topbar__live  { display: none; }
}

@media (max-width: 420px) {
  .hero__stat    { flex: 0 0 100% !important; border-left: none !important; padding-left: 0 !important; }
  .hero__stat + .hero__stat { border-top: 1px solid rgba(255,255,255,0.07); padding-top: var(--space-5); }
  .hero__stat:nth-child(even) { border-left: none !important; padding-left: 0 !important; }
  .areas-grid    { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   INNER PAGE HERO — compact, dark, breadcrumb-capable
   Used by all service, area, about, contact pages
   ============================================================ */

.page-hero {
  background: linear-gradient(135deg, #020818 0%, #050d1f 40%, #080e1a 100%);
  padding-top: calc(var(--topbar-h) + var(--navbar-h) + var(--space-4));
  padding-bottom: var(--space-20);
  position: relative;
  overflow: hidden;
}

/* Subtle radial glows */
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(15,37,87,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(245,158,11,0.4) 50%, transparent 100%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

/* Two-column layout: content left, image right */
.page-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-12);
  align-items: center;
}
.page-hero__content { min-width: 0; }
.page-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero__visual-ring {
  position: absolute;
  inset: -20px;
  border-radius: var(--radius-2xl);
  background: radial-gradient(ellipse at 60% 40%, rgba(15,37,87,0.5) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__visual-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
  display: block;
}
@media (max-width: 900px) {
  .page-hero__layout {
    grid-template-columns: 1fr;
  }
  .page-hero__visual { display: none; }
}

/* Breadcrumb */
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-ink-300);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}
.page-hero__breadcrumb a {
  color: var(--color-ink-300);
  text-decoration: none;
  transition: color var(--ease-fast);
}
.page-hero__breadcrumb a:hover { color: var(--color-accent-lt); }
.page-hero__breadcrumb-sep {
  color: var(--color-ink-500);
  font-size: 0.7em;
}
.page-hero__breadcrumb-current {
  color: var(--color-accent-lt);
  font-weight: var(--weight-medium);
}

/* Eyebrow label */
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-lt);
  margin-bottom: var(--space-4);
}
.page-hero__eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--color-accent-lt);
  flex-shrink: 0;
}

/* Main heading */
.page-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: var(--weight-extrabold);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 var(--space-5);
}
.page-hero__h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--color-accent-lt) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.page-hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--color-ink-200);
  line-height: var(--leading-relaxed);
  margin: 0 0 var(--space-8);
  max-width: 640px;
}

/* Trust pills row */
.page-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}
.page-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  color: var(--color-ink-100);
  font-weight: var(--weight-medium);
}
.page-hero__pill i { color: var(--color-accent-lt); font-size: 0.85em; }

/* CTA row */
.page-hero__cta {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.page-hero__cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-ink-200);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  text-decoration: none;
  transition: color var(--ease-fast), gap var(--ease-fast);
}
.page-hero__cta-ghost:hover { color: #fff; gap: var(--space-3); }
.page-hero__cta-ghost i { font-size: 0.85em; }

@media (max-width: 640px) {
  .hero {
    padding-top: calc(var(--topbar-h) + var(--navbar-h) + var(--space-6));
    padding-bottom: var(--space-section);
  }
  .page-hero {
    padding-top: calc(var(--topbar-h) + var(--navbar-h) + var(--space-6));
    padding-bottom: var(--space-12);
  }
  .page-hero__cta { flex-direction: column; align-items: flex-start; }
  .page-hero__cta .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   INNER PAGE CONTENT SECTIONS
   ============================================================ */

/* Section that follows the page-hero — white, with generous padding */
.page-section {
  padding: var(--space-section) 0;
}
.page-section--subtle { background: var(--surface-subtle); }
.page-section--dark   { background: var(--surface-dark-2); }

/* Two-column content + sidebar layout */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-12);
  align-items: start;
}
@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr; }
}

/* Sidebar card */
.sidebar-card {
  background: var(--surface-base);
  border: 1px solid var(--color-ink-100);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--navbar-h) + var(--topbar-h) + var(--space-6));
}
.sidebar-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  margin: 0 0 var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--color-accent-lt);
}

/* Prose content area */
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  color: var(--color-primary);
  margin: 0 0 var(--space-4);
}
.prose h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-primary-dk);
  margin: var(--space-8) 0 var(--space-3);
}
.prose p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-ink-500);
  margin: 0 0 var(--space-5);
}
.prose ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.prose ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-ink-500);
  line-height: var(--leading-normal);
}
.prose ul li::before {
  content: '';
  width: 18px; height: 18px;
  min-width: 18px;
  background: var(--color-success-ghost);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23059669'%3E%3Cpath d='M12.7 4.3a1 1 0 0 1 0 1.4l-5.5 5.5a1 1 0 0 1-1.4 0l-2.5-2.5a1 1 0 1 1 1.4-1.4L6.5 9.1l4.8-4.8a1 1 0 0 1 1.4 0z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--color-ink-100);
}
.faq-item:first-child { border-top: 1px solid var(--color-ink-100); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  transition: color var(--ease-fast);
}
.faq-question:hover { color: var(--color-accent); }
.faq-question i {
  font-size: 0.85em;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform var(--ease-fast);
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 0 var(--space-5);
  font-size: var(--text-base);
  color: var(--color-ink-500);
  line-height: var(--leading-relaxed);
}
.faq-item.open .faq-answer { display: block; }

/* ── FAQ section homepage layout ── */
.faq-section {
  background: var(--surface-subtle);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-16);
  align-items: start;
}

.faq-layout__accordion {
  /* accordion column */
}

/* Enhance the base faq-item for the homepage */
.faq-section .faq-item {
  border-bottom: 1px solid var(--color-ink-100);
  border-top: none;
  background: var(--surface-base);
  border-radius: 0;
  transition: background var(--ease-fast);
}
.faq-section .faq-item:first-of-type {
  border-top: 1px solid var(--color-ink-100);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.faq-section .faq-item:last-of-type {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.faq-section .faq-item.open {
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.faq-section .faq-question {
  padding: var(--space-6) var(--space-6);
  font-size: 1rem;
  color: var(--color-ink-900);
  font-weight: var(--weight-semibold);
}
.faq-section .faq-question:hover {
  color: var(--color-primary);
}
.faq-section .faq-item.open .faq-question {
  color: var(--color-primary);
}
.faq-section .faq-answer {
  padding: 0 var(--space-6) var(--space-6);
  font-size: 0.95rem;
  color: var(--color-ink-500);
  line-height: 1.75;
}

/* ── FAQ sidebar CTA card ── */
.faq-layout__sidebar {
  position: sticky;
  top: calc(var(--topbar-h) + var(--navbar-h) + var(--space-6));
}

.faq-cta-card {
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  color: #fff;
  box-shadow: var(--shadow-blue-lg);
}

.faq-cta-card__icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-accent-lt);
  margin-bottom: var(--space-5);
}

.faq-cta-card__eyebrow {
  font-size: 0.75rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-2);
}

.faq-cta-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--weight-bold);
  color: #fff;
  line-height: 1.3;
  margin-bottom: var(--space-4);
}

.faq-cta-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: var(--space-6);
}

.faq-cta-card__link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  font-weight: var(--weight-medium);
  margin-bottom: var(--space-7);
  transition: color var(--ease-fast);
}
.faq-cta-card__link:hover { color: #fff; }
.faq-cta-card__link i { font-size: 10px; transition: transform var(--ease-fast); }
.faq-cta-card__link:hover i { transform: translateX(4px); }

.faq-cta-card__trust {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.faq-cta-card__trust span {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: var(--weight-medium);
}
.faq-cta-card__trust i {
  color: var(--color-accent-lt);
  font-size: 0.85rem;
  width: 14px;
  text-align: center;
}

/* Responsive: stack on tablet */
@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .faq-layout__sidebar {
    position: static;
    max-width: 500px;
  }
  .faq-cta-card__trust {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-4);
  }
}

/* ============================================================
   DEPTH LAYER — Section-by-section 3D depth & light-source effects
   All properties: transform, box-shadow, text-shadow, opacity only.
   No layout-triggering changes.
   ============================================================ */

/* ── Keyframe: slow breathing ambient glow ── */
@keyframes glowPulse {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

/* ── 1. HERO ── */
.hero__image-wrap {
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.10),
    inset 0 -2px 0 rgba(0,0,0,0.5),
    inset 1px 0 0 rgba(255,255,255,0.05),
    0 40px 80px rgba(0,0,0,0.60),
    0 8px 24px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.06);
}
.hero__stat-value {
  text-shadow: 0 1px 2px rgba(0,0,0,0.6), 0 2px 8px rgba(15,37,87,0.4);
}
.hero__stat-value span {
  text-shadow: 0 0 20px rgba(245,158,11,0.5);
}
.hero__float-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10),
    0 4px 8px rgba(0,0,0,0.30),
    0 14px 36px rgba(0,0,0,0.40),
    0 28px 56px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

/* ── 2. TRUST BAR ── */
.trust-bar__item {
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.04);
}
.trust-bar__item:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.trust-bar__icon-wrap {
  background-image: linear-gradient(145deg, rgba(255,255,255,0.15) 0%, rgba(217,119,6,0.06) 100%);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.07),
    0 4px 12px rgba(217,119,6,0.08),
    inset 0 1px 0 rgba(255,255,255,0.5);
}
.trust-bar__item:hover .trust-bar__icon-wrap {
  transform: scale(1.08) translateY(-2px) rotateY(15deg);
  box-shadow:
    0 6px 20px rgba(217,119,6,0.22),
    0 2px 6px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

/* ── 3. QUOTE SECTION ── */
.quote-section {
  box-shadow: inset 0 6px 30px rgba(0,0,0,0.3);
}
.quote-form-card {
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 4px 8px rgba(0,0,0,0.06),
    0 12px 32px rgba(0,0,0,0.10),
    0 32px 64px rgba(0,0,0,0.13),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition: box-shadow var(--ease-base), transform var(--ease-base);
}
.quote-form-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 8px 16px rgba(0,0,0,0.08),
    0 20px 48px rgba(0,0,0,0.13),
    0 48px 80px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,1);
}
.quote-benefit__icon {
  box-shadow: 0 2px 6px rgba(15,37,87,0.18), inset 0 1px 0 rgba(79,142,247,0.18);
}
.quote-benefit:hover .quote-benefit__icon {
  transform: scale(1.1) rotateY(20deg);
  box-shadow: 0 6px 18px rgba(79,142,247,0.28), inset 0 1px 0 rgba(255,255,255,0.14);
}

/* ── 4. PROCESS SECTION ── */
.process-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-5);
  transition: transform var(--ease-base), box-shadow var(--ease-base),
              background var(--ease-base), border-color var(--ease-base);
}
.process-step:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(79,142,247,0.15);
  transform: translateY(-5px);
  box-shadow:
    0 4px 8px rgba(0,0,0,0.30),
    0 12px 32px rgba(0,0,0,0.22),
    0 0 0 1px rgba(79,142,247,0.08);
}
.process-step__num {
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.02) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.process-step:hover .process-step__icon {
  box-shadow:
    0 8px 24px rgba(15,37,87,0.5),
    0 2px 6px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(79,142,247,0.22);
}

/* ── 5. SERVICE CARDS ── */
.service-card {
  --rotateX: 0deg;
  --rotateY: 0deg;
  box-shadow:
    0 1px 3px rgba(0,0,0,0.04),
    0 4px 16px rgba(0,0,0,0.05),
    inset 0 1px 0 rgba(255,255,255,0.7);
}
.service-card:hover {
  transform: translateY(-6px) rotateX(var(--rotateX)) rotateY(var(--rotateY));
  box-shadow:
    0 2px 4px rgba(0,0,0,0.05),
    0 8px 20px rgba(0,0,0,0.09),
    0 20px 48px rgba(0,0,0,0.12),
    0 40px 72px rgba(15,37,87,0.07),
    inset 0 1px 0 rgba(255,255,255,0.85);
}
.service-card__icon {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 2px 6px rgba(15,37,87,0.10);
}
.service-card:hover .service-card__icon {
  box-shadow: 0 4px 16px rgba(15,37,87,0.45), inset 0 1px 0 rgba(255,255,255,0.18);
}

/* ── 6. WHY US (DARK) ── */
.why-section::before {
  animation: glowPulse 8s ease-in-out infinite;
}
.why-card {
  background:
    linear-gradient(var(--surface-dark-3), var(--surface-dark-3)) padding-box,
    linear-gradient(145deg,
      rgba(255,255,255,0.08) 0%,
      rgba(255,255,255,0.03) 45%,
      rgba(255,255,255,0.06) 100%) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.30),
    0 8px 20px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.why-card:hover {
  background:
    linear-gradient(var(--surface-dark-2), var(--surface-dark-2)) padding-box,
    linear-gradient(145deg,
      rgba(79,142,247,0.28) 0%,
      rgba(79,142,247,0.08) 55%,
      rgba(245,158,11,0.12) 100%) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 4px 8px rgba(0,0,0,0.35),
    0 16px 40px rgba(0,0,0,0.28),
    0 32px 60px rgba(0,0,0,0.18);
}
.why-card__number {
  background: linear-gradient(180deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.02) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ── 7. CREDENTIALS ── */
.cred-item {
  box-shadow: var(--shadow-z1), inset 0 1px 0 rgba(255,255,255,0.8);
}
.cred-item:hover {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg,
      rgba(79,142,247,0.28) 0%,
      rgba(15,37,87,0.10) 60%,
      rgba(79,142,247,0.04) 100%) border-box;
  border: 1px solid transparent;
  box-shadow:
    var(--shadow-z2),
    0 16px 36px rgba(15,37,87,0.06),
    inset 0 1px 0 rgba(255,255,255,1);
}
.cred-item__check {
  box-shadow:
    var(--shadow-blue),
    inset 0 1px 0 rgba(255,255,255,0.20),
    inset 0 -1px 0 rgba(0,0,0,0.14);
}
.cred-item:hover .cred-item__check {
  box-shadow:
    0 6px 20px rgba(15,37,87,0.48),
    inset 0 1px 0 rgba(255,255,255,0.24),
    inset 0 -1px 0 rgba(0,0,0,0.20);
}

/* ── 8. SERVICE AREAS ── */
.area-chip {
  box-shadow:
    0 1px 2px rgba(0,0,0,0.05),
    inset 0 1px 0 rgba(255,255,255,0.8),
    inset 0 -1px 0 rgba(0,0,0,0.04);
}
.area-chip:hover {
  box-shadow:
    0 3px 8px rgba(0,0,0,0.10),
    0 8px 20px rgba(15,37,87,0.07),
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(0,0,0,0.05);
}
.area-chip--primary {
  box-shadow:
    0 4px 14px rgba(30,58,138,0.38),
    0 1px 0 rgba(255,255,255,0.14),
    inset 0 1px 0 rgba(255,255,255,0.16);
}
.area-chip--primary:hover {
  box-shadow:
    0 8px 24px rgba(30,58,138,0.52),
    0 2px 6px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.20);
}
.section--dark2 .area-chip {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 2px 8px rgba(0,0,0,0.22);
}
.section--dark2 .area-chip:hover {
  box-shadow:
    0 4px 16px rgba(30,58,138,0.38),
    0 8px 24px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.07);
}
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 8px 24px rgba(0,0,0,0.32),
    0 24px 60px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.map-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.14) 30%,
    rgba(255,255,255,0.08) 70%,
    transparent);
  z-index: 1;
  pointer-events: none;
}

/* ── 9. TESTIMONIALS ── */
.testimonials-section {
  position: relative;
  overflow: hidden;
}
.testimonials-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.testimonials-section > .container { position: relative; z-index: 1; }
.testimonial-card {
  box-shadow:
    0 2px 4px rgba(0,0,0,0.18),
    0 8px 24px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.05),
    inset 0 -1px 0 rgba(0,0,0,0.28);
}
.testimonial-card:hover {
  box-shadow:
    0 4px 8px rgba(0,0,0,0.22),
    0 14px 36px rgba(0,0,0,0.26),
    0 32px 60px rgba(0,0,0,0.18),
    0 0 0 1px rgba(59,130,246,0.06),
    inset 0 1px 0 rgba(255,255,255,0.07),
    inset 0 -1px 0 rgba(0,0,0,0.35);
}
.testimonial-card__avatar {
  box-shadow:
    0 2px 8px rgba(15,37,87,0.45),
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -1px 0 rgba(0,0,0,0.15);
  transition: transform var(--ease-spring), box-shadow var(--ease-base);
}
.testimonial-card:hover .testimonial-card__avatar {
  transform: scale(1.06) translateY(-1px);
  box-shadow:
    0 6px 18px rgba(15,37,87,0.55),
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -1px 0 rgba(0,0,0,0.20);
}

/* ── 10. FAQ ── */
.faq-section .faq-item {
  transition: transform var(--ease-base), box-shadow var(--ease-base), background var(--ease-fast);
}
.faq-section .faq-item.open {
  transform: translateX(2px);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.05),
    0 6px 20px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,1);
}
.faq-cta-card {
  background:
    linear-gradient(var(--color-primary), var(--color-primary)) padding-box,
    linear-gradient(145deg,
      rgba(255,255,255,0.18) 0%,
      rgba(255,255,255,0.05) 50%,
      rgba(0,0,0,0.10) 100%) border-box;
  border: 1px solid transparent;
  box-shadow:
    var(--shadow-blue-lg),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -2px 0 rgba(0,0,0,0.20);
}
.faq-cta-card__icon {
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 1px 0 rgba(255,255,255,0.07);
  transition: transform var(--ease-spring), box-shadow var(--ease-base);
}
.faq-cta-card:hover .faq-cta-card__icon {
  transform: translateY(-2px) scale(1.06);
  box-shadow:
    inset 0 1px 3px rgba(0,0,0,0.10),
    0 4px 12px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

/* ── 11. MAKES & MODELS ── */
#makes .area-chip {
  background: #fff;
  border-color: var(--color-ink-100);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.05),
    0 2px 6px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,1);
}
#makes .area-chip:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 12px rgba(0,0,0,0.09),
    0 8px 24px rgba(15,37,87,0.07),
    inset 0 1px 0 rgba(255,255,255,1);
  border-color: rgba(30,58,138,0.18);
  color: var(--color-primary);
}
#makes .area-chip:active {
  transform: translateY(1px);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.08),
    inset 0 2px 4px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.5);
}

/* ── 12. FINAL CTA ── */
.cta-section::before {
  animation: glowPulse 10s ease-in-out infinite;
}
.cta-section__inner {
  position: relative;
}
.cta-section__inner::before {
  content: '';
  position: absolute;
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(217,119,6,0.10) 0%, transparent 70%);
  bottom: -60px; right: -80px;
  pointer-events: none;
  z-index: 0;
}
.cta-section__title {
  text-shadow:
    0 1px 2px rgba(0,0,0,0.5),
    0 4px 16px rgba(0,0,0,0.28),
    0 8px 32px rgba(15,37,87,0.28);
}
.cta-section__title .accent {
  text-shadow:
    0 0 30px rgba(245,158,11,0.40),
    0 2px 8px rgba(0,0,0,0.40);
}

/* ── 13. SERVICE PAGE COMPONENTS ── */

/* 13a. Page Hero — glowPulse breathing + pill depth + inner rim */
.page-hero::before {
  top: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  animation: glowPulse 9s ease-in-out infinite;
}
.page-hero__inner {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.page-hero__pill {
  background:
    linear-gradient(rgba(255,255,255,0.055), rgba(255,255,255,0.055)) padding-box,
    linear-gradient(135deg,
      rgba(255,255,255,0.14) 0%,
      rgba(255,255,255,0.05) 50%,
      rgba(245,158,11,0.10) 100%) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 1px 3px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transition: background var(--ease-fast), box-shadow var(--ease-fast), transform var(--ease-fast);
}
.page-hero__pill:hover {
  background:
    linear-gradient(rgba(255,255,255,0.09), rgba(255,255,255,0.09)) padding-box,
    linear-gradient(135deg,
      rgba(255,255,255,0.20) 0%,
      rgba(255,255,255,0.08) 50%,
      rgba(245,158,11,0.14) 100%) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 2px 8px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.10);
  transform: translateY(-1px);
}

/* 13b. Trust strip — icon badge depth + item hover */
.sp-trust-strip__item {
  transition: transform var(--ease-base), box-shadow var(--ease-base);
}
.sp-trust-strip__item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.07), var(--shadow-inset-top);
}
.sp-trust-strip__item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background-image: linear-gradient(145deg, rgba(255,255,255,0.15) 0%, rgba(217,119,6,0.06) 100%);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.07),
    0 4px 12px rgba(217,119,6,0.08),
    inset 0 1px 0 rgba(255,255,255,0.5);
  transition: transform var(--ease-spring), box-shadow var(--ease-base);
}
.sp-trust-strip__item:hover i {
  transform: scale(1.08) translateY(-2px) rotateY(15deg);
  box-shadow:
    0 6px 20px rgba(217,119,6,0.22),
    0 2px 6px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

/* 13c. Sidebar form card — 4-layer Z-shadow + glass rim + hover lift */
.sp-form-card {
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 4px 8px rgba(0,0,0,0.06),
    0 12px 32px rgba(0,0,0,0.10),
    0 32px 64px rgba(0,0,0,0.13),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition: box-shadow var(--ease-base), transform var(--ease-base);
}
.sp-form-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 8px 16px rgba(0,0,0,0.08),
    0 20px 48px rgba(0,0,0,0.13),
    0 48px 80px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,1);
}

/* 13d. Process steps — card lift + gradient num badge */
.sp-step {
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  transition: transform var(--ease-base), box-shadow var(--ease-base);
}
.sp-step:hover {
  transform: translateY(-5px);
  box-shadow:
    0 4px 8px rgba(0,0,0,0.30),
    0 12px 32px rgba(0,0,0,0.22),
    0 0 0 1px rgba(79,142,247,0.08);
}
.sp-step__num {
  background: linear-gradient(145deg, var(--color-accent-lt) 0%, var(--color-accent) 100%);
  box-shadow:
    0 4px 20px rgba(217,119,6,0.50),
    0 2px 6px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.20),
    inset 0 -1px 0 rgba(0,0,0,0.12);
  transition: transform var(--ease-spring), box-shadow var(--ease-base);
}
.sp-step:hover .sp-step__num {
  transform: scale(1.08) translateY(-2px);
  box-shadow:
    0 8px 28px rgba(217,119,6,0.65),
    0 4px 10px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -1px 0 rgba(0,0,0,0.16);
}

/* 13e. Review cards — depth shadows + quote mark + badge label + avatar */
.sp-review-card {
  box-shadow:
    0 2px 4px rgba(0,0,0,0.05),
    0 8px 24px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(0,0,0,0.04);
  transition: box-shadow var(--ease-base), transform var(--ease-base);
  position: relative;
  overflow: hidden;
}
.sp-review-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 8px rgba(0,0,0,0.07),
    0 14px 36px rgba(0,0,0,0.11),
    0 28px 56px rgba(0,0,0,0.07),
    0 0 0 1px rgba(59,130,246,0.05),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(0,0,0,0.05);
}
.sp-review-card__text::before {
  content: '\201C';
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.5rem;
  line-height: 0.8;
  color: rgba(15,37,87,0.10);
  margin-bottom: var(--space-2);
}
.sp-review-card__label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: var(--weight-semibold);
  color: var(--color-success);
  background: var(--color-success-ghost);
  border: 1px solid rgba(5,150,105,0.18);
  border-radius: var(--radius-pill);
  padding: 2px 8px;
}
.sp-review-card__label i {
  color: var(--color-success);
  font-size: 0.65rem;
}
.sp-review-card__avatar {
  box-shadow:
    0 2px 8px rgba(15,37,87,0.20),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform var(--ease-spring), box-shadow var(--ease-base);
}
.sp-review-card:hover .sp-review-card__avatar {
  transform: scale(1.06) translateY(-1px);
  box-shadow:
    0 4px 14px rgba(15,37,87,0.28),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

/* 13f. FAQ items — transition + open-state pull-forward + shadow */
.sp-faq-item {
  transition: transform var(--ease-base), box-shadow var(--ease-base), background var(--ease-fast);
}
.sp-faq-item.open {
  transform: translateX(2px);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.05),
    0 6px 20px rgba(0,0,0,0.07);
  background: rgba(248,250,252,0.8);
  padding: 0 var(--space-4);
  margin-inline: calc(-1 * var(--space-4));
  border-bottom-color: transparent;
}

/* 13g. CTA band — breathing glow orb replaces stripe, title depth */
.sp-cta::before {
  inset: auto;
  right: auto;
  bottom: auto;
  background: radial-gradient(ellipse, rgba(15,37,87,0.22) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  width: 600px;
  height: 400px;
  transform: translate(-50%, -50%);
  animation: glowPulse 10s ease-in-out infinite;
}
.sp-cta__title {
  text-shadow:
    0 1px 2px rgba(0,0,0,0.5),
    0 4px 16px rgba(0,0,0,0.28),
    0 8px 32px rgba(15,37,87,0.28);
}
.sp-cta__phone {
  text-shadow:
    0 0 30px rgba(245,158,11,0.35),
    0 2px 8px rgba(0,0,0,0.40);
}

/* ============================================================
   SERVICE PAGE — PREMIUM SECTION COMPONENTS
   Mirrors homepage sections: trust strip, process, CTA, testimonials
   ============================================================ */

/* ── Service page trust strip (below page-hero, same vibe as homepage trust-bar) ── */
.sp-trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--color-ink-100);
  padding: var(--space-5) 0;
}
.sp-trust-strip__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.sp-trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-8);
  position: relative;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  font-family: var(--font-display);
}
.sp-trust-strip__item + .sp-trust-strip__item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 1px;
  background: var(--color-ink-100);
}
.sp-trust-strip__item i {
  color: var(--color-accent);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Content + Sticky Sidebar layout ── */
.sp-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-12);
  align-items: start;
}
@media (max-width: 960px) {
  .sp-layout { grid-template-columns: 1fr; }
}

/* ── Sticky sidebar form card ── */
.sp-form-card {
  background: var(--surface-base);
  border: 1px solid var(--color-ink-100);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--navbar-h) + var(--topbar-h) + var(--space-5));
}
.sp-form-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  margin: 0 0 var(--space-2);
}
.sp-form-card__sub {
  font-size: var(--text-sm);
  color: var(--color-ink-400);
  margin: 0 0 var(--space-6);
}
.sp-form-card__trust {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-ink-100);
}
.sp-form-card__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-ink-400);
  font-weight: var(--weight-medium);
}
.sp-form-card__trust-item i { color: var(--color-success); font-size: 0.75rem; }

/* ── Prose overrides for service pages ── */
.sp-prose {
  padding: var(--space-section) 0;
}
.sp-prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: var(--weight-bold);
  letter-spacing: -0.025em;
  color: var(--color-primary);
  margin: 0 0 var(--space-4);
  padding-top: var(--space-10);
}
.sp-prose h2:first-child { padding-top: 0; }
.sp-prose h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-primary-dk);
  margin: var(--space-8) 0 var(--space-3);
}
.sp-prose p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-ink-500);
  margin: 0 0 var(--space-5);
}
.sp-prose ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.sp-prose ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-ink-500);
  line-height: var(--leading-normal);
}
.sp-prose ul li::before {
  content: '';
  width: 20px; height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--color-success-ghost);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23059669'%3E%3Cpath d='M12.7 4.3a1 1 0 0 1 0 1.4l-5.5 5.5a1 1 0 0 1-1.4 0l-2.5-2.5a1 1 0 1 1 1.4-1.4L6.5 9.1l4.8-4.8a1 1 0 0 1 1.4 0z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}
/* Divider between content sections */
.sp-prose__divider {
  height: 1px;
  background: var(--color-ink-100);
  margin: var(--space-10) 0;
}

/* ── Inline process steps (horizontal, 4 steps) ── */
.sp-process {
  background: var(--surface-dark-2);
  padding: var(--space-16) 0;
}
.sp-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
  position: relative;
}
/* Connecting line between steps */
.sp-process__steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent) 0%, rgba(245,158,11,0.2) 100%);
  z-index: 0;
}
.sp-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.sp-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: var(--weight-bold);
  color: #fff;
  margin: 0 auto var(--space-5);
  box-shadow: 0 4px 20px rgba(217,119,6,0.4);
}
.sp-step__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: #fff;
  margin: 0 0 var(--space-2);
}
.sp-step__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: var(--leading-relaxed);
}
@media (max-width: 768px) {
  .sp-process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .sp-process__steps::before { display: none; }
}
@media (max-width: 480px) {
  .sp-process__steps { grid-template-columns: 1fr; }
}

/* ── Service page CTA band ── */
.sp-cta {
  background: linear-gradient(135deg, var(--color-primary-dk) 0%, var(--color-primary) 60%, #1a3a7a 100%);
  padding: var(--space-16) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 24px,
    rgba(255,255,255,0.015) 24px,
    rgba(255,255,255,0.015) 25px
  );
  pointer-events: none;
}
.sp-cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.sp-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-lt);
  margin-bottom: var(--space-5);
}
.sp-cta__eyebrow::before {
  content: ''; width: 20px; height: 2px;
  background: var(--color-accent-lt);
}
.sp-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: var(--weight-extrabold);
  color: #fff;
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  margin: 0 0 var(--space-4);
}
.sp-cta__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.55);
  line-height: var(--leading-relaxed);
  margin: 0 0 var(--space-8);
}
.sp-cta__phone {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: var(--weight-extrabold);
  color: var(--color-accent-lt);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: var(--space-6);
  transition: color var(--ease-fast);
}
.sp-cta__phone:hover { color: #fff; }
.sp-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.sp-cta__ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.65);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  text-decoration: none;
  transition: color var(--ease-fast), gap var(--ease-fast);
}
.sp-cta__ghost:hover { color: #fff; gap: var(--space-3); }
.sp-cta__ghost i { font-size: 0.85em; }

/* ── Mini testimonials row (3 cards, white section) ── */
.sp-reviews {
  background: var(--surface-subtle);
  padding: var(--space-16) 0;
}
.sp-review-card {
  background: var(--surface-base);
  border: 1px solid var(--color-ink-100);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--ease-base), transform var(--ease-base);
}
.sp-review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.sp-review-card__stars {
  display: flex;
  gap: 3px;
  color: var(--color-accent);
  font-size: 0.85rem;
}
.sp-review-card__text {
  font-size: var(--text-base);
  color: var(--color-ink-500);
  line-height: var(--leading-relaxed);
  flex: 1;
  font-style: italic;
}
.sp-review-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-ink-100);
}
.sp-review-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--color-primary-ghost);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  flex-shrink: 0;
}
.sp-review-card__name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
}
.sp-review-card__label {
  font-size: var(--text-xs);
  color: var(--color-ink-400);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.sp-review-card__label i { color: #4285f4; font-size: 0.7rem; }

/* ── Related services dark section ── */
.sp-related {
  background: var(--surface-dark);
  padding: var(--space-section) 0;
}

/* ── FAQ section (light) ── */
.sp-faq {
  padding: var(--space-section) 0;
  background: var(--surface-base);
}
.sp-faq-item {
  border-bottom: 1px solid var(--color-ink-100);
}
.sp-faq-item:first-child { border-top: 1px solid var(--color-ink-100); }
.sp-faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  transition: color var(--ease-fast);
}
.sp-faq-btn:hover { color: var(--color-accent); }
.sp-faq-btn i {
  font-size: 0.85em;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform var(--ease-fast);
}
.sp-faq-item.open .sp-faq-btn i { transform: rotate(180deg); }
.sp-faq-answer {
  display: none;
  padding: 0 0 var(--space-5);
  font-size: var(--text-base);
  color: var(--color-ink-500);
  line-height: var(--leading-relaxed);
  max-width: 780px;
}
.sp-faq-item.open .sp-faq-answer { display: block; }

/* Service page layout normalization utilities */
.sp-layout-split { gap: 5rem; align-items: start; }
.btn--full-center { width: 100%; justify-content: center; }
.btn--full-center-mb { width: 100%; justify-content: center; margin-bottom: var(--space-4); }
.section-eyebrow-gap { margin-bottom: var(--space-4); }
.sp-grid-mt-lg { margin-top: var(--space-12); }
.sp-grid-top { margin-top: var(--space-10); }
.sp-section-head-note { margin-top: var(--space-8); text-align: center; }
.section-header--mb-lg { margin-bottom: var(--space-10); }
.sp-duo-grid { gap: var(--space-10); margin-top: var(--space-12); }
.sp-duo-grid-tight { gap: var(--space-8); margin-top: var(--space-10); }
.sp-panel-card {
  align-items: flex-start;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-8);
  background: var(--surface-base);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-ink-100);
  box-shadow: var(--shadow-card);
}
.sp-panel-head { display: flex; align-items: center; gap: var(--space-3); }
.sp-panel-check { background: rgba(30,58,138,0.08); color: var(--color-primary); }
.sp-panel-title { font-size: var(--text-lg); }
.sp-list-reset { padding: 0; margin: 0; }
.sp-muted-note { color: var(--color-ink-500); font-size: var(--text-sm); margin: 0; }
.sp-dark-cred {
  flex-direction: column;
  gap: var(--space-2);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.sp-dark-title { color: #fff; }
.u-no-underline { text-decoration: none; }
.accent-word--light { color: var(--color-accent-lt); }
.reveal--d1 { --delay: 0.1s; }
.reveal--d2 { --delay: 0.2s; }
.reveal--d3 { --delay: 0.3s; }
.reveal--d4 { --delay: 0.4s; }
.reveal--d07 { --delay: 0.07s; }
.reveal--d14 { --delay: 0.14s; }

/* Area pages: content-only block after hero form */
.quote-content-only {
  max-width: 860px;
  position: relative;
  isolation: isolate;
}
.quote-section .quote-content-only .sp-prose {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}
.quote-content-only::before {
  content: '';
  position: absolute;
  right: -320px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 320px;
  border-radius: 30px;
  background:
    linear-gradient(130deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 30%, transparent 70%),
    repeating-linear-gradient(130deg, rgba(147,197,253,0.12) 0 2px, transparent 2px 22px),
    radial-gradient(ellipse at 35% 45%, rgba(59,130,246,0.14) 0%, transparent 68%);
  opacity: 0.22;
  z-index: -1;
  pointer-events: none;
}
.quote-content-only::after {
  content: '';
  position: absolute;
  right: -260px;
  top: 50%;
  width: 170px;
  height: 170px;
  transform: translateY(-50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(15,23,42,0.45) 0%, rgba(15,23,42,0.2) 58%, transparent 100%);
  border: 1px solid rgba(245,158,11,0.32);
  box-shadow: 0 12px 28px rgba(0,0,0,0.28), inset 0 0 0 1px rgba(255,255,255,0.05);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23f59e0b' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round' opacity='0.9'%3E%3Cpath d='M26 98c6-24 28-42 54-42s48 18 54 42'/%3E%3Cpath d='M42 98c5-15 20-26 38-26s33 11 38 26'/%3E%3Cpath d='M80 62v18'/%3E%3Cpath d='M80 80l-8 8'/%3E%3Cpath d='M80 80l10 6'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}
.quote-section .quote-content-only .sp-prose p {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  line-height: 1.75;
  margin: 0 0 var(--space-5);
}
.quote-section .quote-content-only .sp-prose p:last-child {
  margin-bottom: 0;
}
.quote-section .quote-spillover {
  padding: var(--space-8);
  margin: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}
.quote-section .quote-spillover p {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1.05rem, 0.98rem + 0.35vw, 1.2rem);
  line-height: 1.8;
  max-width: 60ch;
  margin: 0 0 var(--space-6);
}
.quote-section .quote-spillover p:last-child {
  margin-bottom: 0;
}
.quote-section .quote-form-card {
  max-width: 520px;
  margin-left: auto;
  padding: var(--space-8);
}
.page-hero--with-form .page-hero__layout {
  align-items: start;
  gap: var(--space-10);
}
.page-hero--with-form .page-hero__sub {
  margin-bottom: var(--space-6);
}
.page-hero--with-form .page-hero__pills {
  margin-bottom: var(--space-6);
}
.page-hero__visual--form {
  align-items: stretch;
}
.page-hero__visual--form .quote-form-card {
  width: 100%;
  padding: var(--space-8);
}
@media (max-width: 1024px) {
  .page-hero--with-form .page-hero__layout {
    grid-template-columns: 1fr 380px;
  }
}
@media (max-width: 900px) {
  .quote-content-only::before,
  .quote-content-only::after {
    display: none;
  }
  .quote-section .quote-content-only .sp-prose {
    padding: var(--space-7);
  }
  .quote-section .quote-spillover {
    padding: var(--space-7);
  }
  .quote-section .quote-spillover p {
    font-size: clamp(1rem, 0.96rem + 0.25vw, 1.08rem);
    line-height: 1.72;
    margin-bottom: var(--space-5);
  }
  .quote-section .quote-form-card {
    max-width: 500px;
    padding: var(--space-7);
  }
  .page-hero__visual--form {
    display: block;
    margin-top: var(--space-8);
  }
  .page-hero__visual--form .quote-form-card {
    padding: var(--space-7);
  }
}
@media (max-width: 640px) {
  .quote-section .quote-content-only .sp-prose {
    padding: var(--space-6);
  }
  .quote-section .quote-content-only .sp-prose p {
    line-height: 1.65;
  }
  .quote-section .quote-spillover {
    padding: var(--space-6);
  }
  .quote-section .quote-spillover p {
    line-height: 1.66;
  }
  .quote-section .quote-form-card {
    max-width: 100%;
    padding: var(--space-6);
  }
  .page-hero--with-form .page-hero__sub {
    margin-bottom: var(--space-5);
  }
  .page-hero--with-form .page-hero__pills {
    gap: var(--space-2);
    margin-bottom: var(--space-5);
  }
  .page-hero--with-form .page-hero__pill {
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-3);
  }
  .page-hero__visual--form .quote-form-card {
    padding: var(--space-6);
  }
}

/* ============================================================
   REDUCED MOTION — accessibility
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
