/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:       #0d1b2a;
  --navy-dark:  #080f17;
  --white:      #ffffff;
  --grey:       #f7f7f7;
  --text:       #111827;
  --text-muted: #4b5563;
  --text-light: #9ca3af;
  --orange:     #1a56db;
  --orange-dark:#01204c;
  --orange-bg:  #eff6ff;
  --green:      #16a34a;
  --red:        #dc2626;
  --border:     #e5e7eb;
  --radius:     8px;
  --radius-lg:  12px;
  --header-h:   108px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
p { max-width: 72ch; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; letter-spacing: -.02em; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background .15s, color .15s, transform .1s, opacity .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--text); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-white { background: #fff; color: var(--orange-dark); }
.btn-white:hover { background: #f3f4f6; }
.btn-danger { background: var(--red); color: #fff; }
.btn-danger:hover { background: #b91c1c; }

/* ── Sections ── */
.section { padding: 80px 0; }
.section-white { background: var(--white); }
.section-grey  { background: var(--grey); }

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  margin-bottom: 14px;
}
.section-header p { font-size: 16px; color: var(--text-muted); line-height: 1.75; }

/* ── Header ── */
.site-header { position: sticky; top: 0; z-index: 100; }

.header-alert {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 24px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.alert-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.alert-phone { color: var(--orange); font-weight: 700; margin-left: 4px; }
.alert-phone:hover { text-decoration: underline; }

.main-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.main-nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 66px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon { font-size: 22px; }
.logo-text strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.logo-text em { font-size: 11px; color: var(--orange); font-style: normal; font-weight: 600; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  list-style: none;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  background: none;
  border: none;
  transition: color .15s, background .15s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover { color: var(--orange); background: var(--orange-bg); }
.nav-has-dropdown { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  min-width: 280px;
  padding: 8px;
  z-index: 200;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown { display: block; }
.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: background .12s;
}
.nav-dropdown-link:hover { background: var(--grey); color: var(--orange); }
.dd-icon { font-size: 18px; width: 24px; text-align: center; flex-shrink: 0; }
.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  margin-left: auto;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  background: var(--navy);
  background-image: linear-gradient(135deg, #0d1b2a 0%, #1a2f47 100%);
  color: #fff;
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-bg.webp') center/cover no-repeat;
  opacity: .18;
  pointer-events: none;
}
.hero-content { position: relative; max-width: 720px; }
.hero-eyebrow { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
}
.hero-badge.orange { background: var(--orange); border-color: var(--orange); color: #fff; }
.hero h1 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 18px;
  line-height: 1.12;
}
.hero h1 span { color: #60a5fa; }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 58ch;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.trust-item { display: flex; align-items: center; gap: 6px; }

/* ── Stats Bar ── */
.stats-bar { background: var(--orange); padding: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 28px; font-weight: 800; color: #fff; letter-spacing: -.03em; }
.stat-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.8); margin-top: 2px; }

/* ── Warning Signs Section ── */
.signs-section { background: var(--grey); padding: 80px 0; }
.signs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 40px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.sign-row { display: flex; gap: 16px; padding: 20px 24px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); align-items: flex-start; }
.sign-row:nth-child(even) { border-right: none; }
.sign-row:nth-last-child(-n+2) { border-bottom: none; }
.sign-row-icon { font-size: 22px; flex-shrink: 0; width: 32px; text-align: center; margin-top: 2px; }
.sign-row-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.sign-row-text span { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.signs-cta { margin-top: 32px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.signs-cta p { font-size: 15px; color: var(--text-muted); margin: 0; }

/* ── Services Grid ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow .15s, transform .15s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.service-card.emergency { border-top: 3px solid var(--red); }
.service-icon { font-size: 28px; margin-bottom: 12px; }
.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.tag-standard  { background: #eff6ff; color: #1d4ed8; }
.tag-high      { background: #fff7ed; color: var(--orange-dark); }
.tag-emergency { background: #fef2f2; color: var(--red); }
.service-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.service-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.service-card-link { font-size: 13px; font-weight: 700; color: var(--orange); display: flex; align-items: center; gap: 4px; margin-top: auto; }
.service-card-link:hover { text-decoration: underline; }

/* ── Detection Methods ── */
.methods-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.method-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.method-num { font-size: 11px; font-weight: 800; color: var(--orange); letter-spacing: .08em; margin-bottom: 14px; }
.method-icon { font-size: 28px; margin-bottom: 14px; }
.method-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.method-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: none; margin: 0; }

/* ── Process Steps ── */
.process-steps { display: flex; flex-direction: column; gap: 0; max-width: 780px; }
.process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: none; margin: 0; }

/* ── Why Us ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.why-card-icon { font-size: 28px; margin-bottom: 14px; }
.why-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: none; }

/* ── States Grid (homepage) ── */
.states-section { background: var(--grey); padding: 80px 0; }
.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}
.state-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: border-color .15s, background .15s, color .15s;
}
.state-link.active { border-color: var(--orange); color: var(--orange-dark); }
.state-link.active:hover { background: var(--orange-bg); }
.state-link.inactive { color: var(--text-light); cursor: default; pointer-events: none; }
.state-abbr {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--grey);
  padding: 2px 6px;
  border-radius: 4px;
}
.state-link.active .state-abbr { background: var(--orange-bg); color: var(--orange-dark); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .15s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--grey);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
  transition: transform .2s, background .15s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange-bg); border-color: var(--orange); color: var(--orange-dark); }
.faq-answer { display: none; padding: 0 0 20px; font-size: 14px; color: var(--text-muted); line-height: 1.8; max-width: 72ch; }
.faq-item.open .faq-answer { display: block; }

/* ── CTA Strip ── */
.cta-strip { background: var(--navy); padding: 72px 0; text-align: center; }
.cta-strip h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: #fff; letter-spacing: -.03em; margin-bottom: 12px; }
.cta-strip p { font-size: 16px; color: rgba(255,255,255,.7); max-width: none; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer-cta { background: var(--navy); text-align: center; padding: 56px 24px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-cta-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); max-width: none; margin: 0 auto 10px; }
.footer-phone { display: block; font-size: clamp(30px, 5vw, 50px); font-weight: 800; color: var(--orange); letter-spacing: -.04em; text-decoration: none; margin-bottom: 8px; }
.footer-phone:hover { text-decoration: underline; }
.footer-cta-sub { font-size: 13px; color: rgba(255,255,255,.4); max-width: none; margin: 0 auto; }
.footer-main { background: var(--navy-dark); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .logo-text strong { color: #fff; }
.footer-brand .logo-text em { color: var(--orange); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 12px; max-width: 36ch; }
.footer-contact-item { font-size: 13px; margin-bottom: 4px; }
.footer-contact-item a { color: rgba(255,255,255,.55); transition: color .15s; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,.06); padding: 18px 0; }
.footer-bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,.3); max-width: none; }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── Breadcrumb ── */
.breadcrumb { background: var(--grey); border-bottom: 1px solid var(--border); padding: 11px 0; }
.breadcrumb-list { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb-item { font-size: 13px; color: var(--text-muted); }
.breadcrumb-item a { color: var(--orange); text-decoration: none; }
.breadcrumb-item a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--text-light); }

/* ── Page Hero (about / contact / services) ── */
.page-hero { background: var(--navy); color: #fff; padding: 64px 0 56px; }
.page-hero-content .section-label { color: rgba(255,255,255,.55); }
.page-hero h1 { font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; color: #fff; letter-spacing: -.03em; margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.7); max-width: 58ch; line-height: 1.75; margin-bottom: 28px; }

/* ── City / Service Page Hero ── */
.city-hero, .service-page-hero {
  background: var(--navy);
  background-image: linear-gradient(135deg, #0d1b2a 0%, #1a2f47 100%);
  color: #fff;
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.city-hero::before, .service-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-bg.webp') center/cover no-repeat;
  opacity: .15;
  pointer-events: none;
}
.city-hero-inner, .service-hero-inner { position: relative; max-width: 760px; }
.city-breadcrumb { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 14px; }
.city-breadcrumb a { color: rgba(255,255,255,.6); }
.city-breadcrumb a:hover { color: var(--orange); }
.city-hero h1, .service-page-hero h1 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; color: #fff; letter-spacing: -.03em; margin-bottom: 14px; line-height: 1.15; }
.city-hero-sub, .service-hero-sub { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.75; max-width: 62ch; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.city-trust-row { display: flex; flex-wrap: wrap; gap: 10px 18px; font-size: 13px; color: rgba(255,255,255,.6); font-weight: 500; }
.emergency-hero { background: #7f1d1d !important; background-image: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%) !important; }

/* ── City Page Sections ── */
.service-section { padding: 40px 0; border-top: 1px solid var(--border); }
.service-section:first-of-type { border-top: none; padding-top: 0; }
.service-section h3 { font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.service-section p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; max-width: 72ch; }

.qa-block {
  background: var(--grey);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
}
.qa-block .qa-q { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 10px; font-style: italic; max-width: none; }
.qa-block .qa-a { font-size: 14px; color: var(--text-muted); line-height: 1.75; max-width: none; margin: 0; }

.service-link { font-size: 14px; font-weight: 700; color: var(--orange); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.service-link:hover { text-decoration: underline; }

/* ── Local Factors ── */
.local-factors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.local-factor { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.local-factor h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.local-factor p { font-size: 13px; color: var(--text-muted); line-height: 1.65; max-width: none; margin: 0; }
.local-context-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; margin-top: 12px; }
.local-context-block p { font-size: 14px; color: var(--text-muted); line-height: 1.75; max-width: 80ch; margin: 0 0 10px; }
.local-context-block p:last-child { margin-bottom: 0; }

/* ── Pricing Section ── */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 720px;
}
.pricing-range { font-size: 32px; font-weight: 800; color: var(--orange-dark); letter-spacing: -.03em; margin-bottom: 8px; }
.pricing-factors { display: flex; flex-direction: column; gap: 0; margin: 20px 0; }
.pricing-factor { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-muted); }
.pricing-factor:last-child { border-bottom: none; }
.pricing-factor::before { content: '·'; color: var(--orange); font-weight: 800; font-size: 18px; }

/* ── ZIP & Nearby Cities ── */
.zip-codes { display: flex; flex-wrap: wrap; gap: 8px; }
.zip-badge { padding: 6px 14px; background: var(--grey); border: 1px solid var(--border); border-radius: 20px; font-size: 13px; font-weight: 600; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.nearby-cities { display: flex; flex-wrap: wrap; gap: 8px; }
.nearby-city-link { padding: 8px 16px; background: var(--white); border: 1px solid var(--border); border-radius: 20px; font-size: 13px; font-weight: 500; color: var(--text); transition: border-color .15s, color .15s; }
.nearby-city-link:hover { border-color: var(--orange); color: var(--orange-dark); }

/* ── State Page: City Grid ── */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.city-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}
.city-card.active { border-color: var(--orange); }
.city-card.active:hover { box-shadow: 0 4px 16px rgba(249,115,22,.15); }
.city-card.inactive { cursor: default; pointer-events: none; }
.city-card-name { font-size: 15px; font-weight: 700; color: var(--text); }
.city-card.active .city-card-name { color: var(--orange-dark); }
.city-card-meta { font-size: 12px; color: var(--text-light); }
.city-card-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #fff; background: var(--green); padding: 2px 7px; border-radius: 4px; align-self: flex-start; }
.city-card-badge.soon { background: var(--text-light); }

/* ── Service Aside (service detail pages) ── */
.service-detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: flex-start; }
.service-aside { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 16px; }
.aside-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.aside-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.aside-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; max-width: none; }
.aside-card .btn { width: 100%; justify-content: center; }
.aside-tip { background: var(--grey); }
.aside-emergency { background: #fff1f2; border-color: #fecaca; }
.aside-emergency h3 { color: #b91c1c; }
.price-range { font-size: 22px; font-weight: 800; color: var(--orange-dark); letter-spacing: -.02em; margin-bottom: 8px; }
.repair-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.repair-option { background: var(--grey); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.repair-option h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.repair-option p { font-size: 13px; color: var(--text-muted); line-height: 1.65; max-width: none; margin: 0; }

/* ── Two-col grid (about, service detail) ── */
.two-col-grid { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: flex-start; }
.two-col-grid h2 { font-size: 26px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.two-col-grid h3 { font-size: 18px; font-weight: 700; margin: 24px 0 10px; }
.two-col-grid p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.two-col-grid ul { padding-left: 1.25rem; margin-bottom: 14px; }
.two-col-grid ul li { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 4px; }

/* ── About Stats ── */
.about-stats-card { background: var(--navy); border-radius: var(--radius-lg); padding: 32px; }
.about-stats { display: flex; flex-direction: column; gap: 24px; }
.stat-big { font-size: 40px; font-weight: 800; color: #fff; letter-spacing: -.04em; line-height: 1; margin-bottom: 4px; }
.stat-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.5; }

/* ── Contact Page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: flex-start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-method { display: flex; gap: 16px; padding: 20px; background: var(--grey); border: 1px solid var(--border); border-radius: var(--radius); }
.contact-method-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-method strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.contact-phone { display: block; font-size: 22px; font-weight: 800; color: var(--orange); letter-spacing: -.02em; margin: 4px 0; }
.contact-email { color: var(--orange); font-weight: 600; }
.contact-method p { font-size: 13px; color: var(--text-muted); margin: 4px 0 0; max-width: none; line-height: 1.6; }
.contact-hours { background: var(--grey); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.contact-hours h3 { font-size: 13px; font-weight: 700; margin-bottom: 12px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 9px 0; border-bottom: 1px solid var(--border); gap: 12px; }
.hours-row:last-child { border-bottom: none; }
.hours-time { font-weight: 600; }
.hours-time.green { color: var(--green); }
.contact-what-to-say { background: var(--grey); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.contact-what-to-say h3 { font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.contact-what-to-say ul { padding-left: 1.2rem; margin-bottom: 10px; }
.contact-what-to-say ul li { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; line-height: 1.5; }
.contact-what-to-say p { font-size: 13px; color: var(--text-muted); max-width: none; margin: 0; }
.contact-form-wrap h2 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  width: 100%;
  transition: border-color .15s;
  font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; justify-content: center; }
.form-disclaimer { font-size: 11px; color: var(--text-light); text-align: center; max-width: none; }
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.check-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.check-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.check-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; max-width: none; margin: 0; }

/* ── Emergency list ── */
.emergency-steps { list-style: none; display: flex; flex-direction: column; counter-reset: estep; }
.emergency-steps li { display: grid; grid-template-columns: 36px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border); font-size: 15px; color: var(--text-muted); line-height: 1.7; counter-increment: estep; }
.emergency-steps li::before { content: counter(estep); width: 32px; height: 32px; background: var(--navy); color: #fff; font-size: 12px; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.emergency-steps li:last-child { border-bottom: none; }
.emergency-steps li strong { color: var(--text); }

/* ── Inline sign list (hero card was here, now in own section) ── */
.sign-list { display: flex; flex-direction: column; gap: 0; }
.sign-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-muted); padding: 10px 0; border-bottom: 1px solid var(--border); line-height: 1.5; }
.sign-item:last-child { border-bottom: none; }
.sign-check { width: 18px; height: 18px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 1px; position: relative; }
.sign-check::after { content: ''; position: absolute; top: 4px; left: 5px; width: 7px; height: 4px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .methods-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .two-col-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-layout { grid-template-columns: 1fr; }
  .service-aside { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .repair-options { grid-template-columns: 1fr; }
  .local-factors-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 108px; }
  .section { padding: 56px 0; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 4px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 99;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { padding: 13px 14px; font-size: 15px; border-radius: var(--radius); color: rgba(255,255,255,.85); }
  .nav-link:hover { background: rgba(255,255,255,.06); color: #fff; }
  .nav-dropdown { position: static; display: none; background: rgba(255,255,255,.05); border: none; box-shadow: none; padding: 4px 0 4px 14px; margin-top: 2px; min-width: auto; }
  .nav-has-dropdown .nav-dropdown.open { display: block; }
  .nav-dropdown-link { color: rgba(255,255,255,.7); }
  .nav-cta { margin-top: 10px; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .hero { padding: 56px 0 48px; }
  .hero h1 { font-size: 30px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .signs-grid { grid-template-columns: 1fr; }
  .sign-row:nth-child(even) { border-right: none; }
  .sign-row { border-right: none !important; }
  .services-grid { grid-template-columns: 1fr; }
  .methods-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section-header h2 { font-size: 24px; }
  .city-hero h1, .service-page-hero h1 { font-size: 26px; }
  .page-hero h1 { font-size: 26px; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .local-factors-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 26px; }
  .city-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
