:root {
  --navy: #0b1f3a;
  --navy-2: #102b4d;
  --gold: #c9a45c;
  --ivory: #f8f6f0;
  --paper: #fffdf7;
  --ink: #2b2b2b;
  --muted: #60656f;
  --line: #e4dfd3;
  --red: #b42318;
  --green: #1b5e3c;
  --white: #fff;
  --shadow: 0 18px 44px rgba(11, 31, 58, .14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; line-height: 1.18; color: var(--navy); letter-spacing: 0; }
h1 { font-size: clamp(2.3rem, 4.2vw, 4.8rem); }
h2 { font-size: clamp(1.6rem, 2.4vw, 2.5rem); }
h3 { font-size: 1.12rem; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--gold); padding: .7rem 1rem; z-index: 99; }
.skip-link:focus { left: 8px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner { min-height: 74px; display: flex; align-items: center; gap: 14px; }
.brand, .footer-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); }
.brand strong { display: block; font-size: 1.16rem; }
.brand em { display: block; font-style: normal; color: var(--muted); font-size: .82rem; margin-top: -2px; }
.main-nav { display: flex; gap: clamp(7px, .75vw, 12px); align-items: center; flex: 1; flex-wrap: wrap; }
.main-nav a { color: #334155; font-size: .88rem; padding: .36rem 0; border-bottom: 2px solid transparent; white-space: nowrap; }
.main-nav a.active, .main-nav a:hover { color: var(--navy); border-color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.phone-link { display: inline-flex; gap: 7px; align-items: center; color: var(--navy); font-weight: 700; white-space: nowrap; }
.phone-link svg, .trust-strip svg, .feature-grid svg, .contact-methods svg { width: 18px; height: 18px; fill: currentColor; }
.nav-toggle { display: none; border: 1px solid var(--line); background: var(--paper); padding: .55rem .75rem; border-radius: 6px; color: var(--navy); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: .78rem 1.05rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 750;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-urgent { background: var(--navy); color: var(--white); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-outline-light { border-color: rgba(255,255,255,.45); color: var(--white); background: transparent; }
.hero {
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(120deg, #0b1f3a 0%, #0b1f3a 54%, #102b4d 100%);
  background-size: 64px 64px, 64px 64px, auto;
  color: var(--white);
  overflow: hidden;
}
.hero-grid {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
  gap: clamp(38px, 7vw, 96px);
  align-items: start;
  padding: 86px 0 84px;
}
.hero h1, .hero h2 { color: var(--white); }
.hero h1 { max-width: 700px; font-size: clamp(2.75rem, 4.8vw, 4.85rem); font-weight: 900; }
.hero h1 span, .hero h1 strong { display: block; }
.hero h1 strong { color: var(--gold); margin-top: 10px; }
.hero-copy { max-width: 700px; padding-top: 174px; }
.lead { font-size: 1.16rem; color: rgba(255,255,255,.84); max-width: 720px; margin: 24px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-strip { display: grid; gap: 10px; margin-top: 34px; max-width: 680px; }
.trust-strip span { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.88); }
.hero-panel { position: relative; display: grid; justify-self: end; width: 100%; }
.hero-scene { border: 1px solid rgba(255,255,255,.18); box-shadow: var(--shadow); border-radius: 8px; background: #102b4d; }
.form-card, .page-hero-card, .sticky-card, .cost-mini, .city-facts {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.form-card { padding: 24px; color: var(--ink); }
.hero .form-card { border-radius: 12px; padding: 26px; box-shadow: 0 22px 52px rgba(0,0,0,.24); }
.form-card h2 { color: var(--navy); margin-bottom: 16px; }
.hero .form-card h2 { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; }
.alert-dot { display: inline-grid; place-items: center; width: 22px; height: 22px; border: 2px solid var(--red); border-radius: 50%; color: var(--red); font-size: .85rem; line-height: 1; flex: 0 0 auto; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.hero .form-grid { grid-template-columns: 1fr; gap: 14px; }
label { display: grid; gap: 6px; color: var(--navy); font-weight: 700; font-size: .92rem; }
label.full { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cfc7b8;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: .72rem .78rem;
  min-height: 42px;
}
textarea { resize: vertical; }
.intake-form .btn { width: 100%; margin-top: 14px; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.consent-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}
.consent-line input { width: 18px; min-height: 18px; margin-top: 2px; flex: 0 0 auto; }
.form-disclaimer, .footer-small { color: var(--muted); font-size: .84rem; margin-top: 10px; }
.form-status { display: block; margin-top: 10px; color: var(--green); font-weight: 800; min-height: 24px; line-height: 1.45; }
.form-status.error { color: var(--red); }
.form-status.pending { color: var(--navy); }
.pain-band { background: #fff; border-bottom: 1px solid var(--line); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.pain-grid div { background: #fff; padding: 24px; }
.pain-grid strong { display: block; color: var(--navy); font-size: 1.1rem; margin-bottom: 5px; }
.pain-grid p { color: var(--muted); margin: 0; }
.section { padding: 84px 0; }
.section-muted { background: #fff; border-block: 1px solid var(--line); }
.section-header { max-width: 760px; margin-bottom: 32px; }
.section-header p { color: var(--muted); font-size: 1.06rem; margin-top: 12px; }
.feature-grid, .service-grid, .info-grid, .state-grid, .article-grid, .contact-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-grid article, .service-card, .info-grid article, .article-link, .article-card, .contact-methods article, .state-card, .city-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}
.feature-grid svg, .contact-methods svg { width: 28px; height: 28px; color: var(--gold); margin-bottom: 16px; }
.feature-grid p, .service-card li, .info-grid p, .article-link p, .article-card p, .state-card p, .city-card small { color: var(--muted); }
.prep-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px;
}
.prep-card h3 { margin-bottom: 14px; }
.prep-card .btn { margin-top: 10px; width: 100%; }
.comparison-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.comparison-grid .content-block { margin: 0; }
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.process-list li { background: var(--ivory); border: 1px solid var(--line); border-radius: 8px; padding: 20px; position: relative; }
.process-list span { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--navy); color: white; border-radius: 50%; font-weight: 800; margin-bottom: 14px; }
.process-list strong { display: block; color: var(--navy); margin-bottom: 8px; }
.process-list p { color: var(--muted); margin: 0; }
.service-grid { grid-template-columns: repeat(5, 1fr); }
.service-card ul, .check-list, .mini-list { margin: 14px 0 0; padding-left: 1.1rem; }
.mini-list { color: var(--muted); display: grid; gap: 6px; }
.location-showcase { background: var(--navy); color: white; }
.location-showcase h2, .location-showcase h3 { color: white; }
.location-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 40px; align-items: center; }
.location-showcase .section-header p { color: rgba(255,255,255,.76); }
.search-box input { border-color: rgba(255,255,255,.36); min-height: 52px; }
.city-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.city-chip { border: 1px solid rgba(255,255,255,.25); color: white; padding: .55rem .72rem; border-radius: 6px; background: rgba(255,255,255,.08); }
.city-chip[hidden], [data-search-item][hidden] { display: none; }
.legal-note {
  border-left: 4px solid var(--gold);
  background: rgba(201,164,92,.13);
  color: var(--navy);
  padding: 16px;
  border-radius: 6px;
  margin-top: 18px;
}
.location-showcase .legal-note { color: #fff; border-color: var(--gold); background: rgba(255,255,255,.08); }
.map-art, .page-map { border-radius: 8px; border: 1px solid rgba(255,255,255,.18); }
.split-section { display: grid; grid-template-columns: 1.1fr .75fr; gap: 40px; align-items: start; }
.cost-mini { padding: 24px; display: grid; gap: 14px; }
.cost-mini output, .cost-calculator output { display: block; color: var(--green); font-weight: 750; padding: 12px; background: rgba(27,94,60,.08); border-radius: 6px; }
.article-grid { grid-template-columns: repeat(3, 1fr); }
.content-main .article-grid { grid-template-columns: repeat(2, 1fr); }
.article-link span, .article-category { color: var(--gold); font-weight: 800; font-size: .85rem; }
.article-link strong, .article-card h3 { display: block; color: var(--navy); margin: 8px 0; }
.related-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.related-links a { border: 1px solid var(--line); border-radius: 6px; padding: 12px; color: var(--navy); font-weight: 750; background: var(--ivory); }
.cta-card { background: var(--navy); color: white; }
.cta-card h2 { color: white; }
.cta-card p { color: rgba(255,255,255,.82); }
.trust-section { background: var(--navy); color: white; }
.trust-section h2 { color: white; }
.trust-section p { color: rgba(255,255,255,.78); }
.trust-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px; align-items: center; }
.trust-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.trust-list span { border: 1px solid rgba(255,255,255,.2); border-radius: 6px; padding: 14px; background: rgba(255,255,255,.08); }
.narrow { max-width: 820px; }
.faq-list { display: grid; gap: 10px; }
details { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 16px 18px; }
summary { cursor: pointer; color: var(--navy); font-weight: 800; }
details p { color: var(--muted); margin: 12px 0 0; }
.cta-band { background: var(--red); color: white; padding: 46px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cta-inner h2 { color: white; }
.cta-inner p { margin: 0; color: rgba(255,255,255,.82); }
.page-hero { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: white; padding: 70px 0; }
.page-hero h1 { color: white; font-size: clamp(2rem, 3.6vw, 4rem); }
.page-hero p { color: rgba(255,255,255,.8); max-width: 780px; font-size: 1.08rem; margin-top: 14px; }
.page-hero-inner { display: grid; grid-template-columns: 1fr minmax(260px, .42fr); gap: 32px; align-items: center; }
.page-hero-card, .city-facts { color: var(--ink); padding: 24px; display: grid; gap: 10px; }
.page-hero-card a { color: var(--red); font-weight: 850; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 34px; align-items: start; }
.content-main { display: grid; gap: 18px; }
.content-block { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 28px; }
.content-block h2 { margin-bottom: 14px; }
.content-block p, .check-list, .numbered { color: var(--muted); }
.content-aside { min-width: 0; }
.sticky-card { position: sticky; top: 94px; padding: 22px; display: grid; gap: 12px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { text-align: left; padding: 13px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--navy); color: white; }
.calculator-block .cost-calculator { display: grid; gap: 14px; max-width: 560px; }
.state-grid { grid-template-columns: repeat(3, 1fr); }
.state-card span { color: var(--muted); font-size: .9rem; }
.state-card.restricted { border-color: rgba(180,35,24,.35); background: #fff7f4; }
.state-card strong { color: var(--red); display: block; margin-top: 10px; }
.city-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.city-card { display: grid; gap: 4px; }
.city-card strong { color: var(--navy); font-size: 1.08rem; }
.city-card span { color: var(--red); font-weight: 800; }
.city-facts dl { display: grid; grid-template-columns: 90px 1fr; gap: 10px; margin: 0; }
.city-facts dt { color: var(--muted); }
.city-facts dd { margin: 0; color: var(--navy); font-weight: 750; }
.warning-block { border-color: rgba(180,35,24,.35); background: #fff7f4; }
.article-body { font-size: 1.02rem; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: start; }
.contact-methods { grid-template-columns: 1fr; }
.site-footer { background: #07182c; color: rgba(255,255,255,.78); padding: 54px 0 88px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr 1fr; gap: 28px; }
.footer-grid h2 { color: white; font-size: 1rem; margin-bottom: 12px; }
.footer-grid a { display: block; color: rgba(255,255,255,.82); margin: 7px 0; }
.footer-brand { color: white; font-weight: 850; margin-bottom: 12px; }
.footer-brand img { width: 40px; height: 40px; }
.source-list a { font-size: .86rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 34px; padding-top: 18px; display: flex; justify-content: space-between; gap: 18px; color: rgba(255,255,255,.58); font-size: .88rem; }
.mobile-cta { display: none; }
.floating-cta {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 55;
  display: grid;
  gap: 14px;
}
.floating-cta a {
  position: relative;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  box-shadow: 0 14px 30px rgba(7,24,44,.24);
}
.floating-cta svg { width: 24px; height: 24px; fill: currentColor; }
.floating-cta span {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .42rem .65rem;
  font-size: .82rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow);
}
.floating-cta a:hover span, .floating-cta a:focus span { opacity: 1; }
.floating-phone { background: var(--navy); }
.floating-form { background: var(--red); }
@media (max-width: 1080px) {
  .main-nav { position: absolute; inset: 74px 20px auto 20px; display: none; flex-direction: column; align-items: stretch; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 16px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .header-actions .phone-link { display: none; }
  .hero-grid, .page-hero-inner, .location-grid, .split-section, .trust-grid, .contact-grid, .comparison-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-copy { padding-top: 0; }
  .hero-panel { justify-self: stretch; max-width: 520px; }
  .service-grid, .feature-grid, .state-grid, .city-card-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .article-grid, .content-main .article-grid, .related-links { grid-template-columns: repeat(2, 1fr); }
  .content-layout { grid-template-columns: 1fr; }
  .sticky-card { position: static; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 66px; }
  .brand strong { font-size: 1rem; }
  .header-actions .btn { display: none; }
  .hero-grid { padding: 34px 0 40px; }
  .hero h1 { font-size: clamp(2.25rem, 13vw, 3.35rem); }
  .lead { font-size: 1rem; }
  .hero-actions .btn { width: 100%; }
  .form-grid, .pain-grid, .service-grid, .feature-grid, .info-grid, .state-grid, .city-card-grid, .article-grid, .content-main .article-grid, .related-links, .trust-list, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .process-list { grid-template-columns: 1fr; }
  .cta-inner { display: grid; }
  .page-hero { padding: 48px 0; }
  .content-block, .form-card { padding: 20px; }
  .footer-bottom { display: grid; }
  .site-footer { padding-bottom: 104px; }
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.18);
    z-index: 60;
  }
  .mobile-cta a { color: white; display: grid; place-items: center; gap: 3px; min-height: 58px; font-size: .78rem; font-weight: 800; }
  .mobile-cta svg { width: 18px; height: 18px; fill: currentColor; }
  .floating-cta { display: none; }
}
