:root {
  --navy: #0E2A47;
  --navy-2: #163b66;
  --navy-3: #1f4d80;
  --orange: #FF7A1A;
  --orange-2: #ffae6e;
  --red: #E11D2E;
  --bg: #f6f4ee;
  --bg-2: #fbfaf6;
  --card: #ffffff;
  --ink: #14222f;
  --muted: #5e6f80;
  --line: #e5e0d8;
  --line-2: #ece8df;
  --green: #138066;
  --warm: #fef4e8;
  --shadow-sm: 0 2px 8px rgba(14,42,71,.06);
  --shadow: 0 10px 30px rgba(14,42,71,.08);
  --shadow-lg: 0 24px 64px rgba(14,42,71,.14);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --display: 'Poppins', 'Inter', -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html, body { padding: 0; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-2); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--orange); }
h1, h2, h3, h4 { font-family: var(--display); color: var(--navy); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); letter-spacing: -.02em; font-weight: 800; }
h2 { font-size: clamp(1.55rem, 2.9vw, 2.25rem); }
h3 { font-size: 1.22rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; }
strong { font-weight: 700; color: var(--navy); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); font-size: .94em; }
.eyebrow { color: var(--orange); font-weight: 700; letter-spacing: .14em; font-size: .78rem; text-transform: uppercase; margin: 0 0 .9em; display: inline-flex; align-items: center; gap: 8px; }
.eyebrow::before { content: '⚡'; font-size: 1rem; }
.lede { font-size: 1.18rem; color: #34465a; max-width: 64ch; line-height: 1.6; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 8px; top: 8px; background: var(--navy); color: #fff; padding: 8px 14px; z-index: 1000; }

/* Emergency banner */
.emergency-banner { background: linear-gradient(90deg, var(--red) 0%, #c41525 100%); color: #fff; font-size: .88rem; padding: 9px 0; text-align: center; font-weight: 500; }
.emergency-banner a { color: #fff; text-decoration: underline; font-weight: 700; }
.emergency-banner a:hover { color: #fff; text-decoration: none; }
.emergency-banner .pulse { display: inline-block; color: #ffe; font-size: .7rem; margin-right: 6px; animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* Header */
.site-header { background: rgba(255,255,255,.95); backdrop-filter: saturate(180%) blur(10px); -webkit-backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; gap: 24px; min-height: 78px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.32rem; color: var(--navy); font-family: var(--display); }
.brand-mark { display: inline-flex; }
.brand .brand-text span { color: var(--red); }
.brand.small { font-size: 1.05rem; color: #fff; }
.brand.small .brand-text span { color: var(--orange-2); }
.primary-nav { display: flex; gap: 26px; margin-left: auto; }
.primary-nav a { color: var(--ink); font-weight: 500; font-size: .98rem; padding: 6px 0; position: relative; }
.primary-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.primary-nav a:hover::after { transform: scaleX(1); }
.header-cta { padding: 11px 20px; font-size: .92rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 24px; border-radius: 999px; font-weight: 700; font-size: 1rem; border: 1.5px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; text-decoration: none; font-family: var(--sans); }
.btn-primary { background: linear-gradient(135deg, var(--orange) 0%, #ff5a3c 100%); color: #fff; box-shadow: 0 8px 22px rgba(255,90,60,.38); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255,90,60,.46); }
.btn-secondary { background: #fff; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

/* Hero */
.hero { position: relative; background-color: var(--navy); background-size: cover; background-position: center; color: #fff; padding: 88px 0 110px; overflow: hidden; }
.hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(255,122,26,.18), transparent 55%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; z-index: 1; }
.hero-copy h1 { color: #fff; }
.hero-copy h1 .hero-accent { background: linear-gradient(90deg, #ffd6a3 0%, #ffae6e 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy .lede { color: #e6ecf3; }
.hero-copy .lede strong { color: #fff; }
.hero-trust { list-style: none; padding: 0; margin: 22px 0 26px; display: flex; flex-wrap: wrap; gap: 18px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; font-size: .94rem; color: #f1f5f9; }
.trust-badge { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.18); color: #fff; font-weight: 700; font-size: .82rem; }
.hero-search { display: flex; gap: 10px; margin: 8px 0 12px; max-width: 480px; background: rgba(255,255,255,.08); padding: 6px; border-radius: 999px; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.12); }
.hero-search input { flex: 1; padding: 14px 22px; border-radius: 999px; border: 0; font-size: 1rem; background: #fff; color: var(--ink); font-family: inherit; }
.hero-search input:focus { outline: 3px solid var(--orange); outline-offset: 2px; }
.hero-mini { color: #cbd5e1; font-size: .9rem; margin-top: 8px; }
.hero-mini a { color: #ffd6a3; text-decoration: underline; }
.hero-mini a:hover { color: #fff; }

/* Quote form */
.quote-card { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); position: relative; }
.quote-card::before { content: ''; position: absolute; top: -3px; left: 24px; right: 24px; height: 3px; background: linear-gradient(90deg, var(--orange), var(--red)); border-radius: 999px; }
.quote-card.compact { padding: 22px; border-radius: var(--radius); box-shadow: var(--shadow); }
.quote-head h2 { font-size: 1.5rem; margin-bottom: 6px; }
.quote-head p { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
.quote-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.quote-form label { display: flex; flex-direction: column; gap: 6px; font-size: .82rem; color: var(--navy); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.quote-form label.full { display: block; margin-bottom: 14px; }
.quote-form label.full > span { display: block; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; font-size: .82rem; }
.quote-form input, .quote-form select {
  border: 1.5px solid var(--line); padding: 12px 14px; border-radius: 10px; font-size: 1rem; font-family: inherit; background: #fff; color: var(--ink); text-transform: none; letter-spacing: 0;
}
.quote-form input:focus, .quote-form select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,122,26,.18); }
.form-note { font-size: .78rem; color: var(--muted); margin: 12px 0 0; line-height: 1.5; }
.trust-row { display: flex; gap: 16px; flex-wrap: wrap; list-style: none; padding: 18px 0 0; margin: 16px 0 0; border-top: 1px solid var(--line); justify-content: space-between; }
.trust-row li { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--navy); font-weight: 600; }
.trust-row .trust-badge { background: var(--warm); color: var(--orange); }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-head .eyebrow { display: inline-flex; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.section-block { margin: 44px 0; }
.center-row { text-align: center; margin-top: 30px; }

/* Service grid */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.services-grid.wide { grid-template-columns: repeat(2, 1fr); gap: 26px; }
.service-tile { background: #fff; border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; color: var(--ink); position: relative; overflow: hidden; }
.service-tile::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent, var(--navy)); opacity: 0; transition: opacity .2s ease; }
.service-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: var(--ink); border-color: transparent; }
.service-tile:hover::before { opacity: 1; }
.service-icon { width: 54px; height: 54px; border-radius: 14px; background: var(--accent, var(--navy)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--display); font-size: 1.5rem; box-shadow: 0 6px 16px rgba(14,42,71,.18); }
.service-tile h2, .service-tile h3 { color: var(--navy); margin: 8px 0 4px; }
.link-arrow { color: var(--orange); font-weight: 700; margin-top: auto; display: inline-flex; align-items: center; gap: 4px; transition: gap .15s ease; }
.service-tile:hover .link-arrow { gap: 8px; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.steps li { background: #fff; border-radius: var(--radius-lg); padding: 32px; text-align: left; border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--red)); color: #fff; font-family: var(--display); font-weight: 800; margin-bottom: 14px; box-shadow: 0 6px 16px rgba(225,29,46,.28); }

/* Provider cards */
.provider-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.provider-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.provider-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--orange-2); }
.provider-head { display: flex; gap: 14px; align-items: flex-start; }
.provider-avatar { width: 56px; height: 56px; border-radius: 14px; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--display); font-size: 1.5rem; flex-shrink: 0; box-shadow: 0 4px 12px rgba(14,42,71,.2); }
.provider-avatar.lg { width: 92px; height: 92px; border-radius: 22px; font-size: 2.4rem; }
.provider-meta h3 { margin: 0 0 4px; font-size: 1.12rem; }
.provider-meta a { color: var(--navy); }
.provider-meta a:hover { color: var(--orange); }
.provider-blurb { font-size: .94rem; color: #374a5e; margin: 0; }
.provider-actions { display: flex; gap: 10px; margin-top: auto; }
.provider-actions .btn { padding: 10px 16px; font-size: .9rem; flex: 1; }
.provider-hero { display: flex; gap: 28px; align-items: flex-start; margin-top: 22px; flex-wrap: wrap; }
.provider-hero h1 { margin-bottom: 8px; }
.phone-cta { font-size: 1.05rem; margin-top: 14px; }
.phone-cta a { color: var(--red); font-weight: 700; }

/* Stars */
.stars { display: inline-flex; align-items: center; gap: 2px; color: var(--orange); font-size: 1rem; }
.stars .star.empty { color: #d4cdbf; }
.stars-row { color: var(--orange); letter-spacing: 2px; font-size: 1rem; }
.rating-num { color: var(--ink); font-weight: 600; margin-left: 4px; font-size: .9rem; }

/* Badges */
.badges { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-wrap: wrap; gap: 6px; }
.badge { display: inline-block; background: #eef3f9; color: var(--navy); padding: 5px 11px; border-radius: 999px; font-size: .74rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.badge-warm { background: var(--warm); color: var(--orange); }
.badge-blue { background: #e2ecf7; color: var(--navy-2); }

/* City grid */
.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.city-tile { display: flex; flex-direction: column; gap: 2px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; color: var(--ink); transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease; }
.city-tile:hover { border-color: var(--orange); color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.city-tile strong { color: var(--navy); font-size: .98rem; }
.city-list { columns: 3; column-gap: 28px; padding: 0; list-style: none; }
.city-list li { break-inside: avoid; padding: 4px 0; }
.state-block { margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.state-block h2 { font-size: 1.45rem; }

/* Page hero */
.page-hero { background: linear-gradient(180deg, #fff 0%, var(--bg-2) 100%); padding: 44px 0 36px; border-bottom: 1px solid var(--line); }
.page-hero .lede { margin: 10px 0 18px; }
.page-hero .hero-trust li { color: var(--ink); font-weight: 500; }
.page-hero .trust-badge { background: var(--warm); color: var(--orange); }
.crumbs { color: var(--muted); font-size: .85rem; margin-bottom: 16px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--orange); }

/* Layout w/ sidebar */
.content-with-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 40px; align-items: start; }
.sidebar { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 100px; }
.sidebar-card { background: #fff; border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.sidebar-card h3 { font-size: 1.12rem; margin: 0 0 12px; }
.consult-widget .mini-trust { list-style: none; padding: 16px 0 0; margin: 16px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; font-size: .82rem; color: var(--muted); }
.consult-widget .mini-trust span { display: block; color: var(--ink); margin-top: 2px; }
.checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: .95rem; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; }
.checklist li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }

/* Sticky CTA */
.sticky-cta { position: fixed; bottom: 24px; right: 24px; background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%); color: #fff; padding: 14px 24px; border-radius: 999px; font-weight: 700; box-shadow: 0 16px 36px rgba(225,29,46,.4); z-index: 80; transition: transform .15s ease, box-shadow .15s ease; }
.sticky-cta:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 20px 44px rgba(225,29,46,.48); }

/* Prose */
.prose { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 38px; box-shadow: var(--shadow-sm); }
.prose h2 { margin-top: 1.5em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.3em; color: var(--navy-2); font-family: var(--sans); font-size: 1.08rem; font-weight: 700; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.prose ol.numbered { padding-left: 0; counter-reset: numlist; list-style: none; }
.prose ol.numbered li { counter-increment: numlist; padding-left: 44px; position: relative; margin-bottom: 14px; }
.prose ol.numbered li::before { content: counter(numlist); position: absolute; left: 0; top: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--display); font-weight: 700; font-size: .9rem; display: flex; align-items: center; justify-content: center; }
.prose ul.redflags { list-style: none; padding-left: 0; }
.prose ul.redflags li { background: #fef2f2; border-left: 4px solid var(--red); padding: 12px 18px; margin-bottom: 10px; border-radius: 6px; color: #4a1f23; }
.prose ul.redflags li strong { color: var(--red); margin-right: 6px; }

/* Cost table */
.cost-table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; font-size: .95rem; }
.cost-table thead th { background: var(--navy); color: #fff; padding: 14px 16px; text-align: left; font-family: var(--display); font-weight: 700; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; }
.cost-table thead th:first-child { border-top-left-radius: 10px; }
.cost-table thead th:last-child { border-top-right-radius: 10px; }
.cost-table tbody td { padding: 14px 16px; border-bottom: 1px solid var(--line-2); vertical-align: top; }
.cost-table tbody tr:nth-child(even) { background: var(--bg-2); }
.cost-table tbody tr:hover { background: var(--warm); }
.cost-table td:nth-child(2), .cost-table td:nth-child(3) { font-weight: 700; color: var(--green); white-space: nowrap; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: #fff; border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--line); margin: 0; box-shadow: var(--shadow-sm); position: relative; }
.testimonial::before { content: '"'; position: absolute; top: 8px; left: 18px; font-family: var(--display); font-size: 4rem; color: var(--orange); opacity: .25; line-height: 1; }
.testimonial blockquote { font-family: var(--display); font-weight: 500; font-size: 1.06rem; color: var(--ink); margin: 8px 0 14px; line-height: 1.55; position: relative; }
.testimonial figcaption { color: var(--muted); font-size: .9rem; }

.empty { background: #fff; border: 1px dashed var(--line); border-radius: var(--radius); padding: 32px; text-align: center; color: var(--muted); }
.errors { background: #fde7e7; color: #8a1c1c; border-radius: 10px; padding: 14px 18px; list-style: none; }

/* Footer */
.site-footer { background: linear-gradient(180deg, #0a1f33 0%, var(--navy) 100%); color: #cdd7e3; margin-top: 100px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding: 64px 24px 32px; max-width: var(--maxw); margin: 0 auto; }
.footer-grid h4 { color: #fff; font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin: 0 0 14px; font-weight: 700; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-grid a { color: #cdd7e3; font-size: .92rem; }
.footer-grid a:hover { color: var(--orange-2); }
.footer-tag { font-size: .92rem; color: #98a8b8; max-width: 38ch; line-height: 1.6; }
.footer-credibility { font-size: .85rem; color: #cdd7e3; margin-top: 12px; }
.footer-bottom { border-top: 1px solid #234468; padding: 20px 0 36px; font-size: .82rem; color: #8195aa; text-align: center; }

/* Responsive */
@media (max-width: 980px) {
  .hero { padding: 56px 0 70px; }
  .hero-grid, .content-with-sidebar { grid-template-columns: 1fr; gap: 36px; }
  .sidebar { position: static; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid.wide { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .provider-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .city-list { columns: 2; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 48px 24px 24px; }
  .primary-nav { display: none; }
  .header-cta { margin-left: auto; }
  .header-inner { flex-wrap: wrap; min-height: 64px; }
  .section { padding: 56px 0; }
  .prose { padding: 24px 22px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .services-grid, .provider-grid, .city-grid { grid-template-columns: 1fr; }
  .city-list { columns: 1; }
  .quote-form .row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-cta { bottom: 14px; right: 14px; padding: 12px 18px; font-size: .88rem; }
  .hero { padding: 40px 0 56px; }
  .hero-trust { gap: 12px; }
  .hero-trust li { font-size: .88rem; }
  .quote-card { padding: 22px; }
  .prose { padding: 22px 18px; }
  .cost-table { font-size: .85rem; }
  .cost-table thead th, .cost-table tbody td { padding: 10px 12px; }
  .emergency-banner { font-size: .78rem; padding: 7px 0; }
  .page-hero { padding: 32px 0 24px; }
  .testimonial { padding: 22px; }
  .header-cta { padding: 9px 14px; font-size: .85rem; }
  .brand { font-size: 1.1rem; }
}
