:root {
  --navy: #102542;
  --blue: #0b5cad;
  --blue-2: #1677d2;
  --orange: #f26b21;
  --red: #c73a2b;
  --ink: #172033;
  --muted: #5b6472;
  --line: #dbe2ea;
  --soft: #f4f7fb;
  --white: #ffffff;
  --green: #198754;
  --shadow: 0 18px 45px rgba(16, 37, 66, .14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.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);
}
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: .88rem;
  letter-spacing: .01em;
}
.topbar .wrap {
  min-height: 34px;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}
.topbar span,
.topbar a {
  white-space: nowrap;
}
.topbar a {
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  color: var(--navy);
  flex: 0 0 auto;
  white-space: nowrap;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  font-weight: 900;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #2b3445;
  font-weight: 650;
  font-size: .95rem;
  flex: 1 1 auto;
  min-width: 0;
}
.nav-links a {
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--blue); }
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  appearance: none;
  border: 0;
  background: rgba(255,255,255,0);
  color: #2b3445;
  font: inherit;
  font-weight: 750;
  padding: 14px 0;
  cursor: pointer;
  white-space: nowrap;
}
.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid #2b3445;
  border-bottom: 2px solid #2b3445;
  transform: translateY(-3px) rotate(45deg);
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
  color: var(--blue);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  display: none;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  z-index: 80;
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: #243044;
  font-size: .93rem;
  font-weight: 700;
}
.nav-dropdown-menu a:hover {
  background: var(--soft);
  color: var(--blue);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 7px;
  border: 1px solid rgba(0,0,0,0);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(242, 107, 33, .24);
}
.btn-primary:hover { background: #de5f19; }
.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}
.btn-dark {
  color: var(--white);
  background: var(--navy);
}
.btn-phone {
  color: var(--white);
  background: var(--red);
  white-space: nowrap;
  min-width: 148px;
  padding-left: 16px;
  padding-right: 16px;
  line-height: 1;
  flex: 0 0 auto;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,37,66,.94) 0%, rgba(16,37,66,.78) 46%, rgba(16,37,66,.34) 100%);
  z-index: 1;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .64fr);
  gap: 42px;
  align-items: start;
  padding: 10px 0 40px;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  color: #e8f3ff;
  font-weight: 800;
  font-size: .86rem;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.08; color: var(--navy); margin: 0 0 16px; letter-spacing: 0; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.55rem, 6vw, 5rem);
  max-width: 820px;
  margin-top: 18px;
}
.hero p {
  max-width: 760px;
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
  color: #eef6ff;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 14px; }
.hero-call-line {
  margin: 0 0 18px;
  color: #eef6ff;
  font-size: 1.05rem;
  font-weight: 850;
}
.hero-call-line a {
  color: var(--white);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  white-space: nowrap;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
}
.trust-strip span, .badge {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 7px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  font-weight: 750;
  font-size: .92rem;
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
}
.hero .panel { align-self: start; }
.panel-head {
  padding: 22px 22px 0;
}
.panel-head h2 { font-size: 1.45rem; margin-bottom: 0; }
.panel-head p { color: var(--muted); font-size: .96rem; margin: 0; }
.quick-cta {
  padding: 26px;
}
.quick-cta h2 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}
.quick-cta p {
  color: var(--muted);
  margin: 0 0 18px;
}
.quick-cta .btn {
  width: 100%;
}
.quick-phone {
  display: block;
  margin-top: 14px;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}
.quick-cta span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .9rem;
  text-align: center;
}

.lead-form {
  padding: 18px 22px 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
label { font-weight: 750; font-size: .9rem; color: #243149; }
input, select, textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  padding: 10px 11px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}
textarea { min-height: 84px; resize: vertical; }
.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.35;
  margin-top: 4px;
  margin-bottom: 6px;
}
.consent input { min-height: auto; margin-top: 2px; }
.consent label {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 500;
}
.lead-form > .btn[type="submit"] {
  display: flex;
  width: fit-content;
  min-width: 250px;
  margin: 18px auto 0;
}
.form-note { font-size: .78rem; color: var(--muted); margin-top: 10px; }
.form-success {
  display: none;
  margin-top: 12px;
  padding: 12px;
  border-radius: 7px;
  background: #eaf7ef;
  color: #135d33;
  font-weight: 750;
}
.form-error {
  display: none;
  margin-top: 12px;
  padding: 12px;
  border-radius: 7px;
  background: #fff0ed;
  color: #992b1f;
  font-weight: 750;
}

section { padding: 76px 0; }
.section-soft { background: var(--soft); }
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-kicker {
  color: var(--blue);
  font-weight: 850;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 10px;
}
.section-title {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.section-intro {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 0 28px;
}
.section-dark .section-intro { color: #dbe9f8; }
.disclosure-strip {
  padding: 18px 0;
  background: #fff7ed;
  border-top: 1px solid #fed7aa;
  border-bottom: 1px solid #fed7aa;
  color: #6f3a0e;
  font-weight: 750;
}
.safety-callout, .disclaimer-box, .related-links {
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  padding: 20px;
}
.safety-callout {
  background: #fff7ed;
}
.disclaimer-box {
  background: #f8fafc;
  border-left-color: var(--blue);
}
.related-links ul, .area-list, .resource-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.related-links a, .area-list a, .resource-list a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  text-decoration: none;
  font-weight: 800;
  color: var(--navy);
  background: var(--white);
}
.related-links a:hover, .area-list a:hover, .resource-list a:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.content-flow {
  max-width: 900px;
}
.content-flow h2 {
  margin-top: 34px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}
.content-flow h3 {
  margin-top: 24px;
}
.content-flow p {
  color: var(--muted);
}
.simple-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.simple-table th, .simple-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}
.simple-table th {
  background: var(--soft);
  color: var(--navy);
}
.page-hero .quick-cta {
  margin-top: 0;
}
.compact-hero {
  padding: 54px 0;
}
.resource-meta {
  color: #d5e8fb;
  font-weight: 750;
}

.grid {
  display: grid;
  gap: 18px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { margin: 0; color: var(--muted); }
.card a { color: var(--blue); font-weight: 800; text-decoration: none; }
.selector-card {
  display: flex;
  flex-direction: column;
  min-height: 168px;
  justify-content: space-between;
  text-decoration: none;
  border-top: 5px solid var(--blue);
}
.selector-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
}
.process-image {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  margin: 10px 0 24px;
  border: 1px solid var(--line);
}
.selector-card strong { color: var(--navy); font-size: 1.15rem; }
.selector-card span { color: var(--muted); }
.selector-card:hover { border-top-color: var(--orange); box-shadow: var(--shadow); }

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 30px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .34em;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--green);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: .57em;
  width: 6px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.steps {
  counter-reset: step;
}
.step {
  position: relative;
  padding-left: 62px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.evidence {
  min-height: 190px;
  border: 1px dashed #aab7c7;
  border-radius: 8px;
  background: repeating-linear-gradient(135deg, #f8fafc, #f8fafc 12px, #eef3f8 12px, #eef3f8 24px);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 18px;
}
.evidence strong { color: var(--navy); }
.evidence span { color: var(--muted); font-size: .92rem; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(330px, .62fr);
  gap: 36px;
  align-items: start;
}
.page-hero {
  background: linear-gradient(135deg, var(--navy), #173e66);
  color: var(--white);
  padding: 70px 0;
}
.page-hero h1 { color: var(--white); font-size: clamp(2.3rem, 5vw, 4rem); max-width: 840px; }
.page-hero .wrap > div:first-child > p { color: #e7f2ff; font-size: 1.14rem; max-width: 800px; }
.breadcrumbs {
  font-size: .88rem;
  color: #d5e8fb;
  margin-bottom: 14px;
}
.breadcrumbs a { color: #ffffff; text-decoration: none; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  background: rgba(255,255,255,0);
  border: 0;
  text-align: left;
  font: inherit;
  font-weight: 850;
  color: var(--navy);
  cursor: pointer;
}
.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
}
.faq-item.open .faq-answer { display: block; }

.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 42px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { margin: 0; color: #dbe9f8; }

.site-footer {
  background: #07182c;
  color: #d9e7f5;
  padding: 54px 0 86px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, .7fr));
  gap: 28px;
}
.site-footer h3 { color: var(--white); font-size: 1rem; }
.site-footer a { color: #d9e7f5; text-decoration: none; }
.site-footer ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 8px; }
.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.13);
  font-size: .86rem;
  color: #aac0d6;
}
.sticky-call {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 50;
  display: none;
}
.sticky-call a { width: 100%; }

@media (max-width: 920px) {
  .topbar { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav { min-height: 66px; }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 66px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; }
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
    padding: 12px 0;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    display: grid;
    padding: 4px 0 8px 14px;
    border: 0;
    box-shadow: none;
    background: rgba(255,255,255,0);
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu a {
    padding: 8px 0;
    font-size: .92rem;
    color: var(--muted);
  }
  .header-actions .btn-secondary { display: none; }
  .hero .wrap, .split { grid-template-columns: 1fr; }
  .hero .wrap { min-height: auto; padding: 18px 0 34px; }
  .trust-strip, .grid-4, .grid-3, .evidence-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .related-links ul, .area-list, .resource-list { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 28px; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 24px, 1180px); }
  section { padding: 54px 0; }
  .hero h1, .page-hero h1 { font-size: 2.35rem; }
  .hero-actions .btn { width: 100%; }
  .trust-strip, .grid-2, .grid-3, .grid-4, .evidence-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .header-actions .btn-phone { display: none; }
  .sticky-call { display: block; }
  .panel-head, .lead-form { padding-left: 16px; padding-right: 16px; }
  .card { padding: 20px; }
}
