:root {
  --black: #050505;
  --navy: #07111e;
  --ink: #081726;
  --petrol: #0a1b2c;
  --petrol-light: #10253a;
  --gold: #c9a45c;
  --gold-light: #d7b985;
  --silver: #a8b1bb;
  --silver-light: #e1e5e8;
  --ice: #f4f4f1;
  --muted: #b8b8b8;
  --dim: #76818b;
  --border: rgba(184, 139, 93, 0.36);
  --border-soft: rgba(168, 177, 187, 0.15);
  --card-bg: rgba(255, 255, 255, 0.035);
  --card-border: rgba(201, 164, 92, 0.25);
  --card-border-hover: rgba(201, 164, 92, 0.55);
  --card-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --card-shadow-hover: 0 30px 90px rgba(0, 0, 0, 0.5);
  --credential-title-size: clamp(1.12rem, 1.32vw, 1.34rem);
  --credential-eyebrow-color: #c9a45c;
  --credential-badge-bg: rgba(255, 255, 255, 0.05);
  --credential-icon-glow: 0 0 30px rgba(201, 164, 92, 0.16);
  --credential-card-shadow: 0 28px 75px rgba(0, 0, 0, 0.42);
  --container: 1240px;
  --header-height: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--ice);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

main {
  display: flex;
  flex-direction: column;
}

.hero { order: 1; }
.academic { order: 2; }
.authority-bar { order: 3; }
.comparison { order: 4; }
.planning { order: 5; }
.treatments { order: 6; }
.clinic { order: 7; }
.doctor { order: 8; }
.academic-journey { order: 9; }
.journey { order: 10; }
.final-cta { order: 11; }
.faq { order: 12; }

::selection {
  color: var(--black);
  background: var(--gold);
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--ice);
  color: var(--black);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  position: relative;
  padding: 140px 0;
}

.section-shell {
  width: min(calc(100% - 64px), var(--container));
  margin: 0 auto;
}

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.kicker::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h2 {
  margin: 22px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

h2 em,
h3 em,
.hero h1 em {
  color: transparent;
  background: linear-gradient(100deg, #a97b50 0%, #e1c99f 52%, #aab4bf 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

.section-heading {
  max-width: 900px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .kicker {
  justify-content: center;
}

.section-heading > p {
  max-width: 560px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.noise {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.technical-grid {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: radial-gradient(circle, rgba(201, 164, 92, 0.32) 0 1px, transparent 1.4px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to right, transparent 0%, black 55%, black 100%);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  border: 1px solid transparent;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  transition:
    color 0.3s,
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.3s,
    transform 0.18s;
}

.button svg {
  width: 19px;
  fill: currentColor;
}

.button-primary {
  overflow: hidden;
  border-color: rgba(225, 201, 159, 0.5);
  background: linear-gradient(120deg, #d9bd8c 0%, #b8895c 58%, #9da7b2 140%);
  box-shadow: 0 10px 34px rgba(184, 139, 93, 0.18);
  color: #071421;
}

.button-primary::before {
  position: absolute;
  inset: 0;
  transform: translateX(-110%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  transition: transform 0.75s var(--ease);
}

.button-primary:hover::before {
  transform: translateX(110%) skewX(-18deg);
}

.button-primary:hover {
  box-shadow: 0 16px 40px rgba(184, 139, 93, 0.28);
}

.button-ghost {
  border-color: rgba(225, 229, 232, 0.22);
  background: rgba(255, 255, 255, 0.025);
  color: var(--ice);
  backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.button-outline {
  border-color: var(--border);
}

.button-large {
  min-height: 68px;
  padding-inline: 34px;
  font-size: 0.9rem;
}

.premium-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 5%, rgba(227, 198, 128, 0.16), transparent 25%),
    linear-gradient(145deg, rgba(27, 49, 69, 0.96), rgba(10, 25, 40, 0.96) 50%, rgba(4, 10, 17, 0.98));
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.11),
    inset -1px -1px 0 rgba(0, 0, 0, 0.65),
    inset 0 -28px 55px rgba(0, 0, 0, 0.16),
    0 8px 0 -4px rgba(2, 7, 12, 0.82),
    var(--card-shadow);
  transform-style: preserve-3d;
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s,
    border-color 0.45s;
}

.premium-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.1), transparent 19%, transparent 68%, rgba(201, 164, 92, 0.04)),
    radial-gradient(circle at 48% -20%, rgba(255, 255, 255, 0.15), transparent 42%);
  content: "";
  pointer-events: none;
  transition: opacity 0.45s var(--ease), transform 0.55s var(--ease);
}

.premium-card::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='c'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23c)' opacity='.16'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.035;
  pointer-events: none;
}

.premium-card:hover {
  z-index: 2;
  transform: translateY(-8px) scale(1.015) rotateX(1.25deg);
  border-color: var(--card-border-hover);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.16),
    inset -1px -1px 0 rgba(0, 0, 0, 0.62),
    0 11px 0 -5px rgba(2, 7, 12, 0.9),
    var(--card-shadow-hover);
}

.premium-card:hover::before {
  opacity: 1.2;
  transform: translate3d(3px, -3px, 0);
}

.reveal,
.image-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.9s var(--ease) var(--delay, 0ms),
    transform 0.9s var(--ease) var(--delay, 0ms);
}

.reveal.is-visible,
.image-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.image-reveal {
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
  transition:
    opacity 0.7s var(--ease),
    transform 0.9s var(--ease),
    clip-path 1.15s var(--ease);
}

.image-reveal.is-visible {
  clip-path: inset(0);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    height 0.35s var(--ease),
    background 0.35s,
    border-color 0.35s;
}

.site-header.scrolled {
  height: 72px;
  border-color: rgba(184, 139, 93, 0.18);
  background: rgba(6, 17, 29, 0.84);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 64px), 1380px);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 50px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-family: "Montserrat", sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.brand-copy small {
  color: var(--silver);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.desktop-nav a {
  position: relative;
  color: rgba(225, 229, 232, 0.76);
  font-size: 0.75rem;
  font-weight: 600;
  transition: color 0.25s;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--gold);
  content: "";
  transition: transform 0.35s var(--ease);
}

.desktop-nav a:hover {
  color: var(--ice);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  height: 42px;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  transition: background 0.3s;
}

.header-cta:hover {
  background: rgba(184, 139, 93, 0.1);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 35%, rgba(18, 52, 79, 0.86), transparent 36%),
    radial-gradient(circle at 62% 72%, rgba(184, 139, 93, 0.1), transparent 28%),
    linear-gradient(115deg, #06111d 8%, #081726 58%, #0a1b2c 100%);
}

.hero-ambient {
  position: absolute;
  width: 650px;
  height: 650px;
  top: 5%;
  right: 3%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 139, 93, 0.13), rgba(6, 17, 29, 0) 68%);
  filter: blur(20px);
  animation: ambientMove 10s ease-in-out infinite alternate;
}

@keyframes ambientMove {
  to {
    transform: translate(-70px, 50px) scale(1.14);
    opacity: 0.66;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - 64px), 1380px);
  min-height: 850px;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  align-items: center;
  margin: 0 auto;
  padding-top: var(--header-height);
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 780px;
  padding: 70px 0 50px;
}

.eyebrow {
  color: rgba(227, 198, 128, 0.84);
}

.eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  max-width: 790px;
  margin: 25px 0 25px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.45rem, 5.45vw, 5.65rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 em {
  display: block;
  margin-top: 4px;
  font-size: 0.94em;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 30px;
  color: #c2c4c5;
  font-size: 1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges {
  display: grid;
  max-width: 700px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
  perspective: 900px;
}

.hero-badges div {
  display: flex;
  min-height: 70px;
  min-width: 0;
  align-items: flex-start;
  gap: 10px;
  padding: 15px 14px;
  border: 1px solid rgba(201, 164, 92, 0.2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 90% 0, rgba(201, 164, 92, 0.12), transparent 40%),
    linear-gradient(145deg, rgba(28, 49, 68, 0.72), rgba(7, 18, 30, 0.84));
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.08),
    inset -1px -1px 0 rgba(0, 0, 0, 0.5),
    0 5px 0 -3px rgba(0, 0, 0, 0.72),
    0 12px 28px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}

.hero-badges div + div {
  padding-left: 14px;
}

.hero-badges div:hover {
  transform: translateY(-5px) rotateX(3deg);
  border-color: rgba(201, 164, 92, 0.48);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.13),
    inset -1px -1px 0 rgba(0, 0, 0, 0.5),
    0 8px 0 -4px rgba(0, 0, 0, 0.8),
    0 20px 40px rgba(0, 0, 0, 0.35);
}

.hero-badges span {
  color: var(--gold);
  font-size: 0.52rem;
  font-weight: 700;
}

.hero-badges strong {
  color: rgba(225, 229, 232, 0.78);
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.55;
  text-transform: uppercase;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: heroUp 0.9s var(--ease) forwards;
}

.hero-copy .hero-reveal:nth-child(1) { animation-delay: 0.14s; }
.hero-copy .hero-reveal:nth-child(2) { animation-delay: 0.26s; }
.hero-copy .hero-reveal:nth-child(3) { animation-delay: 0.38s; }
.hero-copy .hero-reveal:nth-child(4) { animation-delay: 0.5s; }
.hero-copy .hero-reveal:nth-child(5) { animation-delay: 0.62s; }

@keyframes heroUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-portrait {
  position: absolute;
  z-index: 2;
  top: 72px;
  right: -2%;
  bottom: 0;
  width: 52%;
  pointer-events: none;
  will-change: transform;
}

.portrait-frame {
  position: absolute;
  inset: 5% 0 0 5%;
  overflow: hidden;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%, 0 16%);
}

.portrait-frame::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 5, 5, 0.58), transparent 38%),
    linear-gradient(to right, rgba(5, 5, 5, 0.5), transparent 35%);
  content: "";
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  filter: saturate(0.72) contrast(1.08) brightness(0.73);
  transform: scale(1.04);
  animation: portraitIn 1.5s var(--ease) both;
}

@keyframes portraitIn {
  from { transform: scale(1.11); filter: saturate(0.2) contrast(1.1) brightness(0.42); }
  to { transform: scale(1.04); filter: saturate(0.72) contrast(1.08) brightness(0.73); }
}

.portrait-halo {
  position: absolute;
  z-index: -1;
  top: 12%;
  right: -8%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(184, 139, 93, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 110px rgba(184, 139, 93, 0.12);
}

.portrait-caption {
  position: absolute;
  z-index: 4;
  right: 5%;
  bottom: 9%;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  opacity: 0.78;
  text-align: right;
}

.portrait-caption span {
  padding-top: 6px;
  color: var(--gold);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
}

.portrait-caption strong {
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  line-height: 1.3;
}

.portrait-index {
  position: absolute;
  z-index: 3;
  top: 21%;
  right: 0;
  color: rgba(168, 177, 187, 0.16);
  font-family: "Playfair Display", serif;
  font-size: 7rem;
  line-height: 1;
}

.portrait-index span {
  display: block;
  margin-left: 8px;
  color: rgba(215, 185, 133, 0.78);
  font-family: "Inter", sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portrait-line {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 5%;
  width: 32%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.scroll-cue {
  display: none;
}

.scroll-cue i {
  display: block;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(168, 177, 187, 0.18);
}

.scroll-cue i::after {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold);
  content: "";
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(260%); }
}

/* Authority */
.authority-bar {
  position: relative;
  z-index: 4;
  padding: 26px 0 32px;
  background:
    radial-gradient(circle at 50% 0, rgba(26, 65, 91, 0.3), transparent 42%),
    #071421;
}

.authority-inner {
  display: grid;
  width: min(calc(100% - 64px), var(--container));
  grid-template-columns: 1.12fr repeat(4, 1fr);
  gap: 13px;
  margin: 0 auto;
  perspective: 1000px;
}

.authority-inner > div {
  display: flex;
  min-height: 122px;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(201, 164, 92, 0.2);
  border-radius: 14px;
  background:
    radial-gradient(circle at 88% 4%, rgba(201, 164, 92, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(23, 44, 62, 0.94), rgba(7, 18, 30, 0.96));
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.08),
    inset -1px -1px 0 rgba(0, 0, 0, 0.52),
    0 6px 0 -3px rgba(0, 0, 0, 0.78),
    0 18px 38px rgba(0, 0, 0, 0.24);
  transform-style: preserve-3d;
  transition: transform 0.42s var(--ease), border-color 0.42s, box-shadow 0.42s;
}

.authority-inner > div:first-child {
  padding-left: 22px;
}

.authority-inner > div + div {
  border-left-color: rgba(201, 164, 92, 0.2);
}

.authority-inner > div:hover {
  transform: translateY(-6px) rotateX(2deg);
  border-color: rgba(201, 164, 92, 0.5);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.13),
    inset -1px -1px 0 rgba(0, 0, 0, 0.52),
    0 9px 0 -4px rgba(0, 0, 0, 0.84),
    0 26px 52px rgba(0, 0, 0, 0.38);
}

.authority-number {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 3.25rem;
}

.authority-symbol {
  color: var(--gold);
  font-size: 1.3rem;
}

.authority-inner p {
  margin: 0;
  color: #9fa1a2;
  font-size: 0.68rem;
  line-height: 1.7;
}

.authority-inner p strong {
  color: var(--ice);
  font-size: 0.74rem;
  font-weight: 600;
}

/* Comparison */
.comparison {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(16, 35, 52, 0.55), transparent 48%),
    #081624;
}

.comparison::before {
  position: absolute;
  top: 19%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184, 139, 93, 0.28), transparent);
  content: "";
}

.comparison-stage {
  max-width: 980px;
  margin: 65px auto 0;
}

.before-after {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(184, 139, 93, 0.46);
  background: #111;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.48);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}

.before-after::after {
  position: absolute;
  z-index: 4;
  inset: 0;
  border: 10px solid rgba(5, 5, 5, 0.36);
  pointer-events: none;
  content: "";
}

.before-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.after-layer {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 0 0 50%);
  will-change: clip-path;
}

.slider-line {
  position: absolute;
  z-index: 6;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--ice);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.42);
  pointer-events: none;
  will-change: left;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.84);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.38);
  color: var(--gold-light);
  backdrop-filter: blur(8px);
}

.slider-handle svg {
  width: 36px;
}

.slider-range {
  position: absolute;
  z-index: 8;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-label {
  position: absolute;
  z-index: 5;
  top: 22px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 5, 5, 0.58);
  color: var(--ice);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.label-before { left: 22px; }
.label-after { right: 22px; }

.comparison-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 18px;
}

.comparison-meta span {
  color: var(--gold);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.comparison-meta p {
  margin: 0;
  color: #777;
  font-size: 0.72rem;
}

.comparison-meta i {
  width: 50px;
  height: 1px;
  background: var(--border);
}

/* Planning */
.planning {
  background: var(--black);
}

.planning::after {
  position: absolute;
  top: 100px;
  right: -280px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(168, 177, 187, 0.11);
  border-radius: 50%;
  content: "";
}

.planning-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  column-gap: 70px;
  margin-bottom: 80px;
}

.planning-intro .kicker {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.planning-intro h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.display-serif {
  margin: 0 0 4px;
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-style: italic;
  line-height: 1.12;
}

.planning-list {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-soft);
}

.planning-item {
  position: relative;
  display: grid;
  min-height: 170px;
  grid-template-columns: 50px 80px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 30px;
  padding: 30px 20px;
  border-bottom: 1px solid var(--border-soft);
  transition:
    background 0.45s var(--ease),
    padding 0.45s var(--ease),
    border-color 0.4s;
}

.planning-item::before {
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, rgba(184, 139, 93, 0.05), rgba(10, 27, 44, 0.62));
  content: "";
  transition: transform 0.55s var(--ease);
}

.planning-item:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.planning-item:hover {
  padding-inline: 34px;
  border-color: var(--border);
}

.planning-item > * {
  position: relative;
}

.item-number {
  align-self: start;
  padding-top: 8px;
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 700;
}

.line-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid var(--border);
  color: var(--gold-light);
}

.line-icon svg {
  width: 42px;
}

.planning-item > div:nth-child(3) {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(300px, 1fr);
  align-items: center;
  gap: 40px;
}

.planning-item h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.planning-item p {
  max-width: 600px;
  margin: 0;
  color: #96999b;
  font-size: 0.87rem;
  line-height: 1.7;
}

.item-arrow {
  color: var(--gold);
  transition: transform 0.35s;
}

.planning-item:hover .item-arrow {
  transform: translate(4px, -4px);
}

/* Treatments */
.treatments {
  background:
    radial-gradient(circle at 10% 10%, rgba(16, 38, 58, 0.38), transparent 35%),
    #081624;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: 1.2fr 0.7fr;
  align-items: end;
  gap: 90px;
}

.split-heading > p {
  margin: 0 0 5px;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 22px;
  margin-top: 78px;
}

.treatment-card {
  display: flex;
  min-height: 620px;
  height: 100%;
  flex-direction: column;
  padding: 40px 38px;
}

.treatment-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.treatment-index {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
}

.treatment-top svg {
  width: 48px;
  color: rgba(227, 198, 128, 0.75);
  transition: transform 0.45s var(--ease), color 0.45s;
}

.treatment-card:hover .treatment-top svg {
  transform: translateY(-3px) rotate(-2deg);
  color: var(--gold-light);
}

.treatment-seal {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  align-self: flex-start;
  margin-top: 26px;
  padding: 8px 12px;
  border: 1px solid rgba(201, 164, 92, 0.22);
  background: rgba(201, 164, 92, 0.06);
  color: var(--gold-light);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-transform: uppercase;
}

.treatment-copy {
  position: relative;
  z-index: 1;
  margin-top: 36px;
}

.treatment-card h3 {
  margin: 0 0 18px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.05rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.treatment-card h3 em {
  display: block;
}

.treatment-card p {
  color: #9da0a2;
  font-size: 0.85rem;
  line-height: 1.75;
}

.treatment-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 11px;
  margin: auto 0 34px;
  padding: 23px 0 0;
  border-top: 1px solid var(--border-soft);
  list-style: none;
}

.treatment-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d3d3d0;
  font-size: 0.72rem;
}

.treatment-card li::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.treatment-card > a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 700;
}

.treatment-card > * {
  position: relative;
  z-index: 1;
}

.treatment-card > a span {
  font-size: 1rem;
  transition: transform 0.35s;
}

.treatment-card > a:hover span {
  transform: translate(4px, -4px);
}

.conditions-note {
  margin: 18px 0 0;
  color: #6f7376;
  font-size: 0.66rem;
  text-align: right;
}

/* Clinic */
.clinic {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(168, 177, 187, 0.18)),
    #dce1e5;
  color: #0a1827;
}

.clinic .kicker {
  color: #8a623e;
}

.clinic .section-heading {
  max-width: 950px;
}

.clinic .section-heading h2 em {
  color: transparent;
}

.clinic-gallery {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 28px;
  margin-top: 70px;
}

.clinic-gallery figure {
  margin: 0;
}

.clinic-main .image-zoom {
  height: 640px;
}

.clinic-secondary {
  margin-bottom: -55px !important;
}

.clinic-secondary .image-zoom {
  height: 470px;
}

.image-zoom {
  overflow: hidden;
}

.image-zoom img {
  width: 100%;
  height: 108%;
  object-fit: cover;
  animation: kenBurns 14s ease-in-out infinite alternate;
}

.clinic-main img {
  object-position: center;
}

.clinic-secondary img {
  object-position: 54% 45%;
}

@keyframes kenBurns {
  from { transform: scale(1.01); }
  to { transform: scale(1.075); }
}

.clinic-gallery figcaption {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-top: 20px;
}

.clinic-gallery figcaption span {
  color: #8a623e;
  font-size: 0.6rem;
  font-weight: 700;
}

.clinic-gallery figcaption p {
  margin: 0;
  color: #666663;
  font-size: 0.72rem;
  line-height: 1.6;
}

.clinic-gallery figcaption strong {
  color: #0a1827;
  font-size: 0.86rem;
  font-weight: 600;
}

.clinic-seal {
  position: absolute;
  z-index: 5;
  right: 23%;
  bottom: 5%;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border-radius: 50%;
  background: #081726;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  color: var(--gold);
}

.clinic-seal svg {
  width: 112px;
  animation: sealRotate 20s linear infinite;
}

.clinic-seal text {
  fill: currentColor;
  font-family: "Inter", sans-serif;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.clinic-seal path:not(#circleText) {
  transform-origin: center;
  animation: sealRotate 20s linear infinite reverse;
}

@keyframes sealRotate {
  to { transform: rotate(360deg); }
}

/* Academic formation */
.academic {
  overflow: hidden;
  padding-top: 105px;
  background:
    radial-gradient(circle at 18% 12%, rgba(17, 54, 78, 0.62), transparent 34%),
    radial-gradient(circle at 90% 70%, rgba(201, 164, 92, 0.08), transparent 28%),
    var(--navy);
}

.academic::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201, 164, 92, 0.12) 0 1px, transparent 1.3px);
  background-size: 26px 26px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 68%);
  pointer-events: none;
}

.academic-orbit {
  position: absolute;
  border: 1px solid rgba(201, 164, 92, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.academic-orbit-one {
  top: 100px;
  right: -270px;
  width: 620px;
  height: 620px;
}

.academic-orbit-two {
  bottom: 380px;
  left: -180px;
  width: 420px;
  height: 420px;
}

.academic .section-shell {
  position: relative;
  z-index: 1;
}

.academic-heading {
  max-width: 990px;
}

.academic-heading > p {
  margin-inline: 0;
}

.academic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 54px;
  perspective: 1200px;
}

.academic-card,
.credential-card {
  display: flex;
  min-height: 455px;
  flex-direction: column;
  padding: 32px 30px 34px;
  border-color: rgba(201, 164, 92, 0.28);
  background:
    radial-gradient(circle at 88% 2%, rgba(232, 205, 150, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(28, 53, 73, 0.98), rgba(10, 27, 44, 0.98) 48%, rgba(4, 12, 21, 0.99));
  box-shadow:
    inset 2px 2px 0 rgba(255, 255, 255, 0.09),
    inset -2px -2px 0 rgba(0, 0, 0, 0.58),
    inset 0 -35px 70px rgba(0, 0, 0, 0.18),
    0 9px 0 -4px rgba(1, 6, 11, 0.88),
    var(--credential-card-shadow);
}

.academic-card:hover,
.credential-card:hover {
  box-shadow:
    inset 2px 2px 0 rgba(255, 255, 255, 0.14),
    inset -2px -2px 0 rgba(0, 0, 0, 0.58),
    inset 0 -35px 70px rgba(0, 0, 0, 0.12),
    0 12px 0 -5px rgba(1, 6, 11, 0.92),
    0 36px 92px rgba(0, 0, 0, 0.55);
}

.academic-card > * {
  position: relative;
  z-index: 1;
}

.academic-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.academic-index {
  display: inline-flex;
  min-width: 34px;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  border: 1px solid rgba(201, 164, 92, 0.18);
  border-radius: 999px;
  background: rgba(201, 164, 92, 0.055);
  color: rgba(225, 195, 134, 0.82);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.academic-icon,
.credential-icon-wrap {
  position: relative;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(225, 193, 128, 0.34);
  border-radius: 17px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 244, 215, 0.14), transparent 36%),
    linear-gradient(145deg, rgba(201, 164, 92, 0.16), rgba(255, 255, 255, 0.025) 54%, rgba(0, 0, 0, 0.16));
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.18),
    inset -1px -1px 0 rgba(0, 0, 0, 0.52),
    inset 0 0 22px rgba(201, 164, 92, 0.055),
    0 8px 0 -5px rgba(0, 0, 0, 0.7),
    0 14px 28px rgba(0, 0, 0, 0.3),
    var(--credential-icon-glow);
  color: var(--gold-light);
  transition:
    transform 0.45s var(--ease),
    border-color 0.45s,
    background 0.45s,
    box-shadow 0.45s;
}

.credential-icon-wrap::before {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 12px;
  content: "";
}

.academic-icon svg,
.credential-icon {
  width: 32px;
  height: 32px;
  overflow: visible;
  filter: drop-shadow(0 3px 8px rgba(201, 164, 92, 0.2));
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.credential-icon path,
.credential-icon circle,
.credential-icon line,
.credential-icon polyline {
  stroke-width: 1.9;
}

.academic-card:hover .credential-icon-wrap {
  transform: translateY(-2px) scale(1.055);
  border-color: var(--card-border-hover);
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 244, 215, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(201, 164, 92, 0.22), rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.22),
    inset -1px -1px 0 rgba(0, 0, 0, 0.5),
    0 10px 0 -6px rgba(0, 0, 0, 0.76),
    0 18px 34px rgba(0, 0, 0, 0.34),
    0 0 36px rgba(201, 164, 92, 0.22);
}

.academic-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: 31px;
}

.academic-year,
.credential-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-bottom: 15px;
  color: var(--credential-eyebrow-color);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.credential-eyebrow::after {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 164, 92, 0.85), transparent);
  content: "";
}

.academic-card h3,
.academic-card .credential-title {
  min-height: 76px;
  margin: 0 0 18px;
  color: #f4f4f1;
  font-family: "Montserrat", sans-serif;
  font-size: var(--credential-title-size);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.23;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
}

.academic-card p {
  margin: 0;
}

.academic-card .credential-description {
  margin-top: auto;
  color: #c7cbd1;
  font-size: 0.79rem;
  font-weight: 400;
  line-height: 1.72;
}

.academic-card .academic-institution,
.academic-card .credential-badge {
  display: flex;
  min-height: 68px;
  align-items: center;
  margin-bottom: 19px;
  padding: 13px 15px;
  border: 1px solid rgba(201, 164, 92, 0.18);
  border-radius: 12px;
  background:
    radial-gradient(circle at 90% 0, rgba(201, 164, 92, 0.09), transparent 42%),
    var(--credential-badge-bg);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.075),
    inset -1px -1px 0 rgba(0, 0, 0, 0.22),
    inset 0 0 26px rgba(201, 164, 92, 0.025);
  color: #eeeae1;
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.48;
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
}

.credential-card:hover .credential-badge {
  border-color: rgba(201, 164, 92, 0.34);
  background:
    radial-gradient(circle at 90% 0, rgba(201, 164, 92, 0.14), transparent 44%),
    rgba(255, 255, 255, 0.065);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 28px rgba(201, 164, 92, 0.045),
    0 8px 22px rgba(0, 0, 0, 0.16);
}

.science-applied {
  position: relative;
  margin-top: 90px;
  padding: 54px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background:
    radial-gradient(circle at 8% 10%, rgba(201, 164, 92, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(16, 37, 58, 0.9), rgba(5, 5, 5, 0.5));
  box-shadow: var(--card-shadow);
}

.science-applied::before {
  position: absolute;
  top: 0;
  left: 8%;
  width: 84%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  content: "";
}

.science-grid-lines {
  position: absolute;
  inset: -8%;
  background-image: radial-gradient(circle, rgba(201, 164, 92, 0.22) 0 1px, transparent 1.3px);
  background-size: 23px 23px;
  opacity: 0.42;
  pointer-events: none;
  transform: translate3d(0, var(--science-shift, 0), 0);
  transition: transform 0.1s linear;
  mask-image: radial-gradient(circle at 70% 30%, black, transparent 66%);
}

.science-intro,
.science-mini-grid {
  position: relative;
  z-index: 1;
}

.science-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  column-gap: 70px;
  align-items: start;
}

.science-intro .kicker {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.science-intro h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.science-intro > p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.78;
}

.science-publication {
  grid-column: 2;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(201, 164, 92, 0.17);
  border-radius: 13px;
  background: rgba(3, 12, 20, 0.36);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 30px rgba(0, 0, 0, 0.18);
}

.science-publication > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--card-border);
  border-radius: 50%;
  color: var(--gold);
}

.science-publication p {
  margin: 0;
  color: #999fa6;
  font-size: 0.7rem;
  line-height: 1.65;
}

.science-publication strong {
  display: block;
  margin-bottom: 5px;
  color: var(--silver-light);
  font-size: 0.72rem;
  font-weight: 600;
}

.science-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 46px;
}

.science-mini-card {
  min-height: 205px;
  padding: 30px;
  border: 1px solid rgba(201, 164, 92, 0.18);
  border-radius: 15px;
  background:
    radial-gradient(circle at 85% 0, rgba(201, 164, 92, 0.11), transparent 35%),
    linear-gradient(145deg, rgba(25, 47, 65, 0.86), rgba(5, 14, 24, 0.92));
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.07),
    inset -1px -1px 0 rgba(0, 0, 0, 0.5),
    0 7px 0 -4px rgba(0, 0, 0, 0.75),
    0 18px 38px rgba(0, 0, 0, 0.22);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}

.science-mini-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 164, 92, 0.48);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.11),
    inset -1px -1px 0 rgba(0, 0, 0, 0.5),
    0 9px 0 -4px rgba(0, 0, 0, 0.82),
    0 27px 55px rgba(0, 0, 0, 0.38);
}

.science-mini-card svg {
  width: 36px;
  margin-bottom: 31px;
  color: var(--gold);
  transition: transform 0.4s var(--ease);
}

.science-mini-card:hover svg {
  transform: translateY(-3px) rotate(-2deg);
}

.science-mini-card h4 {
  margin: 0 0 11px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.84rem;
}

.science-mini-card p {
  margin: 0;
  color: #90979d;
  font-size: 0.72rem;
  line-height: 1.65;
}

.academic-journey {
  overflow: hidden;
  border-top: 1px solid rgba(201, 164, 92, 0.13);
  background:
    radial-gradient(circle at 50% 0, rgba(16, 49, 73, 0.34), transparent 36%),
    #06101b;
}

.academic-timeline {
  position: relative;
  max-width: 1000px;
  margin: 92px auto 0;
}

.academic-timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(201, 164, 92, 0.18);
}

.academic-timeline-line span {
  display: block;
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold-light), var(--gold));
  box-shadow: 0 0 16px rgba(201, 164, 92, 0.42);
  transition: height 2s var(--ease);
}

.academic-timeline.is-active .academic-timeline-line span {
  height: 100%;
}

.academic-milestone {
  position: relative;
  width: calc(50% - 56px);
  min-height: 138px;
  margin-bottom: 36px;
  padding: 28px 30px;
  border: 1px solid var(--card-border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(5, 5, 5, 0.24));
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.academic-milestone:nth-of-type(odd) {
  margin-left: calc(50% + 56px);
}

.academic-milestone:nth-of-type(even) {
  text-align: right;
}

.academic-dot {
  position: absolute;
  top: 42px;
  width: 13px;
  height: 13px;
  border: 3px solid #06101b;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 0 1px var(--gold),
    0 0 20px rgba(201, 164, 92, 0.55);
}

.academic-milestone:nth-of-type(odd) .academic-dot {
  left: -63px;
}

.academic-milestone:nth-of-type(even) .academic-dot {
  right: -63px;
}

.academic-milestone time {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.academic-milestone h3 {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.academic-milestone p {
  margin: 0;
  color: #8f969c;
  font-size: 0.72rem;
  line-height: 1.6;
}

/* Doctor */
.doctor {
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.35), transparent 55%),
    #06111d;
}

.doctor-grid {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 135px);
}

.doctor-visual {
  position: relative;
  overflow: visible;
}

.doctor-image {
  position: relative;
  height: 680px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.doctor-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 5, 8, 0.65), transparent 48%);
  content: "";
}

.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.72) contrast(1.05);
}

.doctor-monogram {
  position: absolute;
  z-index: 2;
  right: -45px;
  bottom: -28px;
  color: rgba(184, 139, 93, 0.14);
  font-family: "Playfair Display", serif;
  font-size: 9rem;
  font-style: italic;
  line-height: 1;
}

.doctor-side-label {
  position: absolute;
  top: 30px;
  left: -26px;
  padding: 12px 10px;
  border: 1px solid var(--border);
  background: var(--black);
  color: var(--gold);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.doctor-copy h2 {
  margin-bottom: 30px;
}

.doctor-lead {
  max-width: 620px;
  color: #a8aaac;
  font-size: 0.95rem;
  line-height: 1.85;
}

.doctor-research {
  max-width: 620px;
  margin: -8px 0 0;
  padding-left: 18px;
  border-left: 1px solid var(--gold);
  color: #90989f;
  font-size: 0.79rem;
  line-height: 1.75;
}

.credentials {
  margin: 32px 0 35px;
  border-top: 1px solid var(--border-soft);
}

.credentials div {
  display: grid;
  min-height: 62px;
  grid-template-columns: 50px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
}

.credentials span {
  color: var(--gold);
  font-size: 0.56rem;
  font-weight: 700;
}

.credentials p {
  margin: 0;
  color: #d5d5d2;
  font-size: 0.78rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.77rem;
  font-weight: 700;
}

.text-link span {
  transition: transform 0.3s;
}

.text-link:hover span {
  transform: translate(4px, -4px);
}

/* Journey */
.journey {
  overflow: hidden;
  border-top: 1px solid rgba(184, 139, 93, 0.15);
  background: #091725;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
  margin-top: 100px;
}

.timeline::before,
.timeline-progress {
  position: absolute;
  top: 47px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(168, 177, 187, 0.17);
  content: "";
}

.timeline-progress {
  z-index: 1;
  width: 0;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transition: width 1.8s var(--ease);
}

.timeline.is-active .timeline-progress {
  width: 100%;
}

.timeline-step {
  position: relative;
}

.step-number {
  display: block;
  margin-bottom: 25px;
  color: var(--gold);
  font-size: 0.56rem;
  font-weight: 700;
}

.step-dot {
  position: relative;
  z-index: 2;
  width: 15px;
  height: 15px;
  margin: 0 0 37px;
  border: 4px solid #091725;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.timeline-step h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.timeline-step p {
  color: #868a8d;
  font-size: 0.78rem;
  line-height: 1.7;
}

/* Final CTA */
.final-cta {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 50%, rgba(184, 139, 93, 0.15), transparent 36%),
    radial-gradient(circle at 75% 40%, rgba(10, 39, 57, 0.55), transparent 35%),
    #06111d;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(184, 139, 93, 0.15);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -300px;
  left: -120px;
}

.final-cta::after {
  right: -120px;
  bottom: -300px;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 950px);
  padding: 100px 0;
  text-align: center;
}

.final-cta-inner .kicker {
  justify-content: center;
}

.final-cta h2 {
  font-size: clamp(2.8rem, 5.7vw, 5.3rem);
}

.final-cta p {
  max-width: 670px;
  margin: 28px auto 35px;
  color: #aeb0b1;
  font-size: 0.95rem;
  line-height: 1.75;
}

.final-cta small {
  display: block;
  margin-top: 18px;
  color: #777a7d;
  font-size: 0.68rem;
}

/* FAQ */
.faq {
  background: #081421;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
}

.faq-intro > p {
  max-width: 390px;
  margin-top: 25px;
  color: #8e9294;
  font-size: 0.87rem;
  line-height: 1.75;
}

.accordion {
  border-top: 1px solid var(--border-soft);
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-item button > span {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 0.88rem;
  font-weight: 600;
}

.faq-item button i {
  color: var(--gold);
  font-size: 0.55rem;
  font-style: normal;
}

.faq-item button b {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(184, 139, 93, 0.34);
  border-radius: 50%;
}

.faq-item button b::before,
.faq-item button b::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: var(--gold);
  content: "";
  transition: transform 0.35s;
}

.faq-item button b::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open button b::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 590px;
  margin: 0;
  padding: 0 4px 28px 54px;
  color: #8f9295;
  font-size: 0.82rem;
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

/* Footer */
.site-footer {
  background: #071523;
}

.footer-main {
  display: grid;
  width: min(calc(100% - 64px), var(--container));
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 60px;
  margin: 0 auto;
  padding: 90px 0 70px;
}

.footer-logo {
  display: block;
  width: 220px;
  height: auto;
  margin: -32px 0 -20px -20px;
}

.footer-brand p {
  margin: 0;
  color: var(--silver);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.footer-info {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}

.footer-info span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-info p,
.footer-info a {
  color: #9a9d9f;
  font-size: 0.75rem;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  width: min(calc(100% - 64px), var(--container));
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  border-top: 1px solid var(--border-soft);
  color: #65686b;
  font-size: 0.62rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  display: flex;
  gap: 10px;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.38));
}

.float-label {
  padding: 10px 14px;
  border: 1px solid rgba(184, 139, 93, 0.32);
  background: rgba(6, 17, 29, 0.88);
  color: var(--ice);
  font-size: 0.66rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateX(8px);
  transition: 0.3s;
}

.float-icon {
  position: relative;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid #4eca78;
  border-radius: 50%;
  background: #1fae54;
  color: #fff;
}

.float-icon::before {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(78, 202, 120, 0.42);
  border-radius: 50%;
  content: "";
  animation: whatsappPulse 2.2s infinite;
}

.float-icon svg {
  width: 25px;
  fill: currentColor;
}

.whatsapp-float:hover .float-label {
  opacity: 1;
  transform: translateX(0);
}

@keyframes whatsappPulse {
  0% { transform: scale(0.9); opacity: 0; }
  35% { opacity: 0.8; }
  100% { transform: scale(1.32); opacity: 0; }
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 19px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 5vw, 4.7rem);
  }

  .hero-badges strong {
    font-size: 0.58rem;
  }

  .authority-inner > div {
    padding-inline: 18px;
  }

  .planning-item > div:nth-child(3) {
    grid-template-columns: 0.8fr 1fr;
  }

  .treatment-card {
    padding-inline: 28px;
  }

  .academic-card {
    padding-inline: 23px;
  }

  .faq-grid {
    gap: 65px;
  }

  .footer-main {
    grid-template-columns: 0.8fr 1fr;
  }

  .footer-main > .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 76px;
  }

  .section {
    padding: 105px 0;
  }

  .section-shell,
  .header-inner,
  .authority-inner,
  .footer-main,
  .footer-bottom {
    width: min(calc(100% - 40px), var(--container));
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--ice);
    transition: transform 0.3s;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    display: flex;
    padding: 120px 30px 40px;
    flex-direction: column;
    gap: 3px;
    background: rgba(5, 7, 10, 0.97);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: 0.4s var(--ease);
  }

  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav > a:not(.button) {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-soft);
    font-family: "Montserrat", sans-serif;
    font-size: 1.25rem;
  }

  .mobile-nav .button {
    margin-top: 22px;
  }

  .hero,
  .hero-inner {
    min-height: 900px;
  }

  .hero-inner {
    display: block;
  }

  .hero-copy {
    max-width: 590px;
    padding-top: 145px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 8.4vw, 5rem);
  }

  .hero-lead {
    max-width: 520px;
  }

  .hero-portrait {
    top: auto;
    right: -13%;
    bottom: 0;
    width: 70%;
    height: 73%;
    opacity: 0.66;
  }

  .portrait-frame {
    inset: 0;
  }

  .portrait-frame::before {
    background:
      linear-gradient(to top, rgba(5, 5, 5, 0.62), transparent 55%),
      linear-gradient(to right, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.08) 55%);
  }

  .hero-copy {
    position: relative;
    z-index: 5;
  }

  .scroll-cue {
    display: none;
  }

  .authority-inner {
    grid-template-columns: 1fr 1fr;
  }

  .authority-inner > div:first-child {
    grid-column: 1 / -1;
    padding-left: 22px;
    border: 1px solid rgba(201, 164, 92, 0.2);
  }

  .authority-inner > div:nth-child(2) {
    padding-left: 22px;
    border: 1px solid rgba(201, 164, 92, 0.2);
  }

  .authority-inner > div:nth-child(4) {
    padding-left: 22px;
    border: 1px solid rgba(201, 164, 92, 0.2);
  }

  .authority-inner > div:nth-child(5) {
    border: 1px solid rgba(201, 164, 92, 0.2);
  }

  .planning-intro,
  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .planning-intro {
    align-items: start;
  }

  .planning-intro .display-serif {
    max-width: 650px;
  }

  .planning-item > div:nth-child(3) {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .treatment-grid {
    grid-template-columns: 1fr;
  }

  .treatment-card {
    min-height: 570px;
  }

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

  .academic-card {
    min-height: 330px;
  }

  .science-intro {
    grid-template-columns: 1fr;
  }

  .science-intro > p {
    margin-top: 22px;
  }

  .science-publication {
    grid-column: 1;
  }

  .clinic-main .image-zoom {
    height: 520px;
  }

  .clinic-secondary .image-zoom {
    height: 390px;
  }

  .doctor-grid {
    grid-template-columns: 0.8fr 1fr;
    gap: 55px;
  }

  .doctor-image {
    height: 590px;
  }

  .timeline {
    gap: 24px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .section {
    padding: 86px 0;
  }

  .section-shell,
  .header-inner,
  .authority-inner,
  .footer-main,
  .footer-bottom {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand-mark {
    width: 34px;
    height: 43px;
  }

  .brand-copy strong {
    font-size: 0.78rem;
  }

  .brand-copy small {
    font-size: 0.45rem;
  }

  .hero,
  .hero-inner {
    min-height: max(800px, 100svh);
  }

  .hero-inner {
    width: min(calc(100% - 32px), 1380px);
  }

  .hero-copy {
    padding-top: 115px;
  }

  .eyebrow {
    font-size: 0.58rem;
  }

  .hero h1 {
    max-width: 550px;
    margin-top: 19px;
    font-size: clamp(2.55rem, 11.7vw, 4.25rem);
    line-height: 0.98;
  }

  .hero-lead {
    max-width: 440px;
    font-size: 0.85rem;
    line-height: 1.65;
  }

  .hero-actions {
    max-width: 380px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-badges {
    max-width: 440px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 28px;
  }

  .hero-badges div {
    min-height: 60px;
    padding: 13px;
  }

  .hero-badges div:nth-child(n + 3) {
    margin-top: 0;
    border: 1px solid rgba(201, 164, 92, 0.2);
  }

  .hero-badges div:nth-child(odd) {
    padding-left: 13px;
    border-left: 1px solid rgba(201, 164, 92, 0.2);
  }

  .hero-badges div:nth-child(even) {
    padding-left: 13px;
    border-left: 1px solid rgba(201, 164, 92, 0.2);
  }

  .hero-portrait {
    right: -35%;
    width: 105%;
    height: 72%;
    opacity: 0.41;
  }

  .portrait-caption,
  .portrait-index,
  .portrait-line {
    display: none;
  }

  .technical-grid {
    background-size: 20px 20px;
  }

  .authority-inner {
    grid-template-columns: 1fr;
  }

  .authority-inner > div {
    min-height: 98px;
    padding: 20px;
    border: 1px solid rgba(201, 164, 92, 0.2);
  }

  .authority-inner > div + div {
    border: 1px solid rgba(201, 164, 92, 0.2);
  }

  .authority-inner > div:first-child {
    grid-column: auto;
    border: 1px solid rgba(201, 164, 92, 0.2);
  }

  .authority-number {
    min-width: 55px;
    font-size: 3rem;
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
  }

  .comparison-stage {
    margin-top: 45px;
  }

  .before-after {
    aspect-ratio: 4 / 5;
  }

  .slider-handle {
    width: 52px;
    height: 52px;
  }

  .comparison-label {
    top: 14px;
  }

  .label-before { left: 14px; }
  .label-after { right: 14px; }

  .comparison-meta {
    justify-content: flex-start;
  }

  .planning-intro {
    margin-bottom: 50px;
  }

  .planning-item {
    min-height: 0;
    grid-template-columns: 30px 52px 1fr;
    gap: 15px;
    padding: 28px 0;
  }

  .planning-item:hover {
    padding-inline: 0;
  }

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

  .planning-item .line-icon svg {
    width: 32px;
  }

  .planning-item > div:nth-child(3) {
    gap: 10px;
  }

  .planning-item h3 {
    font-size: 0.97rem;
  }

  .planning-item p {
    font-size: 0.75rem;
  }

  .item-arrow {
    display: none;
  }

  .treatment-grid {
    margin-top: 50px;
  }

  .treatment-card {
    min-height: 570px;
    padding: 32px 25px;
  }

  .treatment-seal {
    min-height: 0;
    font-size: 0.53rem;
  }

  .clinic-gallery {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 50px;
  }

  .clinic-main .image-zoom {
    height: 440px;
  }

  .clinic-secondary {
    width: 82%;
    margin: -90px 0 0 auto !important;
  }

  .clinic-secondary .image-zoom {
    height: 360px;
    border: 7px solid #dce1e5;
  }

  .clinic-seal {
    right: auto;
    bottom: 29%;
    left: 7%;
    width: 100px;
    height: 100px;
  }

  .clinic-seal svg {
    width: 86px;
  }

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

  .doctor-visual {
    width: 87%;
  }

  .doctor-image {
    height: 570px;
  }

  .doctor-monogram {
    right: -35px;
    font-size: 7rem;
  }

  .doctor-copy {
    padding-top: 12px;
  }

  .academic-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 52px;
  }

  .academic-card {
    min-height: 325px;
  }

  .science-applied {
    margin-top: 58px;
    padding: 34px 24px;
  }

  .science-intro h3 {
    font-size: 2rem;
  }

  .science-mini-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .science-mini-card {
    min-height: 0;
    padding: 26px;
  }

  .science-mini-card svg {
    margin-bottom: 20px;
  }

  .academic-timeline {
    margin-top: 60px;
    padding-left: 42px;
  }

  .academic-timeline-line {
    left: 7px;
  }

  .academic-milestone,
  .academic-milestone:nth-of-type(odd) {
    width: 100%;
    min-height: 0;
    margin: 0 0 24px;
    padding: 24px;
    text-align: left;
  }

  .academic-milestone:nth-of-type(odd) .academic-dot,
  .academic-milestone:nth-of-type(even) .academic-dot {
    top: 34px;
    right: auto;
    left: -41px;
  }

  .timeline {
    display: block;
    margin-top: 60px;
    padding-left: 36px;
  }

  .timeline::before,
  .timeline-progress {
    top: 0;
    bottom: 0;
    left: 6px;
    width: 1px;
    height: 100%;
  }

  .timeline-progress {
    height: 0;
    transition: height 1.8s var(--ease);
  }

  .timeline.is-active .timeline-progress {
    width: 1px;
    height: 100%;
  }

  .timeline-step {
    padding-bottom: 44px;
  }

  .step-number {
    margin-bottom: 10px;
  }

  .step-dot {
    position: absolute;
    top: 5px;
    left: -36px;
    margin: 0;
  }

  .timeline-step p {
    max-width: 390px;
  }

  .final-cta {
    min-height: 620px;
  }

  .final-cta-inner {
    width: min(calc(100% - 32px), 950px);
    padding: 80px 0;
  }

  .final-cta .button {
    width: 100%;
  }

  .faq-grid {
    gap: 50px;
  }

  .faq-item button {
    min-height: 82px;
  }

  .faq-item button > span {
    align-items: flex-start;
    gap: 14px;
    font-size: 0.79rem;
    line-height: 1.4;
  }

  .faq-answer p {
    padding-left: 30px;
    font-size: 0.76rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 70px 0 50px;
  }

  .footer-info {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > .button {
    grid-column: auto;
    justify-self: stretch;
  }

  .footer-bottom {
    min-height: 100px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .float-label {
    display: none;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  .float-icon {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 420px) {
  .brand-copy small {
    display: none;
  }

  .hero h1 {
    font-size: 2.48rem;
  }

  .hero-lead {
    font-size: 0.8rem;
  }

  .hero-badges strong {
    font-size: 0.54rem;
  }

  .planning-item {
    grid-template-columns: 24px 1fr;
  }

  .planning-item .line-icon {
    display: none;
  }

  .clinic-main .image-zoom {
    height: 370px;
  }

  .clinic-secondary .image-zoom {
    height: 315px;
  }

  .doctor-image {
    height: 500px;
  }

  .footer-info {
    grid-template-columns: 1fr;
  }
}

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

  .reveal,
  .image-reveal,
  .hero-reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}
