@property --method-photo-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --method-photo-offset {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --method-photo-percent {
  syntax: "<percentage>";
  initial-value: 5%;
  inherits: false;
}

@property --method-photo-shine {
  syntax: "<color>";
  initial-value: white;
  inherits: false;
}

:root {
  color-scheme: dark;
  --ruby-950: #3e2939;
  --ruby-900: #5a4054;
  --ruby-800: #704a67;
  --ruby-700: #86627d;
  --ruby-600: #907088;
  --gold-100: #fff6e1;
  --gold-200: #eadcc0;
  --gold-300: #d8c8a7;
  --gold-500: #c4b290;
  --warm-50: #fbf7f0;
  --warm-100: #f4eadc;
  --warm-200: #e9dcc8;
  --ink-soft: rgba(251, 247, 240, 0.76);
  --ink-muted: rgba(251, 247, 240, 0.64);
  --line-soft: rgba(255, 246, 225, 0.18);
  --line-strong: rgba(255, 246, 225, 0.38);
  --surface-strong: rgba(112, 74, 103, 0.64);
  --surface-soft: rgba(255, 246, 225, 0.07);
  --shadow-large: 0 28px 80px rgba(32, 20, 30, 0.46);
  --shadow-soft: 0 14px 44px rgba(32, 20, 30, 0.28);
  --gradient-ruby: linear-gradient(135deg, #5f4258 0%, #704a67 46%, #87667f 100%);
  --gradient-ruby-deep: linear-gradient(145deg, #4f3749 0%, #704a67 52%, #8c6c85 100%);
  --gradient-gold: linear-gradient(135deg, #fff6e1 0%, #d8c8a7 48%, #c4b290 100%);
  --gradient-line: linear-gradient(90deg, transparent, rgba(255, 246, 225, 0.62), transparent);
  --font-display: "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --container: 1180px;
  --header-height: 82px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scrollbar-color: rgba(216, 200, 167, 0.86) rgba(62, 41, 57, 0.82);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, rgba(62, 41, 57, 0.98), rgba(112, 74, 103, 0.84));
}

::-webkit-scrollbar-thumb {
  border: 3px solid rgba(62, 41, 57, 0.94);
  border-radius: 999px;
  background:
    linear-gradient(180deg, var(--gold-100), var(--gold-300) 52%, var(--gold-500));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    0 0 14px rgba(216, 200, 167, 0.2);
}

::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, #fffaf0, var(--gold-200) 50%, var(--gold-300));
}

::-webkit-scrollbar-corner {
  background: var(--ruby-950);
}

@media (max-width: 720px) {
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    border-width: 2px;
  }
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(255, 246, 225, 0.055) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(180deg, rgba(255, 246, 225, 0.04) 1px, transparent 1px) 0 0 / 92px 92px,
    var(--gradient-ruby);
  color: var(--warm-50);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 24%, rgba(255, 246, 225, 0.07) 24.2%, transparent 24.5% 100%),
    linear-gradient(70deg, transparent 0 68%, rgba(196, 178, 144, 0.08) 68.2%, transparent 68.55% 100%);
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(64, 42, 58, 0.06), rgba(64, 42, 58, 0.26)),
    repeating-linear-gradient(
      135deg,
      transparent 0 19px,
      rgba(255, 246, 225, 0.026) 20px,
      transparent 21px 42px
    );
  pointer-events: none;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(255, 246, 225, 0.24);
  color: var(--gold-100);
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--gold-100);
  color: var(--ruby-950);
  font-weight: 700;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.skip-link:focus {
  opacity: 1;
  outline: 3px solid rgba(255, 246, 225, 0.44);
  outline-offset: 3px;
  transform: translateY(0);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section-shell {
  position: relative;
  isolation: isolate;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 246, 225, 0.18);
  background: rgba(64, 42, 58, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  width: clamp(172px, 19vw, 248px);
  min-height: 54px;
  align-items: center;
  text-decoration: none;
}

.brand-mark img {
  width: 100%;
  height: auto;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition:
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    color 220ms var(--ease-out),
    background 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.button:focus-visible {
  outline: 3px solid rgba(255, 246, 225, 0.44);
  outline-offset: 4px;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.99);
}

.button__icon {
  position: relative;
  z-index: 1;
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  fill: currentColor;
}

.button__icon--whatsapp {
  transform: translateY(0.01em);
}

.button--primary {
  min-width: min(100%, 320px);
  padding: 17px 24px;
  background: var(--gradient-gold);
  box-shadow: 0 18px 38px rgba(196, 178, 144, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.56);
  color: var(--ruby-950);
}

.button--primary::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.36) 48%, transparent 62% 100%);
  opacity: 0;
  transform: translateX(-45%);
  transition: opacity 220ms var(--ease-out), transform 520ms var(--ease-out);
}

.button--primary:hover::after {
  opacity: 1;
  transform: translateX(45%);
}

.button--ghost {
  padding: 12px 18px;
  border-color: var(--line-strong);
  background: rgba(255, 246, 225, 0.055);
  color: var(--gold-100);
}

.button--ghost:hover {
  border-color: rgba(255, 246, 225, 0.68);
  background: rgba(255, 246, 225, 0.11);
  box-shadow: 0 14px 34px rgba(32, 20, 30, 0.28);
}

.button--small {
  min-height: 42px;
  font-size: 0.92rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-200);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 1px;
  background: var(--gradient-line);
  content: "";
}

.hero {
  --hero-info-bar-height: 58px;
  --hero-desktop-extra-space: 0px;
  --hero-top-gap: 0px;
  display: block;
  min-height: 100dvh;
  padding: calc(var(--header-height) + var(--hero-top-gap)) 0 0;
  overflow: hidden;
  background:
    linear-gradient(104deg, rgba(80, 54, 74, 0.74) 0 39%, rgba(112, 74, 103, 0.26) 58%, rgba(180, 144, 170, 0.38) 82%, rgba(246, 224, 236, 0.22) 100%),
    linear-gradient(90deg, transparent 0 50%, rgba(255, 246, 225, 0.1) 68%, rgba(255, 246, 225, 0.18) 100%),
    var(--gradient-ruby-deep);
  color: var(--warm-50);
}

.hero::before,
.hero::after {
  display: none;
  content: none;
}

.hero-etching {
  display: none;
}

.hero-etching::before,
.hero-etching::after {
  content: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.94fr);
  min-height: calc(100dvh - var(--header-height) - var(--hero-top-gap));
  align-items: stretch;
  gap: clamp(28px, 4vw, 64px);
  padding-bottom: var(--hero-info-bar-height);
}

.hero-copy {
  align-self: center;
  max-width: 720px;
  padding: 0 0 clamp(0px, 1.4vh, 18px);
}

.hero .eyebrow {
  color: var(--gold-200);
}

.hero .eyebrow::before {
  background: var(--gradient-line);
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  color: var(--warm-50);
  font-family: var(--font-display);
  font-size: clamp(2.95rem, 3.55vw, 4.15rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero-text {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.hero-text strong {
  color: var(--gold-100);
}

.hero .button--primary {
  box-shadow: 0 18px 38px rgba(196, 178, 144, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.hero .button--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 246, 225, 0.055);
  color: var(--gold-100);
}

.hero .button--ghost:hover {
  border-color: rgba(255, 246, 225, 0.68);
  background: rgba(255, 246, 225, 0.11);
  box-shadow: 0 14px 34px rgba(32, 20, 30, 0.28);
}

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

@media (min-width: 721px) {
  .hero-actions {
    flex-wrap: nowrap;
    align-items: center;
  }

  .hero-actions .button {
    flex: 0 0 auto;
  }
}

.hero-visual {
  min-width: 0;
  align-self: stretch;
  display: flex;
  height: calc(100dvh - var(--header-height) - var(--hero-top-gap) - var(--hero-info-bar-height));
  min-height: 0;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-doctor {
  position: relative;
  isolation: isolate;
  display: flex;
  width: auto;
  height: 100%;
  min-height: 0;
  align-items: flex-end;
  justify-content: center;
  transform: translateX(clamp(-42px, -1.4vw, -18px));
}

.hero-doctor::before {
  content: none;
  display: none;
}

.hero-doctor::after {
  display: none;
  content: none;
}

.hero-doctor__image {
  position: relative;
  z-index: 1;
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center bottom;
  box-shadow: none;
  filter: none;
  margin-bottom: 0;
  transform: none;
}

.hero-info-bar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  min-height: var(--hero-info-bar-height);
  overflow: hidden;
  border-top: 1px solid rgba(255, 246, 225, 0.28);
  border-bottom: 1px solid rgba(255, 246, 225, 0.1);
  background:
    linear-gradient(90deg, rgba(64, 42, 58, 0.94), rgba(132, 94, 123, 0.84), rgba(64, 42, 58, 0.94)),
    rgba(64, 42, 58, 0.86);
  box-shadow: 0 -22px 46px rgba(32, 20, 30, 0.22);
  backdrop-filter: blur(18px);
}

.hero-info-bar::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 246, 225, 0.14), transparent),
    repeating-linear-gradient(90deg, transparent 0 88px, rgba(255, 246, 225, 0.045) 89px, transparent 90px 178px);
  content: "";
  opacity: 0.62;
  pointer-events: none;
}

.hero-info-bar::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(64, 42, 58, 0.98) 0%,
    rgba(64, 42, 58, 0) 14%,
    rgba(64, 42, 58, 0) 86%,
    rgba(64, 42, 58, 0.98) 100%
  );
  content: "";
  pointer-events: none;
}

.hero-info-bar__track {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  min-height: var(--hero-info-bar-height);
  animation: hero-info-marquee 22s linear infinite;
  will-change: transform;
}

.hero-info-bar__list {
  display: flex;
  flex: 0 0 auto;
  min-width: 100vw;
  min-height: var(--hero-info-bar-height);
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  padding: 0 8px;
  margin: 0;
  list-style: none;
}

.hero-info-bar__list--desktop-extra {
  display: none;
}

.hero-info-bar__list li {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 30px;
  align-items: center;
  gap: 12px;
  padding: 4px 12px;
  color: var(--gold-100);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 1px 16px rgba(32, 20, 30, 0.34);
  white-space: nowrap;
}

.hero-info-bar__icon {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  color: var(--gold-200);
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  filter: drop-shadow(0 6px 12px rgba(32, 20, 30, 0.18));
}

@keyframes hero-info-marquee {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (min-width: 721px) {
  .hero-info-bar__list {
    min-width: 0;
    justify-content: flex-start;
  }

  .hero-info-bar__list--desktop-extra {
    display: flex;
  }
}

.social-proof {
  overflow: hidden;
  padding: clamp(88px, 9vw, 138px) 0;
  background:
    linear-gradient(135deg, rgba(95, 66, 88, 0.88), rgba(112, 74, 103, 0.78) 48%, rgba(79, 55, 73, 0.92)),
    var(--ruby-900);
}

.social-proof::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gradient-line);
}

.social-proof::after {
  content: none;
}

.social-proof-grid {
  display: grid;
  width: min(100% - 72px, 1380px);
  grid-template-columns: minmax(560px, 0.86fr) minmax(560px, 1fr);
  align-items: center;
  gap: clamp(40px, 4vw, 64px);
}

.social-proof-copy {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
}

.social-proof-copy::after {
  width: min(190px, 52%);
  height: 1px;
  margin-top: 32px;
  content: "";
  background: var(--gradient-line);
  opacity: 0.72;
}

.social-proof h2 {
  max-width: 720px;
  margin: 0;
  color: var(--warm-50);
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 3.45vw, 4rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.06;
}

.social-proof-title span {
  display: block;
  white-space: nowrap;
}

.social-proof-title__accent {
  width: fit-content;
  max-width: 100%;
  background: var(--gradient-gold);
  background-clip: text;
  color: transparent;
  text-shadow: 0 12px 34px rgba(216, 200, 167, 0.12);
  -webkit-background-clip: text;
}

.metrics-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(178px, 1fr));
  gap: 16px;
  overflow: visible;
  isolation: isolate;
}

.metrics-panel::before {
  position: absolute;
  inset: -22px;
  z-index: -1;
  border: 1px solid rgba(255, 246, 225, 0.09);
  border-radius: 34px;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 246, 225, 0.055) 1px, transparent 1px) 0 0 / 118px 118px,
    linear-gradient(180deg, rgba(255, 246, 225, 0.045) 1px, transparent 1px) 0 0 / 118px 118px;
  opacity: 0.68;
  pointer-events: none;
}

.metrics-panel::after {
  position: absolute;
  right: 12%;
  bottom: -20px;
  z-index: -1;
  width: min(48%, 380px);
  height: 1px;
  content: "";
  background: var(--gradient-line);
  opacity: 0.9;
  pointer-events: none;
}

.metric-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 178px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 225, 0.16);
  border-radius: 18px;
  padding: clamp(50px, 3vw, 58px) clamp(20px, 2vw, 30px) clamp(20px, 2vw, 30px);
  background:
    linear-gradient(145deg, rgba(255, 246, 225, 0.13), transparent 38%),
    linear-gradient(180deg, rgba(255, 246, 225, 0.068), rgba(255, 246, 225, 0.026)),
    rgba(112, 74, 103, 0.58);
  box-shadow: 0 20px 54px rgba(32, 20, 30, 0.2);
  backdrop-filter: blur(16px);
}

.metric-card::before {
  position: absolute;
  top: 22px;
  left: clamp(20px, 2vw, 30px);
  width: 46px;
  height: 1px;
  content: "";
  background: var(--gradient-line);
  opacity: 0.78;
}

.metric-card::after {
  content: none;
}

.metric-card__icon {
  position: absolute;
  top: clamp(18px, 2vw, 26px);
  right: clamp(18px, 2vw, 28px);
  display: grid;
  width: clamp(42px, 3.25vw, 54px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 246, 225, 0.22);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(145deg, rgba(255, 246, 225, 0.18), rgba(255, 246, 225, 0.045)),
    rgba(62, 41, 57, 0.18);
  color: var(--gold-100);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.055),
    0 14px 34px rgba(32, 20, 30, 0.22);
}

.metric-card__icon svg {
  width: 52%;
  height: 52%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.metric-card:nth-child(1) {
  justify-content: flex-end;
  border-color: rgba(255, 246, 225, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 246, 225, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(255, 246, 225, 0.08), rgba(255, 246, 225, 0.028)),
    rgba(112, 74, 103, 0.66);
}

.metric-card:nth-child(2) {
  align-items: flex-start;
}

.metric-card__number {
  display: block;
  width: fit-content;
  background: var(--gradient-gold);
  background-clip: text;
  color: transparent;
  font-family: var(--font-display);
  max-width: 100%;
  font-size: clamp(3.15rem, 3.85vw, 4.45rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
  -webkit-background-clip: text;
}

.metric-card:first-child .metric-card__number {
  font-size: clamp(3.45rem, 4.25vw, 4.75rem);
}

.metric-card__number--compact {
  font-size: clamp(2.45rem, 3.1vw, 3.35rem);
  line-height: 1;
}

.metric-card__label {
  display: block;
  max-width: 220px;
  margin-top: 16px;
  color: var(--warm-100);
  font-size: clamp(0.92rem, 0.95vw, 1.02rem);
  font-weight: 800;
  line-height: 1.35;
}

.pain-section {
  overflow: hidden;
  padding: clamp(78px, 8vw, 128px) 0 clamp(70px, 7vw, 112px);
  background:
    linear-gradient(135deg, rgba(95, 66, 88, 0.88), rgba(112, 74, 103, 0.78) 48%, rgba(79, 55, 73, 0.92)),
    var(--ruby-900);
}

.pain-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--gradient-line);
  content: "";
  opacity: 0.62;
}

.pain-section::after {
  display: none;
  content: none;
}

.pain-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.56fr);
  align-items: center;
  gap: clamp(34px, 7vw, 110px);
}

.pain-copy {
  max-width: 820px;
}

.pain-title-art {
  display: grid;
  width: min(100%, 820px);
  min-height: 0;
  place-items: center;
  margin: 0;
  border: 0;
  background: transparent;
}

.pain-title-art img {
  display: block;
  width: min(100%, 720px);
  height: auto;
  max-height: clamp(360px, 36vw, 560px);
  object-fit: contain;
}

.pain-narrative {
  position: relative;
  max-width: 500px;
  padding-left: clamp(24px, 3vw, 38px);
}

.pain-narrative::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: var(--gradient-gold);
  content: "";
}

.pain-narrative p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.pain-narrative p:first-child {
  color: var(--warm-50);
  font-size: clamp(1.08rem, 1.35vw, 1.18rem);
  line-height: 1.6;
}

.pain-narrative p + p {
  margin-top: 22px;
}

.pain-narrative .button {
  margin-top: 34px;
}

.pain-closing {
  position: relative;
  color: var(--warm-100);
  font-weight: 700;
}

.pain-closing::before {
  display: none;
  content: none;
}

.symptoms-section {
  overflow: hidden;
  padding: clamp(76px, 8vw, 122px) 0;
  background-color: transparent;
  background-image: url("fundosessao-720.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--ruby-950);
}

@media (min-width: 721px) {
  .symptoms-section {
    background-image: url("fundosessao1-1280.webp");
  }
}

.symptoms-section::before {
  display: none;
  content: none;
}

.symptoms-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(112, 74, 103, 0.2), rgba(196, 178, 144, 0.42), transparent);
  content: "";
}

.symptoms-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 5.5vw, 84px);
}

.symptoms-heading {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  max-width: 360px;
}

.symptoms-heading span {
  display: block;
  color: var(--ruby-800);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.symptoms-heading h2 {
  margin: 10px 0 0;
  color: var(--ruby-950);
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 4vw, 4.35rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
  text-wrap: balance;
}

.symptom-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  counter-reset: symptoms;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.symptom-list li {
  position: relative;
  display: flex;
  min-height: 106px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  counter-increment: symptoms;
  border: 1px solid rgba(112, 74, 103, 0.14);
  border-radius: var(--radius-sm);
  padding: 22px 24px 22px clamp(106px, 9vw, 138px);
  background: transparent;
  color: var(--ruby-950);
  font-size: clamp(0.95rem, 1vw, 1.04rem);
  font-weight: 800;
  line-height: 1.35;
  box-shadow: none;
  transition:
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    background 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.symptom-list li::before {
  position: absolute;
  top: 50%;
  left: clamp(14px, 1.8vw, 24px);
  z-index: 0;
  width: clamp(90px, 8vw, 130px);
  background:
    linear-gradient(90deg, rgba(112, 74, 103, 0.22) 0%, rgba(196, 178, 144, 0.24) 58%, rgba(196, 178, 144, 0) 100%);
  background-clip: text;
  color: transparent;
  content: counter(symptoms, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: clamp(4.25rem, 6.8vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
  transform: translateY(-50%);
  -webkit-background-clip: text;
  pointer-events: none;
}

.symptom-list li span {
  position: relative;
  z-index: 1;
}

.symptom-list li:hover {
  border-color: rgba(112, 74, 103, 0.26);
  background: transparent;
  box-shadow: none;
  transform: translateY(-3px);
}

.method-section {
  overflow: hidden;
  padding: clamp(88px, 9vw, 136px) 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(216, 200, 167, 0.14), transparent 28rem),
    radial-gradient(circle at 86% 16%, rgba(255, 246, 225, 0.08), transparent 26rem),
    linear-gradient(135deg, rgba(62, 41, 57, 0.98) 0%, rgba(82, 54, 76, 0.98) 48%, rgba(48, 31, 44, 0.99) 100%);
  color: var(--warm-50);
}

.method-section::before {
  display: none;
  content: none;
}

.method-section::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 246, 225, 0.18), rgba(216, 200, 167, 0.46), transparent);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 112px);
}

.method-photo {
  --method-photo-border-size: 3px;
  --method-photo-percent: 5%;
  --method-photo-shine: rgba(255, 246, 225, 0.98);
  position: relative;
  overflow: hidden;
  width: min(100%, 500px);
  margin: 0;
  justify-self: center;
  isolation: isolate;
  border: 1px solid transparent;
  border-radius: 22px;
  padding: var(--method-photo-border-size);
  background:
    linear-gradient(rgba(62, 41, 57, 0.92), rgba(62, 41, 57, 0.92)) padding-box,
    conic-gradient(
      from calc(var(--method-photo-angle) - var(--method-photo-offset)),
      transparent,
      rgba(216, 200, 167, 0.52) var(--method-photo-percent),
      var(--method-photo-shine) calc(var(--method-photo-percent) * 2),
      rgba(196, 178, 144, 0.76) calc(var(--method-photo-percent) * 3),
      transparent calc(var(--method-photo-percent) * 4)
    )
    border-box;
  box-shadow: inset 0 0 0 1px rgba(255, 246, 225, 0.08);
  animation:
    method-photo-gradient-angle 3.8s linear infinite,
    method-photo-gradient-angle 9.5s linear infinite reverse paused;
  animation-composition: add;
  transition:
    --method-photo-offset 800ms cubic-bezier(0.25, 1, 0.5, 1),
    --method-photo-percent 800ms cubic-bezier(0.25, 1, 0.5, 1),
    --method-photo-shine 800ms cubic-bezier(0.25, 1, 0.5, 1);
}

.method-photo::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  padding: var(--method-photo-border-size);
  background:
    conic-gradient(
      from calc(var(--method-photo-angle) - var(--method-photo-offset)),
      transparent,
      rgba(216, 200, 167, 0.26) var(--method-photo-percent),
      rgba(255, 246, 225, 1) calc(var(--method-photo-percent) * 2),
      rgba(216, 200, 167, 0.92) calc(var(--method-photo-percent) * 3),
      transparent calc(var(--method-photo-percent) * 4)
    );
  content: "";
  opacity: 0.96;
  filter:
    drop-shadow(0 0 7px rgba(255, 246, 225, 0.42))
    drop-shadow(0 0 18px rgba(216, 200, 167, 0.22));
  animation:
    method-photo-gradient-angle 3.8s linear infinite,
    method-photo-gradient-angle 9.5s linear infinite reverse paused;
  animation-composition: add;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.method-photo::after {
  display: none;
  content: none;
}

.method-photo img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(22px - var(--method-photo-border-size));
}

.method-photo:hover {
  --method-photo-percent: 20%;
  --method-photo-offset: 95deg;
  --method-photo-shine: rgba(255, 246, 225, 1);
  animation-play-state: running;
}

.method-photo:hover::before {
  animation-play-state: running;
}

@keyframes method-photo-gradient-angle {
  to {
    --method-photo-angle: 360deg;
  }
}

@keyframes method-photo-shimmer {
  to {
    transform: rotate(360deg);
  }
}

.method-copy {
  max-width: 670px;
}

.method-copy .eyebrow {
  color: var(--ruby-800);
  letter-spacing: 0;
}

.method-copy .eyebrow::before {
  background: linear-gradient(90deg, rgba(112, 74, 103, 0.72), rgba(196, 178, 144, 0.74));
}

.method-copy h2 {
  max-width: 650px;
  margin: 0;
  color: var(--ruby-950);
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.7vw, 5rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.method-copy p {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(62, 41, 57, 0.74);
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  line-height: 1.75;
}

.method-statement {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  margin-top: 34px;
}

.method-statement span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid rgba(112, 74, 103, 0.16);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ruby-900);
  font-weight: 800;
  line-height: 1.3;
  box-shadow: 0 12px 30px rgba(62, 41, 57, 0.06);
}

.method-statement span::before {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ruby-800), var(--gold-500));
  content: "";
}

.consultation-visual {
  position: relative;
  min-width: 0;
}

.consultation-visual::before {
  display: none;
  content: none;
}

.consultation-visual__header {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 112px;
  border: 1px solid rgba(216, 200, 167, 0.34);
  border-radius: 20px;
  padding: clamp(20px, 2.4vw, 28px);
  background:
    linear-gradient(135deg, rgba(255, 246, 225, 0.16), rgba(255, 246, 225, 0.035)),
    rgba(64, 42, 58, 0.72);
  box-shadow: 0 24px 58px rgba(24, 15, 22, 0.22);
}

.consultation-visual__header span:not(.consultation-visual__icon) {
  display: block;
  color: rgba(255, 246, 225, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.consultation-visual__header strong {
  display: block;
  margin-top: 6px;
  color: var(--gold-100);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.12;
  text-wrap: balance;
}

.consultation-visual__icon,
.consultation-item__icon,
.consultation-item__check {
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.consultation-visual__icon {
  width: 58px;
  aspect-ratio: 1;
  border: 1px solid rgba(216, 200, 167, 0.36);
  background: rgba(255, 246, 225, 0.08);
  color: var(--gold-100);
}

.consultation-visual svg,
.consultation-item__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.consultation-item__check svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.consultation-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.consultation-item {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  min-height: 128px;
  align-items: flex-start;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 225, 0.13);
  border-radius: 18px;
  padding: clamp(18px, 2vw, 24px);
  background:
    linear-gradient(135deg, rgba(255, 246, 225, 0.09), rgba(255, 246, 225, 0.025)),
    rgba(64, 42, 58, 0.58);
  box-shadow: 0 18px 42px rgba(24, 15, 22, 0.18);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.consultation-item--compact {
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  min-height: 0;
  padding: 16px 18px;
}

.consultation-item__icon {
  width: 52px;
  aspect-ratio: 1;
  border: 1px solid rgba(216, 200, 167, 0.3);
  background: rgba(255, 246, 225, 0.075);
  color: var(--gold-100);
}

.consultation-item__check {
  width: 20px;
  aspect-ratio: 1;
  margin-top: 2px;
  color: var(--gold-300);
}

.consultation-item > div {
  min-width: 0;
}

.consultation-item h3 {
  margin: 0;
  color: var(--warm-50);
  font-family: var(--font-display);
  font-size: clamp(1.04rem, 1.25vw, 1.28rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.14;
  text-wrap: balance;
}

.consultation-item p {
  margin: 6px 0 0;
  color: rgba(251, 247, 240, 0.72);
  font-size: 0.9rem;
  line-height: 1.48;
}

.consultation-item--accent {
  border-color: rgba(216, 200, 167, 0.48);
  background:
    linear-gradient(135deg, rgba(216, 200, 167, 0.22), rgba(255, 246, 225, 0.06)),
    rgba(64, 42, 58, 0.72);
  box-shadow: 0 24px 58px rgba(24, 15, 22, 0.24);
}

.consultation-item--accent .consultation-item__icon {
  border-color: rgba(255, 246, 225, 0.36);
  background: rgba(255, 246, 225, 0.13);
  color: var(--gold-100);
}

.consultation-item--accent h3 {
  color: var(--gold-100);
}

.consultation-item--accent p {
  color: rgba(251, 247, 240, 0.76);
}

.consultation-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 58px rgba(24, 15, 22, 0.26);
}

@media (min-width: 981px) {
  .consultation-list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
  }

  .consultation-item {
    grid-template-columns: 56px minmax(0, 1fr);
    min-height: 100px;
    align-items: center;
    padding: 16px 20px;
  }

  .consultation-item--compact {
    grid-template-columns: 22px minmax(0, 1fr);
    min-height: 0;
    align-items: flex-start;
    padding: 14px 18px;
  }

  .consultation-item__check {
    margin-top: 3px;
  }

  .consultation-item h3 {
    font-size: clamp(1.02rem, 1.08vw, 1.14rem);
  }

  .consultation-item p {
    margin-top: 5px;
    font-size: 0.88rem;
    line-height: 1.45;
  }
}

.services-section {
  overflow: visible;
  padding: clamp(88px, 10vw, 150px) 0;
  background: linear-gradient(180deg, #fbf7f0 0%, #f6eee5 52%, #e9dfd3 100%);
  color: var(--ruby-950);
}

.services-section::before {
  display: none;
  content: none;
}

.services-section::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(112, 74, 103, 0.26), rgba(196, 178, 144, 0.46), transparent);
}

.services-container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(36px, 5vw, 78px);
}

.services-container::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(40%, 44vw, 50%);
  z-index: -1;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(112, 74, 103, 0.18) 16%, rgba(196, 178, 144, 0.34) 54%, transparent);
  content: "";
}

.services-heading {
  position: sticky;
  top: calc(50dvh + 18px);
  max-width: 520px;
  margin: 0;
  transform: translateY(-50%);
}

.services-heading .eyebrow {
  margin-bottom: 18px;
  color: var(--ruby-800);
  letter-spacing: 0;
}

.services-heading .eyebrow::before {
  background: linear-gradient(90deg, rgba(112, 74, 103, 0.72), rgba(196, 178, 144, 0.72));
}

.services-heading h2 {
  max-width: 560px;
  margin: 0;
  color: var(--ruby-950);
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 5.4vw, 5.25rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.services-heading h2 span {
  display: inline;
}

.services-composition {
  position: relative;
  min-width: 0;
}

.services-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.2vw, 28px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.services-flow::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: clamp(29px, 3.4vw, 41px);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(112, 74, 103, 0.2) 12%, rgba(196, 178, 144, 0.54) 50%, rgba(112, 74, 103, 0.18) 86%, transparent);
  content: "";
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: clamp(58px, 6vw, 82px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(18px, 2.6vw, 34px);
  min-height: auto;
  overflow: visible;
  border: 1px solid rgba(112, 74, 103, 0.14);
  border-radius: var(--radius-sm);
  padding: clamp(22px, 2.6vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    linear-gradient(180deg, rgba(255, 246, 225, 0.88), rgba(255, 246, 225, 0.36));
  box-shadow: 0 22px 58px rgba(62, 41, 57, 0.1);
  transition:
    border-color 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out),
    transform 240ms var(--ease-out);
}

.service-card:nth-child(even) {
  margin-left: clamp(28px, 5vw, 86px);
}

.service-card:nth-child(odd) {
  margin-right: clamp(18px, 3.8vw, 64px);
}

.service-card:nth-child(even) {
  border-color: rgba(255, 246, 225, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 246, 225, 0.13), rgba(255, 246, 225, 0.02)),
    linear-gradient(145deg, rgba(112, 74, 103, 0.96), rgba(134, 98, 125, 0.9));
  box-shadow: 0 24px 62px rgba(62, 41, 57, 0.18);
}

.service-card::before {
  display: none;
  content: none;
}

.service-card__number {
  position: relative;
  top: auto;
  right: auto;
  z-index: 1;
  display: grid;
  width: clamp(58px, 6vw, 82px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(112, 74, 103, 0.2);
  border-radius: 50%;
  background: rgba(251, 247, 240, 0.9);
  box-shadow:
    0 0 0 8px rgba(251, 247, 240, 0.72),
    0 12px 30px rgba(62, 41, 57, 0.08);
  color: var(--ruby-800);
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.2vw, 1.12rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  pointer-events: none;
}

.service-card__number::before {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(196, 178, 144, 0.52);
  border-radius: 50%;
  background: transparent;
  content: "";
}

.service-card__content {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0;
  margin: 0;
}

.service-card h3 {
  max-width: 580px;
  margin: 0;
  color: var(--ruby-950);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.85vw, 2.05rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.service-card p {
  max-width: 640px;
  margin: 12px 0 0;
  color: rgba(62, 41, 57, 0.74);
  font-size: clamp(0.94rem, 0.95vw, 1.03rem);
  line-height: 1.62;
}

.service-card:nth-child(even) .service-card__number {
  border-color: rgba(255, 246, 225, 0.28);
  background: rgba(255, 246, 225, 0.12);
  box-shadow:
    0 0 0 8px rgba(112, 74, 103, 0.34),
    0 12px 30px rgba(32, 20, 30, 0.16);
  color: var(--gold-100);
}

.service-card:nth-child(even) .service-card__number::before {
  border-color: rgba(255, 246, 225, 0.34);
}

.service-card:nth-child(even) h3 {
  color: var(--gold-100);
}

.service-card:nth-child(even) p {
  color: rgba(251, 247, 240, 0.76);
}

.service-card:hover {
  border-color: rgba(112, 74, 103, 0.28);
  box-shadow: 0 30px 70px rgba(62, 41, 57, 0.15);
  transform: translateY(-3px);
}

.service-card:nth-child(even):hover {
  border-color: rgba(255, 246, 225, 0.38);
  box-shadow: 0 30px 72px rgba(62, 41, 57, 0.22);
}

.women-section {
  overflow: hidden;
  padding: clamp(84px, 10vw, 150px) 0;
  background:
    linear-gradient(180deg, rgba(64, 42, 58, 0.72), rgba(114, 78, 106, 0.2) 44%, rgba(64, 42, 58, 0.76)),
    rgba(74, 50, 68, 0.92);
}

.women-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(105deg, transparent 0 56%, rgba(255, 246, 225, 0.055) 56.2%, transparent 56.45% 100%),
    repeating-linear-gradient(135deg, transparent 0 34px, rgba(255, 246, 225, 0.026) 35px, transparent 36px 70px);
}

.women-section::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gradient-line);
}

.women-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(38px, 6vw, 92px);
}

.women-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--warm-50);
  font-family: var(--font-display);
  font-size: 4.15rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
}

.women-copy p {
  max-width: 660px;
  margin: 23px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.women-copy .button {
  margin-top: 34px;
}

.women-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 225, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 246, 225, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(255, 246, 225, 0.06), rgba(255, 246, 225, 0.018)),
    rgba(103, 70, 96, 0.78);
  box-shadow: var(--shadow-large);
}

.women-panel::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 246, 225, 0.13);
  border-radius: 21px;
  content: "";
  pointer-events: none;
}

.women-panel::after {
  position: absolute;
  right: -28%;
  bottom: -18%;
  width: 76%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 246, 225, 0.12);
  border-radius: 52% 48% 46% 54%;
  content: "";
  transform: rotate(-18deg);
  pointer-events: none;
}

.women-panel__mark {
  position: absolute;
  top: 54px;
  left: 50%;
  width: min(70%, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 246, 225, 0.16);
  border-radius: 50%;
  transform: translateX(-50%);
}

.women-panel__mark::before,
.women-panel__mark::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 246, 225, 0.11);
  border-radius: 50%;
}

.women-panel__mark::before {
  inset: 14%;
}

.women-panel__mark::after {
  inset: 30%;
  background: linear-gradient(135deg, rgba(255, 246, 225, 0.12), transparent);
}

.phase-stack {
  position: absolute;
  top: 44px;
  right: 32px;
  left: 32px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.phase-stack span {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 246, 225, 0.18);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  background: rgba(64, 42, 58, 0.48);
  color: var(--warm-100);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  backdrop-filter: blur(14px);
}

.women-panel blockquote {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  z-index: 2;
  margin: 0;
  border-left: 2px solid var(--gold-300);
  padding: 0 0 0 22px;
}

.women-panel blockquote p {
  max-width: 470px;
  margin: 0;
  background: var(--gradient-gold);
  background-clip: text;
  color: transparent;
  font-family: var(--font-display);
  font-size: 3.1rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.02;
  -webkit-background-clip: text;
}

.weight-section {
  overflow: hidden;
  padding: clamp(84px, 10vw, 148px) 0;
  background:
    linear-gradient(180deg, rgba(64, 42, 58, 0.74), rgba(73, 49, 67, 0.18) 46%, rgba(64, 42, 58, 0.76)),
    rgba(67, 44, 61, 0.94);
}

.weight-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(255, 246, 225, 0.045) 28.2%, transparent 28.5% 100%),
    linear-gradient(65deg, transparent 0 74%, rgba(255, 246, 225, 0.04) 74.2%, transparent 74.5% 100%);
}

.weight-section::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gradient-line);
}

.weight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 0.88fr);
  align-items: center;
  gap: clamp(38px, 6vw, 92px);
}

.weight-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--warm-50);
  font-family: var(--font-display);
  font-size: 4.1rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
}

.weight-copy p {
  max-width: 650px;
  margin: 23px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.weight-panel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 225, 0.21);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 246, 225, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 246, 225, 0.06), rgba(255, 246, 225, 0.02)),
    rgba(94, 64, 88, 0.78);
  box-shadow: var(--shadow-large);
}

.weight-panel::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 246, 225, 0.13);
  border-radius: 21px;
  content: "";
  pointer-events: none;
}

.weight-panel::after {
  position: absolute;
  right: -18%;
  bottom: -22%;
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 246, 225, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.factor-orbit {
  position: absolute;
  top: 52px;
  left: 50%;
  width: min(74%, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 246, 225, 0.13);
  border-radius: 48% 52% 46% 54%;
  transform: translateX(-50%) rotate(18deg);
}

.factor-orbit::before,
.factor-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 246, 225, 0.09);
  border-radius: 50%;
}

.factor-orbit::before {
  inset: 14%;
}

.factor-orbit::after {
  inset: 32%;
  background: linear-gradient(135deg, rgba(255, 246, 225, 0.12), transparent);
}

.factor-cloud {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 42px 34px 0;
}

.factor-cloud span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(255, 246, 225, 0.18);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(64, 42, 58, 0.44);
  color: var(--warm-100);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  backdrop-filter: blur(14px);
}

.factor-cloud span::before {
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--gradient-gold);
  content: "";
}

.principle-stack {
  position: absolute;
  right: 34px;
  bottom: 132px;
  left: 34px;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.principle-stack strong {
  display: flex;
  min-height: 58px;
  align-items: center;
  border: 1px solid rgba(255, 246, 225, 0.18);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: rgba(64, 42, 58, 0.58);
  color: var(--gold-100);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.12;
  box-shadow: 0 12px 32px rgba(32, 20, 30, 0.2);
  backdrop-filter: blur(14px);
}

.principle-stack strong::before {
  flex: 0 0 auto;
  width: 32px;
  height: 1px;
  margin-right: 12px;
  background: var(--gradient-line);
  content: "";
}

.weight-signature {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  z-index: 2;
  margin: 0;
  border-left: 2px solid var(--gold-300);
  padding-left: 18px;
  color: var(--warm-100);
  font-weight: 800;
  line-height: 1.45;
}

.process-section {
  overflow: hidden;
  padding: clamp(84px, 10vw, 148px) 0;
  background:
    linear-gradient(180deg, #fbf7f0 0%, #f7efe6 48%, #eadfce 100%);
  color: var(--ruby-950);
}

.process-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 246, 225, 0.22) 58%, rgba(112, 74, 103, 0.08)),
    linear-gradient(90deg, rgba(251, 247, 240, 0.9), transparent 22% 78%, rgba(251, 247, 240, 0.84));
  pointer-events: none;
}

.process-section::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(112, 74, 103, 0.26), rgba(196, 178, 144, 0.46), transparent);
}

.process-heading {
  display: block;
  max-width: 980px;
  margin: 0 auto clamp(46px, 6vw, 78px);
  text-align: center;
}

.process-heading::after {
  display: none;
  content: none;
}

.process-heading .eyebrow {
  justify-content: center;
  margin-bottom: 14px;
  color: var(--ruby-800);
}

.process-heading .eyebrow::before {
  display: none;
  content: none;
}

.process-heading h2 {
  max-width: 980px;
  margin: 0;
  color: var(--ruby-950);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.45vw, 4.2rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

.process-timeline {
  position: relative;
  display: grid;
  max-width: 1040px;
  gap: 28px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.process-timeline::before {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 50%;
  width: 1px;
  height: auto;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(112, 74, 103, 0.2), rgba(196, 178, 144, 0.58), rgba(112, 74, 103, 0.18), transparent);
  pointer-events: none;
  transform: translateX(-50%);
}

.process-step {
  position: relative;
  display: grid;
  min-height: 142px;
  grid-template-columns: minmax(0, 1fr) 78px minmax(0, 1fr);
  align-items: center;
}

.process-step:nth-child(even) {
  margin-top: 0;
}

.process-step::before {
  display: none;
  content: none;
}

.process-step__number {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  border: 1px solid rgba(112, 74, 103, 0.2);
  border-radius: 50%;
  background: rgba(251, 247, 240, 0.94);
  color: var(--ruby-800);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  box-shadow:
    0 0 0 8px rgba(251, 247, 240, 0.78),
    0 14px 32px rgba(62, 41, 57, 0.1);
}

.process-step__number::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(196, 178, 144, 0.52);
  border-radius: 50%;
  content: "";
}

.process-step__content {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 430px);
  min-height: 122px;
  grid-column: 1;
  grid-row: 1;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  justify-self: end;
  gap: 0 18px;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(112, 74, 103, 0.14);
  border-radius: 18px;
  padding: 24px 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.58)),
    linear-gradient(180deg, rgba(255, 246, 225, 0.84), rgba(255, 246, 225, 0.34));
  box-shadow: 0 22px 58px rgba(62, 41, 57, 0.1);
  transition:
    border-color 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out),
    transform 240ms var(--ease-out);
}

.process-step:nth-child(even) .process-step__content {
  grid-column: 3;
  justify-self: start;
}

.process-step__icon {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  grid-row: 1 / span 2;
  place-items: center;
  color: var(--ruby-800);
}

.process-step__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.process-step__icon .process-step__whatsapp {
  width: 28px;
  height: 28px;
  fill: currentColor;
  stroke: none;
}

.process-step h3 {
  margin: 0;
  color: var(--ruby-950);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
}

.process-step p {
  margin: 8px 0 0;
  color: rgba(62, 41, 57, 0.74);
  font-size: 0.94rem;
  line-height: 1.58;
}

.process-step__content:hover {
  border-color: rgba(112, 74, 103, 0.24);
  box-shadow: 0 26px 64px rgba(62, 41, 57, 0.14);
  transform: translateY(-2px);
}

.appointments-section {
  overflow: hidden;
  padding: clamp(84px, 10vw, 148px) 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 246, 225, 0.12), transparent 24rem),
    radial-gradient(circle at 86% 10%, rgba(196, 178, 144, 0.1), transparent 26rem),
    linear-gradient(145deg, #3f293a 0%, #56384f 46%, #442d3f 100%);
  color: var(--warm-50);
}

.appointments-section::before {
  display: none;
  content: none;
}

.appointments-section::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gradient-line);
}

.appointments-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}

.appointments-heading {
  display: grid;
  grid-column: 1 / -1;
  max-width: 980px;
  justify-self: center;
  gap: 18px;
  margin-bottom: clamp(30px, 5vw, 58px);
  text-align: center;
}

.appointments-heading::after {
  display: block;
  width: min(100%, 560px);
  height: 1px;
  margin-inline: auto;
  background: var(--gradient-line);
  content: "";
}

.appointments-heading .eyebrow {
  justify-content: center;
  margin-bottom: 0;
  color: var(--gold-200);
}

.appointments-heading h2 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--warm-50);
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.2vw, 5rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.appointment-card {
  position: relative;
  display: grid;
  min-height: 620px;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 225, 0.18);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 246, 225, 0.16), rgba(255, 246, 225, 0.035) 45%, rgba(255, 246, 225, 0.08)),
    rgba(91, 62, 84, 0.76);
  box-shadow: 0 30px 80px rgba(24, 15, 22, 0.24);
  transition:
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.appointment-card--online {
  margin-top: clamp(22px, 3.2vw, 42px);
}

.appointment-card::before,
.appointment-card::after {
  display: none;
  content: none;
}

.appointment-card__top,
.appointment-card__bottom,
.appointment-list {
  position: relative;
  z-index: 1;
}

.appointment-card__top {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  align-items: start;
  gap: 12px;
  text-align: left;
}

.appointment-card__icon {
  display: grid;
  width: 58px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 246, 225, 0.22), rgba(255, 246, 225, 0.08)),
    rgba(64, 42, 58, 0.18);
  color: var(--gold-100);
}

.appointment-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.appointment-card__tag {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(255, 246, 225, 0.12);
  color: var(--gold-100);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.appointment-card h3 {
  max-width: 100%;
  margin: 0;
  color: var(--gold-100);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.35vw, 3.25rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.appointment-card__top p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.62;
}

.appointment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: start;
  gap: 14px;
  padding: 0;
  margin: clamp(30px, 4vw, 44px) 0 0;
  list-style: none;
}

.appointment-list li {
  position: relative;
  min-height: 24px;
  padding-left: 34px;
  color: var(--warm-100);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.42;
}

.appointment-list li::before {
  position: absolute;
  top: 0.08em;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 246, 225, 0.22), rgba(216, 200, 167, 0.08)),
    rgba(255, 246, 225, 0.06);
  content: "";
}

.appointment-list li::after {
  position: absolute;
  top: calc(0.08em + 4px);
  left: 7px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--gold-100);
  border-bottom: 2px solid var(--gold-100);
  content: "";
  transform: rotate(45deg);
}

.appointment-card__bottom {
  display: grid;
  gap: 18px;
  margin-top: auto;
  padding-top: clamp(28px, 4vw, 42px);
}

.price-block {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-radius: 18px;
  padding: 0;
}

.price-block span {
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.price-block strong {
  background: var(--gradient-gold);
  background-clip: text;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 5.3vw, 4.55rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
  white-space: nowrap;
  -webkit-background-clip: text;
}

.appointment-card .button {
  width: 100%;
  min-height: 54px;
}

.appointment-card:hover {
  border-color: rgba(255, 246, 225, 0.28);
  box-shadow: 0 34px 88px rgba(24, 15, 22, 0.3);
  transform: translateY(-4px);
}

.gender-care-section {
  overflow: hidden;
  padding: clamp(84px, 10vw, 148px) 0;
  background:
    linear-gradient(180deg, rgba(64, 42, 58, 0.82), rgba(88, 60, 82, 0.22) 48%, rgba(64, 42, 58, 0.84)),
    rgba(67, 44, 61, 0.96);
}

.gender-care-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(105deg, transparent 0 42%, rgba(255, 246, 225, 0.045) 42.2%, transparent 42.5% 100%),
    linear-gradient(72deg, transparent 0 70%, rgba(255, 246, 225, 0.04) 70.2%, transparent 70.45% 100%);
}

.gender-care-section::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gradient-line);
}

.gender-care-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 0.84fr);
  align-items: center;
  gap: clamp(38px, 6vw, 92px);
}

.gender-care-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--warm-50);
  font-family: var(--font-display);
  font-size: 4.1rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
}

.gender-care-copy p {
  max-width: 650px;
  margin: 23px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.gender-care-copy strong {
  color: var(--gold-100);
}

.gender-care-note {
  position: relative;
  padding-left: 20px;
}

.gender-care-note::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: var(--gradient-gold);
  content: "";
}

.gender-care-copy .button {
  margin-top: 34px;
}

.gender-care-panel {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 225, 0.21);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 246, 225, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 246, 225, 0.058), rgba(255, 246, 225, 0.02)),
    rgba(92, 63, 86, 0.78);
  box-shadow: var(--shadow-large);
}

.gender-care-panel::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 246, 225, 0.13);
  border-radius: 21px;
  content: "";
  pointer-events: none;
}

.gender-care-panel::after {
  position: absolute;
  top: -20%;
  left: -14%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 246, 225, 0.11);
  border-radius: 46% 54% 52% 48%;
  content: "";
  transform: rotate(16deg);
  pointer-events: none;
}

.gender-care-panel__core {
  position: absolute;
  top: 42px;
  right: 34px;
  left: 34px;
  z-index: 2;
  display: grid;
  min-height: 170px;
  align-content: center;
  border: 1px solid rgba(255, 246, 225, 0.2);
  border-radius: var(--radius-md);
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 246, 225, 0.12), rgba(255, 246, 225, 0.035)),
    rgba(64, 42, 58, 0.56);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.gender-care-panel__core span {
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.gender-care-panel__core strong {
  display: block;
  margin-top: 4px;
  background: var(--gradient-gold);
  background-clip: text;
  color: transparent;
  font-family: var(--font-display);
  font-size: 3.7rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  -webkit-background-clip: text;
}

.care-principles {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.care-principles li {
  border: 1px solid rgba(255, 246, 225, 0.15);
  border-radius: var(--radius-sm);
  padding: 15px 16px;
  background: rgba(64, 42, 58, 0.5);
  box-shadow: 0 12px 32px rgba(32, 20, 30, 0.18);
  backdrop-filter: blur(14px);
}

.care-principles span {
  display: flex;
  align-items: center;
  color: var(--gold-100);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.1;
}

.care-principles span::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--gradient-gold);
  content: "";
}

.care-principles p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.testimonials-section {
  overflow: hidden;
  padding: clamp(84px, 10vw, 148px) 0;
  background:
    linear-gradient(180deg, rgba(64, 42, 58, 0.84), rgba(108, 73, 100, 0.24) 48%, rgba(64, 42, 58, 0.86)),
    rgba(72, 48, 66, 0.96);
}

.testimonials-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 246, 225, 0.04) 1px, transparent 1px) 0 0 / 118px 118px,
    linear-gradient(180deg, rgba(255, 246, 225, 0.03) 1px, transparent 1px) 0 0 / 118px 118px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
}

.testimonials-section::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gradient-line);
}

.testimonials-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.36fr);
  align-items: end;
  gap: clamp(24px, 5vw, 64px);
  margin-bottom: clamp(34px, 5vw, 64px);
}

.testimonials-heading::after {
  display: block;
  height: 1px;
  background: var(--gradient-line);
  content: "";
}

.testimonials-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}

.testimonials-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--warm-50);
  font-family: var(--font-display);
  font-size: 4.05rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-card {
  position: relative;
  display: flex;
  min-height: 280px;
  grid-column: span 4;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 225, 0.18);
  border-radius: 18px;
  padding: clamp(24px, 2.8vw, 34px);
  margin: 0;
  background:
    linear-gradient(145deg, rgba(255, 246, 225, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 246, 225, 0.052), rgba(255, 246, 225, 0.018)),
    rgba(87, 59, 81, 0.8);
  box-shadow: none;
}

.testimonial-card--featured {
  min-height: 360px;
  grid-column: span 8;
}

.testimonial-card::before {
  position: absolute;
  top: 20px;
  right: 24px;
  content: "â€";
  background: var(--gradient-gold);
  background-clip: text;
  color: transparent;
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 700;
  line-height: 0.72;
  opacity: 0.32;
  pointer-events: none;
  -webkit-background-clip: text;
}

.testimonial-card::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 246, 225, 0.1);
  border-radius: 12px;
  content: "";
  pointer-events: none;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
}

.testimonial-card p {
  max-width: 760px;
  margin: 0;
  color: var(--warm-100);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.18;
}

.testimonial-card--featured p {
  font-size: 2.25rem;
  line-height: 1.08;
}

.testimonial-card figcaption {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 246, 225, 0.14);
  padding-top: 16px;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.testimonials-note {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.testimonials-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 246, 225, 0.13), transparent 26rem),
    radial-gradient(circle at 86% 12%, rgba(196, 178, 144, 0.1), transparent 28rem),
    linear-gradient(145deg, #3f293a 0%, #56384f 48%, #402a3b 100%);
  color: var(--warm-50);
}

.testimonials-section::before {
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255, 246, 225, 0.035) 38.15%, transparent 38.35% 100%),
    linear-gradient(70deg, transparent 0 72%, rgba(255, 246, 225, 0.03) 72.15%, transparent 72.35% 100%);
  opacity: 0.52;
  mask-image: none;
}

.testimonials-heading {
  max-width: 880px;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 18px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.testimonials-heading::after {
  width: min(100%, 540px);
  margin-inline: auto;
}

.testimonials-heading .eyebrow {
  grid-column: auto;
  justify-content: center;
  margin-bottom: 0;
  color: var(--gold-200);
}

.testimonials-heading h2 {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(2.65rem, 5vw, 4.9rem);
  line-height: 0.98;
  text-wrap: balance;
}

.testimonials-marquee {
  --testimonial-gap: clamp(14px, 1.5vw, 22px);
  position: relative;
  display: grid;
  width: 100vw;
  gap: var(--testimonial-gap);
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
}

.testimonials-marquee::before,
.testimonials-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: clamp(54px, 12vw, 190px);
  content: "";
  pointer-events: none;
}

.testimonials-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #432c3e 0%, rgba(67, 44, 62, 0.88) 26%, rgba(67, 44, 62, 0) 100%);
}

.testimonials-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #432c3e 0%, rgba(67, 44, 62, 0.88) 26%, rgba(67, 44, 62, 0) 100%);
}

.testimonial-row {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: var(--testimonial-gap);
  animation: testimonial-marquee 46s linear infinite;
  will-change: transform;
}

.testimonial-row--reverse .testimonial-track {
  animation-direction: reverse;
  animation-duration: 54s;
}

.testimonial-set {
  display: flex;
  flex: 0 0 auto;
  gap: var(--testimonial-gap);
}

.testimonial-card,
.testimonial-card--featured {
  display: flex;
  width: clamp(292px, 31vw, 440px);
  min-height: 238px;
  flex: 0 0 auto;
  grid-column: auto;
  justify-content: space-between;
  border-radius: 22px;
  padding: clamp(22px, 2.3vw, 30px);
  background:
    linear-gradient(145deg, rgba(255, 246, 225, 0.16), rgba(255, 246, 225, 0.04) 42%, rgba(255, 246, 225, 0.08)),
    rgba(89, 60, 82, 0.82);
  box-shadow: none;
}

.testimonial-card__stars {
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
}

.testimonial-card::before,
.testimonial-card::after {
  display: none;
  content: none;
}

.testimonial-card p,
.testimonial-card--featured p {
  margin: 18px 0 0;
  color: var(--warm-100);
  font-size: clamp(1.05rem, 1.15vw, 1.28rem);
  line-height: 1.34;
}

.testimonial-card figcaption {
  margin-top: 24px;
}

.testimonials-footer {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: clamp(34px, 5vw, 58px);
  text-align: center;
}

.testimonials-google {
  min-width: min(100%, 320px);
}

.testimonials-footer .testimonials-note {
  margin: 0;
}

@keyframes testimonial-marquee {
  to {
    transform: translateX(calc(-50% - (var(--testimonial-gap) / 2)));
  }
}

.about-section {
  overflow: hidden;
  padding: clamp(84px, 10vw, 148px) 0;
  background:
    linear-gradient(180deg, rgba(64, 42, 58, 0.86), rgba(103, 70, 96, 0.22) 48%, rgba(64, 42, 58, 0.88)),
    rgba(67, 44, 61, 0.96);
}

.about-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(112deg, transparent 0 38%, rgba(255, 246, 225, 0.048) 38.2%, transparent 38.45% 100%),
    repeating-linear-gradient(135deg, transparent 0 34px, rgba(255, 246, 225, 0.024) 35px, transparent 36px 70px);
}

.about-section::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gradient-line);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(0, 0.96fr);
  align-items: center;
  gap: clamp(38px, 6vw, 92px);
}

.doctor-signature-card {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 225, 0.22);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 246, 225, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 246, 225, 0.06), rgba(255, 246, 225, 0.02)),
    rgba(91, 62, 85, 0.78);
  box-shadow: var(--shadow-large);
}

.doctor-signature-card::before {
  display: none;
  content: none;
}

.doctor-signature-card::after {
  display: none;
  content: none;
}

.doctor-signature-card__glow {
  position: absolute;
  top: 16%;
  left: 10%;
  width: 80%;
  height: 34%;
  background: linear-gradient(110deg, transparent, rgba(255, 246, 225, 0.18), transparent);
  filter: blur(18px);
  opacity: 0.78;
  transform: skewY(-8deg);
}

.doctor-signature-card img {
  position: absolute;
  top: 28%;
  left: 50%;
  z-index: 1;
  width: min(78%, 390px);
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 34px rgba(36, 22, 33, 0.42));
}

.doctor-signature-card .doctor-signature-card__photo {
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: none;
  filter: none;
}

.credential-ribbon {
  position: absolute;
  z-index: 2;
  width: min(74%, 330px);
  border: 1px solid rgba(255, 246, 225, 0.2);
  border-radius: var(--radius-md);
  padding: 18px;
  background: rgba(64, 42, 58, 0.58);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.credential-ribbon--top {
  top: 34px;
  right: 34px;
}

.credential-ribbon--bottom {
  bottom: 34px;
  left: 34px;
}

.credential-ribbon span {
  display: block;
  color: var(--ink-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.credential-ribbon strong {
  display: block;
  margin-top: 5px;
  color: var(--gold-100);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.12;
}

.about-copy h2 {
  max-width: 780px;
  margin: 0;
  color: var(--warm-50);
  font-family: var(--font-display);
  font-size: 4.1rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
}

.about-copy h3 {
  max-width: 680px;
  margin: 28px 0 0;
  background: var(--gradient-gold);
  background-clip: text;
  color: transparent;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.08;
  -webkit-background-clip: text;
}

.about-copy p {
  max-width: 670px;
  margin: 23px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.about-copy strong {
  color: var(--gold-100);
}

.about-copy .button {
  margin-top: 34px;
}

.faq-section {
  overflow: hidden;
  padding: clamp(84px, 10vw, 148px) 0;
  background:
    linear-gradient(180deg, rgba(64, 42, 58, 0.88), rgba(101, 69, 94, 0.22) 48%, rgba(64, 42, 58, 0.9)),
    rgba(70, 46, 64, 0.97);
}

.faq-section::before {
  display: none;
  content: none;
}

.faq-section::after {
  display: none;
  content: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(520px, 1fr);
  align-items: start;
  gap: clamp(38px, 6vw, 92px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.faq-heading .eyebrow::before {
  display: none;
  content: none;
}

.faq-heading h2 {
  max-width: 620px;
  margin: 0;
  color: var(--warm-50);
  font-family: var(--font-display);
  font-size: 3.9rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
}

.faq-heading p:not(.eyebrow) {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 225, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 246, 225, 0.095), transparent 32%),
    linear-gradient(180deg, rgba(255, 246, 225, 0.05), rgba(255, 246, 225, 0.018)),
    rgba(87, 59, 81, 0.78);
  box-shadow: 0 18px 42px rgba(32, 20, 30, 0.18);
  transition: border-color 220ms var(--ease-out), background-color 220ms var(--ease-out);
}

.faq-item::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 246, 225, 0.09);
  border-radius: 11px;
  content: "";
  pointer-events: none;
}

.faq-item summary {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px clamp(20px, 2.6vw, 30px);
  color: var(--gold-100);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.15;
  list-style: none;
}

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

.faq-item summary::after {
  flex: 0 0 auto;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 246, 225, 0.22);
  border-radius: 50%;
  background-color: rgba(64, 42, 58, 0.42);
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 2px, 2px 12px;
  color: var(--gold-100);
  content: "";
  transition:
    transform 240ms var(--ease-out),
    background-color 220ms var(--ease-out),
    background-size 220ms var(--ease-out),
    border-color 220ms var(--ease-out);
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(255, 246, 225, 0.42);
  outline-offset: -6px;
}

.faq-item[open] summary::after {
  border-color: rgba(255, 246, 225, 0.34);
  background-color: rgba(255, 246, 225, 0.11);
  background-size: 12px 2px, 2px 0;
  transform: rotate(180deg);
}

.faq-item.is-closing summary::after {
  background-size: 12px 2px, 2px 12px;
  transform: rotate(0deg);
}

.faq-item.is-opening summary::after {
  background-size: 12px 2px, 2px 12px;
  transform: rotate(0deg);
}

.faq-answer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 0fr;
  border-top: 1px solid transparent;
  opacity: 0;
  padding: 0 clamp(20px, 2.6vw, 30px);
  transition:
    grid-template-rows 280ms var(--ease-out),
    opacity 220ms var(--ease-out),
    border-color 220ms var(--ease-out);
}

.faq-item[open]:not(.is-closing) .faq-answer {
  grid-template-rows: 1fr;
  border-top-color: rgba(255, 246, 225, 0.12);
  opacity: 1;
}

.faq-item[open].is-opening .faq-answer {
  grid-template-rows: 0fr;
  border-top-color: transparent;
  opacity: 0;
}

.faq-answer p {
  min-height: 0;
  max-width: 760px;
  overflow: hidden;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  padding-block: 0;
  transition: padding 280ms var(--ease-out);
}

.faq-item[open]:not(.is-closing) .faq-answer p {
  padding-block: 18px 24px;
}

.faq-item[open].is-opening .faq-answer p {
  padding-block: 0;
}

.final-cta-section {
  display: grid;
  min-height: auto;
  align-items: center;
  overflow: hidden;
  margin-top: -1px;
  padding: clamp(82px, 9vw, 126px) 0 clamp(88px, 10vw, 142px);
  background:
    linear-gradient(180deg, rgba(70, 46, 64, 0.97), rgba(64, 42, 58, 0.98)),
    rgba(64, 42, 58, 0.98);
}

.final-cta-section::before {
  display: none;
  content: none;
}

.final-cta-section::after {
  display: none;
  content: none;
}

.final-cta-content {
  display: grid;
  width: min(100% - 40px, 860px);
  justify-items: center;
  border: 1px solid rgba(255, 246, 225, 0.2);
  border-radius: 18px;
  padding: clamp(32px, 5vw, 58px);
  background:
    linear-gradient(145deg, rgba(255, 246, 225, 0.11), rgba(255, 246, 225, 0.035)),
    rgba(87, 59, 81, 0.72);
  box-shadow: 0 24px 72px rgba(24, 15, 22, 0.18);
  text-align: center;
}

.final-cta-content h2 {
  max-width: 720px;
  margin: 0;
  color: var(--warm-50);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.7vw, 4rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.02;
}

.final-cta-content p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}

.final-cta-content .button {
  margin-top: 26px;
}

.contact-section {
  overflow: hidden;
  padding: clamp(84px, 10vw, 148px) 0;
  background:
    linear-gradient(180deg, rgba(64, 42, 58, 0.9), rgba(106, 72, 98, 0.22) 48%, rgba(64, 42, 58, 0.92)),
    rgba(70, 46, 64, 0.98);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(110deg, transparent 0 40%, rgba(255, 246, 225, 0.046) 40.2%, transparent 40.45% 100%),
    linear-gradient(70deg, transparent 0 72%, rgba(255, 246, 225, 0.038) 72.2%, transparent 72.45% 100%);
}

.contact-section::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gradient-line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 0.86fr);
  align-items: start;
  gap: clamp(38px, 6vw, 92px);
}

.contact-copy h2 {
  max-width: 680px;
  margin: 0;
  color: var(--warm-50);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
}

.contact-copy > p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.direct-contact-note {
  max-width: 520px;
  margin-top: 34px;
  border: 1px solid rgba(255, 246, 225, 0.16);
  border-radius: var(--radius-md);
  padding: 18px;
  background: rgba(255, 246, 225, 0.055);
}

.direct-contact-note span {
  display: block;
  color: var(--gold-100);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.direct-contact-note p {
  margin: 7px 0 0;
  color: var(--ink-soft);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 225, 0.21);
  border-radius: 28px;
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(145deg, rgba(255, 246, 225, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 246, 225, 0.058), rgba(255, 246, 225, 0.02)),
    rgba(92, 63, 86, 0.78);
  box-shadow: var(--shadow-large);
}

.contact-form::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 246, 225, 0.11);
  border-radius: 20px;
  content: "";
  pointer-events: none;
}

.form-field,
.contact-form .button,
.form-status {
  position: relative;
  z-index: 1;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--gold-100);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 246, 225, 0.18);
  border-radius: var(--radius-sm);
  padding: 14px 15px;
  background: rgba(64, 42, 58, 0.48);
  color: var(--warm-50);
  outline: none;
  transition:
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    background 220ms var(--ease-out);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(251, 247, 240, 0.46);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(255, 246, 225, 0.48);
  background: rgba(64, 42, 58, 0.62);
  box-shadow: 0 0 0 4px rgba(255, 246, 225, 0.09);
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: rgba(255, 210, 186, 0.78);
}

.field-error {
  min-height: 20px;
  color: #ffd2ba;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.contact-form .button {
  width: 100%;
  margin-top: 2px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.site-footer {
  position: relative;
  overflow: visible;
  border-top: 1px solid rgba(255, 246, 225, 0.14);
  padding: clamp(68px, 7vw, 94px) 0 clamp(30px, 4vw, 44px);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 246, 225, 0.07), transparent 29%),
    linear-gradient(135deg, rgba(255, 246, 225, 0.04), transparent 32%),
    linear-gradient(180deg, rgba(64, 42, 58, 0.98), rgba(35, 22, 33, 0.99)),
    var(--ruby-950);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 246, 225, 0.045), transparent 38%),
    linear-gradient(90deg, transparent, rgba(255, 246, 225, 0.08), transparent);
  opacity: 0.72;
  pointer-events: none;
}

.site-footer::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(760px, calc(100% - 40px));
  height: 1px;
  content: "";
  background: var(--gradient-line);
  transform: translateX(-50%);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(320px, 1.08fr) minmax(280px, 0.82fr);
  align-items: start;
  gap: clamp(24px, 4vw, 58px);
}

.footer-brand {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 18px;
}

.footer-brand img {
  width: min(250px, 84%);
}

.footer-credential {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  width: min(100%, 282px);
  margin: 0;
  border: 1px solid rgba(255, 246, 225, 0.2);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 246, 225, 0.06);
  color: var(--gold-200);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

.footer-summary {
  position: relative;
  padding-left: clamp(18px, 2vw, 28px);
}

.footer-summary::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(255, 246, 225, 0.42), transparent);
}

.footer-kicker {
  display: block;
  margin: 0;
  color: var(--gold-100);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.footer-summary p,
.footer-contact p {
  color: var(--ink-soft);
}

.footer-summary p {
  max-width: 540px;
  margin: 11px 0 0;
  color: var(--gold-100);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.78rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.18;
}

.footer-contact {
  display: grid;
  align-content: start;
  justify-items: start;
  border: 1px solid rgba(255, 246, 225, 0.16);
  border-radius: var(--radius-md);
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(255, 246, 225, 0.09), transparent 42%),
    rgba(255, 246, 225, 0.035);
}

.footer-contact p {
  margin: 10px 0 0;
  font-size: 0.96rem;
  line-height: 1.55;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.footer-whatsapp {
  min-height: 44px;
  margin: 0;
  padding: 11px 16px;
}

.footer-social-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 282px);
  border: 1px solid rgba(255, 246, 225, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 246, 225, 0.045);
  color: var(--gold-100);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: border-color 220ms var(--ease-out), background 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.footer-social-link:hover {
  border-color: rgba(255, 246, 225, 0.36);
  background: rgba(255, 246, 225, 0.1);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-toplink {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 225, 0.18);
  border-radius: 999px;
  padding: 10px 12px 10px 16px;
  background: var(--gradient-gold);
  color: var(--ruby-950);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 14px 34px rgba(32, 20, 30, 0.28);
  transform: translate(-50%, -50%);
  transition:
    border-color 220ms var(--ease-out),
    background 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    transform 220ms var(--ease-out);
}

.footer-toplink svg {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  padding: 2px;
  background: rgba(62, 41, 57, 0.16);
  color: var(--ruby-950);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms var(--ease-out);
}

.footer-toplink:hover {
  border-color: rgba(255, 246, 225, 0.62);
  background:
    linear-gradient(135deg, #fffaf0 0%, #eadcc0 48%, #d8c8a7 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 16px 36px rgba(32, 20, 30, 0.34);
  transform: translate(-50%, calc(-50% - 2px));
}

.footer-toplink:hover svg {
  transform: translateY(-2px);
}

.footer-social-link:focus-visible,
.footer-toplink:focus-visible {
  outline: 3px solid rgba(255, 246, 225, 0.42);
  outline-offset: 4px;
}

.developer-credit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  border-top: 1px solid rgba(255, 246, 225, 0.08);
  padding: 16px 20px 18px;
  background: #21151f;
  text-align: center;
}

.developer-credit__text {
  margin: 0;
  color: rgba(251, 247, 240, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.developer-credit__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
}

.developer-credit img {
  width: min(68px, 22vw);
  height: auto;
  opacity: 0.78;
  filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  transition: opacity 220ms var(--ease-out), filter 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.developer-credit__logo:hover img {
  opacity: 1;
  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.32))
    drop-shadow(0 0 22px rgba(216, 200, 167, 0.22));
  transform: translateY(-2px);
}

.developer-credit__logo:focus-visible {
  border-radius: var(--radius-xs);
  outline: 3px solid rgba(255, 246, 225, 0.42);
  outline-offset: 5px;
}

/* Remove decorative ellipse/circle ornaments across the page. */
.hero-etching,
.hero-etching::before,
.hero-etching::after,
.pain-thread,
.pain-thread::before,
.service-card::after,
.women-panel::after,
.women-panel__mark,
.women-panel__mark::before,
.women-panel__mark::after,
.weight-panel::after,
.factor-orbit,
.factor-orbit::before,
.factor-orbit::after,
.process-step::before,
.process-step__number::after,
.appointment-card::after,
.gender-care-panel::after,
.doctor-signature-card::after {
  display: none !important;
  content: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
}

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

.reveal--delay {
  transition-delay: 130ms;
}

@media (min-width: 1441px) {
  .site-header .brand-mark {
    margin-left: clamp(-96px, -5vw, -64px);
  }

  .symptoms-heading {
    max-width: 420px;
    margin-left: clamp(-112px, -5vw, -72px);
  }

  .symptoms-heading h2 {
    font-size: clamp(4.65rem, 4.15vw, 5rem);
    line-height: 0.96;
  }

  .hero-copy {
    position: relative;
    left: clamp(-96px, -5vw, -64px);
  }

  .hero-doctor {
    transform: translateX(clamp(70px, 4.2vw, 112px));
  }
}

@media (max-width: 1440px) and (min-width: 981px) {
  .hero {
    --hero-desktop-extra-space: 0px;
    --hero-top-gap: 0px;
    padding-top: calc(var(--header-height) + var(--hero-top-gap));
  }

  .hero-grid {
    min-height: calc(100dvh - var(--header-height) - var(--hero-top-gap));
    gap: clamp(28px, 4vw, 58px);
    grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.98fr);
  }

  .hero-copy {
    max-width: 660px;
    padding: 0 0 clamp(0px, 1vh, 12px);
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(2.85rem, 3.4vw, 3.65rem);
  }

  .hero-text {
    max-width: 590px;
    margin-top: 16px;
    font-size: 0.98rem;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-visual {
    height: calc(100dvh - var(--header-height) - var(--hero-top-gap) - var(--hero-info-bar-height));
    min-height: 0;
  }

  .hero-doctor {
    width: auto;
    height: 100%;
    transform: translateX(clamp(-76px, -3.2vw, -42px));
  }

  .hero-doctor__image {
    width: auto;
    height: 100%;
    max-width: none;
    max-height: none;
  }

  .social-proof h2,
  .method-copy h2,
  .services-heading h2,
  .women-copy h2,
  .weight-copy h2,
  .process-heading h2,
  .appointments-heading h2,
  .gender-care-copy h2,
  .testimonials-heading h2,
  .about-copy h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.45rem, 3vw, 3.15rem);
    line-height: 1.1;
  }

  .final-cta-content h2 {
    font-size: clamp(2.75rem, 3.8vw, 3.65rem);
    line-height: 1.04;
  }

  .final-cta-content h3,
  .appointment-card h3 {
    font-size: clamp(1.65rem, 2.2vw, 2.2rem);
  }

  .services-heading h2 {
    font-size: clamp(2.75rem, 4.45vw, 4.05rem);
    line-height: 1.02;
  }
}

@media (min-width: 981px) {
  .services-section {
    padding: clamp(96px, 10vw, 160px) 0 clamp(56px, 5vw, 84px);
  }

  .services-container {
    min-height: calc(100dvh + clamp(865px, calc(301px + 39.2vw), 1055px));
  }

  .services-composition {
    padding-top: clamp(72px, calc(275px - 10vw), 168px);
  }

  .services-heading,
  .services-heading.reveal,
  .services-heading.reveal.is-visible {
    position: sticky;
    top: calc(50dvh + 18px);
    margin-top: clamp(56px, 5vw, 76px);
    transform: translateY(-50%);
  }

  .services-heading h2 {
    font-size: clamp(2.65rem, 4.35vw, 4.35rem);
    line-height: 1.02;
    text-wrap: nowrap;
  }

  .services-heading h2 span {
    display: block;
  }
}

@media (max-width: 1240px) and (min-width: 981px) {
  .hero-doctor {
    transform: translateX(clamp(-118px, calc(2.4vw - 120px), -78px));
  }

  .social-proof-grid {
    width: min(100% - 64px, 980px);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .social-proof h2 {
    max-width: 760px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 74px;
  }

  .hero {
    --hero-desktop-extra-space: 0px;
    --hero-top-gap: 24px;
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--hero-top-gap));
    background:
      linear-gradient(180deg, rgba(80, 54, 74, 0.7) 0 42%, rgba(112, 74, 103, 0.34) 62%, rgba(210, 174, 198, 0.22) 100%),
      linear-gradient(180deg, transparent 0 46%, rgba(255, 246, 225, 0.12) 74%, rgba(255, 246, 225, 0.2) 100%),
      var(--gradient-ruby-deep);
  }

  .hero h1 {
    font-size: clamp(2.55rem, 6vw, 3.2rem);
    line-height: 1.06;
  }

  .social-proof h2,
  .method-copy h2,
  .services-heading h2,
  .women-copy h2,
  .weight-copy h2,
  .process-heading h2,
  .appointments-heading h2,
  .gender-care-copy h2,
  .testimonials-heading h2,
  .about-copy h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.25rem, 5vw, 2.95rem);
    line-height: 1.1;
  }

  .final-cta-content h2 {
    font-size: clamp(2.65rem, 5.8vw, 3.35rem);
    line-height: 1.06;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-copy {
    max-width: none;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-visual {
    width: 100%;
    height: auto;
    max-width: 620px;
    min-height: 560px;
    margin-inline: auto;
  }

  .hero-doctor {
    width: min(100%, 540px);
    height: auto;
    transform: none;
  }

  .hero-doctor__image {
    width: min(104%, 520px);
    height: auto;
    max-height: 560px;
    margin-bottom: 0;
    transform: translateY(1px);
  }

  .hero-info-bar {
    position: relative;
    min-height: auto;
  }

  .hero-info-bar__track {
    min-height: 58px;
  }

  .hero-info-bar__list {
    min-height: 58px;
  }

  .hero::after {
    display: none;
    content: none;
  }

  .social-proof-grid {
    width: min(100% - 40px, var(--container));
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .social-proof h2 {
    max-width: 760px;
  }

  .social-proof-title span {
    display: inline;
    white-space: normal;
  }

  .social-proof-title__accent {
    display: inline;
    width: auto;
  }

  .social-proof-title span + span::before {
    content: " ";
  }

  .social-proof-copy::after {
    margin-top: 24px;
  }

  .metrics-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 14px;
  }

  .metric-card,
  .metric-card:nth-child(1),
  .metric-card:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
    min-height: 184px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .metric-card:first-child {
    grid-column: auto;
    min-height: 184px;
  }

  .metric-card:first-child .metric-card__number {
    font-size: clamp(3.2rem, 7vw, 4.4rem);
  }

  .metric-card__number {
    font-size: clamp(3rem, 6.4vw, 4.2rem);
  }

  .metric-card__icon {
    top: 18px;
    right: 18px;
    width: 44px;
  }

  .pain-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pain-narrative {
    max-width: 720px;
  }

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

  .symptoms-heading {
    position: static;
    max-width: 720px;
  }

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

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

  .method-photo {
    width: min(100%, 520px);
  }

  .consultation-visual {
    width: min(100%, 720px);
    justify-self: center;
  }

  .services-heading {
    position: relative;
    top: auto;
    max-width: 740px;
    transform: none;
  }

  .services-heading h2 {
    font-size: clamp(2.85rem, 8vw, 4.15rem);
    line-height: 0.98;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .services-container::before {
    display: none;
  }

  .services-composition {
    max-width: 760px;
  }

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

  .women-panel {
    max-width: 640px;
    min-height: 520px;
  }

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

  .weight-panel {
    max-width: 680px;
  }

  .process-heading {
    max-width: 760px;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .process-heading::after {
    display: none;
  }

  .process-heading .eyebrow {
    justify-content: flex-start;
  }

  .process-timeline {
    max-width: 760px;
    gap: 22px;
    margin: 0;
    padding-left: 62px;
  }

  .process-timeline::before {
    display: block;
    top: 24px;
    bottom: 24px;
    left: 25px;
    transform: none;
  }

  .process-step,
  .process-step:nth-child(even) {
    display: block;
    min-height: 0;
    margin-top: 0;
  }

  .process-step__number {
    position: absolute;
    top: 4px;
    left: -62px;
    width: 50px;
    height: 50px;
    box-shadow:
      0 0 0 7px rgba(251, 247, 240, 0.78),
      0 12px 28px rgba(62, 41, 57, 0.1);
  }

  .process-step__content,
  .process-step:nth-child(even) .process-step__content {
    width: 100%;
    min-height: 0;
    grid-column: auto;
    justify-self: stretch;
  }

  .process-step__content {
    margin-top: 0;
  }

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

  .appointments-heading {
    grid-template-columns: 1fr;
  }

  .appointments-heading::after {
    width: min(100%, 520px);
  }

  .appointment-card,
  .appointment-card--online {
    max-width: 720px;
    min-height: auto;
    margin-top: 0;
  }

  .gender-care-grid {
    grid-template-columns: 1fr;
  }

  .gender-care-panel {
    max-width: 680px;
  }

  .testimonials-heading {
    grid-template-columns: 1fr;
  }

  .testimonials-heading::after {
    width: min(100%, 520px);
  }

  .testimonial-card,
  .testimonial-card--featured {
    grid-column: span 6;
  }

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

  .about-visual {
    max-width: 640px;
  }

  .doctor-signature-card {
    min-height: 560px;
  }

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

  .faq-heading {
    position: relative;
    top: auto;
  }

  .faq-list {
    max-width: 760px;
  }

  .final-cta-section {
    min-height: auto;
  }

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

  .contact-form {
    max-width: 720px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-summary {
    padding-left: 0;
  }

  .footer-summary::before {
    display: none;
  }

}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    gap: 16px;
  }

  .brand-mark {
    width: min(55vw, 205px);
  }

  .button--small {
    min-width: 88px;
    padding-inline: 14px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
    align-items: center;
    font-size: 0.74rem;
    text-align: center;
  }

  .eyebrow::before {
    width: 28px;
    margin-top: 0;
  }

  .hero .eyebrow::after {
    width: 28px;
    height: 1px;
    background: var(--gradient-line);
    content: "";
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10.5vw, 2.7rem);
    line-height: 1.06;
    text-align: center;
  }

  .hero-text {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .social-proof h2,
  .method-copy h2,
  .services-heading h2,
  .women-copy h2,
  .weight-copy h2,
  .process-heading h2,
  .appointments-heading h2,
  .gender-care-copy h2,
  .testimonials-heading h2,
  .about-copy h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 8.4vw, 2.35rem);
  }

  .final-cta-content h2 {
    font-size: clamp(2.2rem, 10vw, 2.75rem);
  }

  .final-cta-content h3,
  .appointment-card h3 {
    font-size: 1.75rem;
  }

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

  .hero-actions {
    justify-content: center;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-visual {
    width: 100vw;
    max-width: none;
    min-height: auto;
    margin-inline: calc(50% - 50vw);
  }

  .hero-doctor {
    width: 100vw;
    min-height: auto;
  }

  .hero-doctor__image {
    width: 100vw;
    max-width: none;
    height: auto;
    max-height: none;
  }

  .hero-info-bar__track {
    min-height: 52px;
    animation-duration: 18s;
  }

  .hero-info-bar__list {
    min-height: 52px;
    gap: 10px;
    padding: 0 5px;
  }

  .hero-info-bar__list li {
    min-height: 28px;
    gap: 9px;
    justify-content: center;
    padding: 4px 8px;
    font-size: 0.86rem;
  }

  .hero-info-bar__icon {
    width: 19px;
    height: 19px;
  }

  .social-proof {
    padding: 68px 0;
  }

  .social-proof-grid {
    gap: 28px;
  }

  .social-proof-copy::after {
    width: 44%;
    margin-top: 20px;
  }

  .metrics-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .metrics-panel::before {
    inset: -12px;
    border-radius: 22px;
  }

  .metrics-panel::after {
    display: none;
  }

  .metric-card,
  .metric-card:nth-child(1),
  .metric-card:nth-child(2),
  .metric-card:nth-child(2n),
  .metric-card:nth-child(n + 3) {
    grid-column: auto;
    grid-row: auto;
    min-height: 116px;
    border: 1px solid rgba(255, 246, 225, 0.16);
    border-radius: 14px;
    padding: 34px 14px 14px;
  }

  .metric-card__icon {
    top: 12px;
    right: 12px;
    width: 34px;
  }

  .metric-card:first-child {
    min-height: 116px;
  }

  .metric-card__number {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .metric-card:first-child .metric-card__number {
    font-size: clamp(2.45rem, 11vw, 3.25rem);
  }

  .metric-card__number--compact {
    font-size: clamp(1.95rem, 8.6vw, 2.5rem);
  }

  .metric-card__label {
    max-width: 160px;
    margin-top: 8px;
    font-size: 0.78rem;
    line-height: 1.22;
  }

  .pain-section {
    padding: 68px 0 58px;
  }

  .symptoms-section {
    padding: 58px 0 68px;
  }

  .pain-title-art {
    width: 100%;
  }

  .pain-title-art img {
    width: 100%;
    max-height: none;
  }

  .pain-narrative {
    padding-left: 18px;
  }

  .pain-narrative p {
    font-size: 1rem;
  }

  .pain-narrative .button {
    width: 100%;
  }

  .symptoms-heading h2 {
    font-size: clamp(2.3rem, 9vw, 3rem);
  }

  .symptom-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .symptom-list li {
    min-height: 82px;
    padding: 16px 14px 16px 86px;
  }

  .symptom-list li::before {
    top: 50%;
    left: 10px;
    width: 80px;
    font-size: clamp(3.45rem, 16vw, 4.9rem);
  }

  .method-section {
    padding: 72px 0;
  }

  .method-photo {
    width: min(100%, 420px);
  }

  .method-photo::before {
    inset: 0;
  }

  .method-copy p {
    font-size: 1rem;
  }

  .method-statement {
    display: grid;
    grid-template-columns: 1fr;
  }

  .method-statement span {
    width: 100%;
    align-items: center;
  }

  .method-statement span::before {
    width: 7px;
    margin-top: 0;
  }

  .consultation-visual::before {
    display: none;
  }

  .consultation-visual__header {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 0;
    gap: 14px;
    padding: 18px;
  }

  .consultation-visual__icon {
    width: 50px;
  }

  .consultation-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .consultation-item {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: auto;
    gap: 14px;
    padding: 18px;
  }

  .consultation-item--compact {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 16px;
  }

  .consultation-item__icon {
    width: 48px;
  }

  .consultation-item__check {
    margin-top: 3px;
  }

  .consultation-item h3 {
    font-size: 1.18rem;
  }

  .consultation-item p {
    font-size: 0.94rem;
  }

  .services-section {
    padding: 72px 0;
  }

  .services-heading {
    max-width: none;
  }

  .services-heading h2 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
    line-height: 1.04;
  }

  .service-card,
  .service-card:nth-child(even),
  .service-card:nth-child(odd) {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    margin-right: 0;
    margin-left: 0;
    padding: 18px;
  }

  .services-flow {
    gap: 14px;
  }

  .services-flow::before {
    top: 16px;
    bottom: 16px;
    left: 24px;
  }

  .service-card__number {
    width: 48px;
    font-size: 0.82rem;
    box-shadow:
      0 0 0 6px rgba(251, 247, 240, 0.76),
      0 10px 24px rgba(62, 41, 57, 0.08);
  }

  .service-card__number::before {
    inset: -6px;
  }

  .service-card h3 {
    font-size: clamp(1.22rem, 5.8vw, 1.55rem);
    line-height: 1.12;
  }

  .service-card p {
    font-size: 0.94rem;
  }

  .service-card:nth-child(even) .service-card__number {
    box-shadow:
      0 0 0 6px rgba(112, 74, 103, 0.34),
      0 10px 24px rgba(32, 20, 30, 0.14);
  }

  .women-section {
    padding: 72px 0;
  }

  .women-copy p {
    font-size: 1rem;
  }

  .women-copy .button {
    width: 100%;
  }

  .women-panel {
    min-height: 500px;
    border-radius: 20px;
  }

  .women-panel::before {
    inset: 10px;
    border-radius: 14px;
  }

  .phase-stack {
    right: 20px;
    left: 20px;
    grid-template-columns: 1fr;
  }

  .phase-stack span {
    justify-content: flex-start;
  }

  .women-panel blockquote {
    right: 24px;
    bottom: 28px;
    left: 24px;
  }

  .weight-section {
    padding: 72px 0;
  }

  .weight-copy p {
    font-size: 1rem;
  }

  .weight-panel {
    min-height: 650px;
    border-radius: 20px;
  }

  .weight-panel::before {
    inset: 10px;
    border-radius: 14px;
  }

  .factor-cloud {
    padding: 26px 20px 0;
  }

  .principle-stack {
    right: 20px;
    bottom: 140px;
    left: 20px;
  }

  .principle-stack strong {
    align-items: flex-start;
  }

  .principle-stack strong::before {
    width: 22px;
    margin-top: 12px;
  }

  .weight-signature {
    right: 22px;
    bottom: 28px;
    left: 22px;
  }

  .process-section {
    padding: 72px 0;
  }

  .process-heading {
    margin-bottom: 32px;
  }

  .process-timeline {
    gap: 20px;
    padding-left: 52px;
  }

  .process-timeline::before {
    top: 22px;
    bottom: 22px;
    left: 23px;
  }

  .process-step,
  .process-step:nth-child(even) {
    min-height: 0;
  }

  .process-step::before {
    display: none;
  }

  .process-step__number {
    top: 5px;
    left: -52px;
    width: 46px;
    height: 46px;
    font-size: 0.82rem;
  }

  .process-step__content {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0 14px;
    border-radius: 16px;
    padding: 20px;
  }

  .process-step__icon {
    width: 30px;
  }

  .process-step__icon svg {
    width: 22px;
    height: 22px;
  }

  .appointments-section {
    padding: 72px 0;
  }

  .appointments-heading {
    margin-bottom: 28px;
  }

  .appointment-card {
    border-radius: 20px;
  }

  .appointment-card::before {
    inset: 10px;
    border-radius: 14px;
  }

  .appointment-list {
    grid-template-columns: 1fr;
  }

  .price-block {
    display: grid;
    gap: 8px;
    align-items: start;
  }

  .gender-care-section {
    padding: 72px 0;
  }

  .gender-care-copy p {
    font-size: 1rem;
  }

  .gender-care-copy .button {
    width: 100%;
  }

  .gender-care-panel {
    min-height: 670px;
    border-radius: 20px;
  }

  .gender-care-panel::before {
    inset: 10px;
    border-radius: 14px;
  }

  .gender-care-panel__core {
    top: 24px;
    right: 20px;
    left: 20px;
    min-height: 150px;
    padding: 22px;
  }

  .care-principles {
    right: 20px;
    bottom: 24px;
    left: 20px;
  }

  .testimonials-section {
    padding: 72px 0;
  }

  .testimonials-heading {
    margin-bottom: 28px;
  }

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

  .testimonial-card,
  .testimonial-card--featured {
    min-height: 250px;
    grid-column: auto;
    border-radius: 16px;
  }

  .testimonial-card::after {
    inset: 10px;
  }

  .testimonial-card--featured p {
    font-size: 1.75rem;
  }

  .about-section {
    padding: 72px 0;
  }

  .doctor-signature-card {
    min-height: 520px;
    border-radius: 20px;
  }

  .doctor-signature-card::before {
    inset: 10px;
    border-radius: 14px;
  }

  .credential-ribbon,
  .credential-ribbon--top,
  .credential-ribbon--bottom {
    right: 20px;
    left: 20px;
    width: auto;
  }

  .credential-ribbon--top {
    top: 22px;
  }

  .credential-ribbon--bottom {
    bottom: 22px;
  }

  .about-copy p {
    font-size: 1rem;
  }

  .about-copy .button {
    width: 100%;
  }

  .faq-section {
    padding: 72px 0;
  }

  .faq-heading p:not(.eyebrow) {
    font-size: 1rem;
  }

  .faq-item {
    border-radius: 14px;
  }

  .faq-item::before {
    inset: 8px;
    border-radius: 10px;
  }

  .faq-item summary {
    min-height: 72px;
    padding: 18px 18px;
  }

  .faq-item summary::after {
    width: 34px;
    height: 34px;
  }

  .faq-answer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .final-cta-section {
    padding: 68px 0 92px;
  }

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

  .contact-section {
    padding: 72px 0;
  }

  .contact-copy > p {
    font-size: 1rem;
  }

  .contact-form {
    border-radius: 20px;
  }

  .contact-form::before {
    inset: 10px;
    border-radius: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-summary,
  .footer-contact {
    display: grid;
    justify-items: center;
    width: 100%;
    max-width: 520px;
  }

  .footer-brand img {
    width: min(235px, 82%);
    margin-inline: auto;
  }

  .footer-summary {
    padding-left: 0;
  }

  .footer-summary p,
  .footer-contact p {
    text-align: center;
  }

  .footer-actions {
    justify-content: center;
  }

  .footer-toplink {
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .metric-card__icon {
    top: 8px;
    right: 6px;
    width: 26px;
  }

  .metric-card__number {
    font-size: clamp(2rem, 9.4vw, 2.65rem);
  }

  .metric-card:first-child .metric-card__number {
    font-size: clamp(2.18rem, 10.2vw, 2.85rem);
  }

  .metric-card__number--compact {
    font-size: clamp(1.74rem, 8vw, 2.2rem);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-info-bar::after {
    animation: none;
  }

  .method-photo,
  .method-photo::before,
  .method-photo::after {
    animation: none !important;
  }

  .testimonial-track {
    animation: none !important;
    transform: none !important;
  }

  .testimonial-set[aria-hidden="true"] {
    display: none;
  }
}
