:root {
  --ink: #142333;
  --muted: #617182;
  --line: #dbe5ee;
  --paper: #f6f9fc;
  --white: #ffffff;
  --blue: #0878cf;
  --deep-blue: #075a9b;
  --red: #e20816;
  --soft-red: #fff0f1;
  --shadow: 0 18px 44px rgba(20, 35, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 190px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 11px;
  color: #34495d;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: #eaf5ff;
}

.button,
.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 7px;
  font-weight: 900;
}

.button.secondary {
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 7px;
  font-size: 24px;
}

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

.hero {
  background: linear-gradient(135deg, #f6f9fc 0%, #eef7ff 58%, #fff0f1 100%);
}

.hero-inner {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.8fr);
  gap: 44px;
  align-items: center;
  padding: 86px 0 72px;
}

.hero-copy {
  width: min(680px, 100%);
}

.hero-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 12px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  pointer-events: none;
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 72px);
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.lead {
  max-width: 680px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 20px;
}

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

.quick-info {
  max-width: 820px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.info-card,
.card,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.info-card {
  padding: 18px;
}

.info-card strong {
  display: block;
  color: var(--blue);
  font-size: 18px;
}

.info-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 84px 0;
}

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

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 570px;
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  padding: 26px;
  box-shadow: none;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
}

.card p,
.plain-list {
  margin-top: 14px;
  color: var(--muted);
}

.plain-list {
  padding-left: 20px;
}

.plain-list li {
  margin: 8px 0;
}

.insurance-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.insurance-list div {
  padding: 16px 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(20, 35, 51, 0.07);
  font-weight: 800;
}

.page-hero {
  padding: 74px 0 48px;
  background: linear-gradient(135deg, #eef7ff, #ffffff);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
}

.page-hero p {
  max-width: 780px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 19px;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.highlight-panel {
  padding: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--deep-blue));
  border-radius: 8px;
}

.highlight-panel p,
.highlight-panel li {
  color: #e1f0fb;
}

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

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

summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

details p {
  margin-top: 12px;
  color: var(--muted);
}

.provider-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
}

.avatar {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-weight: 900;
  font-size: 24px;
}

.contact-panel {
  padding: 30px;
}

.contact-panel a {
  color: var(--blue);
  font-weight: 900;
}

.contact-panel .button,
.contact-panel .button:visited {
  color: var(--white);
}

.footer {
  padding: 42px 0;
  color: #d8e9f7;
  background: #10263b;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer a {
  color: var(--white);
}

@media (max-width: 960px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .quick-info,
  .insurance-list,
  .grid.three,
  .grid.two,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 64px 0;
  }

  .hero-photo-card,
  .hero-photo-card img {
    min-height: 330px;
  }

  .section-head,
  .footer-inner {
    display: block;
  }

  .section-head p,
  .footer-links {
    margin-top: 16px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 150px;
  }

  .section {
    padding: 60px 0;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
