
:root {
  --primary:       #1d4ed8;
  --primary-dark:  #173eab;
  --primary-light: #597fe9;
  --accent:        #84cc16;
  --ink:           #0f172a;
  --muted:         #6b7280;
  --line:          #e5e7eb;
  --line-soft:     #f1f5f9;
  --surface:       #ffffff;
  --surface-alt:   #f8fafc;
  --surface-soft:  #fafbfc;
  --shadow-sm:     0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 1px rgba(15, 23, 42, 0.03);
  --shadow-md:     0 4px 14px -2px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg:     0 18px 40px -12px rgba(15, 23, 42, 0.18), 0 8px 16px -8px rgba(15, 23, 42, 0.08);
  --r-sm:          8px;
  --r-md:          12px;
  --r-lg:          18px;
  --r-xl:          24px;
  --r-pill:        9999px;
  --font-body:     'Source Sans 3', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-heading:  Fraunces, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --container:     1200px;
  --nav-h:         72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface-alt);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin: 0 0 0.5em;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  
  text-transform: capitalize;
}
h1 { font-size: clamp(2rem, 4vw + 1rem, 3.5rem); line-height: 1.08; letter-spacing: -0.025em; font-weight: 800; }
h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 6px;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section   { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--alt  { background: var(--surface); }
.section--soft { background: var(--surface-soft); }
.lead { font-size: 1.15rem; color: var(--muted); }
.center-text { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.92);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar__phone {
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar__phone:hover { color: #fff; opacity: 0.9; }
.topbar__phone svg { width: 14px; height: 14px; }
.topbar__sep { opacity: 0.4; }
.topbar__bit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
}
.topbar__bit svg { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.9; }
.topbar__bit--link { color: rgba(255,255,255,0.85); text-decoration: none; }
.topbar__bit--link:hover { color: #fff; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  height: var(--nav-h);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.nav__brand img { height: 36px; width: auto; }
.nav__links {
  display: none;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav__links a:hover { color: var(--primary); }
.nav__cta {
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.nav__cta:hover { color: #fff; filter: brightness(0.95); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav__cta svg { width: 16px; height: 16px; }
.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
}
.nav__toggle-icon { display: inline-flex; }
.nav__toggle-icon--close { display: none; }
.nav__toggle.is-open .nav__toggle-icon--open { display: none; }
.nav__toggle.is-open .nav__toggle-icon--close { display: inline-flex; }
.nav__mobile {
  display: none;
  position: absolute;
  
  top: 100%;
  left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 16px 24px;
}
.nav__mobile a {
  display: block;
  padding: 12px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  font-weight: 500;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile.is-open { display: block; }
@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  transition: transform 0.18s cubic-bezier(.2,.8,.2,1), box-shadow 0.18s, background 0.18s, color 0.18s, border-color 0.18s;
  cursor: pointer;
  
  text-wrap: balance;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--primary-dark); color: #fff; box-shadow: var(--shadow-md); }
.btn--secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
.btn--secondary:hover { border-color: var(--ink); color: var(--ink); }
.btn--ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  background: var(--surface-alt);
  border-color: var(--ink);
  color: var(--ink);
}
.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover { filter: brightness(0.93); color: #fff; }
.btn--lg { padding: 14px 26px; font-size: 1rem; }
.btn svg { width: 18px; height: 18px; }

.hero {
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary) 12%, transparent), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 10%, transparent), transparent 70%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }

.hero--with-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.hero--with-bg::after { display: none; }
.hero--with-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  top: 0; right: 0; bottom: 0; left: 0;
  width: auto; height: auto;
  border-radius: 0;
  background: linear-gradient(135deg,
    rgba(15, 23, 42, 0.78) 0%,
    rgba(15, 23, 42, 0.55) 45%,
    rgba(15, 23, 42, 0.28) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero--with-bg .hero__title { color: #fff; }
.hero--with-bg .hero__lead  { color: rgba(255, 255, 255, 0.88); }
.hero--with-bg .hero-panel  { background: rgba(15, 23, 42, 0.42); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.hero--with-bg > .container { position: relative; z-index: 1; }

.hero--placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero--placeholder::before,
.hero--placeholder::after { display: none; }
.hero--placeholder > .container { position: relative; z-index: 1; }
.hero--placeholder .hero__title { color: #fff; }
.hero--placeholder .hero__lead  { color: rgba(255, 255, 255, 0.88); }
.hero--placeholder .hero-panel  { background: rgba(15, 23, 42, 0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.hero--placeholder .breadcrumb,
.hero--placeholder .breadcrumb a,
.hero--placeholder .breadcrumb__current { color: rgba(255, 255, 255, 0.92); }
.hero--placeholder .breadcrumb__sep { color: rgba(255, 255, 255, 0.5); }

.hero--shaded {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
}
.hero--shaded::before {
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
}
.hero--shaded::after {
  background: radial-gradient(circle, rgba(255,255,255,0.07), transparent 70%);
}
.hero--shaded .hero__title {
  color: #fff;
  
  max-width: none;
}
.hero--shaded .hero__lead  {
  color: rgba(255,255,255,0.85);
  max-width: none;
}
.hero--shaded .breadcrumb         { color: rgba(255,255,255,0.7); }
.hero--shaded .breadcrumb a       { color: rgba(255,255,255,0.85); }
.hero--shaded .breadcrumb a:hover { color: #fff; }
.hero--shaded .breadcrumb__sep    { color: rgba(255,255,255,0.4); }
.hero--shaded .breadcrumb__current{ color: #fff; }
.hero--shaded .eyebrow            { color: #fff; opacity: 0.9; }

.hero--shaded .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.45);
  background: transparent;
}
.hero--shaded .btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.hero--shaded .btn--secondary {
  background: #fff;
  color: var(--ink);
  border-color: transparent;
}
.hero--shaded .btn--secondary:hover {
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  border-color: transparent;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: 56px; }
  
  .hero__grid--content-major { grid-template-columns: 1fr 1.4fr; }
  
  .hero__grid--text-major { grid-template-columns: 1.4fr 1fr; }
}
.hero__title {
  font-size: clamp(2.25rem, 3.4vw + 0.8rem, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero__lead {
  font-size: 1.12rem;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 560px;
  line-height: 1.55;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__image {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--surface-soft);
  position: relative;
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; }

.hero__image--placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero__image--placeholder::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.hero__image--placeholder::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -50px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.hero__image-label {
  position: relative;
  z-index: 1;
  padding: 0 28px;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}

.hero-panel {
  background: linear-gradient(160deg, var(--ink) 0%, color-mix(in srgb, var(--ink) 80%, var(--primary)) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-panel::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 30%, transparent), transparent 70%);
}
.hero-panel > * { position: relative; z-index: 1; }
.hero-panel__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  
  flex-wrap: wrap;
  line-height: 1.4;
}
.hero-panel__label svg { width: 12px; height: 12px; flex-shrink: 0; }
.hero-panel__phone {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw + 0.5rem, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.1;
}
.hero-panel__phone:hover { color: #fff; opacity: 0.92; }
.hero-panel__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
  line-height: 1.5;
}
.hero-panel__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}
.hero-panel__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.92);
}
.hero-panel__list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--accent);
  background-image: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 70%, white));
  position: relative;
}
.hero-panel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-pill);
  font-weight: 700;
  letter-spacing: 0.005em;
  text-align: center;
  transition: filter 0.15s, transform 0.15s;
}
.hero-panel__btn:hover { color: #fff; filter: brightness(0.95); transform: translateY(-1px); }
.hero-panel__btn svg { width: 18px; height: 18px; }

.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb__sep { margin: 0 8px; color: var(--line); }
.breadcrumb__current { color: var(--ink); font-weight: 500; }

.grid {
  display: grid;
  gap: 24px;
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid--5 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

@media (min-width: 980px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform 0.22s cubic-bezier(.2,.8,.2,1), box-shadow 0.22s, border-color 0.22s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card--link { display: block; color: inherit; }
.card--flush { padding: 0; overflow: hidden; }
.card__media {
  aspect-ratio: 16 / 9;
  background: var(--surface-soft);
  overflow: hidden;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card__media img,
.card--link:hover .card__media img { transform: scale(1.04); }

.card__media--placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.card__media--placeholder::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.card__media--placeholder::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.card__media-label {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  line-height: 1.25;
  font-family: var(--font-heading);
}

.card__body { padding: 22px 28px 28px; }
.card__title { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.card__text  { color: var(--muted); font-size: 0.95rem; margin: 0; }

.card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.card__call {
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
}
.card__call:hover { color: var(--primary-dark); }
.card__call svg  { width: 14px; height: 14px; }
.card__more {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}
.card__more:hover { color: var(--primary); }

.card--clickable { position: relative; cursor: pointer; }
.card--clickable .card__more::after {
  content: '';
  position: absolute;
  inset: 0;
  
}
.card--clickable .card__call {
  position: relative;
  z-index: 1;
}
.card--clickable:hover { border-color: var(--primary); }

.card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card__icon svg { width: 24px; height: 24px; }

.chip {
  display: inline-block;
  padding: 6px 14px;
  background: var(--surface-soft);
  color: var(--ink);
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--line);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
}
.info-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 16px;
}
.info-block h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.info-block h4 svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.info-block p  { margin: 0; color: var(--ink); font-size: 0.95rem; word-break: break-word; }

.zip-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.zip-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: color-mix(in srgb, var(--primary) 8%, white);
  color: var(--primary-dark);
  border: 1px solid color-mix(in srgb, var(--primary) 20%, white);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.why-panel {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.why-panel h2, .why-panel h3 { color: #fff; }
.why-panel ul { list-style: none; padding: 0; margin: 0 0 28px; }
.why-panel li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.96rem;
  line-height: 1.5;
}
.why-panel li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 700;
}

.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq__item[open] { border-color: color-mix(in srgb, var(--primary) 35%, var(--line)); }
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: '+'; font-size: 1.3rem; color: var(--muted); transition: transform 0.2s; }
.faq__item[open] .faq__q::after { transform: rotate(45deg); color: var(--primary); }
.faq__a { padding: 0 22px 20px; color: var(--muted); line-height: 1.6; }
.faq__a p:last-child { margin-bottom: 0; }

.cta-band {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.cta-band .btn--primary {
  background: #fff;
  color: var(--primary);
}
.cta-band .btn--primary:hover { background: rgba(255,255,255,0.92); color: var(--primary-dark); }
.cta-band .btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.cta-band .btn--ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }
.cta-band__buttons { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  counter-increment: step;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.step:hover {
  border-color: color-mix(in srgb, var(--primary) 40%, var(--line));
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.step__num::before { content: counter(step, decimal-leading-zero); }
.step__title { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.step__text  { color: var(--muted); font-size: 0.95rem; margin: 0; line-height: 1.55; }

.phone-cta {
  padding: 72px 0;
  background:
    radial-gradient(700px 300px at 80% -10%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 65%),
    linear-gradient(135deg, var(--primary) 0%, color-mix(in srgb, var(--primary) 65%, var(--primary-dark) 35%) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.phone-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}
.phone-cta__label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: rgba(255,255,255,0.4);
}
.phone-cta__label::after {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: rgba(255,255,255,0.4);
}
.phone-cta__title {
  font-size: clamp(1.4rem, 2vw + 0.5rem, 1.8rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.phone-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw + 1rem, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1;
}
.phone-cta__phone svg {
  width: 0.7em; height: 0.7em;
  flex-shrink: 0;
  padding: 0.2em;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
}
.phone-cta__phone:hover { color: #fff; opacity: 0.95; }
.phone-cta__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.phone-cta__alt { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.phone-cta__alt a {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255,255,255,0.3);
}
.phone-cta__alt a:hover { color: #fff; text-decoration-color: #fff; }

.coverage {
  position: relative;
  background:
    radial-gradient(800px 400px at 50% -10%, color-mix(in srgb, var(--primary) 8%, transparent), transparent 65%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 64px 32px;
  text-align: center;
  overflow: hidden;
}
.coverage::before, .coverage::after {
  content: '';
  position: absolute;
  width: 60px; height: 60px;
  border: 2px solid color-mix(in srgb, var(--primary) 20%, transparent);
  border-radius: 50%;
}
.coverage::before { top: 32px; left: 32px; }
.coverage::after  { bottom: 32px; right: 32px; }
.coverage__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 5px 14px;
  background: color-mix(in srgb, var(--primary) 8%, white);
  border-radius: var(--r-pill);
  margin-bottom: 18px;
  position: relative;
}
.coverage__state {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1;
  margin: 0 0 12px;
  text-transform: uppercase;
  position: relative;
}
.coverage__state em {
  font-style: normal;
  color: var(--primary);
}
.coverage__sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.55;
  position: relative;
}
.coverage__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 0 auto 32px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  max-width: 640px;
  position: relative;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.coverage__stat { text-align: center; }
.coverage__stat-num { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--primary); line-height: 1; }
.coverage__stat-lbl { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }
.coverage__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto 28px;
  position: relative;
}
.coverage__cities a {
  padding: 7px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.15s;
}
.coverage__cities a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}
.coverage__actions { position: relative; }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 5px 14px;
  background: color-mix(in srgb, var(--primary) 8%, white);
  border-radius: var(--r-pill);
  margin-bottom: 18px;
  
  max-width: 100%;
  white-space: normal;
  line-height: 1.4;
  text-wrap: balance;
}
.section-head__title {
  font-size: clamp(1.7rem, 2vw + 0.8rem, 2.4rem);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.section-head__lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 580px;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.testimonial__stars { color: var(--accent); margin-bottom: 12px; letter-spacing: 0.05em; }
.testimonial__text { color: var(--ink); font-size: 1.02rem; line-height: 1.6; margin-bottom: 18px; }
.testimonial__who { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.testimonial__loc { color: var(--muted); font-size: 0.85rem; }

.az-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--nav-h) + 12px);
  z-index: 10;
  margin-bottom: 40px;
  
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
}
.az-filter__letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary);
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.az-filter__letter:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}
.az-filter__letter--disabled {
  color: var(--muted);
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}

.az-letter {
  margin-top: 32px;
  
  scroll-margin-top: calc(var(--nav-h) + 80px);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--line);
}
.az-group { margin-bottom: 40px; }
.az-list {
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.az-card {
  display: block;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s, color 0.15s;
}
.az-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--primary);
}
.az-card__name {
  font-weight: 700;
  font-size: 1.05rem;
  color: inherit;
  margin-bottom: 4px;
}
.az-card__zips {
  font-size: 0.82rem;
  color: var(--muted);
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  letter-spacing: -0.02em;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  max-width: 760px;
}
@media (min-width: 700px) {
  .check-list { grid-template-columns: 1fr 1fr; gap: 14px 32px; }
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.4;
}
.check-list li svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  padding: 4px;
  background: color-mix(in srgb, var(--primary) 12%, white);
  color: var(--primary);
  border-radius: var(--r-pill);
  box-sizing: content-box;
}

.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--ink); margin-bottom: 6px; }
.form__input, .form__select, .form__textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form__textarea { resize: vertical; min-height: 120px; }
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 20%, transparent);
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink);
}

.prose--wide { max-width: none; }

.article-featured {
  margin: 0 auto 32px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background: var(--surface-soft);
  max-width: 820px;
  width: 100%;
}
.article-featured img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prose h2 { margin-top: 1.8em; margin-bottom: 0.5em; }
.prose h3 { margin-top: 1.6em; margin-bottom: 0.4em; }
.prose p, .prose ul, .prose ol, ul.prose, ol.prose { color: var(--ink); }
.prose ol, ol.prose { padding-left: 1.3em; }

.prose ul, ul.prose {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1em;
}
.prose ul li, ul.prose li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 12px;
  line-height: 1.55;
}
.prose ul li::before, ul.prose li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
}
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }

.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 72px 0 24px;
  font-size: 0.92rem;
}
.footer a { color: rgba(255,255,255,0.75); }
.footer a:hover { color: #fff; }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 700px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; }
}
.footer__col {}
.footer__col--brand {  }
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.footer__brand-desc {
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  font-size: 0.92rem;
  margin: 0 0 20px;
}
.footer__socials { display: flex; gap: 10px; }
.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.footer__social:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
.footer__social svg { width: 16px; height: 16px; }

.footer__h {
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin-bottom: 9px; line-height: 1.4; }
.footer__list a { font-size: 0.92rem; }

.footer__list--scroll {
  max-height: 320px;
  overflow-y: auto;
  padding-right: 6px;
}
.footer__list--scroll::-webkit-scrollbar { width: 6px; }
.footer__list--scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}
.footer__bottom a { color: rgba(255,255,255,0.65); }

.fab-call {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 32px -8px rgba(0,0,0,0.32),
    0 4px 12px -4px rgba(0,0,0,0.2);
  transition: transform 0.18s cubic-bezier(.2,.8,.2,1), filter 0.18s;
}
.fab-call svg { width: 26px; height: 26px; }
.fab-call:hover { transform: scale(1.08); color: #fff; filter: brightness(0.97); }
.fab-call:active { transform: scale(0.96); }

.fab-call::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: fabPulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes fabPulse {
  0%   { transform: scale(0.9);  opacity: 0.55; }
  80%  { transform: scale(1.6);  opacity: 0;    }
  100% { transform: scale(1.6);  opacity: 0;    }
}

.fab-call__label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--ink);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--r-md);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
  box-shadow: var(--shadow-md);
}
.fab-call:hover .fab-call__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 900px) { .fab-call { display: none; } }

.float-cta {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  padding: 14px 18px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 -8px 24px -8px rgba(0,0,0,0.3);
  z-index: 60;
  text-decoration: none;
  transition: filter 0.15s;
}
.float-cta:hover, .float-cta:active { color: #fff; filter: brightness(1.06); }
.float-cta__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.float-cta__icon svg { width: 20px; height: 20px; }
.float-cta__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.15;
}
.float-cta__label {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.float-cta__phone {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
  margin-top: 2px;
}
@media (min-width: 900px) { .float-cta { display: none; } }

.muted   { color: var(--muted); }
.ink     { color: var(--ink); }
.accent  { color: var(--accent); }
.primary { color: var(--primary); }
.tight   { letter-spacing: -0.015em; }
.mt-0    { margin-top: 0; }
.mb-0    { margin-bottom: 0; }
.text-center { text-align: center; }

.center-narrow { max-width: 640px; margin: 0 auto; }
.flex-center   { justify-content: center; }
.list-plain    { list-style: none; padding: 0; margin: 0; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.text-sm    { font-size: 0.85rem; }
.text-lg    { font-size: 1.1rem; }
.text-quote { font-size: 1.4rem; line-height: 1.5; font-family: var(--font-heading); color: var(--ink); }
.prose-narrow { max-width: 760px; }
.logo-h       { height: 36px; }
.hero--tall   { padding: 140px 0; }

.card__media--fill { height: 100%; }
.card__title--mt-8 { margin-top: 8px; }
.contact-phone-display { font-size: 1.25rem; margin-top: 8px; }
.text-light          { color: rgba(255,255,255,0.85); }
.text-light--mb-20   { color: rgba(255,255,255,0.85); margin-bottom: 20px; }
.text-light-muted    { color: rgba(255,255,255,0.75); }

.phone-cta--hero { padding: 96px 0; }
.phone-cta--hero .phone-cta__title {
  font-size: clamp(1.6rem, 2.4vw + 0.5rem, 2.2rem);
  font-weight: 700;
}
.phone-cta--hero .breadcrumb           { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.phone-cta--hero .breadcrumb a         { color: rgba(255,255,255,0.85); }
.phone-cta--hero .breadcrumb a:hover   { color: #fff; }
.phone-cta--hero .breadcrumb__sep      { color: rgba(255,255,255,0.4); }
.phone-cta--hero .breadcrumb__current  { color: #fff; }

@media (max-width: 900px) { body { padding-bottom: 86px; } }

html.reveal-on-scroll .section,
html.reveal-on-scroll .phone-cta,
html.reveal-on-scroll .footer,
html.reveal-on-scroll .cta-band {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}
html.reveal-on-scroll .hero {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
  will-change: opacity, transform;
}

html.reveal-on-scroll .section.is-revealed,
html.reveal-on-scroll .hero.is-revealed,
html.reveal-on-scroll .phone-cta.is-revealed,
html.reveal-on-scroll .footer.is-revealed,
html.reveal-on-scroll .cta-band.is-revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.reveal-on-scroll .section,
  html.reveal-on-scroll .hero,
  html.reveal-on-scroll .phone-cta,
  html.reveal-on-scroll .footer,
  html.reveal-on-scroll .cta-band {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 700px) {
  .container { padding: 0 18px; }
  
  .section { padding: 48px 0; }
  .section--tight { padding: 32px 0; }
  .hero { padding: 48px 0 56px; }
  .phone-cta { padding: 56px 0; }
  .cta-band { padding: 48px 0; }
  
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__ctas .btn--ghost { margin-top: 4px; }
  
  .coverage::before, .coverage::after { display: none; }
  .coverage { padding: 40px 24px; }
  .coverage__stats { padding: 16px 14px; gap: 18px; }
  
  .footer { padding: 48px 0 20px; }
  .footer__grid { gap: 32px; margin-bottom: 32px; }
  
  .topbar { display: none; }
  
  .nav { position: relative; }
  
  .section-head { margin-bottom: 36px; }
  
  .card { padding: 22px; }
  .card__body { padding: 18px 22px 22px; }
  
  .az-filter { position: static; }
  
  .hero-panel { padding: 28px 24px; }
  .hero-panel__phone { font-size: 2rem; }
  
  .phone-cta__phone { gap: 10px; }
  .phone-cta__phone svg { width: 0.85em; height: 0.85em; padding: 0.18em; }
  
  .fab-call { display: none; }
}

@media (max-width: 400px) {
  h1, .hero__title { font-size: 1.85rem !important; line-height: 1.1; }
  .phone-cta__phone { font-size: 1.9rem; }
  .coverage__state { font-size: 2.4rem; }
}
