/* ============================================================
   SIOUX FALLS RADON SOLUTIONS — styles.css
   Mobile-first design system
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --clr-dark:        #1a1a2e;
  --clr-dark-2:      #16213e;
  --clr-red:         #e63946;
  --clr-red-dark:    #c1121f;
  --clr-red-light:   #fef2f2;
  --clr-green:       #4ade80;
  --clr-green-dark:  #166534;
  --clr-green-light: #f0fdf4;

  /* Neutrals */
  --clr-white:   #ffffff;
  --clr-light:   #f8fafc;
  --clr-border:  #e2e8f0;
  --clr-text:    #1e293b;
  --clr-text-2:  #475569;
  --clr-text-3:  #94a3b8;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, 'Palatino Linotype', serif;
  --font-body:    'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Spacing */
  --sp-xs:  0.375rem;
  --sp-sm:  0.625rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4.5rem;

  /* Layout */
  --container-max: 1200px;
  --container-px:  clamp(1rem, 4vw, 2rem);
  --section-py:    clamp(3rem, 6vw, 5rem);

  /* UI */
  --radius:    8px;
  --radius-sm: 4px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 14px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 32px rgba(0,0,0,.13);
  --ease:      .22s ease;
  --ease-slow: .4s ease;

  --header-h: 70px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--clr-text);
  background: var(--clr-white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
svg { display: block; overflow: hidden; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section { padding-block: var(--section-py); }

.section-label {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-green);
  margin-bottom: var(--sp-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3vw, 2.375rem);
  line-height: 1.2;
  color: var(--clr-dark);
  margin-bottom: var(--sp-sm);
}

.section-subtitle {
  font-size: .9375rem;
  color: var(--clr-text-2);
  line-height: 1.7;
  max-width: 560px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--clr-red); color: #fff; border-color: var(--clr-red); }
.btn-primary:hover { background: var(--clr-red-dark); border-color: var(--clr-red-dark); box-shadow: 0 4px 14px rgba(230,57,70,.35); }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-white { background: #fff; color: var(--clr-red); border-color: #fff; }
.btn-white:hover { background: var(--clr-light); box-shadow: 0 4px 14px rgba(0,0,0,.15); }

.btn-phone { background: var(--clr-green); color: var(--clr-dark); border-color: var(--clr-green); font-weight: 700; }
.btn-phone:hover { background: #22c55e; box-shadow: 0 4px 14px rgba(74,222,128,.4); }

.btn-lg { padding: .9375rem 2rem; font-size: 1rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--clr-dark);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.35); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-shrink: 0;
}
.logo-mark {
  width: 40px; height: 40px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
}
.logo-sub {
  display: block;
  font-size: .5625rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-text-3);
}

/* Desktop nav */
.main-nav { display: none; }
.nav-list { display: flex; gap: var(--sp-lg); align-items: center; }
.nav-list > li > a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  padding-block: var(--sp-xs);
  transition: color var(--ease);
}
.nav-list > li > a:hover { color: #fff; }

/* Dropdown */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown > a::after { content: ' ▾'; font-size: .65em; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
  padding: var(--sp-sm);
  padding-top: calc(var(--sp-sm) + 10px);
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), transform var(--ease);
  z-index: 10;
}
.nav-has-dropdown:hover .dropdown,
.nav-has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: .5rem .75rem;
  font-size: .875rem;
  color: var(--clr-text);
  border-radius: var(--radius-sm);
  transition: background var(--ease), color var(--ease);
}
.dropdown a:hover { background: var(--clr-light); color: var(--clr-red); }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: var(--sp-sm); }
.header-phone {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--clr-green);
  white-space: nowrap;
  transition: color var(--ease);
}
.header-phone:hover { color: #22c55e; }
.header-phone svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--ease);
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--clr-dark);
  z-index: 199;
  overflow-y: auto;
  padding: var(--sp-xl) var(--container-px);
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav-section { margin-bottom: var(--sp-xl); }
.mobile-nav-heading {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-text-3);
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: var(--sp-sm);
}
.mobile-nav a {
  display: block;
  padding: .625rem 0;
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color var(--ease), padding-left var(--ease);
}
.mobile-nav a:hover { color: #fff; padding-left: var(--sp-sm); }
.mobile-nav-cta {
  margin-top: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(140deg, var(--clr-dark) 0%, var(--clr-dark-2) 55%, #0d2d48 100%);
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4rem));
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  position: relative;
  overflow: hidden;
}

/* Dot texture */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Ambient glow */
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(230,57,70,.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--sp-2xl);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--clr-green);
  margin-bottom: var(--sp-md);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-green);
  border-radius: 2px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.125rem, 5vw, 3.75rem);
  line-height: 1.13;
  color: #fff;
  margin-bottom: var(--sp-md);
}
.hero-title em {
  font-style: italic;
  color: var(--clr-red);
}

.hero-desc {
  font-size: clamp(.9375rem, 1.5vw, 1.0625rem);
  color: rgba(255,255,255,.68);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: var(--sp-xl);
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-xl);
}
.hero-bullet {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: .9375rem;
  color: rgba(255,255,255,.82);
}
.bullet-check {
  width: 20px; height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(74,222,128,.12);
  border: 1.5px solid var(--clr-green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bullet-check svg { width: 10px; height: 10px; stroke: var(--clr-green); fill: none; }

/* Phone block */
.hero-phone-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-phone-label {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.hero-phone-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--clr-green);
  transition: color var(--ease);
}
.hero-phone-link:hover { color: #22c55e; }
.hero-phone-link svg { width: 26px; height: 26px; fill: currentColor; }

/* Form Card */
.hero-form-wrap {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
}
.form-card-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: #fff;
  margin-bottom: 4px;
}
.form-card-sub {
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
  margin-bottom: var(--sp-lg);
}
.form-stack { display: grid; gap: var(--sp-sm); }
.form-row { display: grid; gap: var(--sp-sm); }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-lbl {
  font-size: .8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
}
.form-lbl .req { color: var(--clr-red); }
.form-ctrl {
  width: 100%;
  padding: .625rem .875rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  color: #fff;
  font-size: .9375rem;
  transition: border-color var(--ease), background var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-ctrl::placeholder { color: rgba(255,255,255,.28); }
.form-ctrl:focus { outline: none; border-color: var(--clr-green); background: rgba(255,255,255,.11); }
.form-ctrl option { background: var(--clr-dark); color: #fff; }
.form-btn {
  width: 100%;
  margin-top: var(--sp-xs);
  padding: .9375rem;
  background: var(--clr-red);
  color: #fff;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
}
.form-btn:hover { background: var(--clr-red-dark); box-shadow: 0 4px 18px rgba(230,57,70,.42); }
.form-btn:active { transform: translateY(1px); }

/* Honeypot */
.hp-field { display: none !important; }

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-xl) var(--sp-md);
}
.form-success.show { display: block; }
.success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(74,222,128,.12);
  border: 2px solid var(--clr-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto var(--sp-md);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: var(--sp-xs);
}
.form-success p { font-size: .875rem; color: rgba(255,255,255,.55); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}
.trust-bar-scroll {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--clr-border);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: .875rem var(--sp-sm);
  gap: 4px;
  background: #fff;
}
/* If last item is alone in its row, span both columns */
.trust-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
.trust-val {
  font-family: var(--font-display);
  font-size: clamp(.9375rem, 1.5vw, 1.125rem);
  color: var(--clr-dark);
  line-height: 1;
}
.trust-lbl {
  font-size: .6875rem;
  color: var(--clr-text-2);
}

/* Icon-variant trust bar (city hub pages) */
.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  background: transparent;
  padding-block: 0;
}
.trust-list .trust-item {
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 8px;
  padding: .75rem var(--sp-lg);
  font-size: .8125rem;
  font-weight: 600;
  color: var(--clr-text-2);
  border-right: 1px solid var(--clr-border);
}
.trust-list .trust-item:last-child { border-right: none; }
.trust-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
  stroke: var(--clr-red);
  fill: none;
}
@media (min-width: 640px) {
  .trust-list .trust-item:last-child:nth-child(odd) { grid-column: auto; }
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services { background: var(--clr-light); }
.services-hd { text-align: center; margin-bottom: var(--sp-2xl); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}
.svc-card {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}
.svc-card.svc-cta {
  background: var(--clr-dark);
  border-color: transparent;
  justify-content: center;
}
.svc-icon {
  width: 50px; height: 50px;
  background: var(--clr-red-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.svc-icon svg { width: 26px; height: 26px; stroke: var(--clr-red); fill: none; }
.svc-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--clr-dark);
}
.svc-card.svc-cta .svc-title { color: #fff; }
.svc-desc {
  font-size: .875rem;
  color: var(--clr-text-2);
  line-height: 1.65;
}
.svc-card.svc-cta .svc-desc { color: rgba(255,255,255,.58); }
.svc-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--clr-red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  transition: gap var(--ease);
}
.svc-link:hover { gap: 8px; }
.svc-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-choose { background: #fff; }
.why-hd { text-align: center; margin-bottom: var(--sp-2xl); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
}
.why-item { display: flex; gap: var(--sp-md); align-items: flex-start; }
.why-icon {
  width: 50px; height: 50px;
  min-width: 50px;
  background: var(--clr-red-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 24px; height: 24px; stroke: var(--clr-red); fill: none; }
.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--clr-dark);
  margin-bottom: 4px;
}
.why-item p {
  font-size: .875rem;
  color: var(--clr-text-2);
  line-height: 1.7;
}

/* ============================================================
   LOCAL CREDIBILITY
   ============================================================ */
.local-cred { background: var(--clr-light); }
.local-cred-inner { display: grid; gap: var(--sp-2xl); }

.stat-cards { display: grid; gap: var(--sp-md); }
.stat-card {
  background: var(--clr-dark);
  border-radius: var(--radius);
  padding: var(--sp-xl);
}
.stat-card-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.875rem);
  color: var(--clr-green);
  line-height: 1;
  margin-bottom: var(--sp-xs);
}
.stat-card-txt {
  font-size: .875rem;
  color: rgba(255,255,255,.68);
  line-height: 1.55;
}
.stat-card-src {
  font-size: .6875rem;
  color: rgba(255,255,255,.3);
  margin-top: var(--sp-xs);
}

.cred-right-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--clr-dark);
  margin-bottom: var(--sp-md);
}
.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-xl);
}
.city-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .4375rem .9375rem;
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  font-size: .875rem;
  color: var(--clr-text);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.city-pill:hover {
  background: var(--clr-red);
  border-color: var(--clr-red);
  color: #fff;
}

.radon-callout {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-left: 4px solid var(--clr-red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--sp-lg);
}
.radon-callout h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--clr-dark);
  margin-bottom: var(--sp-xs);
}
.radon-callout p {
  font-size: .875rem;
  color: var(--clr-text-2);
  line-height: 1.75;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: #fff; }
.how-hd { text-align: center; margin-bottom: var(--sp-2xl); }
.steps { display: grid; gap: var(--sp-xl); }
.step { display: flex; gap: var(--sp-md); }
.step-num {
  width: 50px; height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: var(--clr-red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.375rem;
  flex-shrink: 0;
}
.step-num.step-done {
  background: var(--clr-green);
  color: var(--clr-dark);
  font-size: 1.25rem;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--clr-dark);
  margin-bottom: 4px;
  padding-top: .6rem;
}
.step-body p { font-size: .875rem; color: var(--clr-text-2); line-height: 1.75; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--clr-red) 0%, var(--clr-red-dark) 100%);
  padding-block: var(--sp-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-eyebrow {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: var(--sp-sm);
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  color: #fff;
  margin-bottom: var(--sp-sm);
}
.cta-sub {
  font-size: .9375rem;
  color: rgba(255,255,255,.72);
  margin-bottom: var(--sp-xl);
  max-width: 460px;
  margin-inline: auto;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.service-area { background: var(--clr-light); }
.service-area-inner { display: grid; gap: var(--sp-2xl); }
.sab-callout {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.sab-callout-icon { line-height: 0; }
.sab-callout-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--clr-dark);
  margin: 0;
}
.sab-callout-body { color: var(--clr-text-2); line-height: 1.65; margin: 0; }
.sab-callout-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin: 0;
  padding: 0;
  list-style: none;
}
.sab-callout-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  color: var(--clr-text);
  font-weight: 500;
}

.area-list-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--clr-dark);
  margin-bottom: var(--sp-md);
}
.city-rows { display: flex; flex-direction: column; gap: var(--sp-sm); }
.city-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  font-size: .9375rem;
  color: var(--clr-text);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.city-row:hover { border-color: var(--clr-red); box-shadow: 0 2px 10px rgba(230,57,70,.1); }
.city-row strong { color: var(--clr-dark); }
.city-row span { font-size: .8125rem; color: var(--clr-text-3); }
.city-row-arr { color: var(--clr-red); font-size: 1.125rem; }
.area-note {
  margin-top: var(--sp-md);
  font-size: .875rem;
  color: var(--clr-text-2);
}
.area-note a { color: var(--clr-red); font-weight: 500; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: #fff; }
.faq-hd { margin-bottom: var(--sp-2xl); }
.faq-list {
  max-width: 780px;
  margin-inline: auto;
}
.faq-item { border-bottom: 1px solid var(--clr-border); }
.faq-item:first-child { border-top: 1px solid var(--clr-border); }
.faq-q {
  width: 100%;
  text-align: left;
  padding-block: var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--clr-dark);
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  transition: color var(--ease);
}
.faq-q:hover { color: var(--clr-red); }
.faq-q[aria-expanded="true"] { color: var(--clr-red); }
.faq-icon {
  width: 26px; height: 26px;
  min-width: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border);
  display: flex; align-items: center; justify-content: center;
  font-size: .8125rem;
  color: var(--clr-text-2);
  transition: transform var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  border-color: var(--clr-red);
  background: var(--clr-red);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding-bottom: var(--sp-md);
  font-size: .9375rem;
  color: var(--clr-text-2);
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,.65);
  padding-top: var(--sp-3xl);
  padding-bottom: var(--sp-xl);
}
.footer-grid {
  display: grid;
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-2xl);
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--sp-md); }
.footer-tagline {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 290px;
}
.footer-nap { display: flex; flex-direction: column; gap: 8px; }
.footer-nap a,
.footer-nap span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: rgba(255,255,255,.62);
  transition: color var(--ease);
}
.footer-nap a:hover { color: var(--clr-green); }
.footer-nap svg { width: 15px; height: 15px; stroke: currentColor; fill: none; flex-shrink: 0; }
.footer-col-hd {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: var(--sp-md);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-sm); }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--ease);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  text-align: center;
}
.footer-copyright { font-size: .8125rem; color: rgba(255,255,255,.3); }
.footer-legal {
  display: flex;
  gap: var(--sp-lg);
}
.footer-legal a {
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
  transition: color var(--ease);
}
.footer-legal a:hover { color: rgba(255,255,255,.65); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .08s; }
.fade-up:nth-child(3) { transition-delay: .16s; }
.fade-up:nth-child(4) { transition-delay: .24s; }
.fade-up:nth-child(5) { transition-delay: .32s; }
.fade-up:nth-child(6) { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE — 640px
   ============================================================ */
@media (min-width: 640px) {
  .trust-bar-scroll { grid-template-columns: repeat(5, 1fr); }
  .trust-item:last-child:nth-child(odd) { grid-column: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .step { flex-direction: column; }
  .cta-actions { flex-direction: row; justify-content: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav-btn { display: none; }
  .header-phone { display: flex; }
  .hero-inner { grid-template-columns: 1fr 1fr; align-items: center; }
  .service-hero:not(:has(> .container)) { grid-template-columns: 1fr 1fr; align-items: start; }
  .service-hero-inner { grid-template-columns: 1fr 1fr; align-items: center; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .local-cred-inner { grid-template-columns: 1fr 2fr; align-items: start; }
  .stat-cards { grid-template-columns: 1fr; }
  .service-area-inner { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
  .info-cols { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SERVICE PAGE — BREADCRUMB + DARK TOP ZONE
   ============================================================ */
.service-top {
  background: linear-gradient(140deg, var(--clr-dark) 0%, var(--clr-dark-2) 55%, #0d2d48 100%);
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}
.service-top::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.service-top::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(230,57,70,.09) 0%, transparent 65%);
  pointer-events: none;
}

.breadcrumb-nav {
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: .75rem 0;
  position: relative;
  z-index: 1;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.breadcrumb-list li { display: flex; align-items: center; gap: .4rem; }
.breadcrumb-list a {
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
  transition: color var(--ease);
}
.breadcrumb-list a:hover { color: rgba(255,255,255,.8); }
.breadcrumb-sep { font-size: .75rem; color: rgba(255,255,255,.2); }
.breadcrumb-current {
  font-size: .8125rem;
  color: rgba(255,255,255,.78);
  font-weight: 500;
}

/* Service hero — content section within .service-top */
.service-hero {
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  display: grid;
  gap: var(--sp-2xl);
  position: relative;
  z-index: 1;
}
/* City+service pages use .service-hero directly as the 2-col grid;
   service hub pages use .service-hero-inner nested inside */
.service-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--sp-2xl);
}

/* ============================================================
   WHAT IS IT
   ============================================================ */
.what-is-it { background: var(--clr-light); }
.what-prose {
  font-size: .9375rem;
  color: var(--clr-text-2);
  line-height: 1.85;
  max-width: 700px;
  margin-bottom: var(--sp-xl);
}
.what-prose p + p { margin-top: .875rem; }

.risk-strip {
  background: var(--clr-dark);
  border-radius: var(--radius);
  padding: var(--sp-lg) var(--sp-xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}
.risk-stat { flex: 1; min-width: 140px; }
.risk-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--clr-green);
  line-height: 1;
  margin-bottom: 4px;
}
.risk-stat-lbl {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
}

.info-cols { display: grid; gap: var(--sp-xl); }
.info-col-hd {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--clr-dark);
  padding-bottom: var(--sp-sm);
  border-bottom: 2px solid var(--clr-red);
  margin-bottom: var(--sp-md);
  display: inline-block;
}
.info-list { display: flex; flex-direction: column; gap: .625rem; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .9375rem;
  color: var(--clr-text-2);
  line-height: 1.6;
}
.info-check {
  width: 20px; height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--clr-green-light);
  border: 1.5px solid var(--clr-green);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  flex-shrink: 0;
}
.info-check svg { width: 10px; height: 10px; stroke: var(--clr-green-dark); fill: none; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: #fff; }
.pricing-grid { display: grid; gap: var(--sp-md); }
.pricing-card {
  background: var(--clr-light);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  background: #fff;
  border-color: var(--clr-red);
}
.pricing-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--clr-red);
  color: #fff;
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3125rem .875rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-text-3);
  margin-bottom: var(--sp-sm);
}
.pricing-range {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--clr-dark);
  line-height: 1;
  margin-bottom: var(--sp-xs);
}
.pricing-range-sub {
  font-size: .8125rem;
  color: var(--clr-text-3);
  margin-bottom: var(--sp-md);
}
.pricing-desc {
  font-size: .875rem;
  color: var(--clr-text-2);
  line-height: 1.65;
  margin-bottom: var(--sp-md);
  flex: 1;
}
.pricing-includes {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding-top: var(--sp-md);
  border-top: 1px solid var(--clr-border);
}
.pricing-include-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: var(--clr-text-2);
}
.pricing-include-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-green);
  flex-shrink: 0;
}
.pricing-footer {
  margin-top: var(--sp-2xl);
  background: var(--clr-dark);
  border-radius: var(--radius);
  padding: var(--sp-lg) var(--sp-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  text-align: center;
}
.pricing-footer p {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
}
.pricing-footer strong { color: var(--clr-green); }

/* ============================================================
   RELATED SERVICES
   ============================================================ */
.related-services { background: var(--clr-light); }
.related-grid { display: grid; gap: var(--sp-md); }
.related-card {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: var(--sp-lg);
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
  color: inherit;
  transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease);
}
.related-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-2px);
}
.related-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--clr-red-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.related-icon svg { width: 22px; height: 22px; stroke: var(--clr-red); fill: none; }
.related-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--clr-dark);
  margin-bottom: 4px;
}
.related-desc {
  font-size: .875rem;
  color: var(--clr-text-2);
  line-height: 1.6;
}
.related-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--clr-red);
  margin-top: .5rem;
  transition: gap var(--ease);
}
.related-link:hover { gap: 8px; }

/* ============================================================
   4-STEP PROCESS VARIANT (service pages)
   ============================================================ */
.section-compact { padding-block: clamp(1.75rem, 4vw, 3rem); }

@media (min-width: 640px) {
  .steps.steps-4 { grid-template-columns: repeat(2, 1fr); }
  .steps.steps-4 .step { flex-direction: column; }
}
@media (min-width: 1024px) {
  .steps.steps-4 { grid-template-columns: repeat(4, 1fr); gap: var(--sp-lg); }
}

/* ============================================================
   CITY HUB PAGES
   ============================================================ */

/* City hero — full-width centered, no form */
.city-hero {
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
  text-align: center;
}
.city-hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--sp-md);
}
.city-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--sp-lg);
  max-width: 800px;
  margin-inline: auto;
}
.city-hero-title em { font-style: italic; color: var(--clr-red); }
.city-hero-sub {
  font-size: clamp(.9375rem, 2vw, 1.0625rem);
  color: rgba(255,255,255,.68);
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: var(--sp-xl);
  line-height: 1.7;
}
.city-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  justify-content: center;
}

/* City services grid */
.city-svc-grid {
  display: grid;
  gap: var(--sp-md);
}
.city-svc-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: var(--sp-lg);
  color: inherit;
  transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease);
}
.city-svc-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-2px);
}
.city-svc-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--clr-red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.city-svc-icon svg { width: 22px; height: 22px; stroke: var(--clr-red); fill: none; }
.city-svc-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-dark);
}
.city-svc-desc {
  font-size: .875rem;
  color: var(--clr-text-2);
  line-height: 1.6;
  flex: 1;
}
.city-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--clr-red);
  margin-top: .25rem;
  transition: gap var(--ease);
}
.city-svc-link:hover { gap: 8px; }

@media (min-width: 640px) {
  .city-svc-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Nearby cities grid */
.nearby-grid {
  display: grid;
  gap: var(--sp-md);
}
.nearby-card {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  background: var(--clr-light);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: var(--sp-md) var(--sp-lg);
  font-weight: 600;
  color: var(--clr-dark);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.nearby-card:hover { background: #fff; border-color: var(--clr-red); color: var(--clr-red); }
.nearby-card svg { width: 16px; height: 16px; stroke: currentColor; fill: none; flex-shrink: 0; }
@media (min-width: 640px) { .nearby-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .nearby-grid { grid-template-columns: repeat(4, 1fr); } }

/* Local stat strip (city context) */
.local-stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}
.local-stat {
  background: var(--clr-light);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: var(--sp-md);
  text-align: center;
}
.local-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-red);
  line-height: 1;
  margin-bottom: .25rem;
}
.local-stat-lbl { font-size: .8125rem; color: var(--clr-text-2); line-height: 1.4; }
@media (min-width: 640px) { .local-stat-strip { grid-template-columns: repeat(4, 1fr); } }

/* City service area section */
.city-area-inner {
  display: grid;
  gap: var(--sp-xl);
}
.area-map-ph {
  background: var(--clr-border);
  border-radius: var(--radius);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  color: var(--clr-text-2);
  text-align: center;
  padding: var(--sp-xl);
}
.area-map-ph p { font-size: .875rem; max-width: 260px; }
.zip-list { display: flex; flex-wrap: wrap; gap: var(--sp-xs); margin-top: var(--sp-md); }
.zip-badge {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: .25rem .625rem;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--clr-text-2);
}
.neighborhood-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .375rem var(--sp-md);
  margin-top: var(--sp-md);
}
.neighborhood-list li {
  font-size: .875rem;
  color: var(--clr-text-2);
  display: flex;
  align-items: center;
  gap: .375rem;
}
.neighborhood-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--clr-red);
  border-radius: 50%;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .city-area-inner { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* ============================================================
   PAGE HEADER (about, contact, simple interior pages)
   ============================================================ */
.page-header {
  background: var(--clr-dark);
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}
.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: var(--sp-md);
  margin-top: var(--sp-md);
}
.page-header-sub {
  font-size: clamp(.9375rem, 2vw, 1.0625rem);
  color: rgba(255,255,255,.65);
  max-width: 680px;
  line-height: 1.7;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-stat-strip {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}
.about-stat {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  background: var(--clr-light);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: var(--sp-md) var(--sp-lg);
}
.about-stat-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: var(--clr-red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-stat-icon svg { stroke: var(--clr-red); fill: none; }
.about-stat-num {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1.2;
  margin-bottom: .25rem;
}
.about-stat-lbl {
  font-size: .8125rem;
  color: var(--clr-text-2);
  line-height: 1.5;
}

.prose {
  font-size: .9375rem;
  color: var(--clr-text-2);
  line-height: 1.85;
}
.prose p + p { margin-top: 1rem; }

/* Feature card as link */
.feature-card-link {
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease);
}
.feature-card-link:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-2px);
}
.feature-link {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--clr-red);
  margin-top: .5rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  gap: var(--sp-2xl);
}
.contact-form-wrap { max-width: 640px; }

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.contact-info-card,
.contact-cities-card,
.contact-services-card {
  background: var(--clr-light);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: var(--sp-lg);
}
.contact-info-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--clr-dark);
  margin-bottom: var(--sp-md);
  padding-bottom: .625rem;
  border-bottom: 2px solid var(--clr-red);
  display: inline-block;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--clr-border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  background: var(--clr-red-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { stroke: var(--clr-red); fill: none; }
.contact-info-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--clr-text-3);
  margin-bottom: .25rem;
}
.contact-info-value {
  font-size: .9375rem;
  color: var(--clr-dark);
  font-weight: 500;
}
a.contact-info-value:hover { color: var(--clr-red); }

.contact-cities-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.contact-cities-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .9375rem;
}
.contact-cities-list a {
  color: var(--clr-dark);
  font-weight: 500;
  transition: color var(--ease);
}
.contact-cities-list a:hover { color: var(--clr-red); }
.contact-cities-note {
  font-size: .8125rem;
  color: var(--clr-text-3);
  margin-top: var(--sp-sm);
  line-height: 1.5;
}

.zone-badge {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .1875rem .5rem;
  border-radius: 100px;
  white-space: nowrap;
}
.zone-badge.zone-1 {
  background: #fee2e2;
  color: #991b1b;
}
.zone-badge.zone-2 {
  background: #fef3c7;
  color: #92400e;
}

.contact-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.contact-services-list a {
  font-size: .9375rem;
  color: var(--clr-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color var(--ease);
}
.contact-services-list a::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--clr-red);
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-services-list a:hover { color: var(--clr-red); }

.form-select { cursor: pointer; }

@media (min-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr 380px; align-items: start; }
}

/* ============================================================
   CITY+SERVICE PAGE COMPONENT LIBRARY
   All CSS needed for /[city]/[service]/ pages.
   ============================================================ */

/* ---- Utilities ---- */
.bg-light { background: var(--clr-light); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.container-narrow {
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* ---- Section layout helpers ---- */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
  max-width: 720px;
  margin-inline: auto;
}
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: var(--sp-sm);
}
.section-sub {
  font-size: .9375rem;
  color: var(--clr-text-2);
  line-height: 1.7;
  max-width: 580px;
  margin-inline: auto;
  margin-top: var(--sp-sm);
}
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  justify-content: center;
}
.content-2col { display: grid; gap: var(--sp-2xl); }
@media (min-width: 1024px) {
  .content-2col { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* ---- Service hero copy (left col) ---- */
.service-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--sp-md);
}
.service-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--sp-lg);
}
.service-hero-title em { font-style: italic; color: var(--clr-red); }
.service-hero-sub {
  font-size: clamp(.9375rem, 2vw, 1.05rem);
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
}
.service-hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  margin-bottom: var(--sp-xl);
}
.service-hero-bullets li {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .9375rem;
  color: rgba(255,255,255,.78);
}
.service-hero-bullets svg { flex-shrink: 0; }
.service-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--clr-green);
  transition: color var(--ease);
  text-decoration: none;
}
.service-phone-cta:hover { color: #22c55e; }
.service-phone-cta svg { flex-shrink: 0; }

/* ---- Service form card (right col) ---- */
.service-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
}
.form-card-header {
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid var(--clr-border);
}
.service-form-card .form-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--clr-dark);
  margin-bottom: 4px;
}
.service-form-card .form-card-sub {
  font-size: .8125rem;
  color: var(--clr-text-2);
}

/* ---- Light-mode form fields ---- */
.contact-form { display: flex; flex-direction: column; gap: var(--sp-md); }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label {
  font-size: .875rem;
  font-weight: 500;
  color: var(--clr-text);
}
.form-input {
  width: 100%;
  padding: .625rem .875rem;
  background: var(--clr-light);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  color: var(--clr-text);
  font-size: .9375rem;
  font-family: inherit;
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: var(--clr-text-3); }
.form-input:focus {
  outline: none;
  border-color: var(--clr-red);
  box-shadow: 0 0 0 3px rgba(230,57,70,.1);
  background: #fff;
}
.form-textarea { resize: vertical; min-height: 80px; line-height: 1.6; }

/* btn-block: full-width button */
.btn-block { width: 100%; justify-content: center; }

/* Form success state inside service-form-card */
.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-xl) var(--sp-md);
}
.form-success.show { display: block; }
.form-success svg { margin-inline: auto; display: block; margin-bottom: var(--sp-md); }
.form-success-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--clr-dark);
  margin-bottom: var(--sp-sm);
}
.service-form-card .form-success p { font-size: .9375rem; color: var(--clr-text-2); }

/* ---- Feature cards grid ---- */
.features-grid {
  display: grid;
  gap: var(--sp-md);
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.feature-icon-wrap {
  width: 48px; height: 48px;
  background: var(--clr-red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon-wrap svg { width: 24px; height: 24px; stroke: var(--clr-red); fill: none; }
.feature-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-dark);
}
.feature-desc {
  font-size: .875rem;
  color: var(--clr-text-2);
  line-height: 1.65;
}

/* ---- Steps (city+service pages use .step-title / .step-desc) ---- */
.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: .25rem;
}
.step-desc {
  font-size: .875rem;
  color: var(--clr-text-2);
  line-height: 1.75;
}

/* ---- Footer (city+service layout) ---- */
.footer-inner {
  display: grid;
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-2xl);
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xl);
}
.footer-nav-col { display: flex; flex-direction: column; gap: var(--sp-sm); }
.footer-nav-heading {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: var(--sp-sm);
}
.footer-nav a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--ease);
  text-decoration: none;
}
.footer-nav a:hover { color: #fff; }
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  text-align: center;
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
}
@media (min-width: 640px) {
  .footer-inner { grid-template-columns: 1fr auto; align-items: start; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ---- CTA band (used in city+service pages) ---- */
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: var(--sp-sm);
}
.cta-sub {
  font-size: clamp(.9375rem, 2vw, 1.05rem);
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: var(--sp-xl);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  justify-content: center;
}
.btn-white {
  background: #fff;
  color: var(--clr-red);
  border-color: #fff;
}
.btn-white:hover { background: var(--clr-light); border-color: var(--clr-light); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-secondary {
  background: transparent;
  color: var(--clr-text-2);
  border-color: var(--clr-border);
}
.btn-secondary:hover { background: var(--clr-light); color: var(--clr-dark); }
.btn-ghost {
  background: transparent;
  color: var(--clr-text-2);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--clr-red); }

/* ---- Trust bar (val/lbl already exist but need layout fix) ---- */
.trust-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1.2;
}
.trust-lbl {
  display: block;
  font-size: .75rem;
  color: var(--clr-text-3);
  line-height: 1.3;
}

/* ---- Breadcrumb (city+service pages use .breadcrumb wrapper) ---- */
.breadcrumb {
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: .75rem 0;
  position: relative;
  z-index: 1;
}

/* ============================================================
   CITY+SERVICE PAGE NAV COMPONENTS
   These pages use different class names from the homepage.
   ============================================================ */

/* Mobile nav overlay — full-screen backdrop + slide-in drawer */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 198;
  background: rgba(0,0,0,.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-drawer {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 100vw);
  background: var(--clr-dark);
  overflow-y: auto;
  padding: var(--sp-lg) var(--container-px) var(--sp-2xl);
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  z-index: 199;
}
.mobile-nav-overlay.is-open .mobile-nav-drawer {
  transform: translateX(0);
}

/* Hamburger button (city+service pages) */
.mobile-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--ease);
}
.mobile-nav-btn:hover { background: rgba(255,255,255,.1); }
.mobile-nav-btn svg { width: 24px; height: 24px; stroke: #fff; fill: none; flex-shrink: 0; }

/* Close button inside drawer */
.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  align-self: flex-end;
  margin-bottom: var(--sp-md);
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.72);
  transition: background var(--ease), color var(--ease);
  flex-shrink: 0;
}
.mobile-nav-close:hover { background: rgba(255,255,255,.1); color: #fff; }
.mobile-nav-close svg { width: 22px; height: 22px; stroke: currentColor; fill: none; }

/* Mobile nav list & links */
.mobile-nav-list { list-style: none; flex: 1; }
.mobile-nav-link {
  display: block;
  padding: .625rem 0;
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color var(--ease), padding-left var(--ease);
  text-decoration: none;
}
.mobile-nav-link:hover,
.mobile-nav-link[aria-current="page"] { color: #fff; }
.mobile-nav-sub {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  padding-left: var(--sp-sm);
}
.mobile-nav-sub:hover { color: rgba(255,255,255,.85); }
.mobile-nav-section { margin-bottom: var(--sp-md); }
.mobile-nav-cta { margin-top: auto; padding-top: var(--sp-xl); }

/* Desktop dropdown — city+service pages use <ul class="nav-dropdown"> */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
  padding: var(--sp-sm);
  padding-top: calc(var(--sp-sm) + 8px);
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  z-index: 10;
  list-style: none;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown trigger — city+service pages use <button> instead of <a> */
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  padding-block: var(--sp-xs);
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--ease);
  font-family: inherit;
}
.nav-dropdown-btn:hover,
.nav-has-dropdown:hover .nav-dropdown-btn,
.nav-has-dropdown:focus-within .nav-dropdown-btn { color: #fff; }
.nav-dropdown-btn svg { stroke: currentColor; fill: none; flex-shrink: 0; }

/* Dropdown links */
.nav-dropdown-link {
  display: block;
  padding: .5rem .75rem;
  font-size: .875rem;
  color: var(--clr-text);
  border-radius: var(--radius-sm);
  transition: background var(--ease), color var(--ease);
  text-decoration: none;
}
.nav-dropdown-link:hover { background: var(--clr-light); color: var(--clr-red); }
.nav-dropdown-link[aria-current="page"] { color: var(--clr-red); font-weight: 600; }

/* nav-link on <a> elements inside the desktop nav list */
.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  padding-block: var(--sp-xs);
  transition: color var(--ease);
  text-decoration: none;
}
.nav-link:hover,
.nav-link[aria-current="page"] { color: #fff; }

/* FAQ — city+service pages use .faq-question / .faq-answer */
.faq-question {
  width: 100%;
  text-align: left;
  padding-block: var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--clr-dark);
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  transition: color var(--ease);
}
.faq-question:hover { color: var(--clr-red); }
.faq-question[aria-expanded="true"] { color: var(--clr-red); }
.faq-question .faq-icon { flex-shrink: 0; transition: transform var(--ease); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer p {
  padding-bottom: var(--sp-md);
  font-size: .9375rem;
  color: var(--clr-text-2);
  line-height: 1.8;
}
