:root {
  --navy: #061b2d;
  --navy-soft: #0d2c45;
  --teal: #0F766E;
  --teal-dark: #0A5F59;
  --teal-light: #5EEAD4;
  --cream: #f7f4ef;
  --soft: #f3f7f7;
  --white: #ffffff;
  --ink: #152536;
  --muted: #637184;
  --line: rgba(6, 27, 45, .12);
  --shadow: 0 24px 70px rgba(6, 27, 45, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1,
h2,
h3 {
  max-width: 100%;
  overflow-wrap: break-word;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 74px;
  padding: 14px clamp(18px, 5vw, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: rgba(6, 27, 45, .94);
  backdrop-filter: blur(14px);
}
.brand { display: grid; line-height: 1.1; }
.brand span { font-size: 18px; font-weight: 800; letter-spacing: -.02em; }
.brand small { color: rgba(255,255,255,.66); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.site-nav { display: flex; gap: clamp(12px, 1.5vw, 20px); align-items: center; font-size: 13px; font-weight: 700; }
.site-nav a { color: rgba(255,255,255,.78); }
.site-nav a:hover,
.site-nav a.active { color: var(--teal-light); }
.site-nav .nav-cta {
  min-height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
}
.site-nav .nav-cta.active { color: var(--white); box-shadow: inset 0 0 0 2px rgba(255,255,255,.55); }

.hero {
  min-height: min(760px, calc(100vh - 74px));
  padding: clamp(72px, 9vw, 118px) clamp(20px, 6vw, 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 18%, rgba(94,234,212,.20), transparent 34%),
    linear-gradient(120deg, rgba(6,27,45,.98), rgba(6,27,45,.78));
}
.hero h1 {
  max-width: 840px;
  margin: 0 0 22px;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.055em;
}
.hero p { max-width: 670px; color: rgba(255,255,255,.78); font-size: clamp(17px, 2vw, 22px); }
.hero-panel {
  padding: 38px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.hero-panel strong { display: block; color: var(--teal-light); font-size: clamp(42px, 6vw, 76px); line-height: .95; }
.hero-panel span { display: block; margin-top: 18px; color: rgba(255,255,255,.82); font-size: 15px; }
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 13px;
}
.button.primary { color: var(--white); background: var(--teal); box-shadow: 0 10px 26px rgba(15,118,110,.18); }
.button.secondary { color: var(--white); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.08); }
.button.dark { color: var(--white); background: var(--navy); }

.media-frame {
  overflow: hidden;
  border: 1px solid rgba(15,118,110,.18);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(6,27,45,.14);
}
.media-frame img,
.visual-card img,
.path-card img,
.comparison-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.home-hero {
  min-height: min(820px, calc(100vh - 74px));
  padding: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 22%, rgba(94,234,212,.26), transparent 32%),
    linear-gradient(130deg, #061b2d 0%, #0d2c45 56%, #073b43 100%);
}
.home-hero h1 {
  max-width: 860px;
  margin: 0 0 22px;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.home-hero p { max-width: 720px; color: rgba(255,255,255,.78); font-size: clamp(17px, 2vw, 22px); }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: -46px;
  padding: 0 clamp(20px, 6vw, 88px) 46px;
  position: relative;
  z-index: 2;
}
.impact-card {
  padding: 26px;
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(6,27,45,.10);
}
.impact-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-size: clamp(34px, 4vw, 58px);
  line-height: .9;
  letter-spacing: -.05em;
}
.visual-grid,
.comparison-path-grid,
.support-visual-grid {
  display: grid;
  gap: 22px;
}
.visual-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.comparison-path-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.support-visual-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.visual-card,
.comparison-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(6,27,45,.075);
}
.visual-card div,
.comparison-card div { padding: 22px; }
.visual-card p,
.comparison-card p { color: var(--muted); }
.comparison-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}
.comparison-card li { margin: 8px 0; }
.service-compare {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(6,27,45,.08);
}
.service-row {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 0; }
.service-row strong,
.service-row span {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}
.service-row span:last-child { border-right: 0; }
.service-row.header strong,
.service-row.header span {
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}
.tcm-showcase {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
}
.tcm-showcase .visual-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tcm-showcase .visual-card div { padding: 16px; }
.section-intro {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.section { padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 88px); }
.section-heading { max-width: 860px; margin: 0 0 36px; }
.section-heading.light { color: var(--white); }
.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-heading.light .eyebrow { color: var(--teal-light); }
h2 { margin: 0; font-size: clamp(1.8rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -.045em; }
h3 { margin: 0 0 10px; font-size: 22px; letter-spacing: -.03em; }
.comparison-card h3,
.card-grid h3,
.equipment-grid h3,
.path-card h3,
.hospital-card h3,
.resource-card h3,
.pricing-list h3,
.v4-photo-card h3,
.v4-equipment-card h3,
.v4-compare-row h3,
.v4-city-card h3,
.v4-program h3,
.v4-package h3,
.v2-tcm-card h3 {
  overflow-wrap: break-word;
}
.asset-card-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  border-radius: 14px;
  background: transparent;
  object-fit: cover;
  opacity: 1;
  transition: opacity .2s ease;
}
.asset-card-image.loaded {
  opacity: 1;
}
.section-link { margin: 26px 0 0; font-weight: 800; color: var(--teal-dark); }
.section-link a { text-decoration: underline; text-underline-offset: 4px; }

.problem-stats {
  padding: 0 clamp(20px, 6vw, 88px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--white);
}
.problem-stats div {
  padding: 36px 26px;
  border-right: 1px solid var(--line);
}
.problem-stats div:last-child { border-right: 0; }
.problem-stats strong { display: block; color: var(--navy); font-size: clamp(32px, 4vw, 54px); line-height: 1; }
.trust-strip strong { font-size: clamp(26px, 3vw, 38px); letter-spacing: -.04em; }
.problem-stats span { display: block; margin-top: 10px; color: var(--muted); }

.steps-grid,
.card-grid,
.pricing-grid,
.equipment-grid,
.tcm-grid,
.destination-grid,
.support-grid {
  display: grid;
  gap: 22px;
}
.steps-grid,
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid,
.equipment-grid,
.tcm-grid,
.destination-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.support-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.steps-grid article,
.card-grid article,
.pricing-grid article,
.tcm-grid article,
.reassurance-grid article,
.support-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6,27,45,.045);
}
.steps-grid span { color: var(--teal-dark); font-weight: 900; }
.reassurance-section { background: var(--soft); }
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.reassurance-grid span {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}
.quiet-note {
  max-width: 920px;
  margin: 28px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--teal-dark);
  color: var(--muted);
  background: var(--white);
}
.comparison-section { background: var(--white); }
.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 22px;
}
.comparison-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
}
.comparison-grid .featured-comparison {
  border-color: rgba(15,118,110,.28);
  background: #eef9f6;
}
.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.check-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 26px;
}
.check-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--teal-dark);
  font-weight: 900;
}

.cost-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}
.cost-table > div {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.cost-table > div:last-child { border-bottom: 0; }
.cost-table span,
.cost-table strong { padding: 18px 20px; }
.cost-table strong { color: var(--navy); background: #edf7f6; }

.equipment-section {
  color: var(--white);
  background: var(--navy);
}
.planning-question-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
}
.planning-question-card h3 {
  color: #1a1a2e;
}
.planning-question-card p {
  color: #555555;
}
.equipment-grid article {
  padding: 28px;
  border: 1px solid rgba(25,197,189,.24);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
}
.equipment-grid h3 { color: var(--white); }
.equipment-grid p { color: rgba(255,255,255,.66); }
.equipment-grid strong {
  display: block;
  margin: 18px 0 8px;
  color: var(--teal);
  font-size: 22px;
  line-height: 1.18;
}
.equipment-grid span { color: rgba(255,255,255,.76); }

.tcm-section,
.patient-fit-section { background: #eef9f6; }
.tcm-grid article { text-align: center; }
.tcm-grid span { display: block; margin-bottom: 12px; font-size: 42px; }
.tcm-stat {
  margin: 28px 0;
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  border-left: 5px solid var(--teal);
  border-radius: 16px;
  background: var(--white);
}
.tcm-stat strong { color: var(--navy); font-size: 22px; }
.tcm-stat span { color: var(--muted); }

.travel-section { background: var(--white); }
.support-section { background: var(--soft); }
.destination-grid article {
  overflow: hidden;
  border-radius: 24px;
  background: var(--cream);
  box-shadow: 0 12px 36px rgba(6,27,45,.08);
}
.destination-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.destination-grid div { padding: 22px; }
.service-badges { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.service-badges span {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--navy);
  background: #e9fbf8;
  font-size: 13px;
  font-weight: 800;
}
.travel-tagline { margin-top: 22px; color: var(--navy); font-size: 22px; font-weight: 800; }

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(340px, 1fr);
  gap: 36px;
  background: var(--navy);
  color: var(--white);
}
.contact-copy a { color: var(--teal-light); font-weight: 800; }
.contact-expectations {
  margin: 24px 0 0;
  padding-left: 20px;
  color: rgba(255,255,255,.78);
}
.contact-expectations li { margin: 8px 0; }
.contact-form {
  padding: 30px;
  display: grid;
  gap: 18px;
  border-radius: 24px;
  background: var(--white);
  color: var(--ink);
}
.form-intro h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}
.form-intro p {
  margin: 0;
  color: var(--muted);
}
.contact-form label { display: grid; gap: 8px; font-size: 13px; font-weight: 800; }
.radio-fieldset {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  border: 0;
  font-size: 13px;
  font-weight: 800;
}
.radio-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.radio-row input { width: auto; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  background: var(--white);
}
.contact-form input[type="file"] { padding: 12px; }
.review-explainer {
  padding: 18px;
  border: 1px solid rgba(15,118,110,.18);
  border-radius: 18px;
  color: var(--ink);
  background: #effbf8;
}
.review-explainer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}
.review-explainer p { margin: 0; color: var(--muted); }
.form-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.form-success {
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  color: #075c48;
  background: #ddfbf0;
  font-weight: 800;
}
.next-timeline {
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.08);
}
.next-timeline h3 { color: var(--white); }
.next-timeline ol {
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  counter-reset: timeline;
}
.next-timeline li {
  position: relative;
  min-height: 74px;
  padding: 14px 14px 14px 48px;
  border-radius: 10px;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.08);
  counter-increment: timeline;
}
.next-timeline li::before {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--teal-light);
  content: counter(timeline);
  font-size: 12px;
  font-weight: 900;
}
.next-timeline li::after {
  position: absolute;
  right: -10px;
  top: 28px;
  color: var(--teal-light);
  content: "→";
  font-weight: 900;
}
.next-timeline li:last-child::after { content: ""; }

.site-footer {
  padding: 38px clamp(20px, 6vw, 88px);
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) minmax(220px, .8fr) minmax(220px, .7fr);
  gap: 24px;
  align-items: start;
  color: rgba(255,255,255,.76);
  background: #03121f;
}
.site-footer p { max-width: 440px; margin: 8px 0 0; color: rgba(255,255,255,.58); font-size: 13px; }
.site-footer nav,
.footer-links { display: grid; gap: 10px; font-size: 13px; font-weight: 800; }
.site-footer h3 { margin: 0 0 12px; color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.site-footer a { color: var(--teal-light); font-weight: 800; }
.site-footer a.active { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }

.page-hero {
  padding: clamp(74px, 9vw, 124px) clamp(20px, 6vw, 88px);
  color: var(--white);
  background: linear-gradient(120deg, var(--navy), var(--navy-soft));
}
.page-hero.visual-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.page-hero h1 {
  max-width: 980px;
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.page-hero p { max-width: 780px; margin: 0; color: rgba(255,255,255,.76); font-size: clamp(17px, 2vw, 22px); }
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: clamp(26px, 5vw, 64px);
}
.content-aside {
  padding: 26px;
  border-left: 5px solid var(--teal);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(6,27,45,.06);
}
.content-aside p { color: var(--muted); }
.principle-list,
.plain-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}
.principle-list li,
.plain-list li { margin: 10px 0; }
.article-body {
  max-width: 980px;
  display: grid;
  gap: 18px;
  color: var(--ink);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.75;
}
.article-body.compact {
  max-width: 920px;
  font-size: 17px;
}
.article-body p { margin: 0; }
.source-note {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.workflow {
  display: grid;
  gap: 18px;
}
.workflow article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(6,27,45,.06);
}
.workflow span {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--teal);
  font-weight: 900;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-list details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}
.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}
.faq-list p { margin: 12px 0 0; color: var(--muted); }
.hospital-city { margin-top: 42px; }
.hospital-city:first-child { margin-top: 0; }
.hospital-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.path-card,
.tier-card,
.finder-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(6,27,45,.06);
}
.path-card {
  overflow: hidden;
  padding: 0;
}
.path-card h3,
.path-card p,
.path-card .path-meta,
.path-card .section-link { margin-left: 22px; margin-right: 22px; }
.path-card h3 { margin-top: 22px; }
.path-card .section-link { margin-bottom: 22px; }
.path-meta {
  margin: 18px 0;
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
}
.path-meta span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}
.path-meta strong { color: var(--navy); }
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.tier-card ul { margin: 16px 0 0; padding-left: 20px; color: var(--muted); }
.tier-card li { margin: 8px 0; }
.finder-form {
  display: grid;
  gap: 18px;
}
.finder-form fieldset {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}
.finder-form legend {
  padding: 0 8px;
  color: var(--navy);
  font-weight: 900;
}
.finder-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 16px;
  margin-top: 12px;
}
.finder-options label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 700;
}
.finder-result {
  margin-top: 24px;
  padding: 26px;
  border: 1px solid rgba(15,118,110,.28);
  border-radius: 12px;
  background: #eef9f6;
}
.finder-result[hidden] { display: none; }
.hospital-card,
.resource-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(6,27,45,.06);
}
.hospital-card h3,
.resource-card h3 { color: var(--navy); }
.hospital-card h4 {
  margin: 18px 0 6px;
  color: var(--navy);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hospital-card p,
.resource-card p { color: var(--muted); }
.status-pill {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #e9fbf8;
  font-size: 12px;
  font-weight: 900;
}
.legal-body {
  max-width: 980px;
  color: var(--muted);
}
.legal-body h2 { margin-top: 42px; color: var(--navy); font-size: clamp(1.8rem, 4vw, 3.5rem); }
.legal-body h2:first-child { margin-top: 0; }
.legal-body a { color: var(--teal-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.pricing-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.pricing-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}
.pricing-list h3 { font-size: 20px; }
.pricing-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 34px);
}
.pricing-plan {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(6,27,45,.08);
}
.pricing-plan.featured {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, var(--teal-dark), var(--navy));
}
.pricing-plan h2 {
  margin: 4px 0 12px;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1.05;
}
.pricing-plan strong {
  display: block;
  margin: 0 0 22px;
  color: var(--teal-dark);
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
}
.pricing-plan.featured strong,
.pricing-plan.featured .eyebrow { color: var(--teal-light); }
.pricing-plan.featured .plain-list { color: rgba(255,255,255,.82); }
.pricing-plan .plain-list li { margin: 12px 0; }
.self-pay-note,
.illustrative-scenario {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(15,118,110,.22);
  border-radius: 18px;
  background: linear-gradient(135deg, #f7fffd 0%, #ffffff 62%);
  box-shadow: 0 18px 48px rgba(6,27,45,.07);
}
.self-pay-note p,
.illustrative-scenario p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.self-pay-note p + p,
.illustrative-scenario p + p { margin-top: 16px; }
.illustrative-scenario .scenario-disclaimer {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #e9fbf8;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.v4-hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.v4-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v4-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,27,45,.92), rgba(6,27,45,.52) 48%, rgba(6,27,45,.18)),
    linear-gradient(0deg, rgba(6,27,45,.74), transparent 46%);
}
.v4-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  padding: clamp(90px, 10vw, 150px) clamp(22px, 7vw, 96px);
}
.v4-hero h1 {
  max-width: 980px;
  margin: 0 0 24px;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: .92;
  letter-spacing: 0;
}
.v4-hero p {
  max-width: 700px;
  color: rgba(255,255,255,.82);
  font-size: clamp(19px, 2vw, 25px);
}
.v4-impact {
  padding: clamp(54px, 7vw, 96px) clamp(20px, 6vw, 88px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: #071f33;
}
.v4-impact article {
  min-height: 250px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.v4-impact strong {
  color: var(--white);
  font-size: clamp(1.2rem, 3vw, 2rem);
  overflow-wrap: break-word;
  line-height: 1.2;
}
.v4-impact p { color: rgba(255,255,255,.70); font-weight: 800; }
.v4-section {
  padding: clamp(82px, 9vw, 138px) clamp(20px, 6vw, 88px);
  background: var(--white);
}
.v4-section.subtle { background: #f5faf9; }
.v4-section.dark { color: var(--white); background: linear-gradient(135deg, var(--navy), var(--navy-soft)); }
.v4-heading {
  max-width: 980px;
  margin-bottom: 44px;
}
.v4-heading span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}
.v4-section.dark .v4-heading span { color: var(--teal-light); }
.v4-heading h2 {
  margin: 0;
  max-width: min(100%, 1040px);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1.02;
}
.v4-heading p { max-width: 780px; color: var(--muted); font-size: 19px; }
.v4-section.dark .v4-heading p { color: rgba(255,255,255,.72); }
.v4-photo-grid,
.v4-program-grid,
.v4-package-grid,
.v4-steps {
  display: grid;
  gap: 22px;
}
.v4-photo-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.v4-photo-card,
.v4-program,
.v4-package {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 22px 70px rgba(6,27,45,.10);
}
.v4-photo-card img,
.v4-program img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.v4-photo-card div,
.v4-program div { padding: 24px; }
.v4-photo-card p { color: var(--muted); }
.v4-equipment-section {
  background: linear-gradient(180deg, #f8fbfc 0%, #eef7f6 100%);
}
.v4-equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.v4-equipment-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(6,27,45,.10);
  border-radius: 30px;
  background: var(--navy);
  box-shadow: 0 24px 70px rgba(6,27,45,.14);
}
.v4-equipment-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.v4-equipment-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(6,27,45,.92) 0%, rgba(6,27,45,.62) 38%, rgba(6,27,45,.08) 74%),
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 34%);
}
.v4-equipment-card:hover img { transform: scale(1.035); }
.v4-equipment-card div {
  position: relative;
  z-index: 1;
  padding: 24px;
}
.v4-equipment-card h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 24px;
}
.v4-equipment-card p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 15px;
}
.v4-cost-time {
  background: var(--white);
}
.v4-compare-list {
  display: grid;
  gap: 16px;
}
.v4-compare-row {
  display: grid;
  grid-template-columns: minmax(190px, .62fr) repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fbfdfd;
  box-shadow: 0 16px 44px rgba(6,27,45,.06);
}
.v4-compare-row h3 {
  margin: 0;
  padding: 18px;
  display: flex;
  align-items: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
}
.v4-compare-row div {
  padding: 18px;
  border: 1px solid rgba(15,118,110,.12);
  border-radius: 18px;
  background: var(--white);
}
.v4-compare-row strong {
  display: block;
  color: var(--navy);
}
.v4-compare-row p {
  margin: 8px 0 0;
  color: var(--muted);
}
.v4-compare-row .v4-savings {
  border-color: rgba(15,118,110,.24);
  background: linear-gradient(180deg, #f3fbf9, #ffffff);
}
.v4-savings p {
  color: var(--teal-dark);
  font-weight: 900;
}
.pricing-footnote {
  max-width: 980px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.v4-city-tier {
  background:
    radial-gradient(circle at top right, rgba(20,184,166,.16), transparent 34%),
    linear-gradient(135deg, #061b2d 0%, #0a304a 60%, #073f43 100%);
  color: var(--white);
}
.v4-city-tier .v4-heading span { color: var(--teal-light); }
.v4-city-tier .v4-heading p { color: rgba(255,255,255,.74); }
.v4-city-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.v4-city-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
  box-shadow: 0 28px 76px rgba(0,0,0,.22);
}
.v4-city-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--teal-light);
  font-weight: 900;
}
.v4-city-card h3 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
}
.v4-city-card ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(255,255,255,.78);
}
.v4-city-card li { margin: 12px 0; }
.v4-city-example {
  max-width: 980px;
  margin: 26px 0 10px;
  padding: 20px 22px;
  border-left: 4px solid var(--teal-light);
  border-radius: 14px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.08);
}
.v4-city-tier .quiet-note { color: rgba(255,255,255,.74); }
.v4-program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}
.v4-program {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.v4-program div {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.v4-program h3 {
  min-height: 0;
  margin-top: 0;
}
.v4-program p { margin: 10px 0; color: var(--muted); }
.v4-program strong { display: block; color: var(--navy); }
.v4-program .button { width: 100%; margin-top: auto; }
.v4-tcm {
  background: linear-gradient(180deg, #f7f4ef, #edf9f5);
}
.v4-steps { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.v4-steps article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}
.v4-steps span { color: var(--teal-dark); font-weight: 900; }
.v4-package-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.v4-package {
  padding: 34px;
  color: var(--ink);
}
.v4-package.featured { color: var(--white); background: linear-gradient(145deg, var(--teal-dark), var(--navy)); }
.v4-package strong { display: block; margin: 16px 0; font-size: clamp(46px, 5vw, 76px); }
.v4-final {
  padding: clamp(86px, 9vw, 144px) clamp(20px, 6vw, 88px);
  color: var(--white);
  background: linear-gradient(135deg, #061b2d, #0F766E);
}
.v4-final h2 {
  max-width: 900px;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
}
.v4-final p { max-width: 720px; color: rgba(255,255,255,.78); font-size: 19px; }

.v2-hero {
  min-height: min(860px, calc(100vh - 74px));
  padding: clamp(74px, 8vw, 124px) clamp(20px, 6vw, 88px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 18%, rgba(94,234,212,.24), transparent 34%),
    linear-gradient(135deg, #061b2d 0%, #0a304a 52%, #07484b 100%);
}
.v2-hero h1 {
  max-width: 820px;
  margin: 0 0 24px;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: .95;
  letter-spacing: 0;
}
.v2-hero p { max-width: 720px; color: rgba(255,255,255,.78); font-size: clamp(18px, 2vw, 23px); }
.v2-collage {
  min-height: 680px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  grid-template-rows: 1.1fr .9fr .9fr;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.06)),
    rgba(255,255,255,.10);
  box-shadow: 0 38px 110px rgba(0,0,0,.32);
  backdrop-filter: blur(16px);
}
.v2-photo {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  margin: 0;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 26px;
  background: var(--navy);
  box-shadow: 0 24px 60px rgba(6,27,45,.24);
}
.v2-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,27,45,.02) 20%, rgba(6,27,45,.68) 100%),
    radial-gradient(circle at 80% 18%, rgba(255,255,255,.18), transparent 34%);
  content: "";
}
.v2-photo.large { grid-row: span 2; min-height: 360px; }
.v2-photo.wide { grid-column: span 2; }
.v2-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.v2-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(6,27,45,.62);
  font-weight: 900;
  backdrop-filter: blur(10px);
}
.v2-impact {
  padding: clamp(52px, 7vw, 92px) clamp(20px, 6vw, 88px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background:
    radial-gradient(circle at 14% 0%, rgba(94,234,212,.18), transparent 34%),
    linear-gradient(135deg, #061b2d, #0d2c45);
}
.v2-impact article {
  min-height: 260px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.05)),
    rgba(255,255,255,.08);
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
}
.v2-impact strong {
  display: block;
  color: var(--white);
  font-size: clamp(40px, 5.4vw, 82px);
  line-height: .94;
}
.v2-impact p { margin: 18px 0 0; color: rgba(255,255,255,.74); font-weight: 700; }
.v2-disclaimer {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}
.v2-compare-list {
  display: grid;
  gap: 16px;
}
.v2-compare-grid,
.v2-program-grid,
.v2-package-grid {
  display: grid;
  gap: 22px;
}
.v2-compare-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.v2-compare-card,
.v2-program-card,
.v2-package {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(6,27,45,.08);
}
.v2-compare-card {
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(180px, .45fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}
.v2-card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }
.v2-card-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #e7f8f4;
  font-weight: 900;
  font-size: 12px;
}
.v2-compare-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.v2-compare-columns div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
}
.v2-compare-columns p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.v2-program-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.v2-program-card .v2-photo {
  min-height: 210px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.v2-program-body { padding: 22px; }
.v2-program-body .button { width: 100%; margin-top: 18px; }
.v2-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.v2-meta-grid span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-size: 13px;
}
.v2-meta-grid strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
}
.v2-package-section {
  color: var(--white);
  background: linear-gradient(135deg, #061b2d, #0d2c45);
}
.v2-package-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.v2-package {
  padding: 30px;
  color: var(--ink);
}
.v2-package.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--teal-dark), var(--navy));
  transform: translateY(-10px);
}
.v2-package span { color: var(--teal-dark); font-weight: 900; text-transform: uppercase; font-size: 12px; letter-spacing: .12em; }
.v2-package.featured span,
.v2-package.featured .quiet-note,
.v2-package.featured li,
.v2-package.featured p { color: rgba(255,255,255,.78); }
.v2-package strong {
  display: block;
  margin: 14px 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .95;
}
.v2-package ul { margin: 22px 0 0; padding-left: 20px; color: var(--muted); }
.v2-tcm-major {
  background:
    radial-gradient(circle at 82% 16%, rgba(94,234,212,.20), transparent 34%),
    linear-gradient(180deg, #f7f4ef, #edf9f5);
}
.v2-tcm-major h2 { max-width: 980px; font-size: clamp(1.8rem, 4vw, 3.5rem); }
.v2-tcm-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 38px 0 30px;
}
.v2-tcm-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(6,27,45,.10);
}
.v2-tcm-card .v2-photo {
  min-height: 280px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.v2-tcm-card h3 { padding: 22px; }
.v2-timeline {
  display: grid;
  grid-template-columns: repeat(8, minmax(130px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.v2-timeline article {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}
.v2-timeline span { color: var(--teal-dark); font-weight: 900; }
.v2-final-cta {
  padding: clamp(72px, 8vw, 118px) clamp(20px, 6vw, 88px);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
}
.v2-final-cta h2 {
  max-width: 900px;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
}
.v2-final-cta p { max-width: 720px; color: rgba(255,255,255,.78); font-size: 18px; }

@media (max-width: 980px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .site-nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .hero,
  .home-hero,
  .v2-hero,
  .contact-section,
  .content-grid,
  .pricing-plan-grid,
  .site-footer,
  .comparison-grid,
  .page-hero.visual-hero,
  .tcm-showcase { grid-template-columns: 1fr; }
  .v2-collage { min-height: 560px; }
  .v2-impact,
  .v2-compare-grid,
  .v2-program-grid,
  .v2-package-grid,
  .v2-tcm-card-grid,
  .v4-impact,
  .v4-equipment-grid,
  .v4-photo-grid.four,
  .v4-program-grid,
  .v4-package-grid,
  .v4-steps,
  .v4-city-grid { grid-template-columns: 1fr 1fr; }
  .v4-compare-row { grid-template-columns: 1fr; }
  .v2-compare-card { grid-template-columns: 1fr; }
  .problem-stats,
  .impact-grid,
  .steps-grid,
  .card-grid,
  .pricing-grid,
  .path-grid,
  .tier-grid,
  .equipment-grid,
  .tcm-grid,
  .destination-grid,
  .hospital-grid,
  .resource-grid,
  .visual-grid,
  .comparison-path-grid,
  .support-visual-grid,
  .support-grid,
  .reassurance-grid { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .service-row strong,
  .service-row span { border-right: 0; border-bottom: 1px solid var(--line); }
  .next-timeline ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .next-timeline li::after { content: ""; }
}

@media (max-width: 620px) {
  .problem-stats,
  .impact-grid,
  .steps-grid,
  .card-grid,
  .pricing-grid,
  .path-grid,
  .tier-grid,
  .equipment-grid,
  .tcm-grid,
  .destination-grid,
  .hospital-grid,
  .resource-grid,
  .visual-grid,
  .comparison-path-grid,
  .support-visual-grid,
  .support-grid,
  .reassurance-grid { grid-template-columns: 1fr; }
  .impact-grid { margin-top: 0; padding-top: 22px; }
  .problem-stats { padding: 0; }
  .problem-stats div { border-right: 0; border-bottom: 1px solid var(--line); }
  .cost-table > div { grid-template-columns: 1fr; }
  .hero-actions { display: grid; }
  .workflow article { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .v2-hero { min-height: auto; }
  .v2-collage {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .v2-photo,
  .v2-photo.large,
  .v2-photo.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }
  .v2-impact,
  .v2-compare-grid,
  .v2-program-grid,
  .v2-package-grid,
  .v2-tcm-card-grid,
  .v2-compare-columns,
  .v4-impact,
  .v4-equipment-grid,
  .v4-photo-grid.four,
  .v4-program-grid,
  .v4-package-grid,
  .v4-steps,
  .v4-city-grid { grid-template-columns: 1fr; }
  .v4-hero { min-height: calc(100vh - 74px); }
  .v4-hero-content { padding-top: 150px; }
  .v4-equipment-card { min-height: 320px; }
  .v4-photo-card img,
  .v4-program img { height: 260px; }
  .v2-package.featured { transform: none; }
  .v2-meta-grid { grid-template-columns: 1fr; }
  .form-grid,
  .finder-options,
  .next-timeline ol { grid-template-columns: 1fr; }
}
