:root {
  --ink: #1c1c1c;
  --muted: #636363;
  --line: #dedede;
  --paper: #f8f8f8;
  --white: #ffffff;
  --brand-black: #1d1d1d;
  --brand-blue: #0fade0;
  --brand-blue-dark: #087da4;
  --brand-red: #e3271d;
  --brand-red-dark: #ad1c16;
  --shadow: 0 18px 50px rgba(14, 14, 14, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

[id] {
  scroll-margin-top: 92px;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 52px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 32px rgba(20, 44, 54, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 56px;
  height: 46px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.76;
}

.site-nav {
  justify-self: end;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  color: currentColor;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-open .site-nav a:focus-visible {
  background: #f0f2f3;
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  padding: 0 18px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-call {
  background: var(--brand-red);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.button-primary {
  background: var(--brand-red);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(227, 39, 29, 0.26);
}

.call-button {
  flex-direction: column;
  gap: 1px;
  min-height: 58px;
  line-height: 1.1;
}

.call-button small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 900;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button:hover,
.header-call:hover,
.button:focus-visible,
.header-call:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary:hover,
.header-call:hover,
.button-primary:focus-visible,
.header-call:focus-visible {
  background: var(--brand-red-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: currentColor;
  place-items: center;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-shade,
.hero-content {
  grid-area: 1 / 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 92vh;
  object-fit: cover;
  object-position: 64% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 14, 14, 0.9) 0%, rgba(14, 14, 14, 0.7) 38%, rgba(14, 14, 14, 0.18) 76%),
    linear-gradient(180deg, rgba(14, 14, 14, 0.28) 0%, rgba(14, 14, 14, 0.12) 45%, rgba(14, 14, 14, 0.7) 100%);
}

.hero-content {
  align-self: center;
  width: min(690px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 86px);
  padding-top: 84px;
  padding-bottom: 136px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #5fd9ff;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.65rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.14rem;
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.03rem, 1.7vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.certification-badge {
  display: inline-grid;
  gap: 2px;
  margin-top: 18px;
  border: 1px solid rgba(95, 217, 255, 0.46);
  border-left: 5px solid var(--brand-blue);
  border-radius: 8px;
  padding: 12px 16px;
  background: rgba(14, 14, 14, 0.56);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.certification-badge strong {
  color: var(--white);
  font-size: 0.96rem;
}

.certification-badge span {
  color: #bdefff;
  font-size: 0.84rem;
  font-weight: 800;
}

.response-bar {
  position: absolute;
  left: clamp(18px, 7vw, 86px);
  right: clamp(18px, 7vw, 86px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.response-bar span {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 14px 18px;
  background: rgba(20, 20, 20, 0.68);
  font-size: 0.94rem;
  font-weight: 800;
}

.response-bar span:first-child {
  background: rgba(227, 39, 29, 0.86);
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.band {
  background: var(--paper);
}

.intro {
  padding: clamp(58px, 8vw, 92px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}

.intro-grid p:last-child,
.coverage-copy p,
.insurance-copy p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
  font-size: 1.06rem;
}

.services,
.coverage,
.faq {
  padding: clamp(64px, 8vw, 108px) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(20, 44, 54, 0.06);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #e8f8fc;
  color: var(--brand-blue-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card:nth-child(even) .service-icon {
  background: #fde8e6;
  color: var(--brand-red);
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.process {
  padding: clamp(64px, 8vw, 108px) 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--brand-blue);
}

.timeline li {
  position: relative;
  padding: 28px 22px 0 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 0 6px var(--paper);
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline span {
  margin-top: 10px;
  color: var(--muted);
}

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
}

.stat-panel {
  display: grid;
  gap: 14px;
}

.stat-panel div {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
}

.stat-panel strong {
  color: var(--brand-red);
  font-size: 2rem;
  line-height: 1;
}

.stat-panel span {
  color: var(--muted);
  font-weight: 700;
}

.insurance {
  padding: clamp(64px, 8vw, 108px) 0;
}

.insurance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.insurance-steps {
  display: grid;
  gap: 12px;
}

.insurance-steps div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand-red);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(20, 44, 54, 0.05);
}

.insurance-steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e8f8fc;
  color: var(--brand-blue-dark);
  font-weight: 900;
}

.insurance-steps span {
  color: var(--muted);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(20, 44, 54, 0.05);
}

.faq-list summary {
  position: relative;
  display: block;
  padding: 20px 58px 20px 20px;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand-red);
  color: var(--white);
  transform: translateY(-50%);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
  background: var(--brand-blue-dark);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact {
  padding: clamp(64px, 8vw, 108px) 0;
  background: var(--brand-black);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(330px, 0.7fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.phone-link {
  display: inline-flex;
  margin-top: 18px;
  color: #5fd9ff;
  font-size: 1.45rem;
  font-weight: 900;
  text-decoration: none;
}

.email-link {
  display: inline-flex;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  text-decoration: none;
}

.email-link:hover,
.email-link:focus-visible {
  color: var(--white);
  outline: none;
}

.lead-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: clamp(18px, 4vw, 30px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: #bdefff;
  font-weight: 700;
}

.site-footer {
  padding: 30px 0;
  background: #111111;
  color: var(--white);
}

.footer-logo {
  width: 112px;
  height: auto;
  margin-bottom: 12px;
  border-radius: 8px;
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.6fr);
  gap: 26px;
  align-items: center;
}

.site-footer p,
.site-footer span {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav a {
    border-radius: 6px;
    padding: 12px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-media img {
    min-height: 860px;
    object-position: 70% center;
  }

  .hero-content {
    align-self: end;
    padding-bottom: 260px;
  }

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

  .intro-grid,
  .coverage,
  .insurance-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    min-height: 70px;
    padding: 12px 16px;
  }

  .brand img {
    width: 48px;
    height: 40px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media img {
    min-height: 780px;
    object-position: 72% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(14, 14, 14, 0.66) 0%, rgba(14, 14, 14, 0.6) 34%, rgba(14, 14, 14, 0.9) 100%),
      linear-gradient(90deg, rgba(14, 14, 14, 0.8) 0%, rgba(14, 14, 14, 0.16) 100%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-top: 90px;
    padding-bottom: 260px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.65rem);
  }

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

  .response-bar {
    left: 16px;
    right: 16px;
    bottom: 18px;
    grid-template-columns: 1fr;
  }

  .response-bar span {
    min-height: 48px;
  }

  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline {
    border-top: 0;
    border-left: 2px solid var(--brand-blue);
    padding-left: 22px;
  }

  .timeline li {
    padding: 0 0 30px 18px;
  }

  .timeline li::before {
    top: 0;
    left: -30px;
  }

  .stat-panel div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .insurance-steps div {
    grid-template-columns: 1fr;
  }
}
