:root {
  --ink: #241a2a;
  --muted: #6d6172;
  --paper: #ffffff;
  --mist: #f8f4fa;
  --plum: #844685;
  --plum-deep: #3a1345;
  --berry: #a35fa4;
  --berry-dark: #844685;
  --aqua: #58c8c0;
  --cta: #844685;
  --cta-dark: #69386c;
  --line: #e8ddea;
  --shadow: 0 22px 70px rgba(70, 29, 79, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  width: min(1240px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; }
.brand img { width: 160px; height: auto; display: block; }

.desktop-nav { display: flex; justify-content: center; gap: 28px; }
.desktop-nav a, .header-phone { text-decoration: none; font-weight: 700; font-size: 0.92rem; }
.desktop-nav a:hover, .header-phone:hover { color: var(--berry-dark); }

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cta);
  border-radius: 999px;
  background: var(--cta);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover { transform: translateY(-2px); border-color: var(--cta-dark); background: var(--cta-dark); box-shadow: none; }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid var(--aqua); outline-offset: 4px; }
.button-small { min-height: 44px; padding: 0 18px; border-radius: 999px; font-size: 0.9rem; }
.button-ghost { background: transparent; color: var(--cta); border-color: var(--cta); box-shadow: none; }
.button-ghost:hover { border-color: var(--cta); background: var(--cta); color: #fff; box-shadow: none; }

.hero {
  position: relative;
  overflow: hidden;
  width: min(1320px, calc(100% - 24px));
  min-height: 700px;
  margin: 0 auto;
  padding: 72px clamp(28px, 6vw, 92px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(40px, 6vw, 94px);
  background:
    radial-gradient(circle at 91% 14%, rgba(88, 200, 192, 0.24), transparent 25%),
    linear-gradient(135deg, #fbf8fc 0%, #f5eef8 56%, #efe3f3 100%);
  border-radius: 34px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  left: -130px;
  bottom: -190px;
  border: 58px solid rgba(217, 63, 122, 0.08);
  border-radius: 50%;
}

.hero-copy, .hero-visual { position: relative; z-index: 1; min-width: 0; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--berry-dark);
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.6rem, 5.15vw, 5.3rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-kicker {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--berry-dark);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.45;
  font-weight: 900;
}

.hero-lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero-facts {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: #514554;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-facts span { color: var(--berry); }

.hero-visual {
  min-height: 540px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(84, 35, 95, 0.18);
  border-radius: 50%;
}

.orbit-one { width: 490px; height: 490px; }
.orbit-two { width: 380px; height: 380px; border-color: rgba(217, 63, 122, 0.28); }

.portrait {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 8px solid #fff;
  background: #eee4f1;
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  will-change: transform;
}

.portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.portrait-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  color: var(--plum-deep);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.2;
}

.portrait small { display: block; margin-top: 3px; color: var(--muted); font-size: 0.72rem; font-weight: 700; }
.portrait-primary { width: 310px; height: 400px; border-radius: 150px 150px 28px 28px; z-index: 3; }
.portrait-left { width: 190px; height: 244px; left: 0; bottom: 80px; border-radius: 28px 100px 28px 28px; transform: rotate(-5deg); z-index: 2; }
.portrait-right { width: 190px; height: 244px; right: 0; top: 66px; border-radius: 100px 28px 28px 28px; transform: rotate(5deg); z-index: 2; }
.portrait:hover, .portrait:focus-visible { z-index: 10; box-shadow: 0 30px 80px rgba(70, 29, 79, 0.27); }
.portrait-primary:hover, .portrait-primary:focus-visible { transform: translateY(-8px) scale(1.035); }
.portrait-left:hover, .portrait-left:focus-visible { transform: rotate(-3deg) translate(10px, -10px) scale(1.1); filter: saturate(1.08); }
.portrait-right:hover, .portrait-right:focus-visible { transform: rotate(3deg) translate(-10px, -10px) scale(1.1); filter: saturate(1.08); }

@media (hover: hover) {
  .hero-visual:has(.portrait:hover) .portrait:not(:hover) { filter: saturate(0.72) brightness(0.97); }
}

.hero-note {
  position: absolute;
  right: 10px;
  bottom: 12px;
  width: 250px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--plum);
  color: #fff;
  box-shadow: 0 18px 40px rgba(58, 19, 69, 0.24);
  z-index: 4;
}

.hero-note strong, .hero-note span { display: block; }
.hero-note strong { font-size: 0.96rem; line-height: 1.3; }
.hero-note span { margin-top: 5px; color: #eadfee; font-size: 0.78rem; line-height: 1.4; }

.answer-strip {
  width: min(1110px, calc(100% - 40px));
  margin: 30px auto 0;
  padding: 22px 26px;
  border-left: 5px solid var(--aqua);
  border-radius: 0 18px 18px 0;
  background: #f2fbfa;
  color: #304b49;
}
.answer-strip p { margin: 0; }

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading { max-width: 790px; margin-bottom: 48px; }
.section-heading h2, .process-intro h2, .format-main h2, .safety-section h2, .evidence-section h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.1vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.section-heading > p:last-child { max-width: 700px; margin: 20px 0 0; color: var(--muted); font-size: 1.06rem; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1fr 0.68fr; gap: 70px; align-items: end; }
.split-heading > p { margin: 0 0 8px !important; }

.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pain-card {
  min-height: 250px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.pain-card:hover { transform: translateY(-4px); border-color: #d8c2dd; box-shadow: 0 18px 46px rgba(70, 29, 79, 0.1); }
.pain-card-featured { background: var(--plum); color: #fff; border-color: var(--plum); }
.pain-card-cta { background: #e8f8f6; border-color: #c4eeea; }
.card-index { color: var(--berry); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.13em; }
.pain-card-featured .card-index { color: #ffc4d9; }
.pain-card h3 { margin: auto 0 10px; font-size: 1.32rem; line-height: 1.25; }
.pain-card p { margin: 0; color: var(--muted); }
.pain-card-featured p { color: #eadfee; }
.pain-card a { margin-top: 20px; color: var(--plum-deep); font-weight: 900; text-decoration: none; }

.process-section {
  width: min(1280px, calc(100% - 24px));
  padding: 78px clamp(28px, 6vw, 86px);
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 90px;
  background: var(--plum-deep);
  color: #fff;
  border-radius: 32px;
}
.eyebrow-light { color: #ffc4d9; }
.process-intro > p:not(.eyebrow) { color: #d9cddd; max-width: 540px; margin: 24px 0; }
.text-link { color: #fff; font-weight: 900; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.process-list { margin: 0; padding: 0; list-style: none; display: grid; }
.process-list li { padding: 25px 0; display: grid; grid-template-columns: 52px 1fr; gap: 18px; border-bottom: 1px solid rgba(255,255,255,0.16); }
.process-list li:first-child { padding-top: 4px; }
.process-list li:last-child { border-bottom: 0; padding-bottom: 4px; }
.process-list li > span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.35); border-radius: 50%; color: #ffc4d9; font-weight: 900; }
.process-list h3 { margin: 0 0 5px; font-size: 1.22rem; }
.process-list p { margin: 0; color: #d9cddd; }

.doctors-section { padding-bottom: 80px; }
.doctor-explorer {
  display: grid;
  grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.52fr);
  gap: 22px;
  align-items: start;
}
.doctor-picker {
  position: sticky;
  top: 24px;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--mist);
}
.doctor-picker-label {
  margin: 0 0 14px;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.doctor-tabs { display: grid; gap: 9px; }
.doctor-tab {
  width: 100%;
  min-height: 86px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(70, 29, 79, 0.06);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}
.doctor-tab:hover { transform: translateX(3px); box-shadow: 0 12px 30px rgba(70, 29, 79, 0.1); }
.doctor-tab[aria-selected="true"] { background: var(--cta); color: #fff; box-shadow: 0 12px 30px rgba(132, 70, 133, 0.2); }
.doctor-tab img { width: 62px; height: 62px; border-radius: 16px; object-fit: cover; object-position: top center; background: #eadfee; }
.doctor-tab strong, .doctor-tab small { display: block; }
.doctor-tab strong { font-size: 0.97rem; line-height: 1.22; }
.doctor-tab small { margin-top: 4px; color: var(--muted); font-size: 0.74rem; line-height: 1.3; font-weight: 700; }
.doctor-tab[aria-selected="true"] small { color: #e6dce9; }
.doctor-tab-arrow { color: var(--berry); font-size: 1.25rem; font-weight: 900; transition: transform 160ms ease; }
.doctor-tab[aria-selected="true"] .doctor-tab-arrow { color: #ffc4d9; transform: translateX(3px); }
.doctor-picker-hint { margin: 16px 4px 0; color: var(--muted); font-size: 0.82rem; line-height: 1.45; }
.doctor-panels { min-width: 0; }
.doctor-profile-panel {
  min-width: 0;
  min-height: 570px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1.18fr);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 62px rgba(70, 29, 79, 0.11);
  animation: doctor-panel-in 220ms ease both;
}
.doctor-profile-panel[hidden] { display: none !important; }
.doctor-profile-photo { min-width: 0; min-height: 570px; overflow: hidden; background: linear-gradient(145deg, #f0e4f3, #faf8fb); }
.doctor-profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.doctor-profile-content { min-width: 0; padding: clamp(30px, 4vw, 54px); display: flex; flex-direction: column; justify-content: center; }
.doctor-profile-content h3 { max-width: 620px; margin: 0; font-size: clamp(2rem, 3.1vw, 3.4rem); line-height: 1.03; letter-spacing: -0.045em; }
.doctor-profile-content > p:not(.location):not(.role):not(.doctor-best-for):not(.doctor-price-note) { margin: 0; color: var(--muted); font-size: 1.02rem; }
.doctor-best-for { margin: 24px 0 0; padding: 16px 18px; border-left: 4px solid var(--aqua); border-radius: 0 14px 14px 0; background: #f2fbfa; color: #375552; }
.doctor-best-for strong { color: #1e615d; }
.doctor-credential {
  margin: 16px 0 0;
  padding: 17px 18px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 13px;
  border: 1px solid #decbe3;
  border-radius: 16px;
  background: #f8f1f9;
  color: var(--plum-deep);
}
.doctor-credential-icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--plum); color: #fff; font-size: 1rem; font-weight: 900; }
.doctor-credential p { margin: 0; }
.doctor-credential-label { margin-bottom: 5px !important; color: var(--berry-dark); font-size: 0.7rem; line-height: 1.2; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.doctor-credential strong { font-size: 0.92rem; line-height: 1.35; }
.doctor-credential-facts { margin-top: 6px !important; color: var(--plum); font-size: 0.82rem; font-weight: 900; }
.doctor-credential-note { margin-top: 7px !important; color: var(--muted); font-size: 0.72rem; line-height: 1.4; }
.doctor-profile-content .doctor-tags { margin-bottom: 16px; }
.doctor-price-note { margin: 0 0 24px; color: var(--plum-deep); font-size: 0.9rem; font-weight: 700; }
.doctor-price-note strong { color: var(--plum); }

@keyframes doctor-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.doctor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.doctor-card { overflow: hidden; display: grid; grid-template-rows: 350px 1fr; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: 0 16px 50px rgba(70, 29, 79, 0.08); }
.doctor-photo { background: linear-gradient(145deg, #f0e4f3, #faf8fb); overflow: hidden; }
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.doctor-content { padding: 28px; display: flex; flex-direction: column; }
.doctor-card-dark { background: var(--plum); color: #fff; border-color: var(--plum); }
.doctor-card-dark .doctor-content > p:not(.location):not(.role), .doctor-card-dark .role { color: #e6dce9; }
.doctor-card-dark .profile-link { color: #fff; }
.location { margin: 0 0 12px; color: var(--berry-dark); font-size: 0.74rem; line-height: 1.3; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; }
.doctor-card-dark .location { color: #ffc4d9; }
.doctor-card h3 { margin: 0; font-size: 1.55rem; line-height: 1.17; letter-spacing: -0.025em; }
.role { margin: 8px 0 16px; color: var(--plum); font-weight: 900; }
.doctor-content > p:not(.location):not(.role) { margin: 0; color: var(--muted); }
.doctor-tags { margin: 22px 0 26px; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 7px; }
.doctor-tags li { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; font-size: 0.74rem; line-height: 1.1; font-weight: 800; }
.doctor-card-dark .doctor-tags li { border-color: rgba(255,255,255,0.24); }
.doctor-actions { margin-top: auto; display: flex; align-items: center; gap: 16px; }
.doctor-actions .button { min-height: 46px; padding: 0 18px; border-radius: 999px; font-size: 0.88rem; }
.profile-link { color: var(--plum); font-size: 0.86rem; font-weight: 900; text-underline-offset: 4px; }
.availability-note { margin: 24px 0 0; color: var(--muted); font-size: 0.9rem; text-align: center; }

.format-section {
  padding-top: 72px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: start;
  border-top: 1px solid var(--line);
}
.format-main > p:last-child { color: var(--muted); }
.format-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.format-options article { min-height: 290px; padding: 24px; display: flex; flex-direction: column; border-radius: 22px; background: var(--mist); }
.format-options article:nth-child(2) { transform: translateY(26px); background: #e8f8f6; }
.format-options article:nth-child(3) { transform: translateY(52px); background: #fbeaf1; }
.format-options span { color: var(--berry); font-weight: 900; font-size: 0.78rem; }
.format-options h3 { margin: auto 0 10px; font-size: 1.3rem; }
.format-options p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.pricing-section { padding-top: 106px; }
.pricing-heading { align-items: end; }
.pricing-heading > p { margin-bottom: 8px; }
.pricing-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.pricing-card {
  position: relative;
  min-width: 0;
  min-height: 410px;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(70, 29, 79, 0.07);
}
.pricing-card-featured { border-color: var(--plum); background: var(--plum); color: #fff; transform: translateY(-10px); box-shadow: 0 24px 58px rgba(70, 29, 79, 0.22); }
.price-badge { position: absolute; top: -14px; left: 20px; padding: 7px 12px; border-radius: 999px; background: #fff; color: var(--plum); box-shadow: 0 8px 24px rgba(70, 29, 79, 0.16); font-size: 0.7rem; line-height: 1; font-weight: 900; white-space: nowrap; }
.price-label { margin: 0 0 12px; color: var(--berry-dark); font-size: 0.72rem; line-height: 1.2; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.pricing-card-featured .price-label { color: #ffd2e2; }
.pricing-card h3 { min-height: 2.6em; margin: 0; font-size: 1.24rem; line-height: 1.3; letter-spacing: -0.02em; }
.price { margin: 18px 0 0; display: flex; align-items: baseline; gap: 7px; line-height: 1; }
.price strong { font-size: clamp(2.25rem, 3.4vw, 3rem); letter-spacing: -0.055em; }
.price span { color: var(--muted); font-size: 0.9rem; font-weight: 800; }
.pricing-card-featured .price span, .pricing-card-featured .price-duration, .pricing-card-featured li { color: #eadfeb; }
.price-duration { min-height: 2.8em; margin: 9px 0 16px; color: var(--muted); font-size: 0.8rem; line-height: 1.4; font-weight: 700; }
.pricing-card ul { margin: 0 0 22px; padding: 0; display: grid; gap: 8px; list-style: none; }
.pricing-card li { position: relative; padding-left: 16px; color: var(--muted); font-size: 0.8rem; line-height: 1.35; }
.pricing-card li::before { content: "•"; position: absolute; left: 0; color: var(--aqua); font-weight: 900; }
.pricing-card .button { min-height: 46px; margin-top: auto; padding: 0 13px; font-size: 0.78rem; line-height: 1.2; text-align: center; }
.pricing-card-featured .button { border-color: #fff; background: #fff; color: var(--plum-deep); }
.pricing-card-featured .button:hover { border-color: #f7edf9; background: #f7edf9; color: var(--plum-deep); }
.package-heading { max-width: 700px; margin: 72px 0 28px; }
.package-heading h3 { margin: 0; font-size: clamp(1.75rem, 3vw, 2.7rem); line-height: 1.08; letter-spacing: -0.04em; }
.package-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.package-card { min-width: 0; padding: 30px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 28px; border-radius: 24px; background: #f5edf7; }
.package-card-soft { background: #eef9f8; }
.package-card h3 { margin: 0 0 10px; font-size: 1.55rem; line-height: 1.2; }
.package-card p:not(.price-label) { max-width: 510px; margin: 0; color: var(--muted); font-size: 0.92rem; }
.package-price { min-width: 144px; display: grid; justify-items: end; grid-template-columns: auto auto; align-items: baseline; column-gap: 6px; }
.package-price strong { font-size: 2rem; line-height: 1; letter-spacing: -0.04em; }
.package-price > span { color: var(--muted); font-size: 0.8rem; font-weight: 800; }
.package-price a { grid-column: 1 / -1; margin-top: 14px; color: var(--plum); font-size: 0.82rem; font-weight: 900; text-underline-offset: 4px; }
.pricing-conditions { margin-top: 20px; padding: 22px 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; border: 1px solid var(--line); border-radius: 20px; }
.pricing-conditions p { margin: 0; color: var(--muted); font-size: 0.84rem; line-height: 1.5; }
.pricing-conditions strong { display: block; color: var(--ink); }

.safety-section {
  width: min(1280px, calc(100% - 24px));
  margin-top: 20px;
  padding: 48px clamp(28px, 5vw, 64px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  border-radius: 28px;
  background: #251628;
  color: #fff;
}
.safety-icon { width: 76px; height: 76px; display: grid; place-items: center; border: 2px solid #ffc4d9; border-radius: 50%; color: #ffc4d9; font-size: 2.1rem; font-weight: 900; }
.safety-section h2 { font-size: clamp(2rem, 3.5vw, 3.5rem); }
.safety-section p { max-width: 800px; margin: 16px 0 0; color: #d9cddd; }
.medical-note { font-size: 0.84rem; }
.button-light { background: #fff; border-color: #fff; color: var(--plum-deep); box-shadow: none; }
.button-light:hover { border-color: #fff; background: #f7edf9; color: var(--plum-deep); box-shadow: none; }

.faq-section { display: grid; grid-template-columns: 0.62fr 1.38fr; gap: 82px; }
.faq-heading { position: sticky; top: 30px; align-self: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 48px 24px 0; cursor: pointer; list-style: none; font-size: 1.14rem; font-weight: 900; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 17px; color: var(--berry); font-size: 1.8rem; font-weight: 500; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -8px 48px 24px 0; color: var(--muted); }

.local-care-section { padding-top: 64px; }
.local-care-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.local-care-links a {
  min-height: 118px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  color: var(--plum-deep);
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.local-care-links a:hover, .local-care-links a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(99, 37, 101, 0.35);
  box-shadow: 0 16px 34px rgba(54, 25, 58, 0.09);
}
.local-care-links span { color: var(--berry); font-size: 1.2rem; }

.evidence-section {
  padding: 48px;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 32px 70px;
  border: 1px solid #cfece9;
  border-radius: 28px;
  background: #f2fbfa;
}
.evidence-section h2 { font-size: clamp(2rem, 3.2vw, 3.2rem); }
.evidence-section > p { margin: 0; align-self: center; color: #425b59; }
.source-links { grid-column: 1 / -1; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px 24px; border-top: 1px solid #cfece9; }
.source-links a { color: #1e615d; font-size: 0.88rem; font-weight: 900; text-underline-offset: 4px; }
.content-meta { grid-column: 1 / -1; margin: -8px 0 0; color: #55706d; font-size: 0.82rem; }

.final-cta {
  width: min(1320px, calc(100% - 24px));
  margin: 0 auto 28px;
  padding: 78px clamp(28px, 7vw, 100px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  border-radius: 32px;
  background: linear-gradient(120deg, var(--plum-deep), #702b6f 68%, #8c326f);
  color: #fff;
}
.final-cta h2 { max-width: 880px; }
.final-actions { min-width: 260px; display: grid; gap: 12px; }
.button-outline-light { background: transparent; border-color: rgba(255,255,255,0.65); color: #fff; box-shadow: none; }
.button-outline-light:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.1); box-shadow: none; }
.final-actions small { color: #dfd0e3; text-align: center; }

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 54px;
  display: grid;
  grid-template-columns: 1.15fr 0.6fr 1.25fr;
  gap: 56px;
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer > div { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer img { width: 150px; height: auto; margin-bottom: 10px; }
.site-footer p { margin: 4px 0; }
.site-footer strong { margin-bottom: 8px; color: var(--ink); }
.site-footer a { color: var(--plum); font-weight: 800; text-decoration: none; }
.mobile-cta { display: none; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .desktop-nav, .header-phone { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 54px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(570px, 100%); margin: 0 auto; }
  .split-heading, .process-section, .format-section, .faq-section, .evidence-section, .final-cta { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .doctor-grid { grid-template-columns: 1fr; }
  .doctor-explorer { grid-template-columns: minmax(0, 1fr); }
  .doctor-picker { position: static; }
  .doctor-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .doctor-tab { min-height: 116px; grid-template-columns: 54px 1fr; align-content: center; }
  .doctor-tab img { width: 54px; height: 54px; }
  .doctor-tab-arrow { display: none; }
  .doctor-profile-panel { grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr); }
  .doctor-card { grid-template-columns: 0.7fr 1fr; grid-template-rows: 1fr; }
  .doctor-photo { min-height: 460px; }
  .process-section { gap: 52px; }
  .format-section { gap: 38px; }
  .local-care-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-card { min-height: 390px; }
  .pricing-card-featured { transform: none; }
  .package-grid { grid-template-columns: 1fr; }
  .faq-section { gap: 30px; }
  .faq-heading { position: static; }
  .evidence-section { gap: 24px; }
  .source-links { grid-column: auto; }
  .final-cta { gap: 34px; }
  .final-actions { min-width: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .final-actions small { grid-column: 1 / -1; }
  .site-footer { grid-template-columns: 1fr 0.65fr 1.2fr; gap: 32px; }
}

@media (max-width: 620px) {
  .site-header { width: min(100% - 28px, 1240px); min-height: 70px; gap: 10px; }
  .brand img { width: 132px; }
  .button-small { min-height: 40px; padding: 0 13px; font-size: 0.78rem; }
  .hero { width: calc(100% - 16px); min-height: auto; padding: 42px 22px 34px; border-radius: 24px; }
  h1 { font-size: clamp(2.25rem, 10.3vw, 3rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-facts { display: grid; gap: 8px; }
  .hero-visual { min-height: 430px; transform: scale(0.92); }
  .orbit-one { width: 380px; height: 380px; }
  .orbit-two { width: 300px; height: 300px; }
  .portrait-primary { width: 238px; height: 320px; }
  .portrait-left, .portrait-right { width: 142px; height: 184px; }
  .portrait-left { left: -18px; bottom: 58px; }
  .portrait-right { right: -18px; top: 36px; }
  .portrait-caption { display: none; }
  .hero-note { right: -12px; bottom: -2px; width: 220px; }
  .answer-strip { width: calc(100% - 32px); }
  .section { width: calc(100% - 32px); padding: 78px 0; }
  .section-heading { margin-bottom: 32px; }
  .split-heading { gap: 18px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { min-height: 220px; }
  .process-section, .safety-section, .final-cta { width: calc(100% - 16px); padding: 48px 22px; border-radius: 24px; }
  .process-section { gap: 36px; }
  .doctor-card { grid-template-columns: 1fr; grid-template-rows: 330px 1fr; }
  .doctor-picker { padding: 16px; }
  .doctor-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    padding-bottom: 6px;
  }
  .doctor-tab { min-width: 255px; min-height: 84px; grid-template-columns: 54px minmax(0, 1fr); scroll-snap-align: start; }
  .doctor-picker-hint { display: none; }
  .doctor-profile-panel { min-height: 0; grid-template-columns: 1fr; }
  .doctor-profile-photo { min-height: 360px; height: 360px; }
  .doctor-profile-content { padding: 26px 24px 30px; }
  .doctor-profile-content h3 { font-size: 2rem; }
  .doctor-profile-content > p:not(.location):not(.role):not(.doctor-best-for):not(.doctor-price-note) { font-size: 0.96rem; }
  .doctor-best-for { margin-top: 18px; }
  .doctor-photo { min-height: 0; }
  .doctor-content { padding: 24px; }
  .doctor-actions { align-items: stretch; flex-direction: column; }
  .doctor-actions .button { width: 100%; }
  .profile-link { text-align: center; }
  .format-section { padding-top: 60px; }
  .local-care-links { grid-template-columns: 1fr; }
  .format-options { grid-template-columns: 1fr; }
  .format-options article { min-height: 210px; }
  .format-options article:nth-child(2), .format-options article:nth-child(3) { transform: none; }
  .pricing-section { padding-top: 72px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { min-height: 0; padding: 26px 24px 24px; }
  .pricing-card h3 { min-height: 0; }
  .price-duration { min-height: 0; }
  .package-heading { margin-top: 56px; }
  .package-card { grid-template-columns: 1fr; gap: 24px; padding: 26px 24px; }
  .package-price { justify-items: start; }
  .pricing-conditions { grid-template-columns: 1fr; gap: 16px; padding: 20px; }
  .safety-section { margin-top: 0; grid-template-columns: 1fr; }
  .safety-icon { width: 58px; height: 58px; }
  .safety-section .button { width: 100%; }
  .faq-list summary { padding-right: 36px; }
  .faq-list details p { margin-right: 10px; }
  .evidence-section { padding: 28px 22px; }
  .source-links { display: grid; gap: 10px; }
  .final-cta { margin-bottom: 18px; }
  .final-actions { grid-template-columns: 1fr; }
  .final-actions small { grid-column: auto; }
  .site-footer { grid-template-columns: 1fr; gap: 22px; padding-bottom: 96px; }
  .mobile-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 20;
    padding: 6px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    border: 1px solid rgba(84,35,95,0.16);
    border-radius: 16px;
    background: rgba(255,255,255,0.93);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 40px rgba(58, 19, 69, 0.2);
  }
  .mobile-cta a { min-height: 46px; display: grid; place-items: center; border: 2px solid var(--cta); border-radius: 999px; background: transparent; color: var(--cta); text-decoration: none; font-size: 0.86rem; font-weight: 900; }
  .mobile-cta a:last-child { background: var(--cta); color: #fff; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
