:root {
  color-scheme: light;
  --ink: #132331;
  --ink-soft: #34495c;
  --navy: #102a43;
  --navy-2: #173b57;
  --amber: #f59e0b;
  --amber-dark: #b45309;
  --green: #177245;
  --red: #b91c1c;
  --mist: #f4f7f9;
  --line: #d8e1e8;
  --white: #ffffff;
  --focus: #2563eb;
  --shadow: 0 16px 40px rgba(16, 42, 67, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

a {
  color: var(--navy-2);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--amber-dark);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--focus);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.site-alert {
  background: var(--navy);
  color: var(--white);
  font-size: 0.95rem;
}

.site-alert .container {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  text-align: center;
}

.site-alert a {
  color: var(--white);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  width: clamp(176px, 21vw, 260px);
  min-width: 176px;
}

.brand-logo {
  width: 100%;
  height: auto;
  max-height: 64px;
  border-radius: 6px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.05rem;
  align-items: center;
  justify-content: center;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.5rem 0.5rem;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--mist);
  color: var(--navy);
}

.header-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.7rem 0.9rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--amber);
  color: #1c1402;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.button svg {
  flex: 0 0 1.15rem;
  width: 1.15rem;
  height: 1.15rem;
}

.button:hover {
  background: #ffb12f;
  color: #1c1402;
}

.button.secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--navy);
}

.button.secondary:hover {
  border-color: var(--amber);
  background: #fff8eb;
}

.button.dark {
  background: var(--navy);
  color: var(--white);
}

.button.dark:hover {
  background: var(--navy-2);
  color: var(--white);
}

.button.urgent {
  background: var(--red);
  color: var(--white);
}

.button.urgent:hover {
  background: #991b1b;
  color: var(--white);
}

.icon-button {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.icon-button svg {
  width: 24px;
  height: 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.home-hero {
  min-height: 620px;
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--amber), var(--green), #5ba3d6);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: 440px;
  padding: 4.5rem 0;
}

.home-hero .hero-inner {
  min-height: 620px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.9rem;
  color: #ffe2a8;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.12;
}

h1 {
  max-width: 900px;
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 760px;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.service-hero .lead {
  max-width: 820px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.5rem;
}

.microcopy {
  margin-top: 1rem;
  color: #ffe8b8;
  font-weight: 800;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.trust-pill {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-pill svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: #78d28f;
}

.trust-pill a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: 4.25rem 0;
}

.section.compact {
  padding: 3rem 0;
}

.section.mist {
  background: var(--mist);
}

.section.navy {
  background: var(--navy);
  color: var(--white);
}

.section-head {
  display: grid;
  gap: 0.8rem;
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-head p,
.muted {
  color: var(--ink-soft);
}

.section.navy .section-head p,
.section.navy .muted {
  color: rgba(255, 255, 255, 0.82);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.auto {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.card.shadow {
  box-shadow: var(--shadow);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: #fff4dd;
  color: var(--amber-dark);
}

.card-icon svg {
  width: 25px;
  height: 25px;
}

.card-link {
  align-self: end;
  font-weight: 800;
}

.hot-strip {
  background: #fff8eb;
  border-block: 1px solid #f3d9a6;
}

.hot-strip .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.proof-list,
.check-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.proof-list li,
.check-list li {
  position: relative;
  padding-left: 1.75rem;
}

.proof-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--green);
}

.process {
  counter-reset: step;
}

.process .card {
  min-height: 178px;
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.75rem;
}

.area-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.area-link:hover {
  border-color: var(--amber);
  background: #fff8eb;
}

.breadcrumb {
  padding: 1rem 0;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  color: var(--ink-soft);
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: 2rem;
  align-items: start;
}

.sticky-panel {
  position: sticky;
  top: 118px;
}

.safety-notice {
  border-left: 6px solid var(--red);
  background: #fff1f1;
  color: #4a1010;
  padding: 1rem;
  border-radius: var(--radius);
}

.safety-notice strong {
  display: block;
  margin-bottom: 0.35rem;
}

.quote-form,
.qualifier-form {
  display: grid;
  gap: 1rem;
}

.form-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field.full {
  grid-column: 1 / -1;
}

label,
legend {
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #a9b8c5;
  border-radius: var(--radius);
  padding: 0.65rem 0.75rem;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input[type="checkbox"] {
  width: 20px;
  min-height: 20px;
  margin: 0;
}

.checkbox {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.55rem;
  align-items: start;
}

fieldset {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.conditional-fieldset[hidden],
.assistant-step[hidden],
.thank-state[hidden],
.js-hidden {
  display: none;
}

.form-status {
  min-height: 28px;
  color: var(--ink-soft);
  font-weight: 700;
}

.form-status.is-hot {
  color: var(--red);
}

.form-status.is-safe {
  color: var(--red);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  min-height: 56px;
  padding: 1rem;
  cursor: pointer;
  font-weight: 800;
}

details p {
  padding: 0 1rem 1rem;
  color: var(--ink-soft);
}

.qualifier {
  border-block: 1px solid var(--line);
  background: #eef7f2;
}

.entry-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.7rem;
}

.choice {
  display: grid;
}

.choice input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.choice span {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

.choice input:checked + span {
  border-color: var(--green);
  background: #dff5e7;
}

.site-footer {
  background: #0d1f2f;
  color: var(--white);
  padding: 3rem 0 6.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-logo {
  width: min(300px, 100%);
  height: auto;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.site-footer a {
  color: #d8ecff;
}

.footer-list {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-small {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(16, 42, 67, 0.14);
}

.mobile-sticky-cta .button {
  width: 100%;
}

.mini-meta {
  display: grid;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.evidence-note {
  border: 1px dashed #a9b8c5;
  border-radius: var(--radius);
  padding: 0.8rem;
  background: #fcfdff;
  color: var(--ink-soft);
}

.thank-panel {
  display: grid;
  gap: 1rem;
  max-width: 820px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto auto 1fr auto;
  }

  .icon-button {
    display: grid;
  }

  .main-nav {
    position: fixed;
    inset: 121px 0 auto 0;
    display: none;
    max-height: calc(100vh - 121px);
    padding: 1rem;
    overflow: auto;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.menu-open .main-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .main-nav a {
    justify-content: flex-start;
    min-height: 52px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .header-actions {
    justify-self: end;
  }

  .header-actions .phone-link {
    display: none;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .home-hero,
  .home-hero .hero-inner {
    min-height: 540px;
  }

  .trust-bar,
  .grid.three,
  .grid.two,
  .footer-grid,
  .content-split {
    grid-template-columns: 1fr;
  }

  .hot-strip .container {
    grid-template-columns: 1fr;
  }

  .sticky-panel {
    position: static;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-cta {
    display: grid;
  }

  .site-footer {
    padding-bottom: 7.5rem;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .site-alert .container {
    min-height: 56px;
  }

  .header-inner {
    min-height: 72px;
    gap: 0.5rem;
  }

  .brand {
    width: min(205px, calc(100vw - 108px));
    min-width: 0;
  }

  .header-actions .button {
    display: none;
  }

  .main-nav {
    top: 128px;
    max-height: calc(100vh - 128px);
  }

  .hero-inner,
  .home-hero .hero-inner {
    min-height: 500px;
    padding: 3rem 0;
  }

  h1 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.05rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .section-actions .button {
    width: 100%;
  }

  .button {
    white-space: normal;
  }

  .mobile-sticky-cta .button {
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
