:root {
  --teal: #2eaeb0;
  --teal-dark: #25989a;
  --navy: #1b2c7a;
  --wa: #25d366;
  --wa-dark: #1fba58;
  --text-dark: #232323;
  --bg-soft: #f5f5f5;
  --section-space: clamp(2.5rem, 4.5vw, 4rem);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: var(--text-dark);
  overflow-x: hidden;
}

.blink{
        font-size:50px;
        font-weight:bold;
        color:#ff0000;
        text-shadow:0 0 10px #ff0000;
        animation:kelapKelip 1s infinite;
        text-align: center;
    }

    @keyframes kelapKelip{
        0%{
            opacity:1;
        }
        50%{
            opacity:0;
        }
        100%{
            opacity:1;
        }
    }

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(245, 245, 245, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.section-band {
  padding: calc(var(--section-space) / 2) 0;
}

.section-band + .section-band {
  padding-top: calc(var(--section-space) / 2);
}

.hero-section {
  padding-top: 0;
  padding-bottom: 0;
}

.band-soft {
  background: var(--bg-soft);
}

.band-white {
  background: #ffffff;
}

.navbar {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  margin-right: 0;
}

.brand-mark {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--navy));
}

.brand-logo {
  width: 180px;
  height: auto;
  object-fit: contain;
  display: block;
  max-width: none;
}

.brand-text {
  color: #4470aa;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
}

.nav-link {
  color: #242424;
  font-size: 0.82rem;
  margin-left: 0.75rem;
}

.nav-link:hover {
  color: var(--teal-dark);
}

.hero-card {
  background: transparent;
  border-radius: 18px;
  min-height: 420px;
  overflow: hidden;
  position: relative;
  margin-top: 0.5rem;
}

.hero-video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  opacity: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-label {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  margin: 0;
  font-size: 0.95rem;
}

.decision-item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.decision-section .container {
  max-width: 1080px;
}

.decision-section .row {
  --bs-gutter-y: 2rem;
}

.decision-title {
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: 800;
  margin: 0;
}

.decision-copy {
  font-size: 0.96rem;
  line-height: 1.75;
  margin: 0;
}

.decision-item--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.decision-item--compact {
  grid-template-columns: minmax(340px, 500px) minmax(0, 1fr);
}

.decision-copy-block {
  min-width: 0;
}

.decision-video {
  background: #f6f6f6;
  color: var(--text-dark);
  border-radius: 24px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.5rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.decision-video--media {
  background: transparent;
  padding: 0;
  overflow: hidden;
  box-shadow: none;
  min-height: 0;
}

.decision-video--split {
  min-height: 250px;
}

.decision-video--split .hero-video {
  min-height: 250px;
}

.decision-video:not(.decision-video--media) {
  background: transparent;
  padding: 0;
  overflow: hidden;
  box-shadow: none;
  min-height: 0;
}

.decision-video span {
  max-width: 80%;
  display: inline-block;
}

.comparison-section {
  padding-top: calc(var(--section-space) / 1.1);
}

.quote-section {
  padding-bottom: 0.25rem;
}

.quote-section + .comparison-section {
  padding-top: 0.75rem;
}

.comparison-pill {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 0.7rem 2rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  box-shadow: 0 10px 20px rgba(46, 174, 176, 0.18);
}

.comparison-title {
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 800;
  margin: 0 0 1.6rem;
}

.comparison-point {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}

.comparison-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.comparison-pillline {
  background: var(--navy);
  color: #fff;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}

.comparison-body {
  max-width: none;
  margin: 0;
  width: 100%;
}

@media (min-width: 992px) {
  .comparison-point.comparison-point--xl {
    gap: 1.5rem;
    margin-bottom: 3.2rem;
  }

  .comparison-point.comparison-point--xl .comparison-number {
    width: 68px;
    height: 68px;
    font-size: 1.9rem;
  }

  .comparison-point.comparison-point--xl .comparison-pillline {
    padding: 1.1rem 2.4rem;
    font-size: 1.8rem;
    line-height: 1.2;
  }
}

.comparison-subtitle {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.comparison-copy {
  line-height: 1.75;
  margin-bottom: 0.25rem;
  text-align: justify;
  text-justify: inter-word;
}

.comparison-images + .comparison-copy {
  margin-top: 0.85rem;
  margin-bottom: 0.25rem;
  font-size: 0.97rem;
  line-height: 1.7;
}

.typing-copy {
  display: block;
}

.js .typing-copy {
  visibility: hidden;
}

.js .typing-copy.is-ready {
  visibility: visible;
}

.typing-copy__text {
  display: inline;
}

.typing-copy__caret {
  display: inline-block;
  width: 0.55ch;
  margin-left: 0.08em;
  border-right: 2px solid currentColor;
  animation: typing-caret-blink 0.8s step-end infinite;
  transform: translateY(0.02em);
}

@keyframes typing-caret-blink {
  50% {
    border-right-color: transparent;
  }
}

.comparison-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.1rem;
  width: min(100%, 620px);
  margin: 0.3rem auto 0.25rem;
  align-items: start;
}

.comparison-image-item {
  min-width: 0;
}

.comparison-image-card {
  background: transparent;
  border-radius: 16px;
  padding: 0;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  box-shadow: none;
}

.comparison-image-card img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  display: block;
}

.comparison-image-card img.comparison-image--large {
  width: 100%;
}

.comparison-image-card img.comparison-image--small {
  width: 100%;
  max-width: 100%;
  max-height: 300px;
  margin: 0 auto;
}

.comparison-caption {
  text-align: center;
  font-size: 0.85rem;
  font-style: italic;
  margin: 0.35rem 0 1rem;
  color: #4b4b4b;
}

.integrative-section {
  padding-top: calc(var(--section-space) / 1.2);
}

.integrative-title {
  text-align: left;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.6rem;
}

.integrative-main {
  margin-bottom: 1.8rem;
}

.integrative-copy {
  font-size: 0.95rem;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
}

.integrative-copy p {
  margin-bottom: 1rem;
}

.integrative-copy--intro p {
  margin-bottom: 0;
}

.integrative-copy--secondary {
  width: 100%;
  max-width: none;
  margin: 0 0 1.75rem;
  font-size: 0.95rem;
  line-height: 1.75;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
}

.integrative-copy--secondary p {
  margin-bottom: 0;
}

.integrative-video-card {
  background: #0a1b63;
  color: #ffffff;
  border-radius: 28px;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 700;
  padding: 1.8rem;
  box-shadow: 0 14px 28px rgba(10, 27, 99, 0.2);
}

.integrative-video-card > span {
  display: block;
  max-width: 90%;
  line-height: 1.45;
}

.integrative-video-card--media {
  background: transparent;
  box-shadow: none;
  padding: 0;
  overflow: hidden;
  border-radius: 36px;
}

.integrative-video-card--media .integrative-media {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  border-radius: inherit;
}

.integrative-media--small {
  width: 82%;
  max-width: 82%;
}

.integrative-video-card--media .hero-video {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  display: block;
  border-radius: inherit;
}

.integrative-videos > .col-12.col-md-5 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.integrative-video-main {
  min-height: 190px;
}

.integrative-caption {
  width: 100%;
  max-width: 100%;
  margin: 0.55rem auto 1.15rem;
  font-size: 0.92rem;
  line-height: 1.65;
  font-style: normal;
  color: #1f2d3d;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
}

.integrative-caption--center {
  max-width: 760px;
  text-align: center;
  text-align-last: center;
}

.integrative-section .integrative-videos {
  margin-top: 1.5rem;
}

.microblood-section {
  padding-top: calc(var(--section-space) / 1.1);
}

.microblood-card {
  max-width: none;
  margin: 0;
  width: 100%;
  text-align: center;
}

.microblood-highlight {
  display: inline-block;
  background: #1fa5a7;
  color: #ffffff;
  padding: 0.65rem 1.2rem;
  border-radius: 6px;
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 600;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.microblood-ref {
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0.9rem 0 1.1rem;
  color: #2b2b2b;
}

.microblood-banner {
  background: #1fa5a7;
  color: #ffffff;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 600;
  margin: 1.1rem 0 1.2rem;
}

.microblood-section .integrative-videos {
  margin-top: 0.3rem;
}

.microblood-section .integrative-videos > .col-md-6 {
  display: flex;
  justify-content: center;
}

.microblood-section .integrative-videos .integrative-video-card--media {
  width: 100%;
  background: transparent;
  box-shadow: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

.microblood-section .integrative-videos .integrative-video-card--media .integrative-media,
.microblood-section .integrative-videos .integrative-video-card--media .hero-video {
  max-height: 330px;
  height: auto;
}

.microblood-media-shell {
  width: min(100%, 420px);
  border-radius: 24px !important;
  overflow: hidden !important;
  line-height: 0;
  background: transparent;
}

.microblood-media-shell .integrative-media,
.microblood-media-shell .hero-video {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 24px !important;
  overflow: hidden;
  object-fit: cover;
}

.microblood-media-shell .hero-video {
  height: 100%;
  min-height: 0;
}

.microblood-copy {
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  text-align: justify;
  text-justify: inter-word;
}

.ekg-section {
  padding-top: calc(var(--section-space) / 1.1);
}

.ekg-card {
  max-width: none;
  margin: 0;
  width: 100%;
  text-align: center;
}

.ekg-pill {
  display: inline-block;
  background: var(--teal);
  color: #ffffff;
  padding: 0.5rem 1.4rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 auto 1.1rem;
}

.ekg-image {
  background: #f6f6f6;
  border-radius: 14px;
  padding: 0.75rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.ekg-image img {
  width: 78%;
  max-width: 78%;
  display: block;
  border-radius: 10px;
  margin: 0 auto;
}

.ekg-caption {
  font-size: 0.85rem;
  margin: 0.6rem 0 0.9rem;
  color: #2b2b2b;
}

.ekg-copy {
  font-size: 0.94rem;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
  margin: 0;
}

.conventional-section {
  padding-top: calc(var(--section-space) / 1.1);
}

.conventional-block {
  max-width: none;
  margin: 0 0 1.5rem;
  width: 100%;
  /* text-align: center; */
}

.conventional-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.conventional-copy {
  font-size: 0.94rem;
  line-height: 1.75;
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
}

.conventional-notes {
  max-width: none;
  margin: 0;
  width: 100%;
  display: grid;
  gap: 1.2rem;
}

.note-card {
  border: 1.6px solid var(--teal);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.7rem;
  align-items: flex-start;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.note-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
}

.note-bullet {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
}

.echo-section {
  padding-top: calc(var(--section-space) / 1.1);
}

.echo-top {
  margin-bottom: 1.5rem;
}

.echo-bottom {
  margin-bottom: 1.5rem;
}

.echo-bottom + .conventional-notes {
  margin-top: 1.25rem;
}

.echo-copy {
  font-size: 0.94rem;
  line-height: 1.75;
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
}

.echo-image-card {
  background: transparent;
  border-radius: 24px;
  padding: 0;
  box-shadow: none;
  overflow: hidden;
}

.echo-top .echo-image-card {
  width: min(100%, 390px);
  margin: 0 auto;
}

.echo-image-card img,
.echo-image-card video {
  width: 100%;
  display: block;
  border-radius: inherit;
}

.echo-image-large {
  padding: 0;
  display: flex;
  justify-content: center;
}

.echo-image-large video {
  width: min(100%, 390px);
  height: auto;
}

.echo-note {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
  font-style: italic;
}

.stress-section {
  padding-top: calc(var(--section-space) / 1.1);
}

.stress-pill {
  display: block;
  background: var(--teal);
  color: #fff;
  padding: 0.5rem 1.4rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  width: fit-content;
  margin: 0 auto 1rem;
}

.stress-copy {
  font-size: 0.94rem;
  line-height: 1.75;
  margin: 0 0 1rem;
  text-align: justify;
  text-justify: inter-word;
}

.stress-block {
  margin-bottom: 1.5rem;
}

.stress-subtitle {
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.stress-result {
  margin-top: 0.4rem;
}

.stress-image-card {
  background: #f6f6f6;
  border-radius: 14px;
  padding: 0.65rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.stress-image-card img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.stress-image-card .stress-media--small {
  width: 70%;
  max-width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.stress-note {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
  font-style: italic;
}

.perfusion-section {
  padding-top: calc(var(--section-space) / 1.1);
}

.perfusion-pill {
  display: block;
  background: var(--teal);
  color: #fff;
  padding: 0.55rem 1.4rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  width: fit-content;
  margin: 0 auto 1.2rem;
}

.perfusion-block {
  margin-bottom: 1.6rem;
}

.perfusion-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.perfusion-copy {
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  text-align: justify;
  text-justify: inter-word;
}

.perfusion-section .perfusion-block .row.align-items-start {
  margin-bottom: 1.25rem;
}

.perfusion-section .perfusion-block .row.align-items-start + .perfusion-copy {
  margin-top: 1rem;
}

.perfusion-image-card {
  background: #f6f6f6;
  border-radius: 24px;
  padding: 0.6rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.perfusion-image-card.perfusion-image-card--media {
  background: transparent;
  padding: 0;
  overflow: hidden;
  box-shadow: none;
}

.perfusion-section .perfusion-image-card.perfusion-image-card--media {
  width: min(100%, 390px);
  margin: 0 auto;
}

.perfusion-block--split .perfusion-image-card.perfusion-image-card--media {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.perfusion-image-card img {
  width: 100%;
  display: block;
  border-radius: inherit;
}

.perfusion-image-card--media video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

.perfusion-ref {
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 0.8rem;
  color: #2b2b2b;
}

.perfusion-mpi-gallery {
  margin-top: 0.5rem;
}

.perfusion-mpi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.perfusion-mpi-caption {
  margin: 0.7rem 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #2b2b2b;
}

@media (min-width: 992px) {
  .perfusion-block--split .perfusion-copy {
    margin-bottom: 0;
  }

  .perfusion-block--split .perfusion-image-card.perfusion-image-card--media {
    height: 100%;
  }

  .perfusion-block--split .perfusion-image-card.perfusion-image-card--media video {
    height: 100%;
    object-fit: cover;
  }
}

.success-section {
  padding-top: calc(var(--section-space) / 1.1);
}

.success-block {
  max-width: none;
  margin: 0 0 1.6rem;
  width: 100%;
  text-align: center;
}

.success-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  text-align: left;
}

.success-copy {
  font-size: 0.94rem;
  line-height: 1.75;
  margin: 0 0 1rem;
  text-align: justify;
  text-justify: inter-word;
}

.success-ref {
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  color: #2b2b2b;
  text-align: justify;
}

.treatment-section {
  padding-top: calc(var(--section-space) / 1.1);
  padding-bottom: 0;
}

.treatment-section p {
  text-align: justify;
  text-justify: inter-word;
}

.treatment-section i {
  display: block;
  text-align: justify;
  text-justify: inter-word;
}

.treatment-title {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.treatment-copy {
  font-size: 0.94rem;
  line-height: 1.75;
  margin: 0 0 1rem;
  text-align: justify;
  text-justify: inter-word;
}

.treatment-section .container > .treatment-copy:last-child {
  margin-bottom: 0;
}

.treatment-pill {
  display: inline;
  background: var(--teal);
  color: #fff;
  padding: 0.5rem 1.4rem;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  width: fit-content;
  margin: 0.6rem auto 0.9rem;
}

.treatment-video {
  background: #f6f6f6;
  color: var(--text-dark);
  border-radius: 24px;
  min-height: 150px;
  width: min(100%, 860px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 1rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  margin: 0.4rem auto 1.6rem;
  overflow: hidden;
}

.treatment-video span {
  max-width: 80%;
  display: inline-block;
}

.treatment-video__frame {
  width: 100%;
  max-width: 100%;
  border-radius: 18px;
  overflow: hidden;
  line-height: 0;
}

.treatment-video__media {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 0;
  object-fit: cover;
}

.followup-section {
  padding-top: 1.6rem;
}

.followup-video {
  background: #f6f6f6;
  color: var(--text-dark);
  border-radius: 24px;
  min-height: 140px;
  width: min(100%, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.9rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  margin: 0 auto 1.6rem;
  max-width: none;
  overflow: hidden;
}

.followup-video span {
  max-width: 80%;
  display: inline-block;
}

.followup-video > video {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 18px;
  -webkit-clip-path: inset(0 round 18px);
  clip-path: inset(0 round 18px);
  object-fit: cover;
}

.followup-body {
  max-width: none;
  margin: 0;
  width: 100%;
}

.followup-copy {
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  text-align: justify;
  text-justify: inter-word;
}

.followup-ref {
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 1rem;
  color: #2b2b2b;
}

.followup-highlight {
  display: inline;
  background: #1fa5a7;
  color: #fff;
  padding: 0.12rem 0.45rem 0.16rem;
  border-radius: 6px;
  font-weight: 700;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.followup-banner {
  background: #1fa5a7;
  color: #ffffff;
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 1.3rem 0 1.4rem;
}

.followup-title {
  /* text-align: center; */
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.support-section {
  padding-top: calc(var(--section-space) / 1.1);
}

.support-pill {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 0.6rem 1.7rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 10px 20px rgba(27, 44, 122, 0.18);
}

.support-list {
  margin: 2rem 0 0;
  display: grid;
  gap: 1.4rem;
  max-width: none;
  width: 100%;
}

.support-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.75rem;
  align-items: center;
}

.support-media {
  width: 280px;
  height: 190px;
  background: #f6f6f6;
  border-radius: 40px;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.support-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  display: block;
}

.support-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.support-content h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--teal);
}

.support-content p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.divider-space {
  height: 110px;
}

.image-wrap {
  position: relative;
  width: fit-content;
  max-width: 100%;
  padding-right: 48px;
  padding-bottom: 48px;
  margin: 0 auto;
}

.image-accent {
  position: absolute;
  top: 32px;
  left: 32px;
  right: 0;
  bottom: 0;
  background: var(--teal);
  border-radius: 32px;
  z-index: 1;
}

.feature-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 320px;
  height: 395px;
  aspect-ratio: 12 / 13;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.text-teal {
  color: var(--teal);
}

.text-navy {
  color: var(--navy);
}

.section-copy {
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.bullet-copy {
  margin-bottom: 1.5rem;
  padding-left: 0;
  list-style: none;
  font-size: 0.98rem;
  line-height: 1.8;
}

.cta-btn {
  background: var(--wa);
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0.75rem;
  margin-bottom: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-wa-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-wa-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cta-btn:hover {
  background: var(--wa-dark);
  color: #fff;
}

.pill-title {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.medical-copy {
  font-size: 0.97rem;
  line-height: 1.75;
}

.medical-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
  line-height: 1.8;
}

.medical-visual {
  position: relative;
  width: min(100%, 360px);
  max-width: 360px;
  margin: 0 auto;
}

.medical-accent {
  position: absolute;
  right: -10%;
  bottom: -8%;
  width: 85%;
  height: 68%;
  background: var(--teal);
  border-radius: 36px;
}

.medical-stack {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.medical-stack img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.disease-card {
  background: var(--navy);
  border-radius: 18px;
  padding: 2.25rem 2rem;
  color: #fff;
}

.disease-card .pill-title {
  margin-bottom: 1.5rem;
  padding: 0;
  background: transparent;
  display: block;
  text-align: center;
  font-size: 1.05rem;
}

.disease-copy {
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 400;
}

.video-card {
  background: transparent;
  border-radius: 18px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  color: #4b67b4;
  font-size: 0.95rem;
  text-align: center;
}

.video-card img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}

.micro-section {
  position: relative;
}

.micro-title {
  font-size: 1.55rem;
  line-height: 1.35;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.micro-body {
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}

.micro-pill {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.micro-copy {
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  text-align: justify;
  text-justify: inter-word;
}

.micro-copy p {
  margin-bottom: 1rem;
}

.inline-highlight {
  display: inline;
  background: linear-gradient(180deg, #2bb9bb 0%, #1f9fa1 100%);
  color: #fff;
  padding: 0.12rem 0.45rem 0.16rem;
  border-radius: 6px;
  font-weight: 700;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  box-shadow: 0 6px 12px rgba(46, 174, 176, 0.22);
}

.research-callout {
  background: linear-gradient(180deg, #1f2f87 0%, #16245f 100%);
  border: 1px solid #15245f;
  border-radius: 18px;
  padding: 1.35rem 1.7rem;
  margin: 1.6rem auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 28px rgba(15, 29, 74, 0.22);
  color: #ffffff;
}

.research-callout p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.75;
  font-weight: 600;
  text-align: justify;
  text-justify: inter-word;
}

.micro-image {
  max-width: 900px;
  margin: 1.5rem auto;
}

.micro-image img {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.evidence-section {
  position: relative;
}

.evidence-lead {
  font-size: 0.98rem;
  line-height: 1.75;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.evidence-intro {
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.evidence-list {
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 1.6rem;
  padding-left: 1.4rem;
  list-style: disc;
}

.evidence-pill {
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 1.2rem 2.1rem;
  max-width: 900px;
  margin: 0 auto 2.2rem;
  box-shadow: 0 14px 28px rgba(10, 28, 86, 0.18);
}

.evidence-pill-title {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.evidence-pill ul {
  margin: 0;
  padding-left: 1.4rem;
}

.evidence-pill li {
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.evidence-image img {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.evidence-copy p {
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  text-align: justify;
  text-justify: inter-word;
}

.evidence-summary {
  max-width: 980px;
  margin: 2.2rem auto 0;
  font-size: 0.98rem;
  line-height: 1.75;
}

.evidence-summary strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.doctors-section {
  background: #fbf8f2;
  padding: clamp(4rem, 7vw, 5.75rem) 0;
  overflow: hidden;
}

.doctors-section__container {
  width: min(100%, 1200px);
}

.doctors-section__layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.doctors-section__heading {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.doctors-section__heading h2 {
  margin: 0;
  color: #111a30;
  font-size: clamp(2.95rem, 4.6vw, 4.1rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.doctors-section__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.4vw, 1.25rem);
  align-items: center;
}

.doctor-card {
  margin: 0;
  aspect-ratio: 1 / 1;
  padding: 0.28rem;
  border-radius: 26px;
  background: #fffdf8;
  border: 1px solid rgba(17, 26, 48, 0.08);
  box-shadow: 0 10px 22px rgba(17, 26, 48, 0.12);
  overflow: hidden;
}

.doctor-card__image {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  object-position: center 16%;
  transition: transform 0.45s ease;
}

.doctor-card:hover .doctor-card__image {
  transform: scale(1.035);
}

.doctor-wrap {
  position: relative;
  width: fit-content;
  max-width: 100%;
  padding-left: 22px;
  padding-bottom: 22px;
  margin: 0 auto;
}

.doctor-accent {
  position: absolute;
  top: 32px;
  left: 32px;
  right: 0;
  bottom: 0;
  background: var(--teal);
  border-radius: 32px;
  z-index: 1;
}

.doctor-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 300px;
  height: 315px;
  aspect-ratio: 24 / 25.5;
  border-radius: 24px;
  object-fit: cover;
  object-position: center top;
  display: block;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.research-title {
  font-size: 1.55rem;
  line-height: 1.35;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.research-copy {
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.research-highlight {
  font-weight: 800;
}

.study-block {
  padding-top: 2rem;
}

.study-title {
  display: block;
  width: fit-content;
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 2rem;
  text-align: center;
}

.paper-preview {
  position: relative;
  width: min(100%, 440px);
  max-width: 100%;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 0;
}

.paper-accent {
  position: absolute;
  left: 0;
  top: 32px;
  bottom: 32px;
  width: 64%;
  background: var(--teal);
  border-radius: 32px;
  z-index: 1;
}

.paper-card {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  width: min(100%, 400px);
  min-height: 0;
  margin-left: clamp(14px, 3vw, 22px);
  margin-top: 12px;
  margin-bottom: 12px;
  box-shadow: none;
}

.paper-card .line-red {
  color: #d25050;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.paper-card .paper-heading {
  color: #d06b2d;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.paper-card .paper-text {
  font-size: 0.76rem;
  line-height: 1.45;
  color: #454545;
  margin-bottom: 0.7rem;
}

.paper-card .paper-label {
  color: #df6b6b;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.program-card {
  background: var(--teal);
  border-radius: 18px;
  color: #fff;
  padding: 2rem 2rem 1.75rem;
}

.program-layout {
  text-align: left;
}

.program-image {
  max-width: 420px;
  margin-left: auto;
}

.program-image img {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.program-pill {
  display: inline-block;
  background: #f2f2f2;
  color: #189b9d;
  padding: 0.7rem 1.7rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.program-copy {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  text-align: justify;
}

.program-subtitle {
  font-size: 0.98rem;
  font-weight: 800;
  text-align: center;
  margin: 2rem 0 1.5rem;
}

.program-feature {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff;
  margin-bottom: 1.2rem;
}

.program-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: #fff;
  color: #f06a45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.program-feature p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 600;
}

.program-note {
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  margin-top: 1.25rem;
}

.mechanism-block {
  padding-top: 2rem;
}

.mechanism-pill {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.7rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.mechanism-intro {
  text-align: center;
  font-size: 0.97rem;
  margin-bottom: 2.5rem;
}

.mechanism-item {
  margin-bottom: 1.8rem;
}

.mechanism-item h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.gif-card {
  background: var(--teal);
  border-radius: 14px;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  overflow: hidden;
}

.gif-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.mechanism-text {
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

.clinical-title {
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}

.clinical-subtitle {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.clinical-case-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.clinical-case {
  padding: 1.35rem 0;
}

.clinical-case .row {
  justify-content: center;
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 1.25rem;
}

.clinical-case .col-lg-6 {
  display: flex;
  justify-content: center;
}

.clinical-divider {
  border-top: 1px solid #dddddd;
  margin: 1rem 0 1.75rem;
}

.scan-block {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
}

.scan-badge {
  display: inline-block;
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
}

.scan-badge.before {
  background: var(--teal);
}

.scan-badge.after {
  background: var(--navy);
}

.scan-frame {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  width: 100%;
  aspect-ratio: 25 / 12;
  transform: none;
  border-radius: 20px;
  overflow: visible;
  --scan-offset: 14px;
  --scan-top: 32%;
}

.scan-accent {
  position: absolute;
  left: var(--scan-offset);
  right: var(--scan-offset);
  top: var(--scan-top);
  bottom: calc(var(--scan-offset) * -1);
  border-radius: 26px;
  z-index: 1;
  transform: none;
}

.scan-accent.before {
  background: var(--teal);
  left: 18%;
  right: calc(var(--scan-offset) * -1);
  top: 40%;
  bottom: calc(var(--scan-offset) * -1);
}

.scan-accent.after {
  background: var(--navy);
  left: calc(var(--scan-offset) * -1);
  right: 18%;
  top: 40%;
  bottom: calc(var(--scan-offset) * -1);
}

.scan-image-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.scan-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  transform: none;
  background: transparent;
  border: none;
  box-shadow: none;
  display: block;
}

.clinical-caption {
  font-size: 0.93rem;
  line-height: 1.65;
}

.clinical-caption strong {
  display: block;
  margin-bottom: 0.15rem;
}

.clinical-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0.55rem;
}

.clinical-list li {
  line-height: 1.65;
}

.clinical-note {
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-top: 1.5rem;
}

.clinical-note strong {
  display: block;
  margin-bottom: 0.2rem;
}

.choice-pill {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.choice-item {
  text-align: center;
  margin-bottom: 1.75rem;
}

.choice-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  margin-bottom: 0.9rem;
}

.choice-item h3 {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
}

.symptom-card {
  background: var(--teal);
  border-radius: 20px;
  color: #fff;
  padding: 2.5rem 1.75rem;
  margin-top: 3rem;
}

.symptom-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 2.25rem;
}

.symptom-item {
  text-align: center;
  margin-bottom: 1.2rem;
}

.symptom-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #f2f2f2;
  color: #ef6b45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.symptom-item p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.symptom-note {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0;
}

.faq-badge {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 2.25rem;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.faq-item p {
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 0;
}

.gallery-slider-section {
  padding-top: calc(var(--section-space) / 1.5);
  padding-bottom: calc(var(--section-space) / 1.3);
}

.gallery-carousel {
  width: min(100%, 960px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  background: #f6f6f6;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

.gallery-carousel__inner {
  border-radius: inherit;
}

.gallery-carousel__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.gallery-carousel__control {
  width: 12%;
  opacity: 1;
}

.gallery-carousel__control .carousel-control-prev-icon,
.gallery-carousel__control .carousel-control-next-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background-size: 48%;
  background-color: rgba(27, 44, 122, 0.82);
}

.gallery-carousel__indicators {
  margin-bottom: 1rem;
}

.gallery-carousel__indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background-color: #ffffff;
  opacity: 0.7;
}

.gallery-carousel__indicators .active {
  width: 30px;
  opacity: 1;
}

.closing-visual {
  position: relative;
  width: min(100%, 230px);
  max-width: 230px;
  margin: 0 auto;
}

.closing-accent-top {
  position: absolute;
  left: -12px;
  top: -14px;
  width: 78px;
  height: 78px;
  background: var(--navy);
  border-radius: 16px;
  z-index: 1;
}

.closing-accent-bottom {
  position: absolute;
  right: -12px;
  bottom: -14px;
  width: 78px;
  height: 78px;
  background: var(--teal);
  border-radius: 24px;
  z-index: 1;
}

.closing-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  height: 240px;
  aspect-ratio: 23 / 24;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.closing-copy {
  font-size: 0.96rem;
  line-height: 1.8;
}

.closing-copy strong {
  font-weight: 800;
}

.closing-cta {
  background: var(--wa);
  border: none;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  padding: 0.8rem 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-top: 0.75rem;
}

.closing-cta:hover {
  color: #fff;
  background: var(--wa-dark);
}

.site-footer {
  background: var(--teal);
  color: #fff;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-logo {
  width: 180px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.social-pill {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ffffff;
  color: #232323;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.social-pill svg {
  width: 22px;
  height: 22px;
  display: block;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 1.75rem 0;
}

.footer-map {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.footer-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.footer-address h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.footer-address p {
  margin: 0;
  line-height: 1.8;
  font-size: 0.98rem;
}

.footer-address a {
  color: inherit;
  text-decoration: none;
}

.footer-address a:hover {
  color: inherit;
  text-decoration: underline;
}

.floating-wa-message {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 24px;
  z-index: 1099;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(620px, calc(100vw - 250px));
  min-height: 69.6px;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(37, 211, 102, 0.26);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  text-align: center;
  text-decoration: none;
  font-size: clamp(0.84rem, 1.35vw, 1.05rem);
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 14px 34px rgba(17, 52, 38, 0.16);
  transform: translateX(-50%);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.floating-wa-message:hover {
  border-color: rgba(37, 211, 102, 0.48);
  color: var(--teal-dark);
  transform: translate(-50%, -2px);
  box-shadow: 0 18px 38px rgba(17, 52, 38, 0.2);
}

.floating-wa-message__text {
  display: block;
  width: 100%;
  text-align: center;
}

.floating-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.1rem 0.8rem 0.85rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(15, 54, 28, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.floating-wa:hover {
  color: #fff;
  background: #1fba58;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(15, 54, 28, 0.34);
}

.floating-wa__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-wa__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.floating-wa__label {
  line-height: 1;
  letter-spacing: 0.01em;
}

/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.team .team-item .team-img:hover .team-icon {
    margin-bottom: 145px;
}

.team .team-item:hover .team-img::before {
    background: rgba(21, 185, 217, .3);
}

.team .team-item .team-content {
    color: var(--bs-primary);
    transition: 0.5s;
}

.team .team-item .team-content h5 {
    color: var(--bs-secondary);
    transition: 0.5s;
}

.team .team-item:hover .team-content h5 {
    color: #DDD042;
}

.team .team-item:hover .team-content {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** Team End ***/

@media (max-width: 1199.98px) {
  :root {
    --section-space: 3.25rem;
  }

  .hero-card,
  .hero-video {
    min-height: 360px;
  }

  .section-title,
  .research-title,
  .micro-title,
  .clinical-title {
    font-size: 1.35rem;
  }

  .program-card,
  .disease-card,
  .symptom-card {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 991.98px) {
  .section-band {
    padding: 2.25rem 0;
  }

  .section-band + .section-band {
    padding-top: 2.25rem;
  }

  .hero-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-link {
    margin-left: 0;
    padding: 0.6rem 0;
  }

  .navbar-collapse {
    padding-top: 0.75rem;
  }

  .hero-card,
  .hero-video {
    min-height: 300px;
  }

  .decision-title {
    font-size: 1.25rem;
  }

  .decision-video {
    min-height: 165px;
  }

  .decision-item--split {
    gap: 1.25rem;
  }

  .decision-item--compact {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "video";
  }

  .decision-item--compact .decision-copy-block {
    grid-area: copy;
  }

  .decision-item--compact .decision-video {
    grid-area: video;
  }

  .decision-video--split {
    min-height: 260px;
  }

  .decision-video--split .hero-video {
    min-height: 260px;
  }

  .comparison-section {
    padding-top: 2.25rem;
  }

  .comparison-title {
    font-size: 1.05rem;
  }

  .comparison-pill {
    font-size: 1.1rem;
  }

  .comparison-pillline {
    font-size: 0.88rem;
  }

  .integrative-section {
    padding-top: 2.25rem;
  }

  .integrative-title {
    font-size: 1.1rem;
  }

  .comparison-subtitle {
    font-size: 1.1rem;
  }

  .integrative-video-main {
    min-height: 170px;
  }

  .microblood-section {
    padding-top: 2.25rem;
  }

  .ekg-section {
    padding-top: 2.25rem;
  }

  .ekg-pill {
    font-size: 0.92rem;
  }

  .conventional-section {
    padding-top: 2.25rem;
  }

  .conventional-title {
    font-size: 1.02rem;
  }

  .note-card {
    padding: 0.9rem 1rem;
  }

  .echo-section {
    padding-top: 2.25rem;
  }

  .stress-section {
    padding-top: 2.25rem;
  }

  .stress-subtitle {
    font-size: 0.98rem;
  }

  .perfusion-section {
    padding-top: 2.25rem;
  }

  .perfusion-title {
    font-size: 1rem;
  }

  .success-section {
    padding-top: 2.25rem;
  }

  .success-title {
    font-size: 1rem;
  }

  .treatment-section {
    padding-top: 2.25rem;
    padding-bottom: 0;
  }

  .followup-section {
    padding-top: 1.6rem;
  }

  .followup-title {
    font-size: 1rem;
  }

  .support-section {
    padding-top: 2.25rem;
  }

  .support-pill {
    font-size: 0.98rem;
  }

  .support-item {
    grid-template-columns: 220px 1fr;
  }

  .support-media {
    width: 220px;
    height: 150px;
    border-radius: 36px;
  }

  .divider-space {
    height: 70px;
  }

  .section-title {
    margin-top: 3rem;
  }

  .pill-title {
    display: block;
    text-align: center;
    font-size: 1rem;
  }

  .image-wrap,
  .medical-visual,
  .doctor-wrap,
  .closing-visual,
  .scan-block {
    max-width: 100%;
  }

  .doctor-wrap {
    padding-left: 18px;
    padding-bottom: 18px;
  }

  .doctor-accent {
    top: 24px;
    left: 24px;
    right: 0;
    bottom: 0;
    border-radius: 28px;
  }

  .image-wrap {
    width: 100%;
    max-width: 320px;
    padding-right: 32px;
    padding-bottom: 32px;
  }

  .image-accent {
    top: 24px;
    left: 24px;
    right: 0;
    bottom: 0;
    border-radius: 28px;
  }

  .feature-image,
  .doctor-photo,
  .closing-image {
    max-width: 100%;
    height: auto;
  }

  .medical-stack {
    max-width: 100%;
  }

  .medical-stack img {
    height: 190px;
  }

  .medical-accent {
    top: 50%;
    height: 175px;
  }

  .disease-card {
    padding: 1.5rem 1.25rem;
  }

  .research-title {
    margin-top: 2rem;
    font-size: 1.3rem;
  }

  .micro-title {
    font-size: 1.3rem;
  }

  .study-title {
    display: block;
    text-align: center;
  }

  .paper-preview {
    width: 100%;
    max-width: 400px;
    min-height: 0;
  }

  .paper-card {
    width: 100%;
  }

  .paper-accent {
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 68%;
    border-radius: 28px;
  }

  .program-card {
    padding: 1.5rem 1.25rem;
  }

  .program-pill,
  .mechanism-pill {
    display: block;
    text-align: center;
  }

  .program-feature {
    margin-bottom: 1rem;
  }

  .program-image {
    margin: 0 auto;
  }

  .clinical-title {
    font-size: 1.45rem;
  }

  .scan-block {
    max-width: 100%;
    margin: 0 auto;
  }

  .clinical-case .col-lg-6 {
    display: block;
  }

  .choice-pill {
    display: block;
    text-align: center;
  }

  .closing-copy {
    margin-top: 2rem;
  }

  .doctors-section {
    padding: 3.5rem 0;
  }

  .doctors-section__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .doctors-section__heading {
    justify-content: center;
    text-align: center;
  }

  .doctors-section__gallery {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .footer-map iframe {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .container,
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-section .container {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .brand-text {
    font-size: 0.82rem;
  }

  .brand-logo {
    width: 140px;
    height: auto;
  }

  .doctors-section {
    padding: 3rem 0;
  }

  .doctors-section__heading h2 {
    font-size: clamp(2.5rem, 10vw, 3.25rem);
  }

  .doctors-section__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    width: min(100%, 520px);
  }

  .hero-card {
    min-height: 0;
    aspect-ratio: auto;
    border-radius: 28px;
    margin-top: 0;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  }

  .hero-section .hero-video {
    min-height: 0;
    height: auto;
    border-radius: inherit;
    object-fit: contain;
    object-position: center center;
    background: transparent;
  }

  .hero-label {
    font-size: 1rem;
  }

  .hero-subtitle {
    font-size: 0.88rem;
  }

  .decision-title {
    font-size: 1.15rem;
  }

  .decision-video {
    min-height: 150px;
    border-radius: 18px;
    font-size: 0.9rem;
  }

  .decision-item--split {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .decision-video--split {
    min-height: 220px;
  }

  .decision-video--split .hero-video {
    min-height: 220px;
  }

  .decision-video--media {
    border-radius: 24px;
  }

  .decision-video--media .hero-video {
    border-radius: inherit;
  }

  .comparison-title {
    font-size: 1rem;
  }

  .comparison-quote {
    text-align: justify !important;
    text-align-last: left;
    text-justify: inter-word;
    hyphens: auto;
  }

  .comparison-pill {
    font-size: 1rem;
    padding-left: 1.45rem;
    padding-right: 1.45rem;
  }

  .comparison-point {
    flex-wrap: nowrap;
  }

  .comparison-pillline {
    width: auto;
    flex: 1;
    min-width: 0;
  }

  .comparison-image-card {
    min-height: 0;
  }

  .comparison-images {
    width: min(100%, 560px);
    gap: 0.1rem;
  }

  .comparison-image-card img {
    max-height: 290px;
  }

  .comparison-image-card img.comparison-image--small {
    max-height: 270px;
  }

  .integrative-title {
    font-size: 1.02rem;
  }

  .comparison-subtitle {
    font-size: 1.02rem;
  }

  .integrative-video-card {
    min-height: 150px;
    border-radius: 18px;
    font-size: 0.9rem;
  }

  .integrative-video-main {
    min-height: 160px;
  }

  .microblood-highlight,
  .microblood-banner {
    font-size: 0.88rem;
  }

  .ekg-pill {
    font-size: 0.9rem;
    padding: 0.45rem 1.2rem;
  }

  .ekg-image {
    padding: 0.6rem;
  }

  .conventional-title {
    font-size: 0.98rem;
  }

  .note-card {
    grid-template-columns: 16px 1fr;
    gap: 0.6rem;
  }

  .note-bullet {
    width: 16px;
    height: 16px;
    font-size: 0.8rem;
  }

  .echo-image-card {
    padding: 0;
  }

  .echo-top .echo-image-card {
    width: min(100%, 340px);
  }

  .echo-image-large {
    padding: 0;
  }

  .echo-image-large video {
    width: min(100%, 340px);
  }

  .echo-note {
    font-size: 0.88rem;
  }

  .stress-pill {
    font-size: 0.9rem;
    padding: 0.45rem 1.2rem;
  }

  .stress-image-card {
    padding: 0.55rem;
  }

  .stress-note {
    font-size: 0.88rem;
  }

  .perfusion-pill {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
  }

  .perfusion-image-card {
    padding: 0.5rem;
  }

  .perfusion-section .perfusion-image-card.perfusion-image-card--media {
    width: min(100%, 340px);
    margin: 0 auto;
  }

  .success-title {
    font-size: 0.98rem;
  }

  .treatment-title {
    font-size: 1rem;
  }

  .treatment-pill {
    font-size: 0.88rem;
    padding: 0.45rem 1.2rem;
  }

  .treatment-video {
    min-height: 140px;
    border-radius: 18px;
    font-size: 0.9rem;
  }

  .followup-video {
    min-height: 130px;
    border-radius: 18px;
    font-size: 0.9rem;
  }

  .followup-banner {
    font-size: 0.88rem;
  }

  .followup-title {
    font-size: 0.98rem;
  }

  .support-pill {
    font-size: 0.95rem;
  }

  .support-list {
    gap: 1.2rem;
  }

  .support-item {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .support-media {
    width: 100%;
    height: auto;
    border-radius: 36px;
  }

  .support-media img {
    max-height: 300px;
  }

  .support-media video {
    max-height: 300px;
  }

  .support-content h3 {
    font-size: 0.95rem;
  }

  .support-content p {
    font-size: 0.9rem;
  }

  .section-title,
  .research-title,
  .micro-title,
  .clinical-title {
    font-size: 1.2rem;
  }

  .section-copy,
  .medical-copy,
  .research-copy,
  .micro-copy,
  .decision-copy,
  .evidence-lead,
  .evidence-intro,
  .evidence-copy p,
  .evidence-summary,
  .program-copy,
  .closing-copy,
  .faq-item p,
  .clinical-caption,
  .mechanism-text {
    font-size: 0.92rem;
  }

  .section-copy,
  .medical-copy,
  .research-copy,
  .micro-copy,
  .decision-copy,
  .evidence-lead,
  .evidence-intro,
  .evidence-copy p,
  .evidence-summary,
  .program-copy,
  .closing-copy,
  .faq-item p,
  .clinical-caption,
  .mechanism-text,
  .disease-copy,
  .clinical-subtitle,
  .mechanism-intro,
  .program-note,
  .symptom-note {
    text-align: justify;
    text-justify: inter-word;
  }

  .feature-image {
    max-width: 100%;
    height: 340px;
  }

  .doctor-photo {
    max-width: 280px;
    height: 295px;
  }

  .image-wrap {
    max-width: 280px;
    padding-right: 24px;
    padding-bottom: 24px;
  }

  .image-accent {
    top: 20px;
    left: 20px;
    right: 0;
    bottom: 0;
    border-radius: 24px;
  }

  .doctor-accent {
    top: 20px;
    left: 20px;
    right: 0;
    bottom: 0;
    border-radius: 24px;
  }

  .medical-stack img {
    height: 145px;
  }

  .medical-visual {
    max-width: 360px;
  }

  .medical-accent {
    top: 50%;
    height: 140px;
    border-radius: 24px;
    transform: translateY(-50%);
  }

  .medical-stack {
    max-width: 280px;
    gap: 12px;
  }

  .program-feature {
    align-items: flex-start;
  }

  .program-feature p {
    text-align: left;
  }

  .program-icon,
  .choice-icon,
  .symptom-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    font-size: 1.7rem;
  }

  .choice-item h3,
  .symptom-item p {
    font-size: 0.88rem;
  }

  .paper-preview {
    max-width: 320px;
    min-height: 0;
  }

  .paper-accent {
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 72%;
    border-radius: 24px;
  }

  .medical-visual {
    max-width: 100%;
  }

  .medical-stack {
    max-width: min(320px, 100%);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    gap: 0;
  }

  .medical-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
  }

  .medical-accent {
    left: 50%;
    right: auto;
    width: min(420px, 120%);
    height: clamp(120px, 36vw, 170px);
    border-radius: 999px;
    transform: translate(-50%, -50%);
  }

  .clinical-note,
  .program-card,
  .disease-card,
  .symptom-card {
    border-radius: 16px;
  }
}

@media (max-width: 575.98px) {
  :root {
    --section-space: 2rem;
  }

  .section-band {
    padding: calc(var(--section-space) / 2) 0;
  }

  .section-band + .section-band {
    padding-top: calc(var(--section-space) / 2);
  }

  .hero-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-card {
    min-height: 0;
    aspect-ratio: auto;
  }

  .hero-video {
    min-height: 0;
    height: auto;
  }

  .decision-video {
    min-height: 140px;
    padding: 1.2rem;
  }

  .comparison-pill {
    font-size: 0.95rem;
  }

  .comparison-point {
    gap: 0.5rem;
  }

  .comparison-pillline {
    font-size: 0.82rem;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .comparison-copy {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
  }

  .comparison-images {
    grid-template-columns: 1fr;
    width: min(100%, 290px);
    gap: 0.25rem;
  }

  .comparison-image-card img {
    max-height: none;
  }

  .comparison-image-card img.comparison-image--small {
    width: 100%;
    max-width: 100%;
    max-height: none;
  }

  .integrative-video-card {
    padding: 1.3rem;
  }

  .microblood-highlight,
  .microblood-banner {
    display: block;
    width: 100%;
    padding: 0.6rem 0.9rem;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
  }

  .ekg-image {
    padding: 0.5rem;
  }

  .note-card {
    padding: 0.8rem 0.9rem;
  }

  .echo-image-card {
    padding: 0;
  }

  .echo-top .echo-image-card {
    width: min(100%, 300px);
  }

  .echo-image-large {
    padding: 0;
  }

  .echo-image-large video {
    width: min(100%, 300px);
  }

  .stress-image-card {
    padding: 0.45rem;
  }

  .perfusion-image-card {
    padding: 0.45rem;
  }

  .perfusion-section .perfusion-image-card.perfusion-image-card--media {
    width: min(100%, 300px);
    margin: 0 auto;
  }

  .treatment-section {
    padding-bottom: 0;
  }

  .treatment-section + .followup-section {
    padding-top: 1.6rem;
  }

  .treatment-video {
    padding: 1.2rem;
  }

  .followup-video {
    padding: 1.2rem;
  }

  .followup-banner {
    padding: 0.6rem 0.9rem;
  }

  .pill-title,
  .program-pill,
  .mechanism-pill,
  .choice-pill,
  .support-pill {
    font-size: 0.9rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .evidence-pill {
    border-radius: 20px;
    padding: 1rem 1.2rem;
  }

  .research-callout {
    padding: 1rem 1.1rem;
    border-radius: 14px;
  }

  .program-card,
  .disease-card,
  .symptom-card,
  .clinical-note {
    padding: 1.25rem 1rem;
  }

  .symptom-card {
    margin-top: 2rem;
  }

  .program-feature {
    gap: 0.75rem;
  }

  .choice-item,
  .symptom-item {
    margin-bottom: 1rem;
  }

  .closing-cta,
  .cta-btn {
    width: 100%;
    text-align: center;
  }

  .doctors-section__gallery {
    grid-template-columns: 1fr;
    width: min(100%, 320px);
  }

  .doctor-card {
    border-radius: 22px;
  }

  .doctor-card__image {
    object-position: center 12%;
  }

  .floating-wa {
    right: 16px;
    bottom: 16px;
    padding: 0.85rem;
  }

  .floating-wa-message {
    left: 16px;
    right: 16px;
    bottom: 88px;
    width: auto;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    font-size: 0.86rem;
    transform: none;
  }

  .floating-wa-message:hover {
    transform: translateY(-2px);
  }

  .floating-wa__label {
    display: none;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-map iframe {
    height: 180px;
  }
}

@media (min-width: 992px) {
  .study-block {
    padding-top: 3rem;
  }
}

@media (min-width: 992px) {
  #kontak.section-band {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* Override accent for "Mengapa Penyakit Jantung Koroner Berbahaya" image */
.medical-accent {
  left: 0;
  top: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  transform: translate(32px, 32px);
}

@media (max-width: 991.98px) {
  .medical-accent {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    transform: translate(28px, 28px);
  }
}

@media (max-width: 767.98px) {
  .medical-accent {
    width: 100%;
    height: 100%;
    border-radius: 26px;
    transform: translate(24px, 24px);
  }
}
