:root {
  --font-heading: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
  --navy: #1a2b56;
  --navy-deep: #132247;
  --navy-mid: #243a72;
  --purple: #5c4db1;
  --gold: #c5a059;
  --gold-dark: #a8873f;
  --text: #1a2b56;
  --text-muted: #5b6b86;
  --bg: #f3f5f8;
  --bg-soft: #eef1f5;
  --white: #ffffff;
  --border: #e2e7ef;
  --whatsapp: #25d366;
  --shadow-card: 0 8px 24px rgba(26, 43, 86, 0.12);
  --shadow-soft: 0 4px 14px rgba(26, 43, 86, 0.08);
  --radius-btn: 8px;
  --container: 1280px;
  --page-gutter: 0px;
  --header-h: 104px;
  --font: "Poppins", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  max-width: 100%;
  overflow-x: hidden;
  margin-inline: auto;
  padding-top: var(--header-h);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: min(calc(100% - var(--page-gutter) * 2), var(--container));
  max-width: 100%;
  margin-inline: auto;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #edf0f4;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(26, 43, 86, 0.08);
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 1vw, 16px);
  min-height: 104px;
  padding-block: 10px;
  position: relative;
  min-width: 0;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 0;
}

.header-logo img {
  width: 270px;
  height: 70px;
  max-width: 270px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.1vw, 24px);
  flex: 1;
  flex-wrap: nowrap;
  min-width: 0;
}

.header-nav a {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.header-nav a:hover,
.header-nav a.is-active {
  color: var(--navy);
  border-bottom-color: var(--navy-mid);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-phone-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e8f1fc;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.header-phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-phone-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.header-phone-text small {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 1px;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius-btn);
  white-space: nowrap;
}

.btn-book:hover {
  background-color: var(--navy-deep);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #e4e9f2;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== HERO BANNER ========== */
.hero {
  position: relative;
  background: #f7f8fa;
  overflow-x: clip;
  overflow-y: visible;
  padding: 0;
  width: 100%;
  max-width: 100%;
  font-family: var(--font-body);
}

.hero-banner-img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1024 / 461;
  object-fit: contain;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - var(--page-gutter) * 2), var(--container));
  max-width: 100%;
  z-index: 1;
}

.hero-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  max-width: 540px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding: 26px 0 16px;
}

.hero-eyebrow {
  color: var(--navy);
  font-size: clamp(9px, 0.9vw, 11px);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-eyebrow-accent {
  color: var(--gold);
  font-weight: 800;
}

.hero-title {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.05vw, 28px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.hero-title-accent {
  color: var(--purple);
}

.hero-sub {
  color: var(--text-muted);
  font-size: clamp(11px, 1vw, 13px);
  line-height: 1.4;
  margin-bottom: 10px;
  max-width: 38ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.hero .btn-primary,
.hero .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(11px, 1.05vw, 13px);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-btn);
  white-space: nowrap;
}

.hero .btn-primary {
  background-color: var(--navy);
  color: var(--white);
  border: none;
}

.hero .btn-primary:hover {
  background-color: var(--navy-deep);
}

.hero .btn-outline {
  background-color: var(--white);
  color: var(--navy);
  border: 1.5px solid #c8d3ea;
  box-shadow: var(--shadow-soft);
}

.hero .btn-outline:hover {
  border-color: var(--navy);
  background-color: #f7f9ff;
}

.hero-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1f8f4a;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  margin-bottom: 0;
}

.hero-whatsapp:hover {
  color: #167a3c;
}

.hero-trust {
  position: relative;
  left: auto;
  bottom: auto;
  width: 100%;
  max-width: 100%;
  z-index: 5;
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(26, 43, 86, 0.1);
  border: 1px solid rgba(26, 43, 86, 0.06);
  padding: 6px 4px;
  margin-top: auto;
  box-sizing: border-box;
}

.hero-trust li {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 5px 8px;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
  min-height: 0;
}

.hero-trust li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: #e4e9f2;
}

.hero-trust .trust-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 0;
  background: none;
  color: var(--navy);
  display: grid;
  place-items: center;
}

.hero-trust .trust-icon svg {
  width: 18px;
  height: 18px;
}

.hero-trust span:last-child {
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  white-space: normal;
}

@media (min-width: 1024px) {
  .hero {
    width: 100%;
    height: auto;
    padding-block: 10px;
    background: #f7f8fa;
  }

  .hero-banner-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1024 / 461;
    object-fit: contain;
    object-position: center center;
    background: #f7f8fa;
  }

  .hero-left {
    padding-top: 76px;
  }

  .hero-eyebrow {
    font-size: 11px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 13px;
  }

  .hero .btn-primary,
  .hero .btn-outline {
    font-size: 21px;
    padding: 10px 16px;
  }

  .hero-whatsapp {
    font-size: 21px;
  }

  .hero-trust {
    margin-bottom: 80px;
  }
}

@media (max-width: 1023px) {
  .hero {
    padding: 0 0 16px;
    background: linear-gradient(180deg, #e8ecf5 0%, #f7f8fa 55%);
  }

  .hero-banner-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1024 / 461;
    object-fit: contain;
    object-position: center center;
    border-radius: 0 0 28px 28px;
  }

  .hero .container {
    position: relative;
    inset: auto;
    left: auto;
    transform: none;
    width: min(calc(100% - var(--page-gutter) * 2), var(--container));
    margin-top: -42px;
    padding: 0 0 8px;
    z-index: 2;
  }

  .hero-stage {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .hero-left,
  .hero-trust {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    height: auto;
    padding: 0;
  }

  .hero-left {
    order: 1;
    background: #fff;
    border-radius: 22px;
    padding: 20px 18px 16px;
    box-shadow: 0 18px 42px rgba(26, 43, 86, 0.14);
    border: 1px solid rgba(26, 43, 86, 0.05);
  }

  .hero-title br,
  .hero-sub br {
    display: none;
  }

  .hero-eyebrow {
    display: inline-flex;
    width: auto;
    max-width: 100%;
    background: #f7efd4;
    color: var(--gold-dark);
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    white-space: normal;
  }

  .hero-title {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .hero-sub {
    max-width: none;
    font-size: 14px;
    margin-bottom: 16px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
  }

  .hero .btn-primary,
  .hero .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 13px 16px;
    font-size: 14px;
    border-radius: 12px;
  }

  .hero-whatsapp {
    justify-content: center;
    margin-bottom: 14px;
    font-size: 14px;
  }

  .hero-trust {
    order: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 100%;
    gap: 8px;
    padding: 8px;
    margin-top: 0;
    background: #f7f8fc;
    box-shadow: none;
    border: 0;
  }

  .hero-trust li {
    flex: none;
    min-width: 0;
    padding: 10px 12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(26, 43, 86, 0.05);
  }

  .hero-trust li:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .hero-trust li:not(:last-child)::after {
    display: none;
  }

  .hero-trust span:last-child {
    white-space: normal;
    font-size: 12px;
  }
}

@media (min-width: 1024px) {
  .header-logo {
    margin-left: -14px;
    margin-right: -6px;
  }

  .header-inner {
    gap: 10px;
  }

  .header-nav {
    gap: 14px;
  }

  .header-nav a {
    font-size: 12px;
    letter-spacing: 0;
  }

  .header-actions {
    gap: 12px;
  }

  .header-phone-text small {
    display: none;
  }

  .header-phone-text strong {
    font-size: 13px;
  }

  .btn-book {
    padding: 10px 14px;
    font-size: 12px;
  }
}

@media (max-width: 1279px) {
  :root {
    --page-gutter: 20px;
    --header-h: 72px;
  }

  .header-inner {
    min-height: 72px;
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 16px;
    --header-h: 72px;
  }

  .header-phone-text small {
    display: none;
  }

  .header-logo {
    flex-shrink: 1;
    min-width: 0;
    max-width: min(270px, calc(100% - 108px));
  }

  .header-logo img {
    width: 100%;
    height: 70px;
    max-width: 270px;
  }

  .btn-book {
    display: none;
  }

  .header-inner {
    min-height: 72px;
    padding-block: 6px;
  }
}


@media (max-width: 1023px) {
  .nav-toggle {
    display: flex;
  }

  .header-nav {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(26, 43, 86, 0.16);
    padding: 8px;
    z-index: 120;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .header-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .header-nav a {
    padding: 12px 14px;
    border-bottom: 0;
    border-radius: 10px;
    font-size: 15px;
  }

  .header-nav a:hover,
  .header-nav a.is-active {
    background: #f4f6fb;
    border-bottom-color: transparent;
  }

  .header-logo {
    flex-shrink: 1;
    min-width: 0;
    max-width: min(270px, calc(100% - 108px));
  }

  .header-logo img {
    width: 100%;
    max-width: 270px;
    height: 70px;
  }
}

@media (max-width: 1023px) and (min-width: 641px) {
  .header-logo img {
    width: 100%;
    height: 70px;
    max-width: 270px;
  }
}

/* ========== Shared section primitives ========== */
.section {
  padding: 48px 0;
}

.section-eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.section-title {
  color: var(--navy);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
}

.section-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 52ch;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.section-note {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Trust bar */
.trust-bar {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 42%),
    #16357d;
  color: var(--white);
  padding: 24px 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: clamp(16px, 2.2vw, 32px);
  row-gap: 24px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  min-width: 0;
  padding: 0;
}

.trust-item-icon {
  width: clamp(72px, 6vw, 88px);
  height: clamp(72px, 6vw, 88px);
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(52%) saturate(620%) hue-rotate(93deg) brightness(98%) contrast(92%);
}

.trust-item-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trust-item strong,
.trust-count {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.trust-item span {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0.92;
  color: #fff;
}

/* Why Choose Us */
.why {
  background: #f5f7fb;
}

.why-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}

.why-eyebrow {
  color: #5c4db1;
  letter-spacing: 0.12em;
  font-size: 11px;
  margin-bottom: 12px;
}

.why-title {
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--navy);
}

.why-title-accent {
  color: var(--purple);
}

.why-text {
  font-size: 15px;
  line-height: 1.65;
  max-width: 34ch;
  color: var(--text-muted);
  margin-bottom: 0;
}

.why-intro .section-title {
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.15;
  margin-bottom: 14px;
}

.why-intro .section-text {
  font-size: 15px;
  line-height: 1.65;
  max-width: 34ch;
}

.why-image-wrap {
  margin-top: 24px;
  width: 100%;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
}

.why-image-wrap img,
.why-visual-img {
  width: 100%;
  height: auto;
  min-height: 260px;
  max-height: 390px;
  object-fit: contain;
  object-position: left bottom;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(26, 43, 86, 0.08));
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  gap: 16px;
  align-content: start;
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(26, 43, 86, 0.06);
  border-radius: 14px;
  padding: 16px 14px 64px;
  box-shadow: 0 6px 20px rgba(26, 43, 86, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(26, 43, 86, 0.12);
}

.why-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}

.why-card-body {
  min-width: 0;
}

.why-card h3 {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.25;
}

.why-card p {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
}

/* Conditions */
.conditions {
  background: #f3f0fa;
  padding-top: 48px;
  padding-bottom: 36px;
}

.conditions-layout {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
  align-items: center;
}

.conditions-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.conditions-eyebrow {
  color: var(--purple);
  letter-spacing: 0.1em;
  font-size: 11px;
  margin-bottom: 10px;
}

.conditions-title {
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.25;
  margin-bottom: 20px;
  max-width: 14ch;
}

.conditions-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  background-color: var(--navy);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(26, 43, 86, 0.22);
}

.conditions-cta:hover {
  background-color: var(--navy-deep);
  box-shadow: 0 10px 22px rgba(26, 43, 86, 0.3);
}

.conditions-row {
  display: flex;
  align-items: stretch;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.conditions-row::-webkit-scrollbar {
  display: none;
}

.condition-card {
  flex: 0 0 148px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(26, 43, 86, 0.08);
  border: 1px solid rgba(26, 43, 86, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.condition-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(26, 43, 86, 0.12);
}

.condition-visual {
  width: 100%;
  height: 118px;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 16px 14px 4px;
  background: #fff;
  mask-image: none;
  -webkit-mask-image: none;
}

.condition-card strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  padding: 6px 10px 14px;
  margin-top: 0;
}

.condition-card--more {
  justify-content: center;
  min-height: 178px;
}

.condition-more-icon {
  width: 56px;
  height: 56px;
  margin: 28px auto 12px;
  border-radius: 50%;
  background: #eef1f8;
  color: var(--navy-mid);
  display: grid;
  place-items: center;
}

.condition-more-icon svg {
  width: 22px;
  height: 22px;
}

.condition-card--more strong {
  margin-top: 0;
}

/* Awards */
.awards {
  background: var(--white);
  padding-bottom: 20px;
}

.awards-layout {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}

.awards-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.awards-eyebrow {
  color: var(--purple);
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
}

.awards-title {
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.25;
  margin-bottom: 14px;
  max-width: 15ch;
}

.awards-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 34ch;
  margin-bottom: 22px;
}

.awards-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  background-color: var(--purple);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(92, 77, 177, 0.28);
}

.awards-cta:hover {
  background-color: #4f42a0;
  box-shadow: 0 10px 22px rgba(92, 77, 177, 0.36);
}

.awards-slider {
  position: relative;
  min-width: 0;
}

.awards-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 52px 4px 2px;
}

.awards-row::-webkit-scrollbar {
  display: none;
}

.award-card {
  min-width: 0;
  min-height: 340px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease;
  text-align: center;
}

.award-card:hover {
  transform: translateY(-4px);
}

.award-card img {
  width: 100%;
  height: 220px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.award-card img.award-card-img--portrait {
  object-position: center top;
}

.award-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100px;
  padding: 16px 14px 18px;
}

.award-card-body h3 {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 4px;
  min-height: 2.7em;
}

.award-card-body p {
  color: var(--navy-mid);
  font-size: 12.5px;
  line-height: 1.45;
  min-height: 2.9em;
}

.awards-nav {
  position: absolute;
  right: 0;
  top: calc(4px + 110px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.awards-nav-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(36, 58, 114, 0.35);
  border-radius: 50%;
  background: #fff;
  color: var(--navy-mid);
  box-shadow: 0 4px 14px rgba(26, 43, 86, 0.1);
  display: grid;
  place-items: center;
  padding: 0;
  line-height: 0;
  cursor: pointer;
}

.awards-nav-btn svg {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0;
}

.awards-nav-btn:hover {
  border-color: var(--navy-mid);
  box-shadow: 0 8px 18px rgba(26, 43, 86, 0.16);
  background: #f4f6fb;
  color: var(--navy);
}

/* Myth */
.myth {
  background: linear-gradient(180deg, #f7f9fc 0%, #f2f5fa 100%);
  padding-top: 20px;
}

.myth-layout {
  display: grid;
  grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
  gap: clamp(16px, 2.2vw, 28px);
  align-items: center;
}

.myth-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.myth-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.myth-eyebrow {
  color: var(--purple);
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
}

.myth-title {
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.25;
  margin-bottom: 12px;
  max-width: 12ch;
}

.myth-text {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 28ch;
}

.myth-compare {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  min-width: 0;
}

.myth-panel {
  border-radius: 16px;
  padding: 24px 20px 22px;
  min-width: 0;
}

.myth-panel--no {
  background: #fdecee;
  position: relative;
  z-index: 1;
}

.myth-panel--yes {
  background: #e8f7ee;
  position: relative;
  z-index: 1;
  margin-right: -5px;
}

.myth-panel h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 16px;
}

.myth-panel--no h3 {
  color: #b4232c;
}

.myth-panel--yes h3 {
  color: #157a3c;
}

.myth-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.myth-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.45;
}

.myth-list-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.myth-list-icon svg {
  width: 12px;
  height: 12px;
}

.myth-list-icon--no {
  background: #e85d5d;
  color: #fff;
}

.myth-list-icon--yes {
  background: #22a055;
  color: #fff;
}

.myth-vs {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(26, 43, 86, 0.16);
  font-size: 13px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(26, 43, 86, 0.08);
  pointer-events: none;
}

.myth-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.myth-visual-img {
  width: 100%;
  max-width: 330px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(26, 43, 86, 0.08));
}

.myth .safety-note {
  margin-top: 2px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #fff8e8;
  border: 1px solid #f0dfb0;
  color: #6a5520;
  font-size: 13.5px;
  line-height: 1.55;
}

/* Doctor profile */
.doctor-profile {
  background: linear-gradient(180deg, #f7f8fb 0%, #f2f4f8 100%);
}

.doctor-profile-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  gap: clamp(24px, 3.5vw, 40px);
  align-items: stretch;
}

.doctor-profile-photo {
  position: relative;
  background: linear-gradient(165deg, #eef2f8 0%, #e4eaf5 55%, #f5f7fb 100%);
  border-radius: 20px;
  padding: 0;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(26, 43, 86, 0.1);
  border: 1px solid rgba(26, 43, 86, 0.06);
}

.doctor-profile-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(92, 77, 177, 0.1), transparent 62%);
  pointer-events: none;
}

.doctor-profile-img {
  position: relative;
  z-index: 1;
  width: 118%;
  max-width: none;
  height: 118%;
  max-height: none;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(26, 43, 86, 0.16));
}

.doctor-profile-copy {
  min-width: 0;
}

.doctor-eyebrow {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.doctor-eyebrow::after {
  content: "";
  width: 42px;
  height: 1.5px;
  background: var(--gold);
  display: block;
}

.doctor-name {
  font-size: clamp(28px, 2.6vw, 38px);
  margin-bottom: 6px;
}

.doctor-creds {
  color: var(--navy);
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 12px;
}

.doctor-bio {
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 48ch;
  margin-bottom: 0;
}

.doctor-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(210px, 0.8fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 18px;
}

.doctor-highlights {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  border-left: 1px solid rgba(26, 43, 86, 0.1);
}

.doctor-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.doctor-highlight-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
}

.doctor-highlight-icon svg {
  width: 16px;
  height: 16px;
}

.doctor-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.doctor-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: var(--white);
  border-radius: 20px;
  padding: 18px 16px;
  box-shadow: 0 8px 24px rgba(26, 43, 86, 0.06);
  border: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.doctor-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(26, 43, 86, 0.12);
}

.doctor-stat-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  margin: 0;
  border-radius: 50%;
  background: #f0f2ff;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.doctor-stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.doctor-stat > div {
  min-width: 0;
}

.doctor-stat strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 3px;
}

.doctor-stat span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
}

.doctor-details {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 16px;
}

.doctor-points {
  margin: 0;
  display: grid;
  gap: 12px;
  align-content: start;
}

.doctor-points li {
  position: relative;
  padding-left: 32px;
  color: var(--navy);
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 500;
}

.doctor-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.5 12.5 10 16l7.5-8' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.doctor-quote {
  position: relative;
  background: var(--white);
  border-radius: 14px;
  padding: 22px 20px 18px;
  box-shadow: 0 6px 18px rgba(26, 43, 86, 0.07);
  border: 1px solid rgba(26, 43, 86, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.doctor-quote::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 4px;
  width: 92px;
  height: 92px;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' fill='none'%3E%3Cpath d='M48 72c-10-6-18-16-18-28 0-10 7-16 14-16 4 0 7 2 9 5 2-3 5-5 9-5 7 0 14 6 14 16 0 12-8 22-18 28' fill='%235c4db1'/%3E%3Cpath d='M28 58c-7-5-13-12-13-21 0-8 5-12 10-12 3 0 5 1.5 6.5 4 1.5-2.5 3.5-4 6.5-4 5 0 10 4 10 12 0 9-6 16-13 21' fill='%235c4db1'/%3E%3Cpath d='M40 12c-1 10 2 18 8 24' stroke='%235c4db1' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.doctor-quote::before {
  content: "“";
  display: block;
  color: var(--gold);
  font-size: 42px;
  line-height: 0.6;
  font-family: Georgia, serif;
  margin-bottom: 10px;
}

.doctor-quote p {
  color: var(--navy);
  font-size: 13.5px;
  font-style: italic;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.doctor-quote cite {
  display: block;
  margin-top: 12px;
  text-align: right;
  color: var(--navy);
  font-style: normal;
  font-weight: 700;
  font-size: 13.5px;
  position: relative;
  z-index: 1;
}

.doctor-book-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(90deg, #f5f7ff 0%, #eceeff 52%, #e8ecff 100%);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: none;
  border: none;
}

.doctor-book-info {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.doctor-book-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e4def8;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.doctor-book-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.doctor-book-info strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 2px;
}

.doctor-book-info span {
  display: block;
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.4;
}

.doctor-talk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  background-color: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  padding: 12px 18px;
  border-radius: 10px;
  white-space: nowrap;
}

.doctor-talk-btn svg {
  width: 16px;
  height: 16px;
}

.doctor-talk-btn:hover {
  background-color: var(--navy-deep);
}

/* Journey */
.journey {
  background: var(--white);
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 270px) minmax(0, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
  align-items: center;
}

.journey-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.journey-eyebrow {
  color: var(--purple);
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
}

.journey-title {
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1.25;
  max-width: 14ch;
}

.journey-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.journey-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 4px;
}

.journey-step:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  width: 50%;
  border-top: 2px dotted rgba(26, 43, 86, 0.22);
  transform: translateY(-50%);
  z-index: 0;
}

.journey-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 36px;
  right: 0;
  width: 50%;
  border-top: 2px dotted rgba(26, 43, 86, 0.22);
  transform: translateY(-50%);
  z-index: 0;
}

.journey-step-icon-wrap {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(26, 43, 86, 0.1);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.journey-step-icon-wrap img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.journey-step-label {
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
  max-width: 11ch;
}

/* Stories */
.stories {
  background: linear-gradient(180deg, #f7f9fc 0%, #f1f4fa 100%);
}

.stories-layout {
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
  align-items: stretch;
}

.stories-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stories-eyebrow {
  color: var(--purple);
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
}

.stories-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1.2;
  margin-bottom: 14px;
}

.stories-text {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 28ch;
}

.stories-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  background-color: var(--purple);
  color: #fff;
  box-shadow: 0 4px 14px rgba(92, 77, 177, 0.28);
}

.stories-cta:hover {
  background-color: #4f42a0;
  box-shadow: 0 10px 22px rgba(92, 77, 177, 0.36);
}

.stories-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(180px, 210px);
  gap: 14px;
  min-width: 0;
}

.story-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 18px 18px;
  box-shadow: 0 8px 24px rgba(26, 43, 86, 0.08);
  border: 1px solid rgba(26, 43, 86, 0.05);
  min-height: 100%;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(26, 43, 86, 0.12);
}

.story-quote {
  color: var(--purple);
  display: block;
  margin-bottom: 10px;
}

.story-quote svg {
  width: 28px;
  height: 28px;
  display: block;
}

.story-card > p {
  color: var(--navy);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: auto;
  padding-bottom: 18px;
}

.story-footer {
  margin-top: auto;
}

.story-person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.story-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.story-person strong {
  display: block;
  color: var(--navy);
  font-size: 13.5px;
  line-height: 1.3;
}

.story-person span {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.35;
}

.story-stars {
  color: #f5b301;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
}

.stories-impact-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #5f52b4;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.stories-impact-copy {
  padding: 22px 16px 16px;
  text-align: center;
}

.stories-impact-copy strong {
  display: block;
  font-size: clamp(28px, 2.5vw, 34px);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stories-impact-copy span {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  opacity: 0.95;
}

.stories-impact-photo {
  width: 100%;
  margin-top: auto;
  height: 170px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  background: #5f52b4;
}

/* Clinic */
.clinic {
  background: var(--white);
}

.clinic-layout {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
  align-items: center;
}

.clinic-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.clinic-eyebrow {
  color: var(--purple);
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
}

.clinic-title {
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1.25;
  max-width: 14ch;
}

.clinic-slider {
  position: relative;
  min-width: 0;
}

.clinic-row {
  display: flex;
  align-items: stretch;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 52px 4px 2px;
}

.clinic-row::-webkit-scrollbar {
  display: none;
}

.clinic-card {
  position: relative;
  flex: 0 0 220px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 8px 24px rgba(26, 43, 86, 0.1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.clinic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(26, 43, 86, 0.16);
}

.clinic-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.clinic-card:hover img {
  transform: scale(1.06);
}

.clinic-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 12px 14px;
  background: linear-gradient(180deg, rgba(15, 25, 50, 0) 0%, rgba(15, 25, 50, 0.72) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.clinic-nav {
  position: absolute;
  right: 0;
  top: calc(4px + 105px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.clinic-nav-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(36, 58, 114, 0.35);
  border-radius: 50%;
  background: #fff;
  color: var(--navy-mid);
  box-shadow: 0 4px 14px rgba(26, 43, 86, 0.1);
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
}

.clinic-nav-btn svg {
  display: block;
  width: 16px;
  height: 16px;
}

.clinic-nav-btn:hover {
  border-color: var(--navy-mid);
  box-shadow: 0 8px 18px rgba(26, 43, 86, 0.16);
  background: #f4f6fb;
  color: var(--navy);
}

/* Online */
.online {
  background: linear-gradient(180deg, #f8fafc 0%, #f2f5fa 100%);
  padding: 32px 0;
}

.online-layout {
  display: grid;
  grid-template-columns: minmax(0, 250px) minmax(0, 1fr) minmax(0, 250px);
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

.online-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.online-eyebrow {
  color: var(--purple);
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}

.online-title {
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1.2;
  max-width: 12ch;
}

.online-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 18px);
  min-width: 0;
}

.online-step {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 0 clamp(8px, 1vw, 12px);
  border-left: 1px solid rgba(26, 43, 86, 0.08);
}

.online-step:first-child {
  border-left: none;
  padding-left: 0;
}

.online-step-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
}

.online-step-copy {
  flex: 1;
  min-width: 0;
}

.online-step-num {
  font-weight: 800;
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1;
}

.online-step-num--1 {
  color: #e8913a;
}

.online-step-num--2,
.online-step-num--4 {
  color: var(--purple);
}

.online-step-num--3 {
  color: #3b82c9;
}

.online-step-copy strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 2px;
}

.online-step-copy p {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.4;
}

.online-step-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: 0;
}

.online-visual {
  position: relative;
  align-self: stretch;
  min-height: 0;
  overflow: hidden;
}

.online-visual-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  transform: scale(1.5);
  transform-origin: right center;
  display: block;
}

/* FAQ */
.faq {
  background: linear-gradient(180deg, #f8fafc 0%, #f2f5fa 100%);
  padding: 32px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}

.faq-intro {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
  min-width: 0;
}

.faq-visual-img {
  width: clamp(160px, 16vw, 210px);
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.faq-intro-copy {
  min-width: 0;
}

.faq-eyebrow {
  color: var(--navy);
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-title {
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.25;
  margin-bottom: 0;
  max-width: 14ch;
}

.faq-panel {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(26, 43, 86, 0.08);
  box-shadow: 0 4px 20px rgba(26, 43, 86, 0.06);
  overflow: hidden;
}

.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26, 43, 86, 0.08);
  border-radius: 0;
  box-shadow: none;
  padding: 0 clamp(18px, 2.5vw, 24px);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(14px, 1.8vw, 18px) 28px clamp(14px, 1.8vw, 18px) 0;
  color: var(--navy);
  font-weight: 600;
  font-size: clamp(13.5px, 1.2vw, 15px);
  line-height: 1.45;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #3b82c9;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.65;
  padding-bottom: clamp(14px, 1.8vw, 18px);
  max-width: 62ch;
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #07175f 0%, #132a96 36%, #4a3ec0 68%, #6d4fd4 100%);
}

.final-cta-floral {
  position: absolute;
  left: 0;
  top: 42%;
  transform: translateY(-50%);
  width: min(300px, 26vw);
  height: auto;
  max-height: 200px;
  object-fit: contain;
  object-position: left center;
  opacity: 0.28;
  pointer-events: none;
  z-index: 1;
}

.final-cta::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 240px;
  height: 160px;
  background-image: radial-gradient(rgba(196, 186, 240, 0.38) 1.15px, transparent 1.25px);
  background-size: 14px 14px;
  mask-image: linear-gradient(to top right, #000 10%, transparent 78%);
  pointer-events: none;
  z-index: 1;
}

.final-cta-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(46%, 620px);
  z-index: 0;
  pointer-events: none;
  clip-path: ellipse(92% 82% at 100% 50%);
  filter: drop-shadow(-8px 0 14px rgba(255, 214, 120, 0.72));
}

.final-cta-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #132a96 0%,
    rgba(19, 42, 150, 0.55) 18%,
    rgba(74, 62, 192, 0.16) 46%,
    transparent 70%
  );
  pointer-events: none;
}

.final-cta-family {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.final-cta-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-height: 0;
  padding: 20px min(38%, 460px) 18px 0;
}

.final-cta-copy {
  align-self: stretch;
  padding-bottom: 0;
}

.final-cta-title {
  color: #fff;
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 6px;
  max-width: 18ch;
}

.final-cta-title span {
  display: block;
  color: #c9c8f6;
}

.final-cta-text {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(13px, 1.15vw, 15.5px);
  line-height: 1.5;
  max-width: 38ch;
}

.final-cta-text::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  background: #e7c56a;
  margin-top: 8px;
  border-radius: 2px;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.cta-btn--book {
  background-color: #f5923e;
  color: #fff;
  box-shadow: 0 4px 14px rgba(245, 146, 62, 0.35);
}

.cta-btn--book:hover {
  background-color: #e9842f;
  box-shadow: 0 10px 22px rgba(245, 146, 62, 0.48);
}

.cta-btn--talk {
  background-color: #fff;
  color: #5c4db1;
  box-shadow: 0 4px 14px rgba(26, 43, 86, 0.12);
}

.cta-btn--talk:hover {
  box-shadow: 0 10px 22px rgba(92, 77, 177, 0.18);
}

.cta-btn--wa {
  background-color: #fff;
  color: #1f9e4a;
  box-shadow: 0 4px 14px rgba(26, 43, 86, 0.12);
}

.cta-btn--wa:hover {
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.22);
}

.cta-btn-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cta-btn-icon svg {
  width: 18px;
  height: 18px;
}

.cta-btn-icon--wa {
  width: 22px;
  height: 22px;
}

.cta-btn-icon--wa svg {
  width: 22px;
  height: 22px;
  display: block;
}

.cta-btn--book .cta-btn-icon svg {
  color: #fff;
}

.cta-btn--talk .cta-btn-icon svg {
  color: #5c4db1;
}

.final-cta-perks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  gap: 10px 24px;
  margin: 0;
  max-width: 640px;
}

.final-cta-perks li {
  display: grid;
  justify-items: start;
  gap: 4px;
  color: #fff;
}

.final-cta-perk-icon {
  width: 24px;
  height: 24px;
  color: #c9b8f0;
  margin-bottom: 0;
}

.final-cta-perk-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.final-cta-perks strong {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.25;
}

.final-cta-perks span {
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.3;
}

.final-cta-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  max-width: 100%;
  background: rgba(62, 42, 140, 0.48);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 16px 8px 10px;
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
}

.final-cta-trust-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #fff;
}

.final-cta-trust-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.final-cta-trust em {
  color: #ffd76a;
  font-style: normal;
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: #0a1458;
  color: rgba(255, 255, 255, 0.88);
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.9fr;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand img {
  width: 270px;
  height: auto;
  max-width: 270px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 14px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 10px;
}

.footer-address {
  font-size: 13px !important;
  opacity: 0.8;
  max-width: 36ch;
}

.site-footer h3 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 14px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
}

.site-footer a {
  font-size: 13.5px;
  opacity: 0.85;
}

.site-footer a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-treatments {
  padding-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer .footer-treatments-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}

.footer-treatments-list li {
  position: relative;
}

.footer-treatments-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.24);
}

.footer-bottom {
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 12.5px;
  opacity: 0.75;
}

.footer-disclaimer {
  max-width: 52ch;
}

.footer-credit a {
  font-size: inherit;
  opacity: 1;
  color: var(--gold);
  font-weight: 600;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* Mobile sticky CTA */
.mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 120;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 32, 128, 0.1);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(8, 24, 90, 0.18);
  padding: 8px;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 8px;
}

.mobile-cta a {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  padding: 10px 8px;
  border-radius: 10px;
  background: #eef1f8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mobile-cta a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.mobile-cta-primary {
  background: var(--navy) !important;
  color: #fff !important;
}

/* Shared button motion */
.btn-book,
.hero .btn-primary,
.hero .btn-outline,
.hero-whatsapp,
.conditions-cta,
.awards-cta,
.stories-cta,
.doctor-talk-btn,
.cta-btn,
.awards-nav-btn,
.clinic-nav-btn,
.mobile-cta a {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease,
    background-position 0.55s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    filter 0.3s ease;
}

.btn-book,
.hero .btn-primary,
.conditions-cta,
.awards-cta,
.stories-cta,
.doctor-talk-btn,
.cta-btn--book {
  background-image: linear-gradient(
    115deg,
    transparent 18%,
    rgba(255, 255, 255, 0.26) 48%,
    transparent 72%
  );
  background-size: 240% 100%;
  background-position: 170% 0;
  background-repeat: no-repeat;
}

.btn-book:hover,
.hero .btn-primary:hover,
.hero .btn-outline:hover,
.conditions-cta:hover,
.awards-cta:hover,
.stories-cta:hover,
.doctor-talk-btn:hover,
.cta-btn:hover {
  transform: translateY(-3px);
  background-position: -70% 0;
}

.awards-nav-btn:hover,
.clinic-nav-btn:hover {
  transform: scale(1.08);
}

.hero-whatsapp:hover {
  transform: translateX(3px);
}

.btn-book:active,
.hero .btn-primary:active,
.hero .btn-outline:active,
.conditions-cta:active,
.awards-cta:active,
.stories-cta:active,
.doctor-talk-btn:active,
.cta-btn:active,
.mobile-cta a:active {
  transform: translateY(0) scale(0.97);
}

.awards-nav-btn:active,
.clinic-nav-btn:active {
  transform: scale(0.94);
}

.hero .btn-primary svg,
.hero .btn-outline svg,
.hero-whatsapp svg,
.doctor-talk-btn svg,
.cta-btn-icon,
.awards-nav-btn svg,
.clinic-nav-btn svg {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero .btn-primary:hover svg,
.hero .btn-outline:hover svg,
.doctor-talk-btn:hover svg,
.cta-btn:hover .cta-btn-icon {
  transform: translateX(3px);
}

.awards-nav-btn:hover svg,
.clinic-nav-btn:hover svg {
  transform: scale(1.08);
}

.mobile-cta a:hover {
  transform: translateY(-2px);
}

.btn-book:focus-visible,
.hero .btn-primary:focus-visible,
.hero .btn-outline:focus-visible,
.hero-whatsapp:focus-visible,
.conditions-cta:focus-visible,
.awards-cta:focus-visible,
.stories-cta:focus-visible,
.doctor-talk-btn:focus-visible,
.cta-btn:focus-visible,
.awards-nav-btn:focus-visible,
.clinic-nav-btn:focus-visible,
.mobile-cta a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Reveal + page motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.reveal-left {
  transform: translateX(-28px);
}

.reveal.reveal-right {
  transform: translateX(28px);
}

.reveal.reveal-scale {
  transform: translateY(18px) scale(0.96);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-in-right {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-eyebrow,
.hero-title,
.hero-sub,
.hero-ctas,
.hero-whatsapp,
.hero-trust {
  animation: hero-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title { animation-delay: 0.08s; }
.hero-sub { animation-delay: 0.16s; }
.hero-ctas { animation-delay: 0.24s; }
.hero-whatsapp { animation-delay: 0.3s; }
.hero-trust { animation-delay: 0.38s; }

.hero-banner-img {
  animation: none;
}

.condition-card img,
.award-card img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.condition-card:hover img,
.award-card:hover img {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.reveal-left,
  .reveal.reveal-right,
  .reveal.reveal-scale,
  .hero-eyebrow,
  .hero-title,
  .hero-sub,
  .hero-ctas,
  .hero-whatsapp,
  .hero-trust,
  .hero-banner-img,
  .btn-book,
  .hero .btn-primary,
  .hero .btn-outline,
  .hero-whatsapp,
  .conditions-cta,
  .awards-cta,
  .stories-cta,
  .doctor-talk-btn,
  .cta-btn,
  .awards-nav-btn,
  .clinic-nav-btn,
  .mobile-cta a {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .trust-bar {
    padding: 18px 0;
    width: 100%;
  }

  .trust-bar-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 0;
  }

  .trust-item {
    min-width: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .trust-item-icon {
    width: 48px;
    height: 48px;
  }

  .trust-item-copy {
    align-items: center;
  }

  .trust-item strong,
  .trust-count {
    font-size: 22px;
  }

  .trust-item span {
    font-size: 12px;
    line-height: 1.25;
  }

  .conditions-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .conditions-title {
    max-width: none;
  }

  .awards-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .awards-title {
    max-width: none;
  }

  .awards-row {
    display: flex;
    scroll-snap-type: x mandatory;
    padding-right: 48px;
  }

  .award-card {
    flex: 0 0 210px;
    min-height: 340px;
  }

  .awards-nav-btn {
    width: 36px;
    height: 36px;
  }

  .awards-nav-btn svg {
    width: 15px;
    height: 15px;
  }

  .journey-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .journey-title {
    max-width: none;
  }

  .journey-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }

  .journey-step:nth-child(3)::after,
  .journey-step:nth-child(6)::after {
    display: none;
  }

  .journey-step:nth-child(4)::before,
  .journey-step:nth-child(5)::before,
  .journey-step:nth-child(6)::before {
    display: none;
  }

  .clinic-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .online-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .online-title {
    max-width: none;
  }

  .online-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    row-gap: 0;
  }

  .online-step {
    border-left: 1px solid rgba(26, 43, 86, 0.08);
    padding: 0 8px;
  }

  .online-step:first-child {
    border-left: none;
    padding-left: 0;
  }

  .online-step:nth-child(odd) {
    padding-right: 8px;
    border-right: none;
  }

  .online-visual {
    height: auto;
    align-self: auto;
  }

  .online-visual-img {
    position: static;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    object-position: center bottom;
  }

  .clinic-title {
    max-width: none;
  }

  .clinic-row {
    scroll-snap-type: x mandatory;
    padding-right: 48px;
  }

  .clinic-card {
    flex: 0 0 200px;
  }

  .clinic-nav-btn {
    width: 36px;
    height: 36px;
  }

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

  .stories-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .stories-impact-card {
    grid-column: 1 / -1;
    max-width: 360px;
    justify-self: center;
    width: 100%;
  }

  .myth-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .myth-title,
  .myth-text {
    max-width: none;
  }

  .myth-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .myth-compare {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .myth-panel {
    min-width: 0;
  }

  .myth-panel--yes {
    margin-right: 0;
  }

  .myth-vs {
    position: static;
    transform: none;
    justify-self: center;
    margin: -4px 0;
  }

  .myth-visual {
    min-height: 290px;
  }

  .why-grid,
  .doctor-profile-grid,
  .online-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .doctor-top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .doctor-highlights {
    padding-left: 0;
    border-left: 0;
    grid-template-columns: 1fr 1fr;
  }

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

  .doctor-details {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    gap: 18px;
  }

  .faq-title {
    max-width: none;
  }

  .why-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, auto);
  }

  .final-cta-layout {
    gap: 10px;
    min-height: 0;
    padding: 18px min(40%, 300px) 16px 0;
  }

  .final-cta-visual {
    width: min(48%, 420px);
  }

  .final-cta-title {
    max-width: none;
  }

  .final-cta-perks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 32px 0;
  }

  .section-title,
  .why-title,
  .conditions-title,
  .awards-title,
  .myth-title,
  .journey-title,
  .stories-title,
  .clinic-title,
  .online-title,
  .faq-title {
    font-size: 26px;
  }

  .why-title br {
    display: none;
  }

  body {
    padding-bottom: 84px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .mobile-cta {
    display: grid;
  }

  .trust-bar {
    padding: 12px 0;
    width: 100%;
  }

  .journey-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
    column-gap: 12px;
  }

  .trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    row-gap: 0;
  }

  .trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 8px 4px;
    border-radius: 12px;
  }

  .trust-item-icon {
    width: 28px;
    height: 28px;
  }

  .trust-item strong,
  .trust-count {
    font-size: 15px;
  }

  .trust-item span {
    font-size: 9px;
    line-height: 1.2;
  }

  .trust-item-copy {
    align-items: center;
  }

  .journey-step::before,
  .journey-step::after {
    display: none;
  }

  .clinic-row,
  .awards-row,
  .conditions-row {
    padding-right: 8px;
    margin-inline: -4px;
    padding-inline: 4px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 10px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-grid > :nth-child(n + 2) h3 {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .footer-grid > :nth-child(n + 2) a {
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }

  .footer-disclaimer {
    max-width: none;
  }

  .site-footer .footer-treatments-list {
    gap: 8px 14px;
  }

  .footer-brand img {
    width: min(270px, 100%);
    height: auto;
    max-width: 270px;
  }

  .stories-row {
    grid-template-columns: 1fr;
  }

  .stories-impact-card {
    max-width: none;
  }

  .why-cards {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }

  .why-card {
    padding: 16px;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  .why-image-wrap img,
  .why-visual-img {
    min-height: 0;
    max-height: 280px;
    margin-inline: auto;
  }

  .doctor-profile-photo {
    min-height: 0;
    aspect-ratio: 4 / 5;
    max-height: 420px;
  }

  .doctor-profile-img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: top center;
  }

  .doctor-highlights {
    grid-template-columns: 1fr;
  }

  .doctor-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .doctor-stat {
    padding: 12px;
  }

  .doctor-book-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .doctor-talk-btn {
    width: 100%;
    justify-content: center;
  }

  .online-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    row-gap: 0;
  }

  .online-step {
    border-left: 1px solid rgba(26, 43, 86, 0.08);
    padding: 0 5px;
    gap: 4px;
  }

  .online-step:first-child {
    border-left: none;
    padding-left: 0;
  }

  .online-step:nth-child(odd) {
    padding-right: 5px;
    border-right: none;
  }

  .online-step-num {
    font-size: 18px;
  }

  .online-step-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .online-step-copy strong {
    font-size: 11px;
    line-height: 1.25;
  }

  .online-step-copy p {
    font-size: 10px;
    line-height: 1.3;
  }

  .online-step-icon {
    width: 28px;
    height: 28px;
  }

  .online-visual-img {
    position: static;
    max-width: 100%;
    max-height: 190px;
    object-fit: contain;
    object-position: center bottom;
  }

  .faq-item summary {
    font-size: 15px;
    padding-right: 28px;
  }

  .conditions-cta,
  .awards-cta,
  .stories-cta {
    width: 100%;
    justify-content: center;
  }

  .final-cta-layout {
    gap: 12px;
    padding: 22px 0 24px;
    min-height: auto;
  }

  .final-cta-visual {
    position: relative;
    width: 100%;
    height: 180px;
    top: auto;
    bottom: auto;
    clip-path: none;
    filter: none;
    border-radius: 16px;
    overflow: hidden;
    order: -1;
    margin-bottom: 4px;
  }

  .final-cta-family {
    object-position: center 20%;
  }

  .final-cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta-actions .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .final-cta-perks {
    grid-template-columns: 1fr 1fr;
    max-width: none;
    width: 100%;
    gap: 12px;
  }

  .final-cta-trust {
    border-radius: 16px;
    align-items: flex-start;
  }

  .hero-banner-img {
    height: auto;
  }

  .hero-title {
    font-size: 24px;
  }

  .faq-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .faq-visual-img {
    width: 120px;
  }

  .final-cta-visual::after {
    background: linear-gradient(180deg, transparent 30%, rgba(19, 42, 150, 0.45) 100%);
  }
}

@media (max-width: 720px) {
  .hero-banner-img {
    height: auto;
  }

  .hero-title {
    font-size: 23px;
  }

  .hero-left {
    padding: 18px 16px 14px;
  }

  .section-eyebrow,
  .why-eyebrow,
  .conditions-eyebrow,
  .awards-eyebrow,
  .myth-eyebrow,
  .journey-eyebrow,
  .stories-eyebrow,
  .clinic-eyebrow,
  .online-eyebrow,
  .faq-eyebrow,
  .doctor-eyebrow {
    display: inline-flex;
    background: #f4ecda;
    color: var(--gold-dark);
    padding: 5px 10px;
    border-radius: 999px;
    letter-spacing: 0.08em;
    font-size: 10px;
    margin-bottom: 12px;
  }

  .trust-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px 4px;
  }

  .why-card {
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(26, 43, 86, 0.07);
  }

  .why-card-icon {
    width: 44px;
    height: 44px;
    background: #f3f0ff;
    border-radius: 12px;
    padding: 6px;
  }

  .online {
    padding: 28px 0 20px;
  }

  .online-steps {
    gap: 8px;
  }

  .online-step {
    background: #fff;
    border: 1px solid rgba(26, 43, 86, 0.06);
    border-left: 1px solid rgba(26, 43, 86, 0.06);
    border-radius: 14px;
    padding: 10px 6px 12px;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 18px rgba(26, 43, 86, 0.06);
    gap: 6px;
  }

  .online-step:first-child,
  .online-step:nth-child(odd) {
    border-left: 1px solid rgba(26, 43, 86, 0.06);
    padding-left: 6px;
    padding-right: 6px;
  }

  .online-step-body {
    align-items: center;
  }

  .online-step-copy p {
    display: none;
  }

  .online-visual {
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at 50% 80%, #e4def8 0%, transparent 70%);
    border-radius: 20px;
    padding-top: 8px;
  }

  .online-visual-img {
    max-height: 220px;
    transform: none;
  }

  .doctor-profile-photo {
    border-radius: 24px;
  }

  .doctor-highlights li {
    background: #fff;
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 4px 14px rgba(26, 43, 86, 0.05);
  }

  .faq-item {
    border-radius: 14px;
    background: #fff;
    margin-bottom: 8px;
    padding: 4px 12px;
    box-shadow: 0 4px 14px rgba(26, 43, 86, 0.05);
    border: 1px solid rgba(26, 43, 86, 0.05);
  }

  .myth-panel {
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(26, 43, 86, 0.06);
  }

  .journey-step {
    background: #fff;
    border-radius: 16px;
    padding: 14px 10px;
    box-shadow: 0 6px 16px rgba(26, 43, 86, 0.06);
    text-align: center;
  }

  .condition-card,
  .award-card,
  .story-card,
  .clinic-card {
    box-shadow: 0 10px 24px rgba(26, 43, 86, 0.1);
  }

  .mobile-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 18px;
    padding: 7px;
    box-shadow: 0 14px 36px rgba(8, 24, 90, 0.22);
  }

  .mobile-cta a:nth-child(2) {
    background: #e9f8ef;
    color: #128c3e;
  }

  .header-phone-text {
    display: none;
  }

  .header-phone-icon {
    width: 40px;
    height: 40px;
  }

  .nav-toggle {
    background: var(--navy);
    border-color: var(--navy);
  }

  .nav-toggle span {
    background: #fff;
  }
}
