:root {
  --ink: #0a2340;
  --ink-2: #123a58;
  --blue: #075f82;
  --teal: #0787a8;
  --teal-dark: #056784;
  --sky: #dff1f5;
  --mist: #f2f7f8;
  --warm: #fbfaf7;
  --white: #ffffff;
  --slate: #314b5b;
  --muted: #536c7a;
  --line: #d9e4e7;
  --line-strong: #bdced4;
  --success: #267a68;
  --warning: #a66b19;
  --shadow-sm: 0 10px 30px rgba(9, 35, 61, 0.08);
  --shadow-lg: 0 24px 70px rgba(9, 35, 61, 0.14);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 150px; }
body {
  margin: 0;
  background: var(--warm);
  color: var(--slate);
  font-family: "Aptos", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0 0 1rem; }
h1, h2, h3 {
  margin: 0 0 0.68em;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(3rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2.15rem, 4vw, 3.7rem); }
h3 { font-size: 1.35rem; }
ul, ol { margin-top: 0; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.hidden { display: none !important; }
.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  clip-path: inset(50%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); clip-path: none; }

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--teal-dark);
  border-radius: 4px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}
.eyebrow.light { color: #9dd9e5; }
.lead { color: var(--blue); font-size: 1.12rem; font-weight: 700; }

.button,
button.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.button:hover,
button.button:hover {
  transform: translateY(-2px);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 10px 24px rgba(9, 35, 61, 0.18);
}
.button-small { min-height: 42px; padding-inline: 18px; font-size: 0.84rem; }
.button-secondary { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.button-secondary:hover { color: var(--white); }
/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(10, 35, 64, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 18px rgba(9, 35, 61, 0.04);
  backdrop-filter: blur(14px);
}
.nav-shell {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 28px;
  padding-block: 6px 10px;
}
.single-page-site .nav-shell { width: min(calc(100% - 48px), 1320px); }
/* Home hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vw, 126px) 0 105px;
  background:
    radial-gradient(circle at 80% 20%, rgba(7, 135, 168, 0.13), transparent 30%),
    linear-gradient(135deg, #f7fbfc 0%, #edf6f7 58%, #e4f1f3 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -210px;
  bottom: -250px;
  border: 74px solid rgba(7, 135, 168, 0.08);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}
.hero h1 { max-width: 11.5ch; margin-bottom: 26px; color: var(--ink); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin: 32px 0 14px; }

/* Shared sections */
.section { padding: clamp(78px, 9vw, 126px) 0; }
.section-sand { background: var(--mist); }
.inquiry-form,
.success-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.about-preview { display: grid; grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); gap: clamp(45px, 8vw, 96px); align-items: center; }
.doctor-portrait {
  position: relative;
  width: 100%;
  max-width: 430px;
  min-height: 0;
  aspect-ratio: 2 / 3;
  justify-self: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #d6cec5;
  box-shadow: var(--shadow-lg);
}
.doctor-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}
.experience-highlights {
  position: relative;
  overflow: hidden;
  margin-top: clamp(52px, 7vw, 82px);
  padding: clamp(30px, 4.5vw, 52px);
  border: 1px solid rgba(7, 95, 130, 0.35);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--ink) 0%, #0d3855 100%);
  box-shadow: 0 24px 60px rgba(9, 35, 61, 0.18);
}
.experience-highlights::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -145px;
  top: -175px;
  border: 46px solid rgba(159, 221, 232, 0.07);
  border-radius: 50%;
}
.experience-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.experience-heading h3 {
  max-width: 620px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 600;
}
.experience-heading h3::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-top: 15px;
  border-radius: 999px;
  background: #75c8d8;
}
.experience-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}
.experience-stats article { padding: clamp(26px, 3.5vw, 38px); border-right: 1px solid rgba(255, 255, 255, 0.14); }
.experience-stats article:last-child { border-right: 0; }
.experience-stats strong {
  display: block;
  margin-bottom: 12px;
  color: #9fdde8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4.4vw, 3.65rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
}
.experience-stats h4 { margin: 0; color: rgba(255, 255, 255, 0.92); font-size: 1rem; line-height: 1.45; }

.accordion { max-width: 980px; }
.accordion article { border-top: 1px solid var(--line); }
.accordion article:last-child { border-bottom: 1px solid var(--line); }
.accordion button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 0;
  border: 0;
  background: none;
  color: var(--ink);
  cursor: pointer;
  font: 500 clamp(1.15rem, 2vw, 1.35rem)/1.35 Georgia, serif;
  text-align: left;
}
.accordion button b { width: 32px; height: 32px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--teal-dark); font: 400 1.2rem/1 Arial, sans-serif; transition: transform 180ms ease, background 180ms ease; }
.accordion button[aria-expanded="true"] b { transform: rotate(45deg); background: var(--sky); }
.answer { display: grid; grid-template-rows: 1fr; }
.answer > p { max-width: 790px; overflow: hidden; margin: 0; color: var(--muted); }
.answer > p { padding-bottom: 27px; }
.js .answer { grid-template-rows: 0fr; transition: grid-template-rows 220ms ease; }
.js .answer > p { padding-bottom: 0; }
.js .accordion button[aria-expanded="true"] + .answer { grid-template-rows: 1fr; }
.js .accordion button[aria-expanded="true"] + .answer > p { padding-bottom: 27px; }

.large-accordion { max-width: 940px; }

/* Contact and legal */
.contact-grid { display: grid; grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr); gap: clamp(50px, 8vw, 96px); align-items: start; }
.contact-copy { position: sticky; top: 150px; }
.notice { margin-top: 34px; padding: 24px; border: 1px solid #ecd9b7; border-left: 4px solid #c4862d; border-radius: var(--radius-sm); background: #fff9ef; }
.notice strong { color: #74440a; }
.notice p { margin: 5px 0 0; color: #745d3d; }
.inquiry-form { padding: clamp(30px, 5vw, 48px); box-shadow: var(--shadow-lg); }
.optional {
  margin-left: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { color: var(--ink); font-size: 0.82rem; font-weight: 800; }
input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  margin: 8px 0 20px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: var(--white);
  color: var(--slate);
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
textarea { min-height: 140px; resize: vertical; }
input:focus,
select:focus,
textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(7, 135, 168, 0.13); }
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--teal-dark);
  outline-offset: 2px;
}
.consent { display: flex; align-items: flex-start; gap: 10px; color: var(--slate); font-weight: 500; }
.consent input { width: 18px; min-height: 18px; margin: 3px 0 0; flex: 0 0 auto; accent-color: var(--teal-dark); }
.consent { margin: 10px 0 24px; padding: 17px; border-radius: 10px; background: var(--mist); }
.form-note { margin-top: 14px; color: var(--muted); font-size: 0.78rem; }
.form-error { margin: -8px 0 20px; padding: 14px 16px; border: 1px solid #e4b8b8; border-radius: 9px; background: #fff3f3; color: #7e2626; font-size: 0.88rem; font-weight: 700; }
.inquiry-form .button:disabled { cursor: wait; opacity: 0.72; transform: none; box-shadow: none; }
.success-section { min-height: 70vh; display: grid; place-items: center; padding: 100px 20px; background: var(--mist); }
.success-card { max-width: 690px; padding: clamp(40px, 7vw, 66px); text-align: center; box-shadow: var(--shadow-lg); }
.success-mark { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 26px; border-radius: 50%; background: var(--ink); color: #9fdde8; font-size: 1.45rem; }

/* Footer */
.site-footer { padding: 56px 0 30px; background: #071c30; color: rgba(255, 255, 255, 0.7); }
.footer-bottom { margin-top: 48px; padding-top: 24px; display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 42px; border-top: 1px solid rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.72); font-size: 0.78rem; }
.footer-bottom p { margin: 0; }
.fine-print { text-align: right; }

@media (max-width: 1050px) {
  .nav-shell { min-height: 82px; }
  .about-preview,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .contact-copy { position: static; }
  .footer-bottom { grid-template-columns: 1fr; }
  .fine-print { text-align: left; }
  .experience-stats { grid-template-columns: repeat(2, 1fr); }
  .experience-stats article:nth-child(2) { border-right: 0; }
  .experience-stats article:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .nav-shell { min-height: 76px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero { padding-top: 68px; }
  .experience-stats,
  .form-row { grid-template-columns: 1fr; }
  .inquiry-form { padding: 26px; }
  .about-preview { gap: 40px; }
  .experience-stats article { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
  .experience-stats article:last-child { border-bottom: 0; }
  .footer-bottom { gap: 18px; }
}

@media (max-width: 390px) {
  .button-row { align-items: stretch; }
  .button-row .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* Single-page landing experience */
.single-page-site section[id] { scroll-margin-top: 0; }
.single-page-nav { width: 100%; flex: 1 1 100%; display: flex; align-items: center; justify-content: center; gap: 10px; }
.nav-shell .single-page-nav { width: auto; flex: 0 0 auto; justify-content: flex-end; }
.single-page-nav .button-secondary { background: var(--white); }
.single-page-nav .button-secondary:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.single-page-nav .button-secondary[aria-current="page"] { background: var(--mist); border-color: var(--teal); color: var(--ink); box-shadow: inset 0 -2px 0 var(--teal); }
.nav-provider-disclosure {
  min-width: 0;
  flex: 1 1 520px;
  display: flex;
  align-items: baseline;
  gap: 6px 14px;
}
.nav-provider-disclosure span { color: var(--ink); font-size: 0.88rem; font-weight: 750; line-height: 1.4; }

.single-page-site .hero { min-height: auto; padding: clamp(24px, 2.8vw, 36px) 0 clamp(48px, 4.5vw, 64px); }
.single-page-site .hero-grid { display: grid; grid-template-columns: 1fr; grid-template-areas: "logo" "copy"; gap: clamp(18px, 2vw, 24px); }
.single-page-site .hero-copy {
  grid-area: copy;
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.single-page-site .hero h1 { max-width: 30ch; margin: 0 auto 20px; font-size: clamp(2.8rem, 4.3vw, 3.65rem); font-weight: 700; line-height: 1.04; }
.hero-support { max-width: 650px; margin-inline: auto; padding-top: 0; text-align: center; }
.hero-promise { margin: 0; color: var(--blue); font-size: clamp(1.12rem, 1.45vw, 1.3rem); line-height: 1.45; }
.hero-logo-card {
  grid-area: logo;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  justify-self: center;
  padding: clamp(10px, 1.5vw, 18px);
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.hero-logo-card img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}
.services-overview {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 5vw, 68px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff 0%, #f4f9fa 100%);
}
.services-overview::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -180px;
  top: -190px;
  border: 45px solid rgba(7, 135, 168, 0.06);
  border-radius: 50%;
}
.service-scope {
  position: relative;
  z-index: 1;
  scroll-margin-top: 32px;
}
.service-scope h2 {
  position: relative;
  margin: 0 0 30px;
  padding-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 700;
}
.service-scope h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}
.service-scope ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-scope li {
  position: relative;
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 22px 22px 22px 54px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(9, 35, 61, 0.06);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
}
.service-scope li::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px var(--sky);
}
.single-page-site .button-row { justify-content: center; margin: 22px 0 0; }
.single-page-site .section { padding: clamp(60px, 6.5vw, 88px) 0; }

@media (min-width: 1051px) {
  .single-page-site .hero { padding: 22px 0 40px; }
  .single-page-site .hero-grid { gap: 16px; }
  .single-page-site .hero h1 { margin-bottom: 14px; font-size: clamp(2.9rem, 3.7vw, 3.35rem); line-height: 1.02; }
  .hero-logo-card { max-width: 630px; }
  .hero-promise { font-size: 1.15rem; }
  .single-page-site .button-row { margin-top: 18px; }
}

.section-intro { max-width: 820px; margin-bottom: 34px; }
.section-intro h2 { max-width: 18ch; }
.partnership-process .section-intro h1 { max-width: 18ch; font-size: clamp(2.15rem, 4vw, 3.7rem); }
.section-intro > p:not(.eyebrow) { max-width: 760px; color: var(--muted); }
.benefit-grid,
.workflow-grid {
  display: grid;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
.benefit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.benefit-grid li,
.workflow-grid li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.benefit-grid li { padding: 26px; }
.benefit-grid h3,
.workflow-grid h3 { margin-bottom: 10px; color: var(--ink); font-size: 1.25rem; line-height: 1.25; }
.benefit-grid p,
.workflow-grid p { margin: 0; color: var(--muted); font-size: 0.94rem; line-height: 1.6; }
.workflow-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.workflow-grid li { padding: clamp(26px, 3vw, 34px); }
.workflow-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}
.responsibility-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.responsibility-grid article {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.responsibility-grid h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.responsibility-list { margin: 0; padding: 0; list-style: none; }
.responsibility-list li {
  position: relative;
  padding: 13px 0 13px 27px;
  border-bottom: 1px solid var(--line);
  color: var(--slate);
}
.responsibility-list li:last-child { border-bottom: 0; }
.responsibility-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.42em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.partner-fit-panel {
  max-width: 1000px;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.partner-fit-panel h2 { font-size: clamp(1.65rem, 2.6vw, 2.2rem); }
.partner-fit-panel p { color: var(--muted); }
.partner-fit-panel p:last-child { margin-bottom: 0; }
.service-region { padding-top: 18px; border-top: 1px solid var(--line); font-size: 0.9rem; }
.contact-landing { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--ink), var(--ink-2)); color: var(--white); }
.contact-landing::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -300px;
  bottom: -300px;
  border: 70px solid rgba(159, 221, 232, 0.08);
  border-radius: 50%;
}
.contact-landing .container { position: relative; z-index: 1; }
.contact-landing .contact-copy { top: 142px; }
.contact-landing .contact-copy h2 { color: var(--white); }
.contact-landing .contact-copy > p { color: rgba(255, 255, 255, 0.72); }
.contact-landing .notice { background: rgba(255, 249, 239, 0.97); }
.inline-success { max-width: none; background: var(--white); color: var(--slate); }
.inline-success:target[hidden] { display: block !important; }
.inline-success:target + .inquiry-form { display: none; }
.inline-success h3 { font-size: 2.5rem; }
.footer-summary { display: grid; grid-template-columns: 1fr; gap: 0; align-items: start; }
.footer-policies { max-width: 900px; display: grid; grid-template-columns: 1fr; gap: 24px; }
.footer-policies h2 {
  margin: 0 0 8px;
  color: #b8e7ef;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.footer-policies p { margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 0.84rem; line-height: 1.65; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-links a { color: #b8e7ef; font-size: 0.86rem; font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.footer-contact {
  margin-top: 42px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 0.8fr 1.15fr 1fr;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-contact span {
  display: block;
  margin-bottom: 8px;
  color: #9fdde8;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.footer-contact p,
.footer-contact address {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.65;
  overflow-wrap: anywhere;
}
.footer-contact a { text-decoration-thickness: 1px; text-underline-offset: 3px; }
.faq-preview { padding-top: clamp(36px, 4vw, 48px) !important; }
.faq-action { margin-top: 32px; }
@media (max-width: 1180px) {
  html { scroll-padding-top: 150px; }
  .single-page-site .site-header { position: sticky; }
  .single-page-site .nav-shell { min-height: auto; padding-block: 6px 10px; gap: 6px 24px; flex-wrap: wrap; }
  .single-page-nav { position: static; width: 100%; display: flex; justify-content: center; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .nav-shell .single-page-nav { width: 100%; flex: 1 1 100%; justify-content: center; }
  .nav-provider-disclosure { flex: 1 1 100%; justify-content: center; text-align: center; }
  .single-page-nav .button { min-height: 40px; padding-inline: 14px; font-size: 0.76rem; }
  .single-page-site .hero-grid { grid-template-columns: 1fr; grid-template-areas: "logo" "copy"; gap: 22px; }
  .footer-summary { grid-template-columns: 1fr; }
  .footer-policies { max-width: 820px; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 180px; }
  .single-page-site .site-header { position: sticky; }
  .single-page-site .nav-shell { width: min(calc(100% - 30px), var(--container)); min-height: auto; padding-block: 4px 10px; gap: 4px 10px; flex-wrap: wrap; }
  .single-page-nav { width: 100%; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 7px; }
  .single-page-nav .button { width: 100%; min-height: 44px; padding: 8px; font-size: 0.78rem; line-height: 1.2; }
  .single-page-nav .button { grid-column: span 2; }
  .single-page-nav .button:nth-child(4),
  .single-page-nav .button:nth-child(5) { grid-column: span 3; }
  .single-page-nav.compact-nav .button { grid-column: span 3; }
  .single-page-site .hero { padding: 28px 0 48px; }
  .single-page-site .hero h1 { font-size: clamp(2.25rem, 10vw, 3rem); }
  .single-page-site .button-row { margin-top: 22px; justify-content: center; }
  .single-page-site .section { padding: 60px 0; }
  .doctor-portrait { width: min(100%, 280px); justify-self: center; }
  .footer-policies,
  .footer-contact { grid-template-columns: 1fr; }
  .footer-contact { gap: 22px; }
}

@media (max-width: 360px) {
  .single-page-nav .button { padding-inline: 5px; font-size: 0.75rem; }
}

@media (min-width: 721px) and (max-width: 1050px) {
  .about-preview { grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr); gap: 44px; }
  .doctor-portrait { width: min(100%, 310px); }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .single-page-site .hero-grid { grid-template-columns: 1fr; grid-template-areas: "logo" "copy"; }
  .single-page-site .hero-copy { display: block; max-width: 720px; text-align: center; }
  .single-page-site .hero h1 { max-width: 18ch; margin: 0 auto 20px; }
  .hero-support { max-width: 580px; margin-inline: auto; padding-top: 0; }
  .hero-logo-card { max-width: 460px; justify-self: center; }
  .service-scope ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workflow-grid,
  .responsibility-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-provider-disclosure { flex-direction: column; align-items: center; gap: 2px; text-align: center; }
  .nav-provider-disclosure span { font-size: 0.78rem; line-height: 1.35; }
  .single-page-site .hero-grid { gap: 24px; }
  .hero-logo-card { margin-bottom: 0; }
  .service-scope ul { grid-template-columns: 1fr; gap: 11px; }
  .service-scope h2 { margin-bottom: 24px; }
  .service-scope li { min-height: 76px; padding-block: 18px; font-size: 0.92rem; }
  .experience-heading h3 { font-size: 1.85rem; }
  .benefit-grid { grid-template-columns: 1fr; gap: 12px; }
  .benefit-grid li { padding: 23px; }
  .workflow-grid { gap: 12px; }
  .section-intro { margin-bottom: 28px; }
  .partner-fit-panel { padding: 26px; }
  .footer-links { margin-top: -6px; }
}
