:root {
  --ink: #142321;
  --muted: #5c6c67;
  --line: #d9e2df;
  --paper: #fbfcfa;
  --mist: #eef5f2;
  --green: #236a57;
  --green-dark: #123d33;
  --aqua: #4db6ad;
  --gold: #d9a441;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(10, 32, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(11, 31, 28, 0.86), rgba(11, 31, 28, 0.2));
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(251, 252, 250, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 178px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(10, 32, 28, 0.16);
  overflow: hidden;
}

.brand-mark img {
  width: 42px;
  height: 42px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.72;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.92rem;
}

.nav a {
  opacity: 0.84;
}

.nav a:hover {
  opacity: 1;
}

.header-cta,
.button,
.referral-form button,
.portal-card button {
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.header-cta {
  padding: 11px 16px;
  color: var(--green-dark);
  background: var(--white);
}

.site-header.scrolled .header-cta,
.button.primary,
.referral-form button,
.portal-card button {
  color: var(--white);
  background: var(--green);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 25, 23, 0.88) 0%, rgba(7, 25, 23, 0.74) 40%, rgba(7, 25, 23, 0.18) 78%),
    linear-gradient(180deg, rgba(7, 25, 23, 0.42), rgba(7, 25, 23, 0.26));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-stats {
  margin-top: 34px;
}

.hero-stats span {
  flex: 1 1 180px;
  min-width: 180px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.82);
}

.hero-stats strong {
  display: block;
  color: var(--white);
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 100px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.intro p,
.network p,
.portal-copy p,
.refer p,
.split p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(20, 35, 33, 0.06);
}

.icon {
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--mist);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-grid p {
  color: var(--muted);
}

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

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.specialties {
  padding-top: 0;
}

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

.specialty-grid article {
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(20, 35, 33, 0.05);
}

.specialty-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 32px;
  margin-bottom: 20px;
  padding: 0 8px;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--mist);
  font-size: 0.72rem;
  font-weight: 900;
}

.specialty-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.specialty-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.split,
.network,
.refer {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 22px 22px 22px 76px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(20, 35, 33, 0.08);
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 850;
}

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

.steps span {
  margin-top: 5px;
  color: var(--muted);
}

.network-panel {
  padding: clamp(26px, 4vw, 44px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 61, 51, 0.94), rgba(35, 106, 87, 0.9)),
    var(--green-dark);
  box-shadow: var(--shadow);
}

.network-panel span {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
}

.network-panel strong {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(1.4rem, 2.5vw, 2.35rem);
  line-height: 1.08;
}

.network-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.scheduler {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 0;
}

.scheduler-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 28px;
}

.scheduler-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.facility-tools {
  display: grid;
  grid-template-columns: minmax(230px, 1.1fr) repeat(2, minmax(170px, 0.7fr)) minmax(150px, 0.45fr);
  gap: 12px;
  align-items: end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(20, 35, 33, 0.08);
}

.toggle-field {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.toggle-field input,
fieldset input {
  width: auto;
}

.facility-status {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin: 16px 0;
  color: var(--muted);
}

.facility-status button,
.facility-card button {
  border: 0;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--mist);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.facility-status button {
  padding: 10px 12px;
}

.facility-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 18px;
  align-items: start;
}

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

.facility-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(20, 35, 33, 0.06);
}

.facility-card.selected {
  border-color: rgba(77, 182, 173, 0.8);
  box-shadow: 0 18px 44px rgba(35, 106, 87, 0.15);
}

.facility-card-head,
.facility-card-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.facility-card-head strong {
  display: block;
  font-size: 1.05rem;
}

.facility-card-head span,
.facility-card p,
.facility-card-foot span {
  color: var(--muted);
}

.facility-card-head em {
  align-self: start;
  padding: 6px 8px;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--mist);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 850;
  white-space: nowrap;
}

.facility-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.facility-tags span {
  padding: 6px 8px;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--mist);
  font-size: 0.78rem;
  font-weight: 850;
}

.facility-card-foot {
  align-items: center;
  margin-top: 16px;
}

.facility-card-foot button {
  padding: 10px 12px;
}

.selected-facility {
  position: sticky;
  top: 96px;
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.selected-facility h3 {
  font-size: 1.6rem;
}

.selected-facility p,
.selected-facility dd {
  color: rgba(255, 255, 255, 0.78);
}

.facility-facts {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.facility-facts div {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.facility-facts dt,
.facility-facts dd {
  margin: 0;
}

.facility-facts dt {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.empty-state {
  margin: 0;
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--white);
}

.portal {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  padding: clamp(64px, 9vw, 110px) clamp(18px, 7vw, 96px);
  color: var(--white);
  background: var(--green-dark);
}

.portal-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 70px rgba(4, 18, 15, 0.26);
}

.portal-topbar {
  display: flex;
  gap: 7px;
  padding-bottom: 16px;
}

.portal-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.portal-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.portal-row.active {
  color: var(--green-dark);
  background: var(--white);
}

.portal-row span {
  color: inherit;
  opacity: 0.72;
}

.portal-card button {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  background: var(--gold);
  color: var(--green-dark);
}

.lop-providers {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
  padding-top: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(36px, 5vw, 56px);
}

.lop-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.lop-summary {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.total-panel,
.provider-category-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(20, 35, 33, 0.07);
}

.total-panel {
  display: grid;
  align-content: center;
  padding: 22px;
}

.total-panel span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.total-panel strong {
  display: block;
  margin: 8px 0;
  color: var(--green-dark);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
}

.total-panel p {
  margin: 0;
  color: var(--muted);
}

.provider-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: center;
  padding: 18px;
}

.provider-category-list.compact {
  padding: 16px;
}

.provider-category-list span {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--mist);
  font-size: 0.82rem;
  font-weight: 850;
}

.referral-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.anti-spam-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  margin: 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.request-type {
  grid-template-columns: 1fr;
}

legend {
  padding: 0 5px;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 850;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 650;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

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

.referral-form .consent-confirmation {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.5;
}

.referral-form .consent-confirmation input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
}

.consent-confirmation a,
.privacy-content a {
  color: var(--teal-dark);
  font-weight: 700;
}

.privacy-content {
  max-width: 860px;
}

.privacy-content section + section {
  margin-top: 2rem;
}

.privacy-content h2 {
  margin-bottom: 0.65rem;
}

.privacy-content li + li {
  margin-top: 0.5rem;
}

.referral-form button {
  min-height: 50px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
}

.footer strong,
.footer span,
.footer a {
  display: block;
}

.footer strong {
  color: var(--ink);
}

.footer-brand {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 12px;
  align-items: center;
}

.footer-brand img {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.subpage-main {
  background: var(--paper);
}

.breadcrumbs {
  position: absolute;
  z-index: 3;
  top: 94px;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.46);
}

.breadcrumbs a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs [aria-current="page"] {
  color: var(--white);
  font-weight: 750;
}

.subpage-hero {
  position: relative;
  min-height: 58svh;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 72px) 56px;
  overflow: hidden;
  color: var(--white);
}

.subpage-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 25, 23, 0.9), rgba(7, 25, 23, 0.5));
  z-index: 1;
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.subpage-hero h1 {
  margin: 8px 0 16px;
  max-width: 880px;
}

.subpage-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
}

.subpage-body {
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 72px);
}

.location-summary,
.location-detail-grid,
.location-index-grid {
  display: grid;
  gap: 18px;
}

.location-summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 34px;
}

.location-summary > div,
.coverage-option,
.location-card,
.seo-cta {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.location-summary strong {
  display: block;
  color: var(--green-dark);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}

.location-summary span,
.location-card span,
.coverage-option span {
  color: var(--muted);
}

.coverage-updated {
  margin: -14px 0 34px;
  color: var(--muted);
  font-size: 0.9rem;
}

.related-services {
  margin-top: 34px;
}

.related-services h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.related-services > div {
  display: grid;
  gap: 10px;
}

.related-services a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 15px;
  color: var(--green-dark);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 780;
}

.related-services a:hover {
  border-color: var(--aqua);
}

.related-services span {
  color: var(--muted);
  font-weight: 650;
}

.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 130px 18px 72px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 70% 25%, rgba(77, 182, 173, 0.28), transparent 32%),
    linear-gradient(145deg, var(--green-dark), #071917);
}

.not-found > div {
  max-width: 720px;
}

.not-found .eyebrow {
  margin-bottom: 18px;
}

.not-found h1 {
  margin-inline: auto;
  font-size: clamp(2.7rem, 8vw, 5.8rem);
}

.not-found p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.not-found .button.primary {
  background: var(--gold);
  color: var(--green-dark);
}

.location-detail-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: start;
}

.coverage-list,
.market-list {
  display: grid;
  gap: 12px;
}

.coverage-option h2,
.coverage-option h3,
.location-card h2,
.location-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1rem;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.coverage-tags span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

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

.location-card {
  color: inherit;
}

.seo-cta {
  display: grid;
  gap: 14px;
  background: var(--green-dark);
  color: var(--white);
}

.seo-cta h2,
.seo-cta p {
  margin: 0;
}

.seo-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.seo-cta .button {
  justify-self: start;
}

.marketing-page {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}

.marketing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.marketing-section p,
.marketing-faq p,
.campaign-cta p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.marketing-grid article,
.campaign-cta,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(20, 35, 33, 0.06);
}

.marketing-grid article {
  min-height: 172px;
  padding: 18px;
}

.marketing-grid h3,
.marketing-grid p {
  margin: 0;
}

.marketing-grid h3 {
  margin-bottom: 10px;
}

.campaign-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  background: var(--green-dark);
  color: var(--white);
}

.campaign-cta h2,
.campaign-cta p {
  margin-bottom: 0;
}

.campaign-cta p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
}

.campaign-cta .button.primary {
  background: var(--gold);
  color: var(--green-dark);
}

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

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

.faq-list details {
  padding: 16px 18px;
}

.faq-list summary {
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 12px 0 0;
}

.modality-markets {
  margin-top: clamp(36px, 6vw, 72px);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .service-grid,
  .intro,
  .split,
  .network,
  .scheduler-head,
  .facility-layout,
  .portal,
  .lop-providers,
  .refer {
    grid-template-columns: 1fr;
  }

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

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

  .selected-facility {
    position: static;
  }

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

  .lop-summary {
    grid-template-columns: 1fr;
  }

  .location-summary,
  .location-detail-grid,
  .location-index-grid,
  .marketing-section,
  .campaign-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 0.86rem;
  }

  .breadcrumbs {
    top: 78px;
    left: 16px;
    right: 16px;
    font-size: 0.8rem;
  }

  .breadcrumbs ol {
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .breadcrumbs li {
    white-space: nowrap;
  }

  .breadcrumbs li:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 96svh;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 25, 23, 0.9), rgba(7, 25, 23, 0.58));
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.2rem);
  }

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

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

  .portal-row,
  .facility-card-head,
  .facility-card-foot,
  .footer,
  .footer-links {
    display: grid;
  }

  .facility-tools,
  .form-grid,
  fieldset,
  .marketing-grid {
    grid-template-columns: 1fr;
  }
}
