@scope (main) {
/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
button { font: inherit; border: none; background: none; cursor: pointer; }
a { text-decoration: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p, h1, h2, h3, h4 { margin: 0; }

/* ---------- Tokens ---------- */
:scope {
  --color-primary: #0a91b4;
  --color-primary-dark: #008cb1;
  --color-text: #1e1e1e;
  --color-black: #000000;
  --color-border: #c8cdd8;
  --color-bg: #ffffff;
  --color-tint: rgba(81, 247, 247, 0.05);

  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --container-max: 1152px;
  --page-padding: clamp(20px, 5vw, 144px);

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 96px;
}

html { scroll-behavior: smooth; }

:scope {
  display: block;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

.container {
  max-width: calc(var(--container-max) + 2 * var(--page-padding));
  margin: 0 auto;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}

.eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-black);
  display: block;
  margin-bottom: var(--space-sm);
}

.eyebrow--gradient {
  background: linear-gradient(270deg, #008daf 0.01%, rgba(0, 198, 209, 0.9) 50%, #008daf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.4px;
  color: var(--color-text);
}

.section-heading strong { font-weight: 600; }

.section-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
  letter-spacing: -0.28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.3px;
  padding: 14px 28px;
  border-radius: 8px;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}

.btn:hover { opacity: 0.85; }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 48px;
  padding: 12px 24px;
}

.btn-text {
  background: none;
  color: var(--color-primary);
  padding: 0;
}

section {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

@media (max-width: 900px) {
  section { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
  :scope { --page-padding: 24px; --space-lg: 2rem; --space-xl: 2rem; }
}

/* ---------- Buttons (shared, hero variants) ---------- */
.btn-outline {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, #44c7f5 0%, #908cbb 50%, #e492a8 75%, #ffd99a 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
  color: #fff;
  border-radius: 48px;
  padding: 12px 24px;
}

.btn-primary {
  border: 2px solid var(--color-primary);
  border-radius: 48px;
  padding: 12px 24px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text);
  flex-shrink: 0;
}

.nav__logo i { color: var(--color-primary); font-size: 22px; }

.nav__toggle {
  display: none;
  font-size: 22px;
  color: var(--color-text);
}

.nav__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-lg);
  flex: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
}

.nav__links i { font-size: 10px; margin-left: 4px; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
}

.nav__providers { color: #6b7280; white-space: nowrap; }

.nav__phone {
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary-dark));
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
    padding: var(--space-md) 24px;
    border-bottom: 1px solid var(--color-border);
  }
  .nav__menu.is-open { display: flex; }
  .nav__links { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
  .nav__actions { flex-direction: column; align-items: stretch; }
}

/* ---------- Hero ---------- */
.hero-outcomes-frame { position: relative; z-index: 0; }

.hero-outcomes-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 48px;
  border-bottom: 1px solid var(--color-primary-dark);
  border-right: 1px solid var(--color-primary-dark);
  border-bottom-right-radius: 200px;
  pointer-events: none;
  z-index: -1;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
}

.hero__foreground {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  max-height: 640px;
  width: auto;
  max-width: 55%;
  object-fit: contain;
  object-position: bottom right;
  z-index: 1;
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 2; width: 100%; }

.hero__copy { max-width: 780px; }

.eyebrow--light { color: #fff; }

.hero__headline {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: capitalize;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.12;
  color: #fff;
  margin-bottom: var(--space-md);
}

.hero__highlight {
  background: linear-gradient(357deg, var(--color-primary-dark) 0%, rgba(105, 228, 228, 0.8) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

@media (max-width: 900px) {
  .hero-outcomes-frame::after { right: 5px; border-bottom-right-radius: 60px; }
  .hero { min-height: 0; padding-bottom: 20rem; }
  .hero__foreground { display: none; }
  .hero__overlay { background: rgba(0, 0, 0, 0.55); }
  .hero__copy { text-align: center; margin: 0 auto; }
  .hero__actions { justify-content: center; }
  .hero__headline { font-size: 24px; }
  .hero__headline br { display: none; }
  .hero__headline-line { display: block; margin-top: 2rem; }
}

@media (max-width: 700px) {
  .hero__actions .btn,
  .treat-carousel-btn .btn,
  .treat-team__copy .btn,
  .cta__copy .btn,
  .quote__inner .btn {
    width: 100%;
    justify-content: center;
  }
}

.btn-outline-teal {
  position: relative;
  background: transparent;
  color: var(--color-primary);
  border-radius: 48px;
  padding: 12px 24px;
}

.hero .btn-outline-teal,
.treat-team__copy .btn-outline-teal { color: #fff; }

.btn-outline-teal::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(90deg, #44c7f5 0%, #908cbb 50%, #e492a8 75%, #ffd99a 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.text-primary { color: var(--color-primary); }

/* ---------- Patient Outcomes ---------- */
.outcomes-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: 72px;
}

.outcomes-intro__copy .section-heading { margin: var(--space-sm) 0 var(--space-md); }

.stat-row {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.stat-inline {
  border-left: 3px solid #4fc3d1;
  padding-left: var(--space-sm);
  max-width: 224px;
}

.stat-inline__number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.96px;
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, rgba(105, 228, 228, 0.8) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-inline__label {
  display: block;
  font-size: 14px;
  color: var(--color-text);
  margin-top: 4px;
}

.outcomes-table-wrap { position: relative; }
.outcomes-table__scroll { overflow-x: auto; }

.outcomes-table__highlight {
  position: absolute;
  top: -12px;
  bottom: -12px;
  width: 24%;
  border: 1px solid var(--color-primary);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.outcomes-table__highlight--patients { left: 41.5%; }
.outcomes-table__highlight--improved { left: 72.5%; }
.outcomes-table__highlight--needs { left: 73%; }

.outcomes-table-wrap--needs { max-width: 870px; margin: 0 auto var(--space-xl); }

.outcomes-table-wrap--needs .outcomes-table th:first-child,
.outcomes-table-wrap--needs .outcomes-table td:first-child { text-align: left; }

.outcomes-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--font-heading);
  text-align: center;
}

.outcomes-table th {
  font-weight: 400;
  font-size: 14px;
  color: #3c3c3c;
  padding: var(--space-sm) 16px var(--space-sm);
}

.outcomes-table td {
  padding: 18px 16px;
  font-size: 16px;
  color: var(--color-black);
}

.outcomes-table tbody tr:nth-child(odd) td { background: rgba(81, 247, 247, 0.1); }
.outcomes-table tbody tr:nth-child(even) td { background: #fff; }

.outcomes-table td:first-child {
  border-radius: 10px 0 0 10px;
  font-weight: 500;
}

.outcomes-table td:last-child { border-radius: 0 10px 10px 0; }

.outcomes-table td.is-highlight { font-weight: 700; color: var(--color-primary); }

.outcomes-table tr.is-total td { font-weight: 700; }

.outcomes-proof {
  text-align: center;
  padding: 0 0 var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.outcomes-proof__heading, .outcomes-proof__footer {
  max-width: 1440px;
}

.stat-cards {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.stat-card {
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(96.02deg, rgba(255, 255, 255, 0.891228) 0%, rgba(0, 140, 177, 0.8) 15%, #008cb1 85%, #ffffff 100%),
    linear-gradient(180deg, #008cb1 0%, #003b4b 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box, border-box;
  border: 1px solid transparent;
  border-radius: 40px;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  flex: 1 1 220px;
  max-width: 280px;
}

.stat-card__number {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 40px;
  color: var(--color-primary);
}

.stat-card__label { font-size: 15px; line-height: 1.6; }

.outcomes-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.outcomes-cta__image {
  border-radius: 100px 0 100px 0;
  overflow: hidden;
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border: 0;
}

.outcomes-cta__image button img{
  height: auto !important;
}

.yt-facade {
  position: relative;
  cursor: pointer;
}

.yt-facade__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border: none;
  border-radius: 50%;
  /* background: var(--color-primary); */
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.yt-facade__play i { margin-left: 3px; }

.yt-facade:hover .yt-facade__play,
.yt-facade__play:hover {
  /* background: var(--color-primary-dark); */
  transform: translate(-50%, -50%) scale(1.08);
}

.outcomes-cta__copy .section-heading,
.outcomes-cta__copy .section-body { display: block; margin-top: var(--space-sm); }

@media (max-width: 900px) {
  .outcomes-intro, .outcomes-cta { grid-template-columns: 1fr; }
  .outcomes-cta__image { order: -1; aspect-ratio: 16/10; border-radius: 60px 0 60px 0; }
  .outcomes-table { font-size: 14px; }
  .stat-card { padding: 24px; flex: 1 1 100%; max-width: none; }
}

/* ---------- Shared section intro ---------- */
.section-intro {
  max-width: 730px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

.patient-story .section-intro {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.patient-story .section-intro .eyebrow { margin-bottom: 0; }
.patient-story .section-intro .section-heading { margin: 0; }

.patient-needs .section-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.patient-needs .section-intro .eyebrow { margin-bottom: 0; }
.patient-needs .section-intro .section-heading { margin: 0; }

.treatment-journey .section-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.treatment-journey .section-intro .eyebrow { margin-bottom: 0; }
.treatment-journey .section-intro .section-heading { margin: 0; }

.section-intro .section-heading { margin: var(--space-sm) 0 var(--space-md); }

/* ---------- Treatment Journey (stepper) ---------- */
.journey {
  position: relative;
  background: transparent;
  border-radius: 40px;
  padding: 32px;
}

.journey::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background:
    linear-gradient(244.04deg, rgba(255, 255, 255, 0.8) 0%, #008cb1 15%, #008cb1 85%, rgba(255, 255, 255, 0.8) 100%),
    linear-gradient(180deg, #008cb1 0%, #003b4b 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

#patient-story-journey {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 600px;
}

#patient-story-journey .testimonial__tabs {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 2;
  margin-bottom: 0;
  backdrop-filter: blur(13.193819999694824px);
}

#patient-story-journey .journey__panel {
  display: flex;
  min-height: 600px;
  padding: 150px 32px 32px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.60) -34.89%, rgba(255, 255, 255, 0.75) 70.46%);
}

#patient-story-journey .journey__col-left {
  width: 50%;
  padding-right: 32px;
}

#patient-story-journey .journey__col-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  padding-top: 100px;
}

#patient-story-journey .journey__media {
  margin: -96px 4px 0px 0;
  height: calc(100% + 92px);
}

#patient-story-journey .journey__media--accordion,
#patient-story-journey .journey__media--scans {
  margin: 0;
  height: 100%;
}

.journey__panel { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: stretch; }

.journey__col-left { display: flex; flex-direction: column; justify-content: space-between; }

.journey__col-right { position: relative; }

.journey__copy { display: none; }
.journey__copy.is-active { display: block; }

.journey__step-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.journey__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.48px;
  margin-bottom: var(--space-sm);
}

.journey__text { font-size: 14px; line-height: 1.9; display: flex; flex-direction: column; gap: var(--space-sm); }

.journey__list { padding-left: 20px; list-style: disc; display: flex; flex-direction: column; gap: 4px; }
.journey__list--two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px; }

.journey__media {
  display: none;
  margin: -28px -28px -28px 0;
  height: calc(100% + 56px);
  border-radius: 36px;
  overflow: hidden;
}
.journey__media.is-active { display: block; }

.journey__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.journey__media--scans,
.journey__media--accordion {
  margin: 0;
  height: 100%;
  border-radius: 0;
  overflow-y: auto;
}

.journey__media--scans.is-active { position: relative; display: block; height: 100%; }

.journey__media.journey__media--step1-image.is-active { display: none; }

.scan-compare__box {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 70%;
  z-index: 0;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 36px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  justify-content: flex-end;
}

.scan-compare { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.scan-compare__item { display: flex; flex-direction: column; gap: 8px; }
.scan-compare__item img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; background: #000; border: none; }
.scan-compare__label { text-align: center; font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: #fff; }
.scan-compare__quote {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background-image:
    linear-gradient(-90deg, rgba(255,255,255,0.72), rgba(255,255,255,0.9)),
    linear-gradient(244.04deg, rgba(255, 255, 255, 0.8) 0%, #008cb1 15%, #008cb1 85%, rgba(255, 255, 255, 0.8) 100%),
    linear-gradient(180deg, #008cb1 0%, #003b4b 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box, border-box;
  border: 1px solid transparent;
  border-radius: 60px 0 60px 0;
  padding: 20px 32px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  width: 88%;
}

.accordion { display: flex; flex-direction: column; gap: 8px; margin-right: 10px; }
.accordion__item { background: #fff; border: 1px solid var(--color-border); border-radius: 24px; overflow: hidden; }
.accordion__item.is-open { background: rgba(81, 247, 247, 0.05); border-color: var(--color-primary); }
.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--color-black);
}
.accordion__item.is-open .accordion__header { color: var(--color-primary); }
.accordion__header i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-black);
  font-size: 13px;
  flex-shrink: 0;
}
.accordion__item.is-open .accordion__header i { border-color: var(--color-primary); color: var(--color-primary); }
.accordion__body { display: none; padding: 0 20px 20px; font-size: 15px; line-height: 1.7; }
.accordion__item.is-open .accordion__body { display: block; }
.accordion__divider { height: 1px; background: #ebeef4; margin: 4px 0; }

.journey__nav { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-md); margin-top: var(--space-lg); }

.journey__next {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-primary);
}

.journey__dots { display: flex; gap: 12px; flex-wrap: wrap; }
.journey__dot { width: 60px; height: 4px; border-radius: 50px; background: var(--color-border); }
.journey__dot.is-active { background: var(--color-primary); }

@media (max-width: 900px) {
  .journey { padding: 8px; border-radius: 20px; }
  .journey::before {
    background: var(--color-primary);
  }
  .journey__panel { grid-template-columns: 1fr; }
  .accordion { margin-right: 0; }
  .journey__dots { flex-wrap: nowrap; gap: 8px; width: 100%; }
  .journey__dot { flex: 1 1 0; min-width: 0; width: auto; }
  .journey__media { margin: 0 -20px -20px -20px; height: auto; border-radius: 0 0 36px 36px; }
  .journey__media--accordion { margin: 0; padding: 5px; height: auto; max-height: none; overflow-y: visible; }
  .journey__media--scans, .journey__media--scans.is-active {
    position: relative;
    margin: 0;
    height: auto;
    max-height: none;
    overflow: visible;
  }
  .journey__media img { height: 320px; }
  .scan-compare__box {
    position: static;
    min-height: 0;
    margin-top: 10rem;
    padding-top: 10rem;
  }
  .scan-compare { grid-template-columns: 1fr; }
  .scan-compare__item img { height: auto; }
  .scan-compare__quote {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88%;
    margin: 0;
  }

  #treatment-journey .journey__col-left { display: contents; }
  #treatment-journey .journey__col-right { display: contents; }
  #treatment-journey .journey__copy { display: contents; }

  #treatment-journey .journey__step-header,
  #treatment-journey .journey__text {
    display: none;
  }
  #treatment-journey .journey__step-header.is-active {
    display: block;
  }
  #treatment-journey .journey__text.is-active {
    display: flex;
  }

  #treatment-journey .journey__step-header {
    order: 0;
    border-radius: 12px;
    border: 1px solid #008cb1;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.72) -34.89%, rgba(255, 255, 255, 0.90) 70.46%), rgba(105, 228, 228, 0.50);
    padding: var(--space-sm) var(--space-md);
    text-align: center;
  }
  #treatment-journey .journey__media:not(.journey__media--accordion) { order: 2; margin: 0; margin-top: -0.5rem; border-radius: 12px; }
  #treatment-journey .journey__media--scans:not(.journey__media--accordion) { margin-top: -3.5rem; }
  #treatment-journey .journey__media img { border-radius: 12px; }
  #treatment-journey .journey__text { order: 3; padding: 20px; }
  #treatment-journey .journey__media--accordion { order: 4; }
  #treatment-journey .journey__nav { order: 5; align-items: center; padding: 0 20px; margin-top: 0; margin-bottom: 20px; }
  .journey__list--two-col { grid-template-columns: 1fr; }

  #patient-story-journey .testimonial__tabs {
    position: static;
    margin: 0 auto;
    margin-top: 6px;
    max-width: 98%;
    overflow-x: visible;
    backdrop-filter: none;
  }
  .testimonial__tabs::before { display: none; }
  .testimonial__tab { display: none; }
  .testimonial__tab.is-active { display: block; width: 100%; }
  #patient-story-journey .journey__panel { flex-direction: column; min-height: 0; padding: 10px; gap: 2rem; }
  #patient-story-journey .journey__col-left { display: contents; }
  #patient-story-journey .journey__col-right { display: contents; }
  #patient-story-journey .journey__media { height: auto; margin: 0; }
  #patient-story-journey .journey__media img { height: 320px; border-radius: 20px; }
  #patient-story-journey .journey__copy { padding: 0 20px; }
  #patient-story-journey .journey__nav { order: 2; align-items: center; padding: 0 20px; margin-top: 0; margin-bottom: 20px; }

  #patient-story-journey .journey__media:not(.journey__media--accordion) { order: -1; }
  #patient-story-journey .journey__media--accordion { order: 1; }

  #patient-story-journey .journey__media.journey__media--step1-image.is-active { display: block; }
}

/* ---------- What We Treat ---------- */
.what-we-treat {
  position: relative;
  overflow: hidden;
  border-radius: 100px 100px 0 0;
  background: linear-gradient(180deg, #046781 0%, #0a91b4 100%);
  color: #fff;
  padding-top: var(--space-xl);
}

.what-we-treat__texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 0;
}

.what-we-treat__content { position: relative; z-index: 1; }

.section-intro--light .section-heading { color: #fff; }
.section-intro--light .section-body { color: rgba(255, 255, 255, 0.9); }

.eyebrow--gold { color: #ecd099; }

.treat-carousel {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.treat-carousel__arrow {
  flex-shrink: 0;
  font-size: 24px;
  color: #fff;
  opacity: 0.8;
}
.treat-carousel__arrow:hover { opacity: 1; }

.treat-carousel__track {
  display: flex;
  gap: var(--space-md);
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  flex: 1;
  padding: 4px;
}

.treat-card {
  scroll-snap-align: start;
  flex: 0 0 320px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.treat-card img { width: 100%; height: 140px; object-fit: cover; }

.treat-card__placeholder-img {
  width: 100%;
  height: 140px;
  background: #e6eef1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-border);
  font-size: 28px;
}

.treat-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-primary);
  /* margin: 20px 24px 0; */
}

.treat-carousel-btn{
  display: flex;
  justify-content: center;
  margin: var(--space-lg) 0;
}

.treat-carousel-btn a {
  color: white;
}

.treat-card p { font-size: 14px; line-height: 1.7; color: var(--color-text); letter-spacing: -0.28px; /*margin: 12px 24px 24px;*/ }

.treat-card .btn{
  /* margin: 0 24px 24px; */
  background: none;
  color: var(--color-primary);
  max-width: max-content;
}

.treat-card-body{
  padding: 20px 17px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
}

.treat-card-header{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.treat-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding-bottom: var(--space-xl);
}

.treat-team .section-heading, .treat-team .section-body { color: #fff; display: block; margin-top: var(--space-sm); }

.treat-team__copy .btn { margin-top: var(--space-md); }

.treat-team__image {
  border-radius: 120px 0 120px 0;
  width: 100%;
  aspect-ratio: 500/354;
  object-fit: cover;
}

.treat-carousel__load-more {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin: 0 0 var(--space-md);
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
}

.treat-carousel__load-more i { display: none; }

@media (max-width: 900px) {
  .what-we-treat { border-radius: 60px 60px 0 0; }
  .treat-team { grid-template-columns: 1fr; }
  .treat-team__image { order: -1; border-radius: 60px 0 60px 0; }

  .treat-carousel__arrow { display: none; }
  .treat-carousel__track {
    flex-direction: column;
    overflow: visible;
    scroll-snap-type: none;
  }
  .treat-card { flex: none; width: 100%; }
  .treat-card:nth-child(n+4) { display: none; }
  .treat-carousel__track.is-expanded .treat-card { display: flex; }
  .treat-carousel__load-more { display: flex; }
}

/* ---------- Quote ---------- */
.quote__inner {
  max-width: 1440px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.quote__divider {
  width: 870px;
  max-width: 100%;
  height: 6px;
  border-radius: 70px;
  background: linear-gradient(180deg, rgba(0, 198, 209, 0.9) 0%, rgba(0, 141, 175, 0.67) 100%);
  backdrop-filter: blur(13.19px);
  margin-top: calc(144px - var(--space-md));
}

.quote__icon { width: 76px; height: 56px; }

.quote__text {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.5;
  letter-spacing: -0.8px;
}

.quote__attribution {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
}

@media (max-width: 900px) {
  .quote__icon { display: none; }
  .quote__divider {
    width: 80%;
    max-width: 100%;
    height: 6px;
    border-radius: 70px;
    background: linear-gradient(180deg, rgba(0, 198, 209, 0.9) 0%, rgba(0, 141, 175, 0.67) 100%);
    backdrop-filter: blur(13.19px);
    margin-top: var(--space-md);
  }
}

/* ---------- Patient Story / Testimonial tabs ---------- */
.testimonial__tabs {
  position: relative;
  display: flex;
  gap: 8px;
  background: transparent;
  border-radius: 50px;
  padding: 8px;
  margin-bottom: 2rem;
  overflow-x: auto;
}

.testimonial__tabs::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background:
    linear-gradient(244.04deg, rgba(255, 255, 255, 0.8) 0%, #008cb1 15%, #008cb1 85%, rgba(255, 255, 255, 0.8) 100%),
    linear-gradient(180deg, #008cb1 0%, #003b4b 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.testimonial__tab {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 14px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-primary-dark);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(105, 228, 228, 0.8);
}

.testimonial__tab.is-active { background: var(--color-primary-dark); color: #fff; }

@media (max-width: 700px) {
  .testimonial__tab { min-width: 110px; font-size: 14px; padding: 12px 14px; }
}

/* ---------- Engagement (vertical bar chart) ---------- */
.engagement__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.engagement__copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.engagement__copy .eyebrow { margin-bottom: 0; }

.bar-chart__title {
  text-align: center;
  font-size: 13px;
  color: #202234;
  margin-bottom: var(--space-md);
}

.bar-chart--vertical__plot { position: relative; }

.bar-chart--vertical__gridlines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
}

.grid-row {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(-50%);
}
.grid-row:nth-child(1) { top: 0%; }
.grid-row:nth-child(2) { top: 20%; }
.grid-row:nth-child(3) { top: 40%; }
.grid-row:nth-child(4) { top: 60%; }
.grid-row:nth-child(5) { top: 80%; }
.grid-row:nth-child(6) { top: 100%; }

.grid-row__num {
  width: 28px;
  flex-shrink: 0;
  text-align: right;
  font-size: 12px;
  color: #202234;
  opacity: 0.5;
}

.grid-row__line { flex: 1; border-top: 1px solid #d9d9d9; }

.bar-chart--vertical__bars {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: var(--space-md);
  margin-left: 36px;
}

.v-bar { display: flex; flex-direction: column; align-items: center; flex: 1; gap: var(--space-sm); }

.v-bar__track { width: 100%; height: 220px; display: flex; align-items: flex-end; justify-content: center; }

.v-bar__col {
  width: 100px;
  border-radius: 10px;
  border: 1px solid #202234;
  background: #eafcfd;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5px;
  position: relative;
}

.v-bar__col.is-filled {
  background: linear-gradient(180deg, #00c6d1 0%, #008daf 100%);
  border-color: #008daf;
}

.v-bar__value {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  background: #fff;
  border-radius: 6px;
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: #008daf;
}
.v-bar__value.is-muted { color: #202234; opacity: 0.75; background: #fff; }

.v-bar__label { font-size: 13px; font-family: var(--font-heading); color: #202234; }

@media (max-width: 900px) {
  .engagement__grid { grid-template-columns: 1fr; }
  .bar-chart { min-width: 0; }
  .bar-chart--vertical__plot { overflow-x: auto; }
  .bar-chart--vertical__bars { margin-left: 0; gap: var(--space-xs); }
  .v-bar__col { width: 92px; }
  .grid-row__num { display: none; }
  .grid-row:nth-child(1), .grid-row:nth-child(2) { display: none; }
}

/* ---------- Compliance stats ---------- */
.compliance-stats { position: relative; }

.compliance-stats::before {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 180px;
  background: linear-gradient(180deg, #00c6d1 0%, rgba(0, 141, 175, 0.9) 100%), #fff;
  backdrop-filter: blur(13.19px);
  z-index: 0;
}

.compliance-stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: end;
}

.compliance-stats__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.compliance-stats__media { position: relative; height: 480px; }

.compliance-stats__media-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

.compliance-card {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.6) -34.89%, rgba(255, 255, 255, 0.75) 70.46%);
  backdrop-filter: blur(13.19px);
  border: 1px solid var(--color-primary-dark);
  border-radius: 80px 0;
  padding: 40px 72px;
  text-align: center;
}

.compliance-card__number {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.4;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.compliance-card__label { font-size: 15px; color: #3c3c3c; }

@media (max-width: 900px) {
  .compliance-stats::before { height: 64px; }
  .compliance-stats__grid { grid-template-columns: 1fr; }
  .compliance-stats__media {
    height: auto;
    width: 436px;
    margin-left: -95px;
  }
  .compliance-stats__media-image { height: auto; }
  .compliance-card { border-radius: 60px 0; padding: 32px 24px; }
  .compliance-card__number { font-size: 21px; }
  .compliance-card__label { width: 100%; font-size: 14px; font-weight: 600; }
}

/* ---------- Patient needs ---------- */
.patient-needs__callout {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.4));
  border: 1px solid rgba(105, 228, 228, 0.8);
  border-radius: 120px 0 120px 0;
  padding: var(--space-lg) var(--space-lg);
  text-align: center;
}

.patient-needs__callout p {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.45;
  color: var(--color-primary);
  letter-spacing: -0.64px;
}

@media (max-width: 900px) {
  .patient-needs__callout { border-radius: 60px 0; }
}

@media (max-width: 700px) {
  .outcomes-table-wrap--needs .outcomes-table { font-size: 13px; }
}

/* ---------- Closing CTA ---------- */
.cta { position: relative; z-index: 0; }

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 48px;
  border-top: 1px solid var(--color-primary-dark);
  border-right: 1px solid var(--color-primary-dark);
  border-top-right-radius: 200px;
  pointer-events: none;
  z-index: -1;
}

.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.cta__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}

.cta__copy .eyebrow { margin-bottom: 0; }
.cta__copy .section-heading { text-transform: capitalize; margin: 0; }

.cta__image {
  border-radius: 120px 0 120px 0;
  width: 100%;
  aspect-ratio: 500/354;
  object-fit: cover;
}

@media (max-width: 900px) {
  .cta { margin-top: 37.4%; }
  .cta::before { right: 5px; border-top-right-radius: 60px; }
  .cta__grid { grid-template-columns: 1fr; }
  .cta__image { order: -1; border-radius: 60px 0 60px 0; margin-top: -50.4%; }
  .cta__copy { align-items: center; text-align: center; }
}

/* ============================================================
   ATLANTA LOCATION PAGE
   ============================================================ */

/* ---------- Atlanta hero ---------- */
.atl-hero {
  position: relative;
  overflow: hidden;
  min-height: 465px;
  display: flex;
  align-items: center;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.atl-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.atl-hero__inner { position: relative; z-index: 1; width: 100%; }

.atl-hero__copy { color: #fff; max-width: 700px; }

.atl-hero__published {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--secondary-400, #ffd99a);
  margin-bottom: var(--space-sm);
}

.atl-hero__headline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.25;
  color: #fff;
  margin-bottom: var(--space-md);
}

.atl-hero__headline .hero__highlight {
  font-weight: 700;
  text-transform: capitalize;
  background: linear-gradient(90deg, rgba(0, 198, 209, 0.9) 3.36%, rgba(105, 228, 228, 0.7) 29.33%, rgba(105, 228, 228, 0.8) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.atl-hero__body { font-family: var(--font-heading); font-weight: 500; font-size: 20px; line-height: 1.5; color: #fff; }
.atl-hero__body strong { font-weight: 700; }

.atl-hero__reviewed {
  display: block;
  margin-top: var(--space-md);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  font-style: italic;
  color: #ffd99a;
}
.atl-hero__reviewed a { color: #ffd99a; text-decoration: underline; }

@media (max-width: 900px) {
  .atl-hero { min-height: 0; }
  .atl-hero__bg { object-position: 75% center; }
}

/* ---------- Intro two-col ---------- */
.atl-intro { padding-top: var(--space-xl); }

#intro .section-heading { font-weight: 400; line-height: 1.5; }
#intro .section-body { font-size: 16px; line-height: 1.5; letter-spacing: normal; }
#intro .atl-split__media img { border-radius: 100px 0 100px 0; }
#intro .atl-split { grid-template-columns: 1fr minmax(0, 594px); }

#intro .atl-callout { max-width: none; }
#intro .atl-callout p { max-width: 768px; margin-left: auto; margin-right: auto; font-size: 20px; line-height: 1.5; }

.atl-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.atl-split--reverse .atl-split__media { order: 2; }

.atl-split__media img {
  width: 100%;
  aspect-ratio: 504/433;
  object-fit: cover;
  border-radius: 0 90px 0 90px;
  display: block;
}

.atl-split__media--sm img { aspect-ratio: 4/3; border-radius: 0 60px 0 60px; }

.atl-split__copy .section-heading { margin-bottom: var(--space-sm); }
.atl-split__copy .section-body + .section-body,
.atl-split__copy .section-body + p { margin-top: var(--space-sm); }
.atl-split__copy .section-body { display: block; }
.atl-split__copy .section-body + .atl-actions { margin-top: var(--space-md); }

.atl-actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

@media (max-width: 900px) {
  .atl-split, .atl-split--reverse { grid-template-columns: 1fr; }
  .atl-split--reverse .atl-split__media { order: -1; }
  #intro .atl-split { grid-template-columns: 1fr; }
}

/* ---------- Tint callout ---------- */
.atl-callout {
  background: rgba(81, 247, 247, 0.12);
  border-radius: 40px;
  padding: var(--space-lg);
  text-align: center;
  max-width: 1000px;
  margin: var(--space-xl) auto 0;
}
.atl-callout p { font-size: 16px; line-height: 1.9; color: var(--color-text); }
.atl-callout p + p { margin-top: var(--space-sm); }
.atl-callout .atl-actions { justify-content: center; margin-top: var(--space-md); }

/* ---------- Approach comparison table ---------- */
.atl-compare {
  position: relative;
  overflow: hidden;
  background: rgba(81, 247, 247, 0.1);
  border-radius: 32px;
  padding: var(--space-lg);
  margin-top: var(--space-xl);
}

.atl-compare::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 40%);
  border-radius: 0 37px 37px 37px;
  background: linear-gradient(180deg, rgba(10, 145, 180, 0.25) 0%, rgba(81, 247, 247, 0.25) 100%);
  z-index: 0;
}

.atl-compare__head, .atl-compare__row { position: relative; z-index: 1; }

.atl-compare__head {
  display: grid;
  grid-template-columns: 1fr minmax(0, 400px);
  gap: var(--space-md);
  padding: 0 0 var(--space-sm);
}

.atl-compare__head span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 30px;
  text-transform: capitalize;
}
.atl-compare__head span:first-child { color: var(--color-primary); }
.atl-compare__head span:last-child { color: var(--color-black); padding-left: 5rem; }

.atl-compare__row {
  display: grid;
  grid-template-columns: 1fr minmax(0, 400px);
  gap: var(--space-md);
  padding: 14px 0;
  border-top: 1px solid rgba(10, 145, 180, 0.18);
  align-items: center;
}

.atl-compare__row span {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.45;
  text-transform: capitalize;
  color: var(--color-black);
}
.atl-compare__row span:last-child { padding-left: 5rem; }
.atl-compare__x { display: block; width: 25px; height: 25px; flex-shrink: 0; }

@media (max-width: 700px) {
  .atl-compare__head span { font-size: 20px; }
  .atl-compare__row span { font-size: 14px; }
}

/* ---------- Scan definition ---------- */
#what-is-spect { position: relative; z-index: 0; }
#what-is-spect::before {
  content: "";
  position: absolute;
  inset: 0;
  right: 48px;
  background: rgba(81, 247, 247, 0.12);
  border-radius: 0 0 200px 0;
  z-index: -1;
}
#what-is-spect .section-heading { line-height: 1.5; }
#what-is-spect .section-body { font-size: 16px; line-height: 1.5; letter-spacing: normal; }

@media (max-width: 900px) {
  #what-is-spect::before { right: 20px; border-radius: 0 0 60px 0; }
}

.atl-scans {
  background: #000;
  border-radius: 87.85px 0 87.85px 0;
  padding: var(--space-lg) var(--space-md);
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.atl-scans figure { margin: 0; text-align: center; }
.atl-scans img { width: 100%; margin: 0 auto; display: block; }
.atl-scans figure:first-child img { max-width: 195px; }
.atl-scans figure:last-child img { max-width: 155px; }
.atl-scans figcaption {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  margin-top: var(--space-xs);
}

.atl-scans-list { padding-left: 18px; list-style: disc; font-size: 16px; line-height: 1.5; margin: var(--space-sm) 0; }
.atl-scans-list strong { font-weight: 600; }
.atl-scans-note { font-size: 12px; font-style: italic; color: var(--color-primary-dark); line-height: 1.5; margin: var(--space-sm) 0; }

/* ---------- SPECT vs MRI/CT ---------- */
.atl-vs {
  max-width: 1008px;
  margin: 0 auto;
  text-align: center;
}
.atl-vs .eyebrow { justify-content: center; }
.atl-vs .section-heading { margin-top: var(--space-sm); line-height: 1.45; letter-spacing: -0.64px; }

#spect-vs-mri .section-body { font-size: 16px; line-height: 1.5; letter-spacing: normal; }

#how-we-use-spect .section-intro { max-width: 1008px; }
#how-we-use-spect .section-heading { line-height: 1.45; letter-spacing: -0.64px; }
#how-we-use-spect .section-body { font-size: 16px; line-height: 1.5; letter-spacing: normal; }
#how-we-use-spect .section-body strong { font-weight: 600; }
#how-we-use-spect .atl-split__media img { aspect-ratio: 502/356; border-radius: 120px 0 120px 0; object-fit: contain; background: transparent; }

.atl-vs-card {
  max-width: var(--container-max);
  margin: var(--space-lg) auto 0;
  background: rgba(81, 247, 247, 0.12);
  border-radius: 32px;
  padding: var(--space-md) var(--space-lg);
  text-align: left;
}
.atl-vs-row {
  display: grid;
  grid-template-columns: 160px 500px;
  justify-content: center;
  gap: var(--space-md);
  align-items: center;
  padding: 20px 0;
}
.atl-vs-row + .atl-vs-row { border-top: 1px solid rgba(10, 145, 180, 0.18); }
.atl-vs-row dt {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 30px;
  text-transform: capitalize;
  color: var(--color-primary);
}
.atl-vs-row dd {
  max-width: 500px;
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.45;
  text-transform: capitalize;
  color: var(--color-black);
}

@media (max-width: 700px) {
  .atl-vs-row { grid-template-columns: 1fr; gap: 4px; }
  .atl-vs-row dt { font-size: 22px; }
}

/* ---------- Video placeholder card ---------- */
.atl-video-card {
  position: relative;
  border: 1px solid var(--color-primary);
  border-radius: 0 40px 0 40px;
  overflow: hidden;
  aspect-ratio: 611/390;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
}
.atl-video-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; z-index: 0; }
.atl-video-card__label { position: relative; z-index: 1; }
.atl-video-card__label span {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-primary);
  letter-spacing: 1px;
}
.atl-video-card__label small { display: block; margin-top: 8px; font-size: 14px; color: var(--color-text); }

/* ---------- Teal band (generic reusable) ---------- */
.atl-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #046781 0%, #0a91b4 100%);
  color: #fff;
  border-radius: 100px 100px 0 0;
}
.atl-band + .atl-band { border-radius: 0; margin-top: -1px; }
.atl-band .eyebrow--gold { display: block; text-align: center; }
.atl-band .section-heading { color: #fff; }

#psychiatric-diagnosis { border-radius: 0 0 100px 0; }
#psychiatric-diagnosis .eyebrow--gold { text-align: left; }
#psychiatric-diagnosis .section-heading { font-weight: 500; line-height: 1.5; }
#psychiatric-diagnosis .section-body { font-size: 16px; line-height: 1.5; letter-spacing: normal; }
#psychiatric-diagnosis .atl-split__media img { border-radius: 90px 0 90px 0; }
#psychiatric-diagnosis .atl-split { align-items: start; }

@media (max-width: 900px) {
  #psychiatric-diagnosis { border-radius: 0 0 60px 0; }
}

#spect-examples { padding-top: var(--space-xl); }
#spect-examples .section-heading { line-height: 1.5; }
#spect-examples .journey__list li { font-family: var(--font-body); font-weight: 600; font-size: 16px; line-height: 1.5; }
#spect-examples .section-body { font-size: 16px; line-height: 1.5; letter-spacing: normal; }
#spect-examples .section-body a { text-decoration: underline; }
#spect-examples .atl-split__media img { border-radius: 105px 0 105px 0; }
#spect-examples .atl-callout { max-width: none; }
#spect-examples .atl-callout p {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 25px;
  line-height: 1.5;
  color: var(--color-black);
}
#spect-examples .atl-callout strong { font-weight: 600; }
.atl-band .section-body { color: rgba(255, 255, 255, 0.92); }

.atl-band__list {
  padding-left: 18px;
  list-style: disc;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  margin: var(--space-sm) 0;
}

@media (max-width: 900px) {
  .atl-band { border-radius: 60px 60px 0 0; }
}

/* ---------- Gradient divider ---------- */
.atl-divider {
  width: 100%;
  max-width: 1152px;
  height: 4px;
  margin: 0 auto;
  border-radius: 70px;
  background: linear-gradient(90deg, #44c7f5 0%, #908cbb 33%, #e492a8 66%, #ffd99a 100%);
}

.atl-topbar {
  width: 100vw;
  height: 15px;
  margin-left: calc(50% - 50vw);
  background: linear-gradient(270deg, rgba(1, 196, 177, 0.20) 1.44%, rgba(0, 140, 177, 0.20) 19.23%, rgba(147, 144, 181, 0.50) 33.65%, rgba(229, 146, 168, 0.20) 63.46%, rgba(248, 213, 150, 0.40) 87.5%);
  backdrop-filter: blur(9.108039855957031px);
}

#why-spect { background-color: #51F7F71A; }

/* ---------- Duo slider (2-panel, reuses .journey machinery) ---------- */
.atl-duo {
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0.6) 34.886%, rgba(255, 255, 255, 0.75) 70.456%);
  backdrop-filter: blur(13.194px);
}
.atl-duo .journey__panel { grid-template-columns: 1fr 1fr; }
.atl-duo .journey__media { border-radius: 36px; }
.atl-duo .journey__media img { aspect-ratio: 600/663; }
.atl-duo .journey__col-left { justify-content: flex-start; gap: var(--space-md); }
.atl-duo .eyebrow { margin-bottom: 0; }
.atl-duo .journey__title { font-family: var(--font-heading); font-weight: 400; font-size: 32px; letter-spacing: -0.64px; line-height: 1.45; color: var(--color-text); margin-top: var(--space-sm); }
.atl-duo .journey__text { font-size: 16px; line-height: 1.5; color: var(--color-black); }
.atl-duo .journey__text a { text-decoration: underline; }
.atl-duo .btn-text { font-family: var(--font-heading); font-weight: 600; font-size: 18px; letter-spacing: -0.306px; color: var(--color-primary); display: inline-flex; align-items: center; gap: 8px; margin-top: var(--space-md); }
.atl-duo .journey__dots { margin-top: var(--space-sm); }
.atl-duo .journey__dot { width: 112px; }

@media (max-width: 900px) {
  .atl-duo .journey__panel { grid-template-columns: 1fr; }
}

/* ---------- Four Circles of Health ---------- */
.atl-circles {
  border-radius: 37px;
  border: 0.5px solid #0A91B4;
  background: rgba(81, 247, 247, 0.10);
  padding: var(--space-md) var(--space-lg);
  margin-top: var(--space-lg);
}
.atl-circles__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: 18px 0;
}
.atl-circles__row + .atl-circles__row { border-top: 1px solid rgba(10, 145, 180, 0.18); }
.atl-circles__row dt { font-family: var(--font-heading); font-weight: 500; font-size: 25px; color: var(--color-primary-dark); }
.atl-circles__row dd { max-width: 720px; margin: 0; font-family: var(--font-heading); font-weight: 400; font-size: 20px; line-height: 1.45; color: var(--color-black); }

@media (max-width: 700px) {
  .atl-circles__row { grid-template-columns: 1fr; gap: 4px; }
}

.atl-video-callout {
  margin-top: var(--space-md);
  border-radius: 0 37px 0 37px;
  border: 0.5px solid #0A91B4;
  background: rgba(81, 247, 247, 0.10);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.65;
  color: var(--color-black);
}
.atl-video-callout p { max-width: 608px; margin: 0 auto; }
.atl-video-callout a { color: var(--color-primary-dark); font-weight: 600; text-decoration: underline; }

/* ---------- What happens: image + 3 info cards ---------- */
.atl-band__media {
  width: 100%;
  aspect-ratio: 900/360;
  object-fit: cover;
  border-radius: 24px;
  margin: var(--space-lg) 0;
  display: block;
}

.atl-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.atl-info-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0 32px 0 32px;
  padding: var(--space-md);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
}

@media (max-width: 900px) {
  .atl-info-cards { grid-template-columns: 1fr; }
}

/* ---------- Evaluation comparison table ---------- */
.atl-eval-wrap { overflow-x: auto; margin-top: var(--space-lg); }

.atl-eval-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0 2px;
  background: rgba(81, 247, 247, 0.12);
  border-radius: 24px;
}

.atl-eval-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-primary);
  text-align: left;
  padding: var(--space-md) var(--space-sm) var(--space-sm);
}
.atl-eval-table th:not(:first-child):not(:nth-child(2)) { text-align: center; }

.atl-eval-table td {
  padding: 14px var(--space-sm);
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid rgba(10, 145, 180, 0.15);
  vertical-align: top;
}
.atl-eval-table td:first-child { font-weight: 700; color: var(--color-black); }
.atl-eval-table td:nth-child(2) { color: #3c3c3c; }
.atl-eval-table td:not(:first-child):not(:nth-child(2)) { text-align: center; }
.atl-eval-table i { color: var(--color-primary); font-size: 18px; }

/* ---------- White call-now card ---------- */
.atl-call-card {
  position: relative;
  max-width: 900px;
  margin: var(--space-xl) auto 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 0 48px 0 48px;
  padding: var(--space-lg);
  text-align: center;
}
.atl-call-card p {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-primary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}
.atl-call-card small { display: block; font-size: 13px; color: var(--color-text); margin-bottom: var(--space-md); }

.atl-band .atl-call-card { background: #fff; }

.atl-call-card--dark {
  background: linear-gradient(180deg, #046781 0%, #0a91b4 100%);
  border: none;
  color: #fff;
}
.atl-call-card--dark p { color: #fff; }
.atl-call-card--dark a { color: #fff; }
.atl-call-card--dark .btn-outline-teal { color: #fff; }

/* ---------- Testimonial / avatar carousel ---------- */
.atl-avatars { margin-top: var(--space-lg); }
.atl-avatar-card {
  scroll-snap-align: start;
  flex: 0 0 260px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  color: var(--color-text);
}
.atl-avatar-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.atl-avatar-card__body { padding: var(--space-sm) var(--space-md) var(--space-md); }
.atl-avatar-card__name { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--color-primary); margin-bottom: 4px; }
.atl-avatar-card__title { font-size: 14px; line-height: 1.5; }

.atl-band .btn-outline-teal { color: #fff; }

/* ---------- Pill lists (Conditions / Personalized Care) ---------- */
.atl-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-md);
  margin: var(--space-lg) 0;
}
.atl-pill {
  border: 1.5px solid var(--color-primary);
  border-radius: 50px;
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-primary);
}

@media (max-width: 700px) {
  .atl-pills { grid-template-columns: 1fr; }
}

/* ---------- Local care ---------- */
.atl-local {
  background: rgba(81, 247, 247, 0.12);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}
.atl-local .section-heading { text-align: center; margin-bottom: var(--space-lg); }
.atl-local__media img {
  width: 100%;
  aspect-ratio: 500/300;
  object-fit: cover;
  border-radius: 0 60px 0 60px;
  display: block;
}

/* ---------- FAQ ---------- */
.atl-faq { max-width: 900px; margin: var(--space-lg) auto 0; }
.atl-faq .accordion__item { border-radius: 20px; }
.atl-faq .accordion__header { font-size: 16px; }

.atl-meta-links { max-width: 900px; margin: var(--space-md) auto 0; display: flex; flex-direction: column; gap: 8px; }

}
