/* ============================================================
   WESTMINSTER MOBILE AUTO GLASS — Design System v5
   Feel: REFINED AUTOMOTIVE CRAFTSMANSHIP
   Primary: Deep Crimson #9b1c1c | Accent: Rich Purple #7c3aed
   Display: Bebas Neue | Body: DM Sans
   ============================================================ */

/* --------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------- */
:root {
  /* Brand — deep crimson red */
  --teal:         #9b1c1c;
  --teal-dk:      #7f1d1d;
  --teal-lt:      #f87171;
  --teal-pale:    #fff1f2;
  --teal-ghost:   rgba(155,28,28,0.08);
  --teal-glow:    rgba(155,28,28,0.20);

  /* Accent — rich purple / violet */
  --orange:       #7c3aed;
  --orange-dk:    #6d28d9;
  --orange-lt:    #a78bfa;
  --orange-pale:  #f5f3ff;
  --orange-ghost: rgba(124,58,237,0.12);

  /* Neutrals — warm-toned grays */
  --gray-900: #16110a;
  --gray-800: #2a2118;
  --gray-700: #3d3228;
  --gray-600: #5c5042;
  --gray-500: #7d6e5e;
  --gray-400: #9e9082;
  --gray-300: #c4b8ab;
  --gray-200: #ddd3c8;
  --gray-100: #ede8e2;
  --gray-50:  #f7f4f0;

  /* Surfaces — warm-toned light */
  --white:          #fefcf9;
  --off-white:      #faf7f3;
  --light-gray:     #f3efe9;
  --light-teal-bg:  #fdf4ff;
  --surface-subtle: #faf5ff;
  /* Dark — near-black with purple undertone */
  --dark-teal:      #0d0a14;
  --dark-teal-2:    #160f22;
  --dark-teal-3:    #1e1535;

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'DM Serif Display', serif;
  --font-body:    'DM Sans', sans-serif;

  /* Type scale */
  --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-page: clamp(1.9rem, 3.5vw, 2.75rem);

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

  --leading-tight:   1.05;
  --leading-snug:    1.25;
  --leading-normal:  1.6;
  --leading-relaxed: 1.75;

  /* 8px spacing */
  --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-section: 6rem;

  /* Radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --radius-pill: 9999px;

  /* Shadows — deeper, warmer */
  --shadow-xs:    0 1px 3px rgba(11,18,32,0.10);
  --shadow-sm:    0 2px 8px rgba(11,18,32,0.12);
  --shadow-md:    0 8px 24px rgba(11,18,32,0.14);
  --shadow-lg:    0 20px 50px rgba(11,18,32,0.18);
  --shadow-teal:  0 6px 24px rgba(155,28,28,0.28);
  --shadow-orange:0 6px 24px rgba(124,58,237,0.30);

  /* Easing */
  --ease-fast:   0.20s cubic-bezier(0.22, 1, 0.36, 1);
  --ease-base:   0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);

  /* Layout */
  --container-max: 1200px;
  --navbar-h:  76px;
  --topbar-h:  40px;
}

/* --------------------------------------------------------
   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: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Noise texture for dark sections — adds depth, removes flatness */
.final-cta,
.site-footer,
.hero {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

img, video { 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-12); }

/* --------------------------------------------------------
   4. TOPBAR — white with teal accent
   -------------------------------------------------------- */
.topbar {
  height: var(--topbar-h);
  background: var(--dark-teal);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  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-2);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.topbar__espanol {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topbar__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(124,58,237,0.15);
  color: var(--orange-lt);
  font-size: 0.68rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(124,58,237,0.30);
}

.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.90);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  transition: color var(--ease-fast);
  letter-spacing: 0.02em;
}
.topbar__phone i { color: var(--orange); font-size: 12px; }
.topbar__phone:hover { color: var(--orange-lt); }

/* --------------------------------------------------------
   5. NAVBAR — white bg, clean, light
   -------------------------------------------------------- */
.navbar {
  height: var(--navbar-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: var(--topbar-h);
  z-index: 1000;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--ease-base);
}

.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}

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

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

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

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

.navbar__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  color: var(--gray-700);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-md);
  transition: color var(--ease-fast), background var(--ease-fast);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.navbar__link:hover,
.navbar__link.active {
  color: var(--teal);
  background: var(--teal-ghost);
}
.navbar__link .fa-chevron-down {
  font-size: 9px;
  opacity: 0.55;
  transition: transform 0.2s;
}
.navbar__dropdown:hover .navbar__link .fa-chevron-down,
.navbar__dropdown.open  .navbar__link .fa-chevron-down {
  transform: rotate(180deg);
  opacity: 1;
}

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

.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top left;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
/* Top accent line */
.navbar__dropdown-menu::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-lt));
  border-radius: 3px 3px 0 0;
  margin: -6px -6px 6px;
}

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

/* Dropdown section label */
.navbar__dropdown-label {
  padding: 6px 12px 4px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.navbar__dropdown-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 4px 6px;
}

.navbar__dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  color: var(--gray-700);
  font-size: 0.845rem;
  font-weight: var(--weight-medium);
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  line-height: 1.3;
}
.navbar__dropdown-item:hover {
  color: var(--teal);
  background: var(--teal-ghost);
}
.navbar__dropdown-item:hover .navbar__dropdown-item-icon {
  background: var(--teal);
  color: #fff;
}
.navbar__dropdown-item-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 7px;
  background: var(--surface-subtle);
  border: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: var(--teal);
  transition: background 0.15s, color 0.15s;
}

.navbar__cta { display: flex; align-items: center; }

/* ── Mobile toggle ── */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--ease-fast);
}
.navbar__toggle:hover { background: var(--gray-100); }
.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 1px;
  transition: transform var(--ease-base), opacity var(--ease-fast);
}
.navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu ── */
.navbar__mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--topbar-h) + var(--navbar-h));
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: var(--space-3) var(--space-5) var(--space-5);
  z-index: 999;
  flex-direction: column;
  gap: 1px;
  max-height: calc(100vh - var(--topbar-h) - var(--navbar-h));
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}
.navbar__mobile-menu.open { display: flex; }

.navbar__mobile-link {
  padding: 9px 12px;
  color: var(--gray-700);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  border-radius: var(--radius-md);
  transition: color var(--ease-fast), background var(--ease-fast);
  display: block;
}
.navbar__mobile-link:hover { color: var(--teal); background: var(--teal-ghost); }
.navbar__mobile-link.section-head {
  font-weight: var(--weight-bold);
  color: var(--gray-900);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 14px 12px 5px;
  color: var(--gray-400);
  pointer-events: none;
}
.navbar__mobile-link.indent {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px 8px 14px;
  font-size: 0.845rem;
  color: var(--gray-600);
}
.navbar__mobile-link.indent i {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--surface-subtle);
  border: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--teal);
}
.navbar__mobile-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 6px 4px;
}

/* --------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 11px 24px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--ease-fast), box-shadow var(--ease-fast), background var(--ease-fast);
  white-space: nowrap;
}

/* Primary — deep navy, sharp corners feel premium */
.btn--primary {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow-teal);
  letter-spacing: 0.04em;
}
.btn--primary:hover {
  background: var(--teal-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(155,28,28,0.38);
}

/* Secondary = gold accent */
.btn--secondary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
  letter-spacing: 0.04em;
}
.btn--secondary:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(124,58,237,0.38);
}

/* Outline navy */
.btn--outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  letter-spacing: 0.04em;
}
.btn--outline:hover {
  background: var(--teal-ghost);
  transform: translateY(-2px);
}

/* Outline on dark bg — gold tinted */
.btn--outline-light {
  background: rgba(124,58,237,0.10);
  color: var(--orange-lt);
  border: 1.5px solid rgba(124,58,237,0.35);
  letter-spacing: 0.04em;
}
.btn--outline-light:hover {
  background: rgba(124,58,237,0.18);
  transform: translateY(-2px);
  color: #fff;
}

.btn--lg { padding: 14px 32px; font-size: var(--text-base); }
.btn__icon { display: flex; align-items: center; }

/* --------------------------------------------------------
   7. SCROLL REVEAL
   -------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------
   8. SECTION HEADERS
   -------------------------------------------------------- */
.section-header { margin-bottom: var(--space-12); }
.section-header--center { text-align: center; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-3);
  background: transparent;
  border: none;
  border-left: 3px solid var(--orange);
  border-radius: 0;
  padding: 2px 0 2px 10px;
}
.section-eyebrow::before { display: none; }

.section-eyebrow--light {
  color: var(--orange-lt);
  border-left-color: var(--orange-lt);
}
.section-eyebrow--amber {
  color: var(--orange);
  border-left-color: var(--orange);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: var(--weight-regular);
  line-height: var(--leading-tight);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gray-900);
  margin-bottom: var(--space-4);
}
.section-title--light { color: #fff; }

.section-subtitle {
  font-size: var(--text-lg);
  font-weight: var(--weight-light);
  color: var(--gray-600);
  line-height: var(--leading-relaxed);
  max-width: 640px;
}
.section-header--center .section-subtitle { margin-inline: auto; }
.section-subtitle--light { color: rgba(255,255,255,0.60); }

/* --------------------------------------------------------
   9. HERO — LIGHT background, big bold dark headline
   -------------------------------------------------------- */
/* ============================================================
   HERO — Magazine split: white left, full-bleed image right
   Color: charcoal + electric amber #f59e0b accent
   ============================================================ */
.hero {
  position: relative;
  background: #f8f6f2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Full-bleed image panel — occupies right ~58% */
.hero__img-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 48%;
  z-index: 0;
}
.hero__img-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
/* Diagonal scrim: dark fade from right-image into white left */
.hero__img-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    #f8f6f2 0%,
    #f8f6f2 10%,
    rgba(248,246,242,0.85) 25%,
    rgba(248,246,242,0.15) 50%,
    transparent 70%
  );
}

/* Stage holds all content, sits above image */
.hero__stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
  max-width: 1320px;
  margin-inline: auto;
  width: 100%;
  padding-inline: clamp(var(--space-10), 7vw, var(--space-20));
}

.hero__copy {
  max-width: 540px;
  padding-block: 0;
}

/* Eyebrow tag — charcoal chip */
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 5px 13px;
  background: #1c1917;
  color: rgba(255,255,255,0.72);
  font-size: 0.70rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-3);
}
.hero__tag-dot {
  width: 6px; height: 6px;
  background: #f59e0b;
  border-radius: 50%;
  flex-shrink: 0;
  animation: livePulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(245,158,11,0.6);
}
@keyframes livePulse {
  0%  { box-shadow: 0 0 0 0 rgba(245,158,11,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(245,158,11,0); }
  100%{ box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}

/* Headline — three stacked lines, enormous Bebas */
.hero__h1 {
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-3);
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.hero__h1-line1 {
  display: block;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  color: #1c1917;
  text-transform: uppercase;
}
.hero__h1-line2 {
  display: block;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  color: transparent;
  -webkit-text-stroke: 2px #1c1917;
  text-transform: uppercase;
}
.hero__h1-line3 {
  display: block;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  color: #f59e0b;
  text-transform: uppercase;
}

/* Sub headline */
.hero__sub {
  font-size: clamp(0.88rem, 1vw, 0.97rem);
  color: #57534e;
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: var(--space-4);
}

/* Hero feature pills */
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.85rem;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--gray-700);
  backdrop-filter: blur(4px);
}
.hero__pill i { color: var(--teal); font-size: 0.82em; }

/* CTA block */
.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

/* Primary CTA — large dark pill with amber icon box */
.hero__btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  background: #1c1917;
  border-radius: var(--radius-pill);
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(28,25,23,0.22);
  transition: transform var(--ease-fast), box-shadow var(--ease-fast);
}
.hero__btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(28,25,23,0.32);
}
.hero__btn-call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: #f59e0b;
  color: #1c1917;
  font-size: 1rem;
  flex-shrink: 0;
}
.hero__btn-call span:last-child {
  display: flex;
  flex-direction: column;
  padding-left: var(--space-4);
  padding-right: var(--space-5);
}
.hero__btn-call-label {
  font-size: 0.65rem;
  font-weight: var(--weight-semibold);
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}
.hero__btn-call-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin-top: 2px;
}

/* Secondary CTA — amber underline link */
.hero__btn-quote {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: #1c1917;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid #f59e0b;
  transition: color var(--ease-fast), gap var(--ease-fast);
}
.hero__btn-quote:hover { color: #f59e0b; gap: var(--space-3); }
.hero__btn-quote i { font-size: 10px; }

/* Trust strip — 4 stats in a row */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 0;
  padding: var(--space-3) var(--space-4);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(28,25,23,0.08);
  width: fit-content;
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: var(--space-5);
}
.hero__trust-item:first-child { padding-left: 0; }
.hero__trust-item:last-child { padding-right: 0; }
.hero__trust-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #1c1917;
  line-height: 1;
  letter-spacing: 0.03em;
}
.hero__trust-lbl {
  font-size: 0.60rem;
  color: #a8a29e;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: var(--weight-semibold);
  margin-top: 3px;
  white-space: nowrap;
}
.hero__trust-rule {
  width: 1px;
  height: 28px;
  background: #e7e5e4;
  flex-shrink: 0;
}

/* Floating pill at bottom of image */
.hero__pill-float {
  position: absolute;
  bottom: var(--space-10);
  right: var(--space-10);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: #f59e0b;
  color: #1c1917;
  font-size: 0.78rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(245,158,11,0.40);
  white-space: nowrap;
  animation: floatB 6s ease-in-out infinite;
}
.hero__pill-float i { font-size: 0.9rem; }

/* keep old elements hidden */
.hero__image-wrap { display: none; }
.hero__float-card { display: none; }
.hero__float-icon {
  width: 36px;
  height: 36px;
  background: var(--teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}
.hero__float-icon--orange { background: var(--orange); }
.hero__float-label {
  font-size: 0.82rem;
  font-weight: var(--weight-semibold);
  color: var(--gray-900);
  line-height: 1.2;
}
.hero__float-sub {
  font-size: 0.68rem;
  color: var(--gray-500);
  margin-top: 2px;
}
.hero__float-stars { color: var(--orange); font-size: 0.72rem; }

/* --------------------------------------------------------
   10. TRUST BAR — light teal tint
   -------------------------------------------------------- */
.trust-bar {
  background: var(--light-teal-bg);
  padding-block: var(--space-5);
  border-bottom: 1px solid rgba(155,28,28,0.10);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-8);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.trust-item__icon {
  width: 34px;
  height: 34px;
  background: rgba(155,28,28,0.10);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--teal);
  flex-shrink: 0;
}
.trust-item__label {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--gray-800);
}
.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(155,28,28,0.15);
  flex-shrink: 0;
}

/* --------------------------------------------------------
   11. QUOTE SECTION — white bg with teal left panel
   -------------------------------------------------------- */
/* ── Quote Section — Dark premium layout ── */
.quote-section {
  background: var(--dark-teal);
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(155,28,28,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 100%, rgba(124,58,237,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Header band */
.quote-section__header {
  padding: var(--space-section) 0 var(--space-10);
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.quote-section__header-inner {
  max-width: 680px;
}
.quote-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.28);
  color: var(--orange);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.quote-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.quote-section__title em {
  font-style: normal;
  color: var(--orange);
}
.quote-section__sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 1.75rem;
}
.quote-section__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.quote-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}
.quote-chip i { color: var(--orange); font-size: 11px; }

/* Body: benefits + form */
.quote-section__body {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: var(--space-12);
  align-items: start;
  padding: var(--space-12) 0 var(--space-section);
  position: relative;
  z-index: 1;
}

/* Benefits column (dark version) */
.quote-benefits__list {
  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);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  transition: background 0.2s, border-color 0.2s;
}
.quote-benefit:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(124,58,237,0.20);
}
.quote-benefit__icon {
  width: 42px;
  height: 42px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--orange);
  flex-shrink: 0;
}
.quote-benefit__title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: rgba(255,255,255,0.92);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.quote-benefit__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: var(--leading-normal);
}

/* Rating strip */
.quote-rating {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: rgba(124,58,237,0.06);
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: var(--radius-lg);
}
.quote-rating__stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 2px;
}
.quote-rating__text {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: rgba(255,255,255,0.55);
}

/* Quote form card */
.quote-form-card,
.quote-card {
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: var(--space-8);
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 8px 24px rgba(0,0,0,0.20);
  position: relative;
  overflow: hidden;
}
.quote-form-card::before,
.quote-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
}

.quote-form-card .quote-head,
.quote-card .quote-head {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.quote-form-card .quote-icon,
.quote-card .quote-icon {
  width: 46px;
  height: 46px;
  background: var(--teal);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.quote-form-card .quote-head h2,
.quote-card .quote-head h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--gray-900);
  margin-bottom: 4px;
}
.quote-form-card .quote-head p,
.quote-card .quote-head p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: var(--leading-normal);
}

.quote-form-card .form-grid,
.quote-card .form-grid { display: flex; flex-direction: column; gap: var(--space-4); }
.quote-form-card .form-row-2,
.quote-card .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 480px) {
  .quote-form-card .form-row-2,
  .quote-card .form-row-2 { grid-template-columns: 1fr; }
}

.quote-form-card .field label,
.quote-card .field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--gray-800);
  margin-bottom: var(--space-2);
}
.quote-form-card .input-shell,
.quote-card .input-shell {
  position: relative;
  display: flex;
  align-items: center;
}
.quote-form-card .input-shell i,
.quote-card .input-shell i {
  position: absolute;
  left: 13px;
  color: var(--gray-400);
  font-size: 14px;
  pointer-events: none;
}
.quote-form-card .input-shell input,
.quote-form-card .input-shell textarea,
.quote-card .input-shell input,
.quote-card .input-shell textarea {
  width: 100%;
  padding: 11px 14px 11px 38px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--gray-900);
  background: var(--gray-50);
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast), background var(--ease-fast);
  outline: none;
}
.quote-form-card .input-shell textarea,
.quote-card .input-shell textarea { resize: vertical; min-height: 88px; }
.quote-form-card .input-shell.textarea,
.quote-card .input-shell.textarea { align-items: flex-start; }
.quote-form-card .input-shell.textarea i,
.quote-card .input-shell.textarea i { top: 13px; }
.quote-form-card .input-shell input:focus,
.quote-form-card .input-shell textarea:focus,
.quote-card .input-shell input:focus,
.quote-card .input-shell textarea:focus {
  border-color: var(--teal-lt);
  box-shadow: 0 0 0 3px rgba(155,28,28,0.10);
  background: var(--white);
}
.quote-form-card .captcha-row,
.quote-card .captcha-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.quote-form-card .captcha-row img,
.quote-card .captcha-row img { border-radius: var(--radius-sm); flex-shrink: 0; }
.quote-form-card .form-submit,
.quote-card .form-submit {
  width: 100%;
  padding: 13px;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--ease-fast), transform var(--ease-fast), box-shadow var(--ease-fast);
  box-shadow: var(--shadow-teal);
}
.quote-form-card .form-submit:hover,
.quote-card .form-submit:hover {
  background: var(--teal-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(155,28,28,0.32);
}
.quote-form-card .form-foot,
.quote-card .form-foot {
  margin-top: var(--space-4);
  text-align: center;
  font-size: var(--text-xs);
  color: var(--gray-400);
}

/* --------------------------------------------------------
   12. PROCESS SECTION — light gray bg
   -------------------------------------------------------- */
.process-section {
  background: var(--light-gray);
  padding-block: var(--space-section);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.process-step {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: transform var(--ease-base), box-shadow var(--ease-base);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-step__num {
  width: 52px;
  height: 52px;
  background: var(--teal);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: var(--weight-extrabold);
  color: #fff;
  margin: 0 auto var(--space-5);
}
.process-step__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--gray-900);
  margin-bottom: var(--space-3);
}
.process-step__desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: var(--leading-normal);
}

/* --------------------------------------------------------
   13. SERVICES SECTION
   -------------------------------------------------------- */
.services-section {
  background: var(--dark-teal);
  padding-block: var(--space-section);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 100% 0%, rgba(155,28,28,0.14) 0%, transparent 60%);
  pointer-events: none;
}

/* Header split */
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: end;
  margin-bottom: var(--space-12);
  position: relative;
  z-index: 1;
}
.services-header__left .section-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(124,58,237,0.10);
  border: 1px solid rgba(124,58,237,0.25);
  color: var(--orange);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}
.services-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
}
.services-title em {
  font-style: normal;
  color: var(--orange);
}
.services-header__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
  padding-bottom: 0.25rem;
}
.services-desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.50);
  line-height: 1.7;
}
.services-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(155,28,28,0.30);
}
.services-cta-btn:hover {
  background: var(--teal-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(155,28,28,0.40);
}

/* Services 3-col grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(155,28,28,0.28);
}

/* Number */
.service-card__num {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.18);
  margin-bottom: var(--space-4);
}

/* Icon */
.service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(155,28,28,0.15);
  border: 1px solid rgba(56,189,248,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--teal-lt);
  margin-bottom: var(--space-5);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}
.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(-6deg);
  background: var(--teal);
  color: #fff;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.4vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.service-card__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}

.service-card__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: var(--space-3);
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  flex: 1;
}
.service-card__list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.50);
  line-height: 1.4;
}
.service-card__list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--teal-lt);
  text-decoration: none;
  margin-top: auto;
  padding-top: var(--space-2);
  transition: gap 0.2s, color 0.2s;
}
.service-card__link:hover { color: var(--white); gap: 0.7rem; }

/* --------------------------------------------------------
   14. WHY US — THE ONE DARK SECTION (teal dark)
   -------------------------------------------------------- */
/* Homepage why-section (no .section prefix = white bg) */
.why-section:not(.section) {
  background: var(--white);
  padding-block: var(--space-section);
}
/* Inner page why-section (.section.why-section = dark bg) gets padding from .section */
.section.why-section {
  padding-block: var(--space-section);
}
.why-section:not(.section) .section-title--light { color: var(--gray-900); }
.why-section:not(.section) .section-subtitle--light { color: var(--gray-600); }
.why-section:not(.section) .section-eyebrow--light {
  color: var(--teal);
  border-left-color: var(--teal);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  position: relative;
  overflow: hidden;
  transition: transform var(--ease-base), border-color var(--ease-base), box-shadow var(--ease-base);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--teal), var(--orange));
  transform: scaleY(0.3);
  transform-origin: top;
  transition: transform var(--ease-base);
}
.why-card:hover::before { transform: scaleY(1); }
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(155,28,28,0.18);
  box-shadow: 0 12px 32px rgba(155,28,28,0.1);
}
.why-card__num {
  font-size: 0.68rem;
  font-weight: var(--weight-extrabold);
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.why-card__icon {
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: var(--space-3);
}
.why-card__title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--gray-900);
  margin-bottom: var(--space-3);
}
.why-card__desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: var(--leading-normal);
}

/* --------------------------------------------------------
   15. COVERAGE / AREAS — light teal bg
   -------------------------------------------------------- */
.areas-section {
  background: var(--white);
  padding-block: var(--space-section);
  border-top: 1px solid var(--gray-100);
}
.areas-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 7px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  color: var(--gray-700);
  font-weight: var(--weight-medium);
  transition: border-color var(--ease-fast), color var(--ease-fast), background var(--ease-fast);
}
.area-pill i { color: var(--teal-lt); font-size: 11px; }
.area-pill:hover {
  border-color: var(--teal-lt);
  color: var(--teal-dk);
  background: var(--teal-pale);
}
.area-pill--primary {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  font-weight: var(--weight-semibold);
}
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid rgba(155,28,28,0.12);
  box-shadow: var(--shadow-md);
}
.map-wrap iframe {
  width: 100%;
  height: 360px;
  display: block;
}

/* --------------------------------------------------------
   16. TESTIMONIALS — white bg
   -------------------------------------------------------- */
.testimonials-section {
  background: var(--light-teal-bg);
  padding-block: var(--space-section);
  border-top: 1px solid rgba(155,28,28,0.08);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  position: relative;
  overflow: hidden;
  transition: transform var(--ease-base), box-shadow var(--ease-base);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--teal), var(--orange));
}
.testimonial-card__stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-4);
  display: block;
}
.testimonial-card__text {
  font-size: var(--text-sm);
  color: var(--gray-700);
  line-height: var(--leading-relaxed);
  font-style: italic;
  margin-bottom: var(--space-5);
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-100);
}
.testimonial-card__avatar {
  width: 38px;
  height: 38px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--gray-900);
}
.testimonial-card__badge { font-size: 0.68rem; color: var(--gray-400); margin-top: 2px; }

/* --------------------------------------------------------
   17. STANDARDS — light gray bg
   -------------------------------------------------------- */
.standards-section {
  background: var(--light-gray);
  padding-block: var(--space-section);
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-12);
}
.cred-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  transition: transform var(--ease-base), box-shadow var(--ease-base);
}
.cred-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.cred-card__icon {
  width: 50px;
  height: 50px;
  background: rgba(155,28,28,0.09);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--teal);
  margin: 0 auto var(--space-4);
}
.cred-card__label {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--gray-800);
  line-height: var(--leading-snug);
}
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.standard-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-left: 4px solid var(--teal-lt);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: transform var(--ease-base), border-left-color var(--ease-base), box-shadow var(--ease-base);
}
.standard-card:hover {
  transform: translateY(-4px);
  border-left-color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.standard-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--gray-900);
  margin-bottom: var(--space-2);
}
.standard-card p { font-size: var(--text-sm); color: var(--gray-600); line-height: var(--leading-normal); }

/* --------------------------------------------------------
   18. FAQ — white bg
   -------------------------------------------------------- */
.faq-section {
  background: var(--white);
  padding-block: var(--space-section);
  border-top: 1px solid var(--gray-100);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-16);
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item {
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--ease-fast);
}
.faq-item.open { border-color: var(--teal-lt); }
.faq-item.open .faq-question { color: var(--teal-dk); background: var(--teal-ghost); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--gray-800);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: var(--space-4);
  transition: color var(--ease-fast), background var(--ease-fast);
}
.faq-question:hover { background: var(--gray-50); }
.faq-question span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--gray-600);
  flex-shrink: 0;
  transition: transform var(--ease-base), background var(--ease-fast), color var(--ease-fast);
}
.faq-item.open .faq-question span {
  transform: rotate(45deg);
  background: var(--teal);
  color: #fff;
}
/* FAQ icon variant using <i.faq-icon> (service pages) */
.faq-question i.faq-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--gray-500);
  transition: transform var(--ease-base), color var(--ease-fast);
  margin-left: auto;
}
.faq-item.open .faq-question i.faq-icon {
  transform: rotate(180deg);
  color: var(--teal);
}
.faq-answer {
  display: none;
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: var(--leading-relaxed);
}
.faq-item.open .faq-answer { display: block; }

/* Sticky CTA sidebar */
.faq-cta-card {
  background: var(--dark-teal);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: sticky;
  top: calc(var(--topbar-h) + var(--navbar-h) + 24px);
}
.faq-cta-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-extrabold);
  color: #fff;
  margin-bottom: var(--space-3);
  margin-top: var(--space-3);
  line-height: var(--leading-snug);
}
.faq-cta-phone {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--orange-lt);
  margin-bottom: var(--space-5);
  display: block;
}
.faq-cta-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.faq-cta-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
}
.faq-cta-list li::before {
  content: '✓';
  color: var(--teal-lt);
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}

/* --------------------------------------------------------
   19. FINAL CTA — teal dark bg
   -------------------------------------------------------- */
.final-cta {
  background: var(--dark-teal);
  padding-block: var(--space-section);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-dk), var(--orange), var(--orange-lt), rgba(255,255,255,0.20));
}
.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-inline: auto;
}
.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--weight-extrabold);
  color: #fff;
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}
.final-cta__desc {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}
.final-cta__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.final-cta__meta {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}

/* --------------------------------------------------------
   20. TOP-RATED STRIP
   -------------------------------------------------------- */
.top-rated-section {
  background: var(--light-gray);
  padding-block: var(--space-10);
  border-block: 1px solid var(--gray-200);
}
.top-rated-section .section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-10);
}
.trust-logos img {
  height: 90px;
  width: auto;
  opacity: 0.75;
  filter: grayscale(20%);
  transition: opacity var(--ease-fast), filter var(--ease-fast);
}
.trust-logos img:hover { opacity: 1; filter: none; }

/* --------------------------------------------------------
   21. LOCAL MAP / WEATHER
   -------------------------------------------------------- */
.local-section {
  background: var(--light-teal-bg);
  padding-block: var(--space-section);
}
.weather-wrap {
  margin-top: var(--space-6);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* --------------------------------------------------------
   22. FOOTER — dark teal
   -------------------------------------------------------- */
.site-footer {
  background: var(--dark-teal);
  background-image:
    radial-gradient(ellipse 70% 60% at 5% 100%, rgba(155,28,28,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 95% 0%, rgba(124,58,237,0.08) 0%, transparent 55%);
  position: relative;
}
.footer-accent {
  height: 2px;
  background: linear-gradient(90deg, var(--orange-dk), var(--orange), var(--orange-lt), rgba(255,255,255,0.20));
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.2fr 1fr;
  gap: var(--space-10);
  padding-block: var(--space-section);
}
.footer-logo { height: 48px; width: auto; margin-bottom: var(--space-5); display: block; }
.footer-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.footer-contact-item i {
  color: var(--teal-lt);
  font-size: 13px;
  width: 30px; height: 30px;
  background: rgba(56,189,248,0.12);
  border: 1px solid rgba(56,189,248,0.20);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-item span { font-size: var(--text-sm); color: rgba(255,255,255,0.65); line-height: var(--leading-normal); }
.footer-contact-item a { font-size: var(--text-sm); color: rgba(255,255,255,0.70); transition: color var(--ease-fast); }
.footer-contact-item a:hover { color: #fff; }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: var(--space-4);
  display: block;
}
.footer-links { display: flex; flex-direction: column; gap: 3px; }
.footer-links a {
  font-size: 0.845rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s, padding-left 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 0;
}
.footer-links a::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(56,189,248,0.5);
  flex-shrink: 0;
  transition: background 0.15s, transform 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,0.92); padding-left: 3px; }
.footer-links a:hover::before { background: var(--teal-lt); transform: scale(1.5); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom-text { font-size: var(--text-xs); color: rgba(255,255,255,0.40); }
.footer-bottom-links { display: flex; align-items: center; gap: var(--space-5); }
.footer-bottom-links a { font-size: var(--text-xs); color: rgba(255,255,255,0.40); transition: color var(--ease-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.80); }

/* --------------------------------------------------------
   23. BACK TO TOP + MOBILE CTA BAR
   -------------------------------------------------------- */
#backTop {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-teal);
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--ease-fast), transform var(--ease-fast);
  border: none;
}
#backTop.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#backTop:hover { background: var(--teal-dk); transform: translateY(-2px); }

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--teal);
  padding: var(--space-4) var(--space-6);
  z-index: 995;
  box-shadow: 0 -4px 20px rgba(124,58,237,0.30);
}
.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: #fff;
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
}

/* --------------------------------------------------------
   24. ANIMATIONS
   -------------------------------------------------------- */
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(155,28,28,0.5); }
  70%       { box-shadow: 0 0 0 7px rgba(155,28,28,0); }
}
@keyframes floatA {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(-5px); }
  50%       { transform: translateY(5px); }
}

/* --------------------------------------------------------
   25. RESPONSIVE
   -------------------------------------------------------- */
@media (max-width: 1100px) {
  .hero__img-panel { width: 50%; }
  .hero__img-scrim { background: linear-gradient(105deg, #f8f6f2 0%, #f8f6f2 15%, rgba(248,246,242,0.85) 30%, rgba(248,246,242,0.10) 55%, transparent 70%); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--space-10); }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .navbar__nav, .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }
  .topbar__espanol { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-header { grid-template-columns: 1fr; gap: var(--space-6); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .standards-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-section__inner { grid-template-columns: 1fr; }
  .quote-section__body { grid-template-columns: 1fr; }
  .quote-section__chips { display: none; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-cta-card { position: static; }
  .trust-bar__inner { gap: var(--space-5); }
  .trust-divider { display: none; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 70px; }
  /* Hero: stack — image becomes background */
  .hero__img-panel { width: 100%; }
  .hero__img-scrim { background: linear-gradient(to bottom, rgba(248,246,242,0.96) 0%, rgba(248,246,242,0.90) 50%, rgba(248,246,242,0.70) 100%); }
  .hero__pill-float { display: none; }
  .hero__trust { flex-wrap: wrap; gap: var(--space-4) 0; }
}

@media (max-width: 640px) {
  :root { --space-section: 4.5rem; }
  .container { padding-inline: var(--space-4); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .standards-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__copy { padding-block: var(--space-12); }
  .hero__trust { width: 100%; justify-content: space-between; }
  .hero__trust-item { padding-inline: var(--space-3); }
  .process-grid { grid-template-columns: 1fr; }
  .final-cta__ctas { flex-direction: column; }
  .topbar__badge { display: none; }
}


/* ============================================================
   26. INNER PAGE STYLES — Service & Location Pages
   ============================================================ */

/* ── Page Hero ── */
.page-hero {
  background: linear-gradient(160deg, var(--white) 0%, var(--light-teal-bg) 100%);
  padding: calc(var(--navbar-h,72px) + var(--topbar-h,44px) + 3rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, var(--teal-ghost) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-hero__content { min-width: 0; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.page-hero__breadcrumb a { color: var(--teal); text-decoration: none; }
.page-hero__breadcrumb a:hover { color: var(--teal-dk); }
.page-hero__breadcrumb-sep { font-size: 10px; color: var(--gray-400); }
.page-hero__breadcrumb-current { color: var(--gray-600); }
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal-ghost);
  border: 1px solid var(--teal-glow);
  color: var(--teal);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.page-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--gray-900);
  line-height: var(--leading-tight);
  margin-bottom: 1.25rem;
}
.page-hero__h1 em {
  font-style: normal;
  color: var(--teal);
}
.page-hero__sub {
  font-size: var(--text-lg);
  color: var(--gray-600);
  line-height: var(--leading-normal);
  margin-bottom: 1.75rem;
  max-width: 560px;
}
.page-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.page-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.page-hero__pill i { color: var(--teal); font-size: 0.85em; }
.page-hero__cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.page-hero__cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  font-size: var(--text-base);
  transition: gap 0.2s;
}
.page-hero__cta-ghost:hover { gap: 0.75rem; color: var(--teal-dk); }
.page-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero__visual-ring {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 2px solid var(--teal-ghost);
  background: radial-gradient(circle, var(--teal-pale) 0%, transparent 70%);
}
.page-hero__visual-img {
  position: relative;
  z-index: 1;
  width: 360px;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: var(--shadow-teal);
}

/* ── Inner page trust-bar override (light) ── */
.page-hero + .trust-bar { margin-top: 0; }

/* ── Section: Why Us — inner pages (location + service) dark ── */
.section.why-section {
  background: var(--dark-teal);
  position: relative;
  overflow: hidden;
}
.section.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(155,28,28,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.why-grid-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.why-card-inner {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.why-card-inner:hover {
  border-color: var(--teal-lt);
  transform: translateY(-4px);
}
.why-card-inner__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: var(--weight-extrabold);
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.why-card-inner__icon {
  width: 48px; height: 48px;
  border-radius: 0.75rem;
  background: var(--teal-ghost);
  border: 1px solid var(--teal-glow);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--teal-lt);
}
.why-card-inner__title {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: #fff;
  margin-bottom: 0.6rem;
}
.why-card-inner__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: var(--leading-normal);
}

/* ── Section: Process (light bg) ── */
.process-section-inner {
  background: var(--light-gray);
}
.process-steps-inner {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
}
.process-step-inner {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.process-step-inner:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px var(--teal-glow);
}
.process-step-inner__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: var(--weight-extrabold);
  color: var(--teal-pale);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-step-inner__icon {
  width: 52px; height: 52px;
  border-radius: 0.9rem;
  background: var(--teal-ghost);
  border: 1px solid var(--teal-glow);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--teal);
}
.process-step-inner__title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.process-step-inner__desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: var(--leading-normal);
}
.process-connector-inner {
  color: var(--teal);
  font-size: 1.1rem;
  padding-top: 3.5rem;
  flex-shrink: 0;
}

/* ── Section: Content Body ── */
.content-section { background: var(--white); }
.content-section--alt { background: var(--surface-subtle); }

/* ── Bare h3 inside content sections ── */
.content-section h3,
.content-section--alt h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--gray-900);
  margin-bottom: 0.65rem;
  margin-top: 1.5rem;
}
.content-section h3:first-child,
.content-section--alt h3:first-child { margin-top: 0; }

.content-section h4,
.content-section--alt h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--gray-800);
  margin-bottom: 0.4rem;
  margin-top: 1rem;
}

.content-section p,
.content-section--alt p {
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: var(--leading-relaxed);
  margin-bottom: 1rem;
}

/* ── content-list wrapper ── */
.content-list {
  max-width: 760px;
  margin-inline: auto;
}
.content-list p {
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: var(--leading-relaxed);
  margin-top: 1rem;
}

/* ── sp-list-block (two-col list card in content sections) ── */
.sp-list-block p {
  font-size: var(--text-base);
  color: var(--gray-700);
  font-weight: var(--weight-bold);
  margin-bottom: 0.5rem;
}

/* ── content-prose (prose wrapper on light sections) ── */
.content-prose p {
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: var(--leading-relaxed);
  margin-bottom: 1rem;
}
.content-prose ul,
.content-prose ol {
  margin: 0.5rem 0 1rem;
  padding-left: var(--space-5);
  color: var(--gray-700);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}
.content-prose li {
  margin-bottom: 0.4rem;
}

/* ── content-bullets ── */
.content-bullets {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.content-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: var(--leading-normal);
  padding: 0.45rem 0.75rem;
  background: var(--teal-pale);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.content-section--alt .content-bullets li {
  background: var(--white);
}

/* ── content-standards (standard-item cards) ── */
.content-standards {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.content-standards h3 {
  font-family: var(--font-body) !important;
  font-size: var(--text-sm) !important;
  font-weight: var(--weight-bold) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400) !important;
  margin-bottom: var(--space-4) !important;
  margin-top: 0 !important;
}
.standard-item {
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 0 var(--space-5);
  padding: var(--space-4) var(--space-5);
  background: var(--surface-subtle);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.standard-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--teal), var(--orange));
  border-radius: 3px 0 0 3px;
}
.standard-item:hover {
  border-color: rgba(155,28,28,0.20);
  box-shadow: 0 4px 16px rgba(155,28,28,0.08);
}
.standard-item h4 {
  font-family: var(--font-body) !important;
  font-size: var(--text-base) !important;
  font-weight: var(--weight-bold) !important;
  color: var(--gray-900) !important;
  margin: 0 0 0.35rem !important;
  grid-column: 2;
}
.standard-item p {
  font-size: var(--text-sm) !important;
  color: var(--gray-600) !important;
  line-height: var(--leading-normal) !important;
  margin: 0 !important;
  grid-column: 2;
}
.standard-item ul,
.standard-item ol {
  grid-column: 2;
  margin: var(--space-2) 0 0 !important;
  padding-left: var(--space-5) !important;
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: var(--leading-normal);
}

/* ── sp-note (inline callout box) ── */
.sp-note {
  background: var(--teal-pale);
  border: 1px solid rgba(155,28,28,0.15);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  margin-top: var(--space-6);
}
.sp-note__title {
  font-family: var(--font-body) !important;
  font-size: var(--text-base) !important;
  font-weight: var(--weight-bold) !important;
  color: var(--teal) !important;
  margin: 0 0 0.5rem !important;
}
.sp-note p {
  font-size: var(--text-sm);
  color: var(--gray-700);
  line-height: var(--leading-normal);
  margin-bottom: 0.5rem;
}
.sp-note p:last-child { margin-bottom: 0; }
.sp-note a { color: var(--teal); font-weight: var(--weight-semibold); }

/* ── brands-section ── */
.brands-section {
  background: var(--surface-subtle);
  padding-block: var(--space-section);
}
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-6);
}
.brand-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: 100px;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--gray-700);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.brand-pill:hover {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: 0 4px 12px rgba(155,28,28,0.12);
}

/* ── content-table ── */
.table-responsive {
  overflow-x: auto;
  margin-top: var(--space-4);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.content-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.content-table thead tr {
  background: var(--teal);
}
.content-table thead th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.content-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.15s;
}
.content-table tbody tr:last-child { border-bottom: none; }
.content-table tbody tr:hover { background: var(--teal-pale); }
.content-table tbody td {
  padding: 0.75rem 1rem;
  color: var(--gray-700);
  line-height: var(--leading-normal);
  vertical-align: top;
}
.content-grid { display: grid; grid-template-columns: 1fr 400px; gap: 3rem; align-items: start; }
.content-prose h2 {
  font-family: var(--font-display);
  font-size: var(--text-page);
  font-weight: var(--weight-extrabold);
  color: var(--gray-900);
  margin-bottom: 1rem;
}
.content-prose h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--gray-800);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}
.content-prose p {
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: var(--leading-relaxed);
  margin-bottom: 1.25rem;
}
.content-prose ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.content-prose ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: var(--leading-normal);
  margin-bottom: 0.6rem;
}
.content-prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

/* ── Sticky Quote Sidebar ── */
.quote-sidebar {
  position: sticky;
  top: calc(var(--navbar-h,72px) + var(--topbar-h,44px) + 1rem);
}
.quote-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.quote-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.quote-card__sub {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

/* ── FAQ (inner page) ── */
.faq-layout-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.faq-cta-card-inner {
  background: var(--dark-teal);
  border-radius: 1.25rem;
  padding: 2rem;
  position: sticky;
  top: calc(var(--navbar-h,72px) + var(--topbar-h,44px) + 1rem);
}
.faq-cta-card-inner__icon {
  width: 52px; height: 52px;
  border-radius: 0.9rem;
  background: var(--teal-ghost);
  border: 1px solid var(--teal-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--teal-lt);
  margin-bottom: 1rem;
}
.faq-cta-card-inner__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: #fff;
  margin-bottom: 0.5rem;
}
.faq-cta-card-inner__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: var(--leading-normal);
  margin-bottom: 1.25rem;
}
.faq-cta-card-inner__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: var(--text-sm);
  text-decoration: none;
  margin-top: 0.75rem;
  transition: color 0.2s;
}
.faq-cta-card-inner__link:hover { color: #fff; }

/* ── Related Services ── */
.sp-related {
  background: var(--light-teal-bg);
  padding: 3rem 0;
}
.sp-related__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  text-align: center;
}
.sp-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.sp-related__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0.9rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--gray-900);
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sp-related__card i { color: var(--teal); font-size: 1.4rem; flex-shrink: 0; }
.sp-related__card:hover { border-color: var(--teal); box-shadow: 0 4px 16px var(--teal-glow); }

/* ── Section header light ── */
.section-header__eyebrow-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.section-header__eyebrow-dk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

/* ── Quote section (inner page, 2-col) ── */
.quote-section-inner {
  background: var(--off-white);
  padding: var(--space-section) 0;
}
.quote-section-inner__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
}
.quote-section-inner__prose p {
  font-size: var(--text-lg);
  color: var(--gray-600);
  line-height: var(--leading-relaxed);
  margin-bottom: 1rem;
}

/* ── Final CTA (inner) ── */
.final-cta-inner {
  background: var(--dark-teal);
  background-image:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(155,28,28,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(124,58,237,0.10) 0%, transparent 70%);
  padding: var(--space-section) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-inner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
}
.final-cta-inner__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: var(--weight-extrabold);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  max-width: 680px;
  margin-inline: auto;
}
.final-cta-inner__title span {
  color: var(--teal-lt);
  display: block;
  font-size: 0.72em;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.01em;
  opacity: 0.85;
  margin-top: 0.25rem;
}
.final-cta-inner__sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.60);
  margin-bottom: 2rem;
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.7;
}
.final-cta-inner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.btn--ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.75);
  background: transparent;
  padding: 0.75rem 1.5rem;
  border-radius: 0.6rem;
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn--ghost-white:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

/* ── Responsive: inner pages ── */
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; }
  .quote-section-inner__grid { grid-template-columns: 1fr; }
  .faq-layout-inner { grid-template-columns: 1fr; }
  .faq-cta-card-inner { position: static; }
  .why-grid-inner { grid-template-columns: repeat(2, 1fr); }
  .process-steps-inner { flex-wrap: wrap; }
  .process-step-inner { flex: 0 0 calc(50% - 1.5rem); }
  .process-connector-inner { display: none; }
  /* Page hero: image panel narrows, scrim extends further left */
  .page-hero__img-panel { width: 46%; }
  .page-hero__img-scrim,
  .page-hero__img-overlay {
    background: linear-gradient(108deg, #f8f6f2 0%, #f8f6f2 18%, rgba(248,246,242,0.90) 35%, rgba(248,246,242,0.22) 58%, transparent 75%);
  }
}
@media (max-width: 768px) {
  /* Hero: image becomes full background */
  .page-hero { min-height: auto; }
  .page-hero__img-panel { width: 100%; }
  .page-hero__img-scrim,
  .page-hero__img-overlay {
    background: linear-gradient(to bottom, rgba(248,246,242,0.97) 0%, rgba(248,246,242,0.92) 55%, rgba(248,246,242,0.75) 100%);
  }
  .page-hero__layout {
    min-height: auto;
    padding-top: calc(var(--topbar-h) + var(--navbar-h) + var(--space-8));
    padding-bottom: var(--space-12);
  }
  .page-hero__content { padding-block: 0; max-width: 100%; }
  .page-hero__trust { flex-wrap: wrap; gap: var(--space-3) 0; }
}
@media (max-width: 640px) {
  .why-grid-inner { grid-template-columns: 1fr; }
  .process-step-inner { flex: 0 0 100%; }
  .sp-related__grid { grid-template-columns: 1fr; }
  .page-hero__pills { gap: 0.4rem; }
  .page-hero__cta { flex-direction: column; align-items: flex-start; }
  .page-hero__trust { width: 100%; justify-content: space-between; }
  .page-hero__trust-item { padding-inline: var(--space-3); }
}

/* ============================================================
   LOCATION PAGE DESIGN IMPROVEMENTS
   ============================================================ */

/* ── Intro / About section: booking steps as visual cards ── */
.booking-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.booking-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  background: var(--surface-subtle);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.booking-step:hover {
  border-color: rgba(155,28,28,0.2);
  box-shadow: 0 4px 16px rgba(155,28,28,0.08);
}
.booking-step__num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: var(--weight-bold);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.booking-step__body strong {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}
.booking-step__body span {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: var(--leading-normal);
}

/* ── Coverage section: neighborhood tags + map label ── */
.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-4) 0 var(--space-6);
}
.coverage-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--white);
  border: 1px solid rgba(155,28,28,0.15);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: var(--weight-medium);
  color: var(--gray-700);
}
.coverage-tag i { color: var(--teal); font-size: 0.75em; }
.coverage-map-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-3);
  margin-top: var(--space-8);
}
.coverage-map-label i { color: var(--teal); }
.coverage-map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(155,28,28,0.12), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(155,28,28,0.10);
}

/* ── service-card__link + icon-wrap (missing styles) ── */
.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(--teal);
  transition: gap 0.2s, color 0.2s;
}
.service-card__link:hover { gap: var(--space-3); color: var(--teal-dk); }
.service-card__icon-wrap {
  width: 50px; height: 50px;
  background: var(--teal-ghost);
  border: 1.5px solid rgba(155,28,28,0.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--teal);
  margin-bottom: var(--space-5);
  transition: transform var(--ease-spring), background var(--ease-fast), color var(--ease-fast);
}
.service-card:hover .service-card__icon-wrap {
  transform: rotate(-8deg) scale(1.1);
  background: var(--teal);
  color: #fff;
}

/* ── service-card on light backgrounds (location pages, service pages outside .services-section) ── */
.section .services-grid .service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
}
.section .services-grid .service-card:hover {
  background: var(--teal-pale);
  border-color: rgba(155,28,28,0.18);
}
.section .services-grid .service-card__title {
  color: var(--gray-900);
}
.section .services-grid .service-card__desc {
  color: var(--gray-600);
}
.section .services-grid .service-card__num {
  color: rgba(155,28,28,0.25);
}
.section .services-grid .service-card__label {
  color: var(--gray-500);
}
.section .services-grid .service-card__list li {
  color: var(--gray-700);
}
.section .services-grid .service-card__list li::before {
  background: var(--teal);
}

/* 2-col testimonials for location pages (2 cards, not 3-col orphan) */
.testimonials-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin-inline: auto;
}
@media (max-width: 640px) {
  .testimonials-grid--2col { grid-template-columns: 1fr; }
}

/* Why card inner: improved readability on dark bg */
.why-card-inner { background: rgba(255,255,255,0.07); }
.why-card-inner:hover {
  background: rgba(255,255,255,0.10);
  box-shadow: 0 8px 32px rgba(155,28,28,0.30);
}
.why-card-inner__num  { color: rgba(255,255,255,0.12); }
.why-card-inner__icon { width: 54px; height: 54px; }
.why-card-inner__desc { color: rgba(255,255,255,0.70); }

/* Final CTA sub: was too faint */
.final-cta-inner__sub { color: rgba(255,255,255,0.70); }


/* ============================================================
   SAN GABRIEL TEMPLATE ALIASES & NEW CLASSES
   Added to support rebuilt service + location pages
   ============================================================ */


/* ============================================================
   INNER PAGE DESIGN SYSTEM — adapted from San Gabriel v3
   Westminster color tokens: --teal (purple), --orange (crimson)
   ============================================================ */

/* ── Layout helpers ── */
.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); }

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

/* ── Accent helpers ── */
.accent-word { color: var(--teal-lt); }
.accent      { color: var(--orange-lt); }

/* ── Section header (San Gabriel naming) ── */
.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(--teal-lt);
  margin-bottom: var(--space-4);
}
.section-header__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--teal-lt);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-header__eyebrow--dark {
  color: var(--teal-lt);
}
.section-header__eyebrow--dark::before {
  background: var(--teal-lt);
}
.section-eyebrow-gap { margin-bottom: 1rem; }

.section-header__title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: var(--leading-tight);
  letter-spacing: 0.01em;
  color: var(--gray-900);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: var(--space-4);
}
.section-header__title--light { color: #fff; }
.section-header__title--light .accent-word { color: var(--teal-lt); }

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

/* ── Page Hero (inner pages) — mirrors homepage split design ── */
.page-hero {
  position: relative;
  background: #f8f6f2;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  border-bottom: none;
}
.page-hero__glow-r { display: none; }

/* Full-bleed image panel — right 52% */
.page-hero__img-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 52%;
  z-index: 0;
}
.page-hero__img-panel img,
.page-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
/* Diagonal scrim matching homepage */
.page-hero__img-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    #f8f6f2 0%,
    #f8f6f2 12%,
    rgba(248,246,242,0.88) 28%,
    rgba(248,246,242,0.18) 52%,
    transparent 72%
  );
}
/* Overlay on img-wrap kept for legacy */
.page-hero__img-wrap {
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: none;
  transform: none;
}
.page-hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    #f8f6f2 0%,
    #f8f6f2 12%,
    rgba(248,246,242,0.88) 28%,
    rgba(248,246,242,0.18) 52%,
    transparent 72%
  );
}

/* Stage — content layer above image */
.page-hero:not(.page-hero--with-form) .page-hero__layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 92vh;
  padding-top: calc(var(--topbar-h) + var(--navbar-h));
  max-width: 1320px;
  margin-inline: auto;
  width: 100%;
  padding-inline: clamp(var(--space-6), 5vw, var(--space-16));
  /* reset grid */
  grid-template-columns: unset;
  gap: unset;
}
.page-hero:not(.page-hero--with-form) .page-hero__content {
  max-width: 560px;
  padding-block: var(--space-12);
  min-width: 0;
}

/* Breadcrumb */
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--gray-400);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}
.page-hero__breadcrumb a {
  color: var(--gray-500);
  transition: color var(--ease-fast);
}
.page-hero__breadcrumb a:hover { color: #1c1917; }
.page-hero__breadcrumb-sep { color: var(--gray-300); font-size: 0.65em; }
.page-hero__breadcrumb-current { color: #f59e0b; font-weight: var(--weight-medium); }

/* Eyebrow tag — same charcoal pill as homepage */
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 5px 13px;
  background: #1c1917;
  color: rgba(255,255,255,0.72);
  font-size: 0.70rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-5);
  border: none;
  font-family: var(--font-body);
}
.page-hero__eyebrow i { font-size: 0.85em; color: #f59e0b; }

/* H1 — Bebas, two-line split: solid + outlined (mirrors homepage) */
.page-hero__h1 {
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 var(--space-5);
  line-height: 0.90;
  letter-spacing: 0.02em;
  font-weight: 400;
}
/* First line: solid charcoal — the service name */
.page-hero__h1-line1 {
  display: block;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  color: #1c1917;
  text-transform: uppercase;
}
/* Second line: outlined — company name */
.page-hero__h1-line2 {
  display: block;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  color: transparent;
  -webkit-text-stroke: 2px #1c1917;
  text-transform: uppercase;
}
/* Third line: amber — location/tagline */
.page-hero__h1-line3 {
  display: block;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  color: #f59e0b;
  text-transform: uppercase;
}
/* Legacy single h1 — keep existing markup working */
.page-hero__h1 em {
  font-style: normal;
  color: #f59e0b;
  display: block;
  -webkit-text-stroke: 0;
}

/* Subtitle */
.page-hero__sub {
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  color: #57534e;
  line-height: 1.7;
  margin: 0 0 var(--space-7);
  max-width: 460px;
}

/* Feature pills */
.page-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-7);
}
.page-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 5px 12px;
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  color: var(--gray-700);
  font-weight: var(--weight-medium);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.page-hero__pill i { color: #f59e0b; font-size: 0.82em; }

/* CTA row — same call button as homepage */
.page-hero__cta {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}
.page-hero__cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: #1c1917;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  border-bottom: 2px solid #f59e0b;
  padding-bottom: 2px;
  transition: gap var(--ease-fast), color var(--ease-fast);
}
.page-hero__cta-ghost:hover { color: #f59e0b; gap: var(--space-3); }

/* Trust strip — identical to homepage */
.page-hero__trust {
  display: flex;
  align-items: center;
  gap: 0;
  padding: var(--space-4) var(--space-5);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(28,25,23,0.08);
  width: fit-content;
}
.page-hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: var(--space-5);
}
.page-hero__trust-item:first-child { padding-left: 0; }
.page-hero__trust-item:last-child  { padding-right: 0; }
.page-hero__trust-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #1c1917;
  line-height: 1;
  letter-spacing: 0.03em;
}
.page-hero__trust-lbl {
  font-size: 0.60rem;
  color: #a8a29e;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: var(--weight-semibold);
  margin-top: 3px;
  white-space: nowrap;
}
.page-hero__trust-rule {
  width: 1px;
  height: 28px;
  background: #e7e5e4;
  flex-shrink: 0;
}

/* Stats row (hide — replaced by trust strip) */
.page-hero__stats { display: none; }
.page-hero__stat-divider { display: none; }

/* Floating badges — hide (design is cleaner without) */
.page-hero__badge { display: none; }
.page-hero__avail-dot { display: none; }

/* Right visual column — hidden for service page heroes (image is the bg panel) */
/* Exception: --with-form variant shows the form panel */
.page-hero:not(.page-hero--with-form) .page-hero__visual { display: none; }
.page-hero__visual-ring { display: none; }
.page-hero__visual-img { display: none; }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.2); }
  50%       { box-shadow: 0 0 0 7px rgba(16,185,129,0.07); }
}

/* ── Form in hero right column (location pages) ── */
/* ── Location page hero with form — full redesign ── */
.page-hero--with-form {
  background: var(--dark-teal);
  background-image:
    radial-gradient(ellipse 55% 60% at 0% 0%, rgba(155,28,28,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 45% at 100% 100%, rgba(124,58,237,0.08) 0%, transparent 60%);
  padding-top: calc(var(--topbar-h) + var(--navbar-h) + var(--space-14));
  padding-bottom: var(--space-16);
  border-bottom: none;
}

/* Breadcrumb on dark bg */
.page-hero--with-form .page-hero__breadcrumb {
  margin-bottom: var(--space-4);
  color: rgba(255,255,255,0.45);
}
.page-hero--with-form .page-hero__breadcrumb a {
  color: rgba(255,255,255,0.55);
}
.page-hero--with-form .page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero--with-form .page-hero__breadcrumb-sep { color: rgba(255,255,255,0.25); }
.page-hero--with-form .page-hero__breadcrumb-current {
  color: var(--orange);
  font-weight: var(--weight-medium);
}

/* Eyebrow on dark bg */
.page-hero--with-form .page-hero__eyebrow {
  background: rgba(124,58,237,0.12);
  border-color: rgba(124,58,237,0.25);
  color: var(--orange);
  margin-bottom: var(--space-5);
}

/* Large bold H1 */
.page-hero--with-form .page-hero__h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: var(--space-5);
}
.page-hero--with-form .page-hero__h1 em {
  font-style: normal;
  color: var(--orange);
}

/* Subtitle on dark bg */
.page-hero--with-form .page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: var(--space-7);
  max-width: 520px;
}

/* Pills on dark bg */
.page-hero--with-form .page-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}
.page-hero--with-form .page-hero__pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.80);
  backdrop-filter: blur(4px);
}
.page-hero--with-form .page-hero__pill i { color: var(--orange); }

/* CTA row */
.page-hero--with-form .page-hero__cta {
  margin-bottom: var(--space-10);
}

/* Mini stat strip */
.page-hero--with-form .page-hero__stats {
  display: flex;
  gap: 0;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.page-hero--with-form .page-hero__stat { flex: 1; padding: 0 var(--space-4); }
.page-hero--with-form .page-hero__stat:first-child { padding-left: 0; }
.page-hero--with-form .page-hero__stat-value {
  color: var(--white);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}
.page-hero--with-form .page-hero__stat-value span { color: var(--orange); }
.page-hero--with-form .page-hero__stat-label { color: rgba(255,255,255,0.40); }
.page-hero--with-form .page-hero__stat-divider {
  background: rgba(255,255,255,0.10);
}

/* Layout: wider left, fixed right form column */
.page-hero--with-form .page-hero__layout {
  grid-template-columns: 1fr 440px;
  gap: var(--space-14);
  align-items: center;
}

/* Form column — sticky so it stays centred while content scrolls */
.page-hero__visual--form {
  display: block;
  background: transparent;
  padding: 0;
  position: sticky;
  top: calc(var(--topbar-h) + var(--navbar-h) + var(--space-6));
}

/* Form card elevated on dark hero */
.page-hero__visual--form .quote-card {
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 8px 24px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.10);
}

.page-hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.10);
  flex-shrink: 0;
}

/* ── Trust bar (inner pages) ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding-block: var(--space-6);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: relative;
  z-index: 2;
}
.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);
  text-align: center;
  flex: 1;
  border-right: 1px solid var(--gray-100);
  transition: background var(--ease-fast), transform var(--ease-fast);
  border-radius: var(--radius-md);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__item:hover { background: var(--surface-subtle); transform: translateY(-2px); }
.trust-bar__icon-wrap {
  width: 40px; height: 40px;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.16);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease-fast), transform var(--ease-spring);
}
.trust-bar__item:hover .trust-bar__icon-wrap {
  background: rgba(124,58,237,0.15);
  transform: scale(1.08) translateY(-2px);
}
.trust-bar__icon { font-size: 18px; color: var(--orange); }
.trust-bar__label {
  font-size: 0.75rem;
  font-weight: var(--weight-semibold);
  color: var(--gray-600);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/* ── Quote section (inner pages) ── */
.quote-section--dark {
  background: var(--dark-teal-3);
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.quote-section--dark::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(155,28,28,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.quote-content-only {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}
.sp-prose p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.72);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
}
.quote-section--dark .quote-content-only .sp-prose p {
  color: rgba(255,255,255,0.72);
}
.quote-spillover { padding-top: var(--space-3); }
.sp-layout-split { align-items: start; }
.grid-2.sp-layout-split .sp-prose p { color: rgba(255,255,255,0.72); }

/* ── Why section — homepage only (no .section prefix) ── */
.why-section:not(.section) {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.why-section:not(.section)::before {
  display: none;
}
.section.why-section .why-card {
  background: #160f22;
  border: 1px solid rgba(255,255,255,0.07);
  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);
}
.section.why-section .why-card__number {
  position: absolute;
  top: var(--space-4); right: var(--space-5);
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: var(--weight-regular);
  color: rgba(124,58,237,0.12);
  line-height: 1;
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
}
.section.why-section .why-card:hover {
  transform: translateY(-5px);
  background: #1a2d42;
  border-color: rgba(124,58,237,0.35);
  box-shadow: 0 8px 32px rgba(124,58,237,0.15);
}
.section.why-section .why-card:hover::before {
  transform: scaleY(1);
  background: linear-gradient(to bottom, var(--teal-lt), var(--orange-lt));
}
.section.why-section .why-card__icon {
  width: 56px; height: 56px;
  background: rgba(155,28,28,0.22);
  border: 1px solid rgba(56,189,248,0.28);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-lt);
  font-size: 22px;
  margin-bottom: var(--space-5);
  transition: background var(--ease-base), transform var(--ease-spring), border-color var(--ease-base);
}
.section.why-section .why-card:hover .why-card__icon {
  background: var(--teal);
  border-color: transparent;
  color: #fff;
  transform: rotate(-6deg) scale(1.1);
}
.section.why-section .why-card__title {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: rgba(255,255,255,0.94);
  margin-bottom: var(--space-3);
}
.section.why-section .why-card__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.62);
  line-height: var(--leading-relaxed);
}
/* Review card variant (light bg on dark section) */
.why-card.review-card {
  background: var(--white) !important;
  border-color: var(--gray-100) !important;
}
.why-card.review-card .why-card__desc { color: var(--gray-700); font-style: italic; }
.why-card.review-card:hover { background: var(--white) !important; }

/* ── Process section (dark bg) ── */
.process-section--dark {
  background: var(--dark-teal-2);
  position: relative;
  overflow: hidden;
}
.process-section--dark::before {
  content: '';
  position: absolute;
  bottom: -150px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(155,28,28,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-top: var(--space-10);
}
.process-steps .process-step {
  flex: 1;
  text-align: center;
  padding: 0 var(--space-5);
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
}
.process-steps .process-step__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: var(--weight-extrabold);
  color: rgba(255,255,255,0.10);
  line-height: 1;
  letter-spacing: -0.04em;
  position: absolute;
  top: -10px; right: var(--space-4);
  width: auto; height: auto;
  background: none;
  border-radius: 0;
  pointer-events: none;
  user-select: none;
}
.process-steps .process-step__icon {
  width: 68px; height: 68px;
  background: rgba(155,28,28,0.22);
  border: 1px solid rgba(56,189,248,0.30);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-lt);
  font-size: 24px;
  margin: 0 auto var(--space-5);
  box-shadow: 0 0 24px rgba(155,28,28,0.2) inset;
  transition: background var(--ease-base), transform var(--ease-spring), border-color var(--ease-base), box-shadow var(--ease-base);
}
.process-steps .process-step:hover .process-step__icon {
  background: var(--teal);
  border-color: var(--teal-lt);
  color: #fff;
  box-shadow: 0 0 0 rgba(155,28,28,0);
  transform: scale(1.1);
}
.process-steps .process-step__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: rgba(255,255,255,0.92);
  margin-bottom: var(--space-3);
}
.process-steps .process-step__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.60);
  line-height: var(--leading-relaxed);
  max-width: 240px;
  margin-inline: auto;
}
.process-connector {
  width: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 34px;
  color: rgba(56,189,248,0.55);
  font-size: 16px;
}

/* ── Cred items (service area section) ── */
.creds-grid { display: flex; flex-direction: column; gap: var(--space-4); }
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  transition: transform var(--ease-fast), box-shadow var(--ease-fast), border-color var(--ease-fast);
}
.cred-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(155,28,28,0.15);
}
.cred-item__title {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--gray-900);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.cred-item__title i { color: var(--teal-lt); flex-shrink: 0; }
.cred-item__sub {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── FAQ (inner pages) ── */
.faq-section { background: var(--surface-subtle); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-16);
  align-items: start;
}
.faq-accordion { display: flex; flex-direction: column; }
.faq-sidebar {
  position: sticky;
  top: calc(var(--topbar-h) + var(--navbar-h) + var(--space-6));
}
.faq-item {
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
  transition: background var(--ease-fast);
}
.faq-item:first-child { border-top: 1px solid var(--gray-100); border-radius: var(--radius-md) var(--radius-md) 0 0; }
.faq-item:last-child { border-radius: 0 0 var(--radius-md) var(--radius-md); }
.faq-item.open { background: #fff; box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--gray-900);
  transition: color var(--ease-fast);
}
.faq-question:hover { color: var(--teal); }
.faq-item.open .faq-question { color: var(--teal); }
.faq-question i.faq-icon {
  font-size: 0.85em;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--ease-fast);
}
.faq-item.open .faq-question i.faq-icon { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 var(--space-6) var(--space-6);
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: var(--leading-relaxed);
}
.faq-item.open .faq-answer { display: block; }

/* FAQ sidebar CTA card */
.faq-cta-card {
  background: var(--teal);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  color: #fff;
  box-shadow: var(--shadow-teal);
}
.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(--orange-lt);
  margin-bottom: var(--space-5);
}
.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-3);
}
.faq-cta-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  margin-bottom: var(--space-6);
}
.faq-cta-card__link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  font-weight: var(--weight-medium);
  margin-top: var(--space-4);
  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); }

/* ── CTA Section (dark) ── */
.cta-section {
  background: linear-gradient(160deg, #0c1425 0%, #0f1a2e 50%, #0a1628 100%);
  text-align: center;
  padding-block: var(--space-section);
  position: relative;
  overflow: hidden;
}
/* Centered purple glow */
.cta-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(155,28,28,0.18) 0%, transparent 68%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
/* Subtle diagonal texture */
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.01) 40px, rgba(255,255,255,0.01) 41px);
  pointer-events: none;
  z-index: 0;
}
.cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-inline: auto;
}

/* Eyebrow inside CTA — pill style, no dash line */
.cta-section .section-header__eyebrow,
.cta-section .section-header__eyebrow--dark {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-5);
}
.cta-section .section-header__eyebrow::before,
.cta-section .section-header__eyebrow--dark::before { display: none; }

/* Top border accent line above section */
.cta-section__top-line {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--teal-lt), var(--orange-lt));
  border-radius: 2px;
  margin: 0 auto var(--space-6);
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: var(--weight-extrabold);
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: var(--space-2);
}
.cta-section__title .accent {
  display: block;
  font-size: 1.1em;
  color: var(--orange-lt);
  letter-spacing: -0.035em;
}
.cta-section__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.58);
  max-width: 480px;
  margin: var(--space-5) auto var(--space-8);
  line-height: 1.7;
}
.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.sp-cta__ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.55);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  transition: color var(--ease-fast), gap var(--ease-fast);
}
.sp-cta__ghost:hover { color: #fff; gap: var(--space-3); }

/* ── Related services ── */
.sp-related {
  background: var(--surface-subtle);
  padding-block: var(--space-12);
  border-top: 1px solid var(--gray-100);
}
.sp-related__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--gray-900);
  margin-bottom: var(--space-6);
  text-align: center;
}
.sp-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.sp-related__card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-6);
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--gray-800);
  text-decoration: none;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast), transform var(--ease-fast);
}
.sp-related__card i { color: var(--teal); font-size: 1.2rem; flex-shrink: 0; }
.sp-related__card:hover { border-color: var(--teal); box-shadow: var(--shadow-teal); transform: translateY(-2px); }

/* ── Button variants ── */
.btn--full-center { width: 100%; justify-content: center; }

/* ── Service card learn more link ── */
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.2s;
}
.service-card__link:hover { gap: var(--space-3); }
.service-card__link i { font-size: 0.75rem; }

/* ── Common Issues section ── */
.common-issues-section {
  padding: var(--space-16) 0;
  background: var(--light-teal-bg);
}
.common-issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-10);
}
.common-issue-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: var(--white);
  border: 1px solid rgba(155,28,28,0.10);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  box-shadow: 0 2px 12px rgba(155,28,28,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.common-issue-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(155,28,28,0.12);
}
.common-issue-card__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--teal-ghost);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.common-issue-card p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--gray-700);
  line-height: 1.5;
  padding-top: 10px;
}
@media (max-width: 1024px) {
  .common-issues-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .common-issues-grid { grid-template-columns: 1fr; }
}

/* ── Area pills as links ── */
a.area-pill {
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
a.area-pill:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
a.area-pill:hover i { color: #fff; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .page-hero__layout,
  .page-hero--with-form .page-hero__layout { grid-template-columns: 1fr; }
  .page-hero:not(.page-hero--with-form) .page-hero__visual { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-wrap: wrap; }
  .process-step { flex: 0 0 calc(50% - 1.5rem); padding-bottom: var(--space-8); }
  .process-connector { display: none; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .sp-related__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__grid { flex-wrap: wrap; }
  .trust-bar__item { flex: 0 0 calc(33.333% - 1px); border-right: 1px solid var(--gray-100); }
}
@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
  .process-step { flex: 0 0 100%; }
  .sp-related__grid { grid-template-columns: 1fr; }
  .trust-bar__item { flex: 0 0 50%; }
}

/* ============================================================
   27. HOMEPAGE RETHEME — Charcoal + Amber palette override
   Matches new hero: #f8f6f2 warm white bg, #1c1917 charcoal,
   #f59e0b electric amber. Replaces all crimson/purple accents
   on homepage-only sections.
   ============================================================ */

/* ── Token overrides scoped to homepage elements ── */

/* Section eyebrow — amber instead of purple */
.section-eyebrow {
  color: #f59e0b;
  border-left-color: #f59e0b;
}
.section-eyebrow--light {
  color: rgba(245,158,11,0.85);
  border-left-color: rgba(245,158,11,0.85);
}

/* ── Trust Bar ── */
.trust-bar {
  background: #f5f0eb;
  border-bottom-color: rgba(28,25,23,0.08);
}
.trust-item__icon {
  background: rgba(245,158,11,0.12);
  color: #1c1917;
}
.trust-divider {
  background: rgba(28,25,23,0.12);
}

/* ── Quote Section — charcoal dark ── */
.quote-section {
  background: #1c1917;
}
.quote-section::before {
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(245,158,11,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 100%, rgba(245,158,11,0.05) 0%, transparent 60%);
}
.quote-section__eyebrow {
  background: rgba(245,158,11,0.12);
  border-color: rgba(245,158,11,0.28);
  color: #f59e0b;
}
.quote-section__title em { color: #f59e0b; }
.quote-chip i { color: #f59e0b; }
.quote-benefit:hover { border-color: rgba(245,158,11,0.20); }
.quote-benefit__icon {
  background: rgba(245,158,11,0.12);
  border-color: rgba(245,158,11,0.25);
  color: #f59e0b;
}
.quote-rating {
  background: rgba(245,158,11,0.06);
  border-color: rgba(245,158,11,0.15);
}
.quote-rating__stars { color: #f59e0b; }
.quote-form-card::before,
.quote-card::before {
  background: linear-gradient(90deg, #1c1917, #f59e0b);
}
.quote-form-card .quote-icon,
.quote-card .quote-icon {
  background: #f59e0b;
  color: #1c1917;
}
.quote-form-card .input-shell input:focus,
.quote-form-card .input-shell textarea:focus,
.quote-card .input-shell input:focus,
.quote-card .input-shell textarea:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
}
.quote-form-card .form-submit,
.quote-card .form-submit {
  background: #1c1917;
  box-shadow: 0 6px 24px rgba(28,25,23,0.25);
}
.quote-form-card .form-submit:hover,
.quote-card .form-submit:hover {
  background: #2c2621;
  box-shadow: 0 10px 28px rgba(28,25,23,0.35);
}

/* ── Process Section ── */
.process-section { background: #f5f0eb; }
.process-step__num {
  background: #1c1917;
}
.process-step:hover { box-shadow: 0 8px 24px rgba(28,25,23,0.12); }

/* ── Services Section — charcoal dark ── */
.services-section {
  background: #1c1917;
}
.services-section::before {
  background: radial-gradient(ellipse 50% 60% at 100% 0%, rgba(245,158,11,0.10) 0%, transparent 60%);
}
.services-header__left .section-eyebrow-tag {
  background: rgba(245,158,11,0.10);
  border-color: rgba(245,158,11,0.25);
  color: #f59e0b;
}
.services-title em { color: #f59e0b; }
.services-cta-btn {
  background: #f59e0b;
  color: #1c1917;
  box-shadow: 0 6px 20px rgba(245,158,11,0.30);
}
.services-cta-btn:hover {
  background: #d97706;
  box-shadow: 0 10px 28px rgba(245,158,11,0.40);
}
.service-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.service-card::before {
  background: linear-gradient(90deg, #f59e0b, rgba(245,158,11,0.30));
}
.service-card:hover {
  border-color: rgba(245,158,11,0.28);
  background: rgba(255,255,255,0.07);
}
.service-card__icon {
  background: rgba(245,158,11,0.12);
  border-color: rgba(245,158,11,0.18);
  color: #f59e0b;
}
.service-card:hover .service-card__icon {
  background: #f59e0b;
  color: #1c1917;
}
.service-card__list li::before { background: #f59e0b; }
.service-card__link { color: #f59e0b; }
.service-card__link:hover { color: #fff; }
.service-card__num { color: rgba(255,255,255,0.15); }

/* ── Why Us Section ── */
.why-section:not(.section) .section-eyebrow--light {
  color: #f59e0b;
  border-left-color: #f59e0b;
}
.why-card::before {
  background: linear-gradient(to bottom, #f59e0b, #1c1917);
}
.why-card:hover {
  border-color: rgba(245,158,11,0.18);
  box-shadow: 0 12px 32px rgba(28,25,23,0.08);
}
.why-card__num { color: #f59e0b; }
.why-card__icon { color: #f59e0b; }

/* ── Testimonials Section ── */
.testimonials-section {
  background: #f5f0eb;
  border-top-color: rgba(28,25,23,0.08);
}
.testimonial-card::before {
  background: linear-gradient(to bottom, #f59e0b, #1c1917);
}
.testimonial-card__stars { color: #f59e0b; }
.testimonial-card__avatar {
  background: #1c1917;
}

/* ── Standards Section ── */
.standards-section { background: #f5f0eb; }
.cred-card__icon {
  background: rgba(245,158,11,0.10);
  color: #1c1917;
}
.standard-card {
  border-left-color: #f59e0b;
}
.standard-card:hover {
  border-left-color: #1c1917;
}

/* ── Areas / Coverage Section ── */
.area-pill i { color: #f59e0b; }
.area-pill:hover {
  border-color: #f59e0b;
  color: #1c1917;
  background: rgba(245,158,11,0.06);
}
.area-pill--primary {
  background: #1c1917;
  border-color: #1c1917;
}
.map-wrap { border-color: rgba(28,25,23,0.12); }

/* ── FAQ Section ── */
.faq-item.open { border-color: #f59e0b; }
.faq-item.open .faq-question {
  color: #1c1917;
  background: rgba(245,158,11,0.06);
}
.faq-item.open .faq-question span {
  background: #1c1917;
  color: #fff;
}
.faq-item.open .faq-question i.faq-icon { color: #f59e0b; }

/* FAQ sidebar card — charcoal */
.faq-cta-card { background: #1c1917; }
.faq-cta-phone { color: #f59e0b; }
.faq-cta-list li::before { color: #f59e0b; }

/* ── Final CTA Section ── */
.final-cta { background: #1c1917; }
.final-cta::before {
  background: linear-gradient(90deg, #d97706, #f59e0b, rgba(245,158,11,0.50), rgba(255,255,255,0.15));
}

/* ── Footer ── */
.site-footer {
  background: #1c1917;
  background-image:
    radial-gradient(ellipse 70% 60% at 5% 100%, rgba(245,158,11,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 95% 0%, rgba(245,158,11,0.05) 0%, transparent 55%);
}
.footer-accent {
  background: linear-gradient(90deg, #d97706, #f59e0b, rgba(245,158,11,0.50), rgba(255,255,255,0.15));
}
.footer-contact-item i {
  color: #f59e0b;
  background: rgba(245,158,11,0.10);
  border-color: rgba(245,158,11,0.18);
}
.footer-links a::before { background: rgba(245,158,11,0.45); }
.footer-links a:hover::before { background: #f59e0b; }

/* ── Back-to-top + Mobile CTA bar ── */
#backTop {
  background: #1c1917;
  box-shadow: 0 6px 24px rgba(28,25,23,0.28);
}
#backTop:hover { background: #2c2621; }

.mobile-cta-bar {
  background: #1c1917;
  box-shadow: 0 -4px 20px rgba(28,25,23,0.25);
}

/* ── Topbar badge — amber tint ── */
.topbar__badge {
  background: rgba(245,158,11,0.15);
  color: #f59e0b;
  border-color: rgba(245,158,11,0.30);
}
.topbar__phone i { color: #f59e0b; }
.topbar__phone:hover { color: #f59e0b; }

/* ── Topbar live dot — amber pulse ── */
.topbar__live-dot { background: #f59e0b; }

/* ── Navbar active + hover — amber accent ── */
.navbar__link:hover,
.navbar__link.active {
  color: #1c1917;
  background: rgba(245,158,11,0.10);
}
.navbar__dropdown-menu::before {
  background: linear-gradient(90deg, #f59e0b, rgba(245,158,11,0.30));
}
.navbar__dropdown-item:hover {
  color: #1c1917;
  background: rgba(245,158,11,0.08);
}
.navbar__dropdown-item:hover .navbar__dropdown-item-icon {
  background: #f59e0b;
  color: #1c1917;
}
.navbar__dropdown-item-icon { color: #1c1917; }
.navbar__mobile-link:hover {
  color: #1c1917;
  background: rgba(245,158,11,0.08);
}
.navbar__mobile-link.indent i { color: #1c1917; }

/* ── Primary button — charcoal with amber shadow ── */
.btn--primary {
  background: #1c1917;
  box-shadow: 0 6px 24px rgba(28,25,23,0.28);
}
.btn--primary:hover {
  background: #2c2621;
  box-shadow: 0 12px 32px rgba(28,25,23,0.38);
}
.btn--secondary {
  background: #f59e0b;
  color: #1c1917;
  box-shadow: 0 6px 24px rgba(245,158,11,0.30);
}
.btn--secondary:hover {
  background: #d97706;
  box-shadow: 0 12px 32px rgba(245,158,11,0.38);
}
.btn--outline {
  color: #1c1917;
  border-color: #1c1917;
}
.btn--outline:hover { background: rgba(28,25,23,0.06); }
.btn--outline-light {
  background: rgba(245,158,11,0.10);
  color: #f59e0b;
  border-color: rgba(245,158,11,0.35);
}
.btn--outline-light:hover {
  background: rgba(245,158,11,0.18);
  color: #fff;
}

/* ── Top-rated + Local sections ── */
.top-rated-section { background: #f5f0eb; }
.local-section { background: #f5f0eb; }

/* ── Process Section bg warm ── */
.process-section { background: #f5f0eb; }

/* ── Content bullets (inner pages) ── */
.content-bullets li {
  background: rgba(245,158,11,0.06);
  border-left-color: #f59e0b;
}

/* ============================================================
   28. SERVICE PAGE RETHEME — Charcoal + Amber palette
   All inner/service page components updated to match homepage
   charcoal #1c1917 + amber #f59e0b + warm white theme.
   ============================================================ */

/* ── Page Hero (service pages) — styles now in canonical block above ── */
/* Amber accent reinforcements */
.page-hero__breadcrumb a:hover { color: #1c1917; }
.page-hero__breadcrumb-current { color: #f59e0b; }
.page-hero__h1 em { color: #f59e0b; -webkit-text-stroke: 0; }
.page-hero__pill i { color: #f59e0b; }
.page-hero__cta-ghost { color: #1c1917; border-bottom: 2px solid #f59e0b; padding-bottom: 2px; }
.page-hero__cta-ghost:hover { color: #f59e0b; }

/* ── Trust bar (service pages) ── */
.trust-bar__icon-wrap {
  background: rgba(245,158,11,0.10);
  border-color: rgba(245,158,11,0.18);
}
.trust-bar__item:hover .trust-bar__icon-wrap {
  background: rgba(245,158,11,0.18);
}
.trust-bar__icon { color: #1c1917; }

/* ── Quote section dark (service pages) ── */
.quote-section--dark {
  background: #1c1917;
}
.quote-section--dark::before {
  background: radial-gradient(circle, rgba(245,158,11,0.10) 0%, transparent 70%);
}

/* ── Why section (service pages — dark card grid) ── */
.section.why-section .why-card {
  background: #241f1a;
  border-color: rgba(255,255,255,0.06);
}
.section.why-section .why-card:hover {
  background: #2c2520;
  border-color: rgba(245,158,11,0.28);
  box-shadow: 0 8px 32px rgba(245,158,11,0.10);
}
.section.why-section .why-card:hover::before {
  background: linear-gradient(to bottom, #f59e0b, rgba(245,158,11,0.30));
}
.section.why-section .why-card__number { color: rgba(245,158,11,0.10); }
.section.why-section .why-card__icon {
  background: rgba(245,158,11,0.12);
  border-color: rgba(245,158,11,0.22);
  color: #f59e0b;
}
.section.why-section .why-card:hover .why-card__icon {
  background: #f59e0b;
  border-color: transparent;
  color: #1c1917;
}

/* ── Section headers (service pages) ── */
.section-header__eyebrow {
  color: #f59e0b;
}
.section-header__eyebrow::before { background: #f59e0b; }
.section-header__eyebrow--dark { color: rgba(245,158,11,0.85); }
.section-header__eyebrow--dark::before { background: rgba(245,158,11,0.85); }
.accent-word { color: #f59e0b; }
.accent { color: #f59e0b; }

/* ── Process section (dark, service pages) ── */
.process-section--dark {
  background: #160e08;
}
.process-section--dark::before {
  background: radial-gradient(ellipse, rgba(245,158,11,0.08) 0%, transparent 70%);
}
.process-steps .process-step__icon {
  background: rgba(245,158,11,0.14);
  border-color: rgba(245,158,11,0.28);
  color: #f59e0b;
  box-shadow: 0 0 24px rgba(245,158,11,0.12) inset;
}
.process-steps .process-step:hover .process-step__icon {
  background: #f59e0b;
  border-color: #d97706;
  color: #1c1917;
}
.process-connector { color: rgba(245,158,11,0.50); }

/* ── Standard item (content-standards) ── */
.standard-item::before {
  background: linear-gradient(to bottom, #f59e0b, rgba(245,158,11,0.30));
}
.standard-item:hover {
  border-color: rgba(245,158,11,0.20);
  box-shadow: 0 4px 16px rgba(245,158,11,0.08);
}

/* ── SP Note ── */
.sp-note {
  background: rgba(245,158,11,0.06);
  border-color: rgba(245,158,11,0.15);
  border-left-color: #f59e0b;
}
.sp-note__title { color: #1c1917 !important; }
.sp-note a { color: #f59e0b; }

/* ── Brand pill ── */
.brand-pill:hover {
  border-color: #f59e0b;
  color: #1c1917;
  box-shadow: 0 4px 12px rgba(245,158,11,0.14);
}

/* ── Content table ── */
.content-table thead tr { background: #1c1917; }
.content-table tbody tr:hover { background: rgba(245,158,11,0.05); }

/* ── Content prose bullets ── */
.content-prose ul li::before { background: #f59e0b; }

/* ── FAQ (service pages) ── */
.faq-section { background: #f5f0eb; }
.faq-question:hover { color: #1c1917; }
.faq-item.open .faq-question { color: #1c1917; }
.faq-question i.faq-icon { color: #f59e0b; }
.faq-item.open .faq-question i.faq-icon { color: #1c1917; }

/* FAQ CTA card (sidebar) */
.faq-cta-card {
  background: #1c1917;
  box-shadow: 0 6px 24px rgba(28,25,23,0.25);
}
.faq-cta-card__icon {
  background: rgba(245,158,11,0.14);
  color: #f59e0b;
}

/* ── CTA Section (service pages final CTA) ── */
.cta-section {
  background: linear-gradient(160deg, #1c1917 0%, #241f1a 50%, #1a1410 100%);
}
.cta-section::before {
  background: radial-gradient(ellipse, rgba(245,158,11,0.12) 0%, transparent 68%);
}
.cta-section__top-line {
  background: linear-gradient(90deg, #f59e0b, rgba(245,158,11,0.40));
}
.cta-section__title .accent { color: #f59e0b; }

/* ── Related services (sp-related) ── */
.sp-related { background: #f5f0eb; }
.sp-related__card i { color: #f59e0b; }
.sp-related__card:hover {
  border-color: #f59e0b;
  box-shadow: 0 4px 16px rgba(245,158,11,0.18);
}

/* ── Common issues section ── */
.common-issues-section { background: #f5f0eb; }
.common-issue-card {
  border-color: rgba(245,158,11,0.10);
  box-shadow: 0 2px 12px rgba(28,25,23,0.06);
}
.common-issue-card:hover {
  box-shadow: 0 6px 24px rgba(245,158,11,0.14);
}
.common-issue-card__icon {
  background: rgba(245,158,11,0.10);
  color: #1c1917;
}

/* ── Booking steps (location pages) ── */
.booking-step:hover {
  border-color: rgba(245,158,11,0.20);
  box-shadow: 0 4px 16px rgba(245,158,11,0.08);
}
.booking-step__num { background: #1c1917; }

/* ── Coverage tags ── */
.coverage-tag {
  border-color: rgba(245,158,11,0.15);
}
.coverage-tag i { color: #f59e0b; }
.coverage-map-label i { color: #f59e0b; }
.coverage-map-wrap {
  box-shadow: 0 8px 32px rgba(28,25,23,0.10), 0 2px 8px rgba(0,0,0,0.06);
  border-color: rgba(245,158,11,0.10);
}

/* ── Cred items ── */
.cred-item:hover { border-color: rgba(245,158,11,0.15); }
.cred-item__title i { color: #f59e0b; }

/* ── Service card links (light bg contexts) ── */
.service-card__icon-wrap {
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.12);
  color: #1c1917;
}
.service-card:hover .service-card__icon-wrap {
  background: #f59e0b;
  color: #1c1917;
}
.section .services-grid .service-card:hover {
  background: rgba(245,158,11,0.05);
  border-color: rgba(245,158,11,0.18);
}
.section .services-grid .service-card__list li::before { background: #f59e0b; }
.service-card__link { color: #f59e0b; }
.service-card__link:hover { color: #1c1917; }

/* ── Page hero dark variant (location pages) ── */
.page-hero--with-form {
  background: #1c1917;
  background-image:
    radial-gradient(ellipse 55% 60% at 0% 0%, rgba(245,158,11,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 40% 45% at 100% 100%, rgba(245,158,11,0.06) 0%, transparent 60%);
  /* Restore padding overridden by Section 29 */
  padding-top: calc(var(--topbar-h) + var(--navbar-h) + var(--space-10));
  padding-bottom: var(--space-16);
}
.page-hero--with-form .page-hero__breadcrumb-current { color: #f59e0b; }
.page-hero--with-form .page-hero__eyebrow {
  background: rgba(245,158,11,0.12);
  border-color: rgba(245,158,11,0.25);
  color: #f59e0b;
}
.page-hero--with-form .page-hero__h1 em { color: #f59e0b; }
.page-hero--with-form .page-hero__pill i { color: #f59e0b; }
.page-hero--with-form .page-hero__stat-value span { color: #f59e0b; }
/* CTA button on dark bg — amber so it's visible */
.page-hero--with-form .page-hero__cta .btn--primary {
  background: #f59e0b;
  color: #1c1917;
  box-shadow: 0 6px 24px rgba(245,158,11,0.35);
}
.page-hero--with-form .page-hero__cta .btn--primary:hover {
  background: #d97706;
  box-shadow: 0 12px 32px rgba(245,158,11,0.45);
}

/* ── final-cta-inner (location pages) ── */
.final-cta-inner {
  background: #1c1917;
  background-image:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(245,158,11,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(245,158,11,0.05) 0%, transparent 70%);
}
.final-cta-inner__title span { color: #f59e0b; }

/* ── Section header eyebrow inner variant ── */
.section-header__eyebrow-inner { color: #f59e0b; }

/* ================================================================
   SECTION 29 — Service page hero sizing & spacing fix
   Root causes:
   1. .page-hero (line 2264) has large padding-top baked in
   2. .page-hero__layout (line 3382) has min-height:92vh + align-items:center
   3. .page-hero__content (line 3397) has padding-block:var(--space-12)
   Fix: zero out section padding, switch layout to flex-start with
   explicit navbar-clearing padding-top, zero content padding-block.
   ================================================================ */

/* Zero out the section-level padding — service page heroes only (not the dark form hero) */
.page-hero:not(.page-hero--with-form) {
  padding: 0;
  min-height: 0;
}

/* Pin content immediately below navbar — service page heroes only */
.page-hero:not(.page-hero--with-form) .page-hero__layout {
  min-height: 0;
  align-items: flex-start;
  padding-top: calc(var(--topbar-h) + var(--navbar-h) + var(--space-6));
  padding-bottom: var(--space-12);
}

/* Remove the content block's own vertical padding — service page heroes only */
.page-hero:not(.page-hero--with-form) .page-hero__content {
  padding-block: 0;
}

/* Image panel — cover the section height naturally (section height = content height) */
.page-hero__img-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  height: 100%;
}

/* Pull subject into better frame */
.page-hero__img-panel img,
.page-hero__img {
  object-position: center 15%;
}

/* H1 lines — slightly more compact than homepage hero */
.page-hero__h1-line1,
.page-hero__h1-line2,
.page-hero__h1-line3 {
  font-size: clamp(2.4rem, 4.2vw, 4.6rem);
}

/* Tablet (≤ 1024px) — service page heroes only */
@media (max-width: 1024px) {
  .page-hero:not(.page-hero--with-form) .page-hero__layout {
    padding-top: calc(var(--topbar-h) + var(--navbar-h) + var(--space-4));
    padding-bottom: var(--space-10);
  }
  .page-hero__img-panel { width: 46%; }
}

/* Portrait tablet (≤ 768px) — full-width faded background */
@media (max-width: 768px) {
  .page-hero__img-panel {
    width: 100%;
    opacity: 0.18;
  }
  .page-hero__img-scrim {
    background: linear-gradient(
      to bottom,
      #f8f6f2 0%,
      rgba(248,246,242,0.70) 60%,
      rgba(248,246,242,0.55) 100%
    );
  }
  .page-hero__h1-line1,
  .page-hero__h1-line2,
  .page-hero__h1-line3 {
    font-size: clamp(2.2rem, 7vw, 3.4rem);
  }
}

/* Mobile (≤ 480px) — service page heroes only */
@media (max-width: 480px) {
  .page-hero:not(.page-hero--with-form) .page-hero__layout {
    padding-top: calc(var(--topbar-h) + var(--navbar-h) + var(--space-4));
    padding-bottom: var(--space-8);
  }
}
.section-header__eyebrow-dk { color: rgba(245,158,11,0.75); }


/* ================================================================
   Section 30 — Inner pages (contact, about, privacy, terms, wiki)
   ================================================================ */

/* ── Inner hero (no image, dark bg) ── */
.inner-hero {
  background: var(--dark-teal);
  padding-top: calc(var(--topbar-h) + var(--navbar-h) + var(--space-10));
  padding-bottom: var(--space-10);
}
.inner-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.1;
  margin: var(--space-3) 0 var(--space-4);
}
.inner-hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.72);
  line-height: var(--leading-relaxed);
  max-width: 720px;
  margin: 0;
}

/* ── Contact page layout ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: var(--space-10);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ── Contact info cards ── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.contact-card {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.contact-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--teal-pale);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-card__title {
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--gray-900);
  margin: 0 0 0.35rem;
}
.contact-card__phone {
  display: block;
  font-size: 1.4rem;
  font-weight: var(--weight-bold);
  color: var(--teal);
  text-decoration: none;
  margin-bottom: 0.35rem;
}
.contact-card__note {
  font-size: var(--text-sm);
  color: var(--gray-600);
  margin: 0 0 0.4rem;
  line-height: var(--leading-normal);
}
.contact-card__link {
  font-size: var(--text-sm);
  color: var(--teal);
  word-break: break-all;
}

/* ── Contact form wrapper ── */
.contact-form-wrap {
  position: sticky;
  top: calc(var(--topbar-h) + var(--navbar-h) + var(--space-4));
}
.contact-form-head {
  margin-bottom: var(--space-4);
}
.contact-form-head__title {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--gray-900);
  margin: 0 0 0.4rem;
}
.contact-form-head__sub {
  font-size: var(--text-sm);
  color: var(--gray-600);
  margin: 0;
  line-height: var(--leading-normal);
}
.contact-form-head__sub a { color: var(--teal); }

/* ── About Us ── */
.about-intro {
  max-width: 760px;
}
.about-intro p {
  font-size: var(--text-lg);
  color: var(--gray-700);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}
.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}
@media (max-width: 768px) {
  .about-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .about-services-grid { grid-template-columns: 1fr; }
}
.about-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  padding: var(--space-5);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.about-service-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(155,28,28,0.10);
  transform: translateY(-2px);
}
.about-service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--teal-pale);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.about-service-card__label {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--gray-800);
  line-height: var(--leading-normal);
}

/* ── Legal pages (privacy, terms) + Wiki ── */
.legal-layout,
.wiki-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-10);
  align-items: start;
}
@media (max-width: 900px) {
  .legal-layout,
  .wiki-layout { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
}

.legal-toc__inner {
  position: sticky;
  top: calc(var(--topbar-h) + var(--navbar-h) + var(--space-4));
  background: var(--surface-subtle);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.legal-toc__heading {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin: 0 0 var(--space-2);
}
.legal-toc a {
  font-size: var(--text-sm);
  color: var(--gray-600);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
  line-height: 1.4;
}
.legal-toc a:hover {
  background: var(--teal-pale);
  color: var(--teal);
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.legal-section h2 {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--gray-900);
  margin: 0 0 var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--teal-pale);
}
.legal-section h3 {
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--gray-800);
  margin: var(--space-4) 0 var(--space-2);
}
.legal-section h3:first-of-type {
  margin-top: var(--space-3);
}
.legal-section p {
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: var(--leading-relaxed);
  margin: 0 0 var(--space-3);
}
.legal-section ul,
.legal-section ol {
  margin: 0 0 var(--space-3);
  padding-left: var(--space-6);
  color: var(--gray-700);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}
.legal-section li {
  margin-bottom: 0.4rem;
}
.legal-section a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-contact-block {
  background: var(--surface-subtle);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}
.legal-contact-block p {
  margin-bottom: var(--space-2) !important;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.legal-contact-block i {
  color: var(--teal);
  width: 16px;
}

/* ── content-list / content-bullets on dark process section ── */
.process-section--dark .content-list p,
.process-section--dark .content-prose p {
  color: rgba(255,255,255,0.80);
}
.process-section--dark .content-bullets li {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--teal-lt);
  color: rgba(255,255,255,0.80);
}
.process-section--dark .content-bullets li strong {
  color: #fff;
}
