@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/InstrumentSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/InstrumentSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/InstrumentSerif-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/InstrumentSerif-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #211513;
  --ink-soft: #4b3731;
  --deep: #120b09;
  --deep-2: #24120d;
  --bronze: #b7794f;
  --bronze-dark: #7b482f;
  --champagne: #d8b98d;
  --cream: #f7f0e6;
  --shell: #f2e5d6;
  --rose: #e7cfc4;
  --line: rgba(68, 43, 34, 0.14);
  --shadow: 0 24px 70px rgba(41, 21, 14, 0.18);
  --radius: 8px;
  --section: clamp(44px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

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

h1,
h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  font-size: clamp(4rem, 3vw, 5.9rem);
  color: #fff8ef;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5.7rem);
  color: var(--ink);
}

h1 em,
h2 em {
  display: block;
  font-style: italic;
  color: var(--bronze);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.18;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(1160px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 14px 16px;
  color: #fffaf2;
  background: rgba(18, 11, 9, 0.55);
  border: 1px solid rgba(255, 250, 242, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 190px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.9rem;
  color: rgba(255, 250, 242, 0.78);
}

.main-nav a,
.header-cta,
.text-link {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--champagne);
}

.header-cta {
  padding: 10px 18px;
  color: var(--deep);
  font-weight: 700;
  background: var(--champagne);
  border-radius: 999px;
}

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

.hero {
  position: relative;
  height: min(100dvh, 1000px);
  min-height: 680px;
  max-height: 1000px;
  overflow: hidden;
  color: #fff8ef;
  background: #120b09;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/hero-bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  height: min(100dvh, 1000px);
  min-height: 680px;
  max-height: 1000px;
  padding: 118px 0 24px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--bronze-dark);
}

.hero-lead {
  max-width: 590px;
  margin: 18px 0 12px;
  color: rgba(255, 248, 239, 0.88);
  font-size: clamp(1rem, 1.28vw, 1.22rem);
  line-height: 1.32;
}

.hero-text {
  max-width: 500px;
  color: rgba(255, 248, 239, 0.72);
}

.hero-text {
  font-size: 0.94rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.1;
}

.button-primary {
  color: #fff8ef;
  background:
    linear-gradient(135deg, rgba(216, 185, 141, 0.95) 0%, rgba(183, 121, 79, 0.98) 42%, rgba(82, 43, 30, 0.98) 100%);
  border: 1px solid rgba(255, 248, 239, 0.18);
  box-shadow: 0 16px 36px rgba(82, 43, 30, 0.24);
}

.button-secondary {
  color: #fff8ef;
  border: 1px solid rgba(255, 248, 239, 0.24);
  background: rgba(18, 11, 9, 0.24);
  backdrop-filter: blur(14px);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 248, 239, 0.16);
  border: 1px solid rgba(255, 248, 239, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-list li {
  padding: 14px 18px;
  background: rgba(18, 11, 9, 0.34);
  backdrop-filter: blur(14px);
}

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list strong {
  color: #fff8ef;
  font-size: 1.02rem;
}

.trust-list span {
  color: rgba(255, 248, 239, 0.68);
  font-size: 0.9rem;
}

.section {
  padding: var(--section) 0;
}

.intro-section,
.treatments-section,
.faq-section {
  background: var(--cream);
}

.audience-section {
  padding: var(--section) 0;
  background: var(--cream);
  text-align: center;
}

.audience-inner {
  max-width: 860px;
}

.audience-section h2 {
  margin-bottom: 26px;
}

.treatments-section {
  overflow: hidden;
  padding: var(--section) 0;
  text-align: center;
}

.treatments-section .section-heading {
  margin: 0 auto 28px;
}

.treatments-section .section-heading h2 {
  margin-bottom: 16px;
}

.treatments-shell {
  width: min(1500px, calc(100% - 40px));
}

.intro-section {
  padding: var(--section) 0 clamp(20px, 3vw, 36px);
}

.intro-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.intro-section h2 {
  max-width: 520px;
  font-size: clamp(2.4rem, 3.4vw, 4.15rem);
}

.intro-section .eyebrow {
  margin-bottom: 12px;
}

.results-section {
  background: var(--cream);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.flow-text {
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
}

.flow-text .button {
  margin-top: 10px;
}

.flow-text p,
.section-heading p,
.about-copy p,
.objection-section p,
.audience-section p {
  color: var(--ink-soft);
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--bronze-dark);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

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

.treatment-grid {
  display: grid;
  gap: 18px;
}

.results-section {
  overflow: hidden;
  padding: clamp(20px, 3vw, 36px) 0 var(--section);
}

.results-section .section-heading {
  margin-bottom: 26px;
}

.results-section .section-heading h2 {
  margin-bottom: 18px;
}

.results-section .section-heading p {
  max-width: 680px;
  margin: 0 auto;
}

.results-carousel {
  width: min(100vw, 1320px);
  margin: 0 auto;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.results-carousel.is-dragging {
  cursor: grabbing;
}

.results-track {
  display: flex;
  gap: clamp(14px, 2vw, 22px);
  width: max-content;
  will-change: transform;
}

.result-slide {
  flex: 0 0 clamp(220px, 24vw, 330px);
  aspect-ratio: 4 / 5;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 251, 245, 0.52);
  box-shadow: 0 0 26px rgba(41, 21, 14, 0.16);
}

.result-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.treatment-card,
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 251, 245, 0.56);
  box-shadow: var(--shadow);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--bronze-dark);
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid rgba(123, 72, 47, 0.28);
  border-radius: 50%;
}

.treatment-card p,
.step p {
  color: var(--ink-soft);
}

.treatment-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  perspective: 1400px;
}

.treatment-card {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: clamp(450px, 34vw, 560px);
  padding: 18px;
  overflow: hidden;
  color: #fff8ef;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background-color: var(--deep);
  background-image: var(--treatment-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 0 30px rgba(41, 21, 14, 0.18);
  opacity: 0.72;
  transform: translateX(var(--fan-x, 0px)) translateY(var(--fan-y, 0px)) rotate(var(--fan-r, 0deg)) scale(0.94);
  transform-origin: 50% 88%;
  transition:
    opacity 720ms ease,
    transform 1050ms cubic-bezier(0.18, 0.9, 0.22, 1);
  transition-delay: var(--fan-delay, 0ms);
  will-change: transform, opacity;
}

.treatment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(18, 11, 9, 0) 34%, rgba(18, 11, 9, 0.62) 68%, rgba(18, 11, 9, 0.9) 100%);
}

.treatment-card:nth-child(1) {
  --fan-x: 470px;
  --fan-y: 18px;
  --fan-r: -8deg;
  --fan-delay: 0ms;
}

.treatment-card:nth-child(2) {
  --fan-x: 230px;
  --fan-y: -8px;
  --fan-r: -3deg;
  --fan-delay: 80ms;
}

.treatment-card:nth-child(3) {
  --fan-x: 0px;
  --fan-y: 8px;
  --fan-r: 0deg;
  --fan-delay: 140ms;
}

.treatment-card:nth-child(4) {
  --fan-x: -230px;
  --fan-y: -4px;
  --fan-r: 3deg;
  --fan-delay: 200ms;
}

.treatment-card:nth-child(5) {
  --fan-x: -470px;
  --fan-y: 20px;
  --fan-r: 8deg;
  --fan-delay: 260ms;
}

.treatments-section.is-fan-open .treatment-card {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.treatment-content {
  text-align: left;
}

.treatment-card h3 {
  margin: 0 0 10px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.06;
  color: #fff8ef;
}

.treatment-card p {
  margin: 0;
  color: rgba(255, 248, 239, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}

.treatment-botox {
  --treatment-image: url("assets/images/procedimentos/botox.webp");
}

.treatment-labial {
  --treatment-image: url("assets/images/procedimentos/labial.webp");
}

.treatment-facial {
  --treatment-image: url("assets/images/procedimentos/facial.webp");
}

.treatment-bioestimulador {
  --treatment-image: url("assets/images/procedimentos/bioestimulador.webp");
}

.treatment-vasinhos {
  --treatment-image: url("assets/images/procedimentos/vasinhos.webp");
}

.dark-continuous {
  color: #fff8ef;
  background: linear-gradient(135deg, var(--deep) 0%, var(--deep-2) 52%, #3a1e14 100%);
}

.process-section,
.objection-section,
.about-section,
.final-cta {
  color: #fff8ef;
}

.process-section,
.objection-section,
.about-section {
  background: transparent;
}

.final-cta {
  background: #120b09;
}

.process-section h2,
.objection-section h2,
.about-section h2,
.final-cta h2 {
  color: #fff8ef;
}

.process-section p,
.objection-section p,
.about-section p,
.final-cta p,
.final-cta small {
  color: rgba(255, 248, 239, 0.76);
}

.sticky-copy {
  position: sticky;
  top: 130px;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  padding: 28px;
  border: 1px solid rgba(255, 248, 239, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 248, 239, 0.06);
}

.step span {
  color: var(--champagne);
  border-color: rgba(216, 185, 141, 0.32);
}

.dark-button {
  color: #fff8ef;
  background:
    linear-gradient(135deg, rgba(183, 121, 79, 0.98) 0%, rgba(123, 72, 47, 0.98) 48%, rgba(36, 18, 13, 0.98) 100%);
  box-shadow: 0 16px 36px rgba(82, 43, 30, 0.18);
}

.narrow {
  max-width: 880px;
}

.objection-section {
  padding: var(--section) 0;
  text-align: center;
}

.objection-section h2 {
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
}

.objection-section p {
  max-width: 820px;
  margin-bottom: 14px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.objection-section em {
  display: block;
  color: var(--champagne);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.12;
}

.about-section {
  padding-top: var(--section);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

.about-content {
  max-width: 720px;
}

.about-section .eyebrow {
  color: var(--champagne);
}

.about-subtitle {
  max-width: 640px;
  margin: 22px 0 28px;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.45;
}

.about-copy {
  display: grid;
  gap: 14px;
}

.about-copy p {
  margin-bottom: 0;
}

.about-differentials {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.about-detail-card,
.about-mini-bio {
  padding: 24px;
  border: 1px solid rgba(255, 248, 239, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 248, 239, 0.06);
}

.about-detail-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 700;
  border: 1px solid rgba(216, 185, 141, 0.32);
  border-radius: 50%;
}

.about-detail-card h3,
.about-mini-bio h3 {
  margin-bottom: 8px;
  color: #fff8ef;
}

.about-detail-card p,
.about-mini-bio p,
.about-mini-bio li {
  color: rgba(255, 248, 239, 0.76);
}

.about-mini-bio {
  margin-top: 16px;
}

.about-mini-bio ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.about-mini-bio li + li {
  margin-top: 10px;
}

.about-section .button {
  margin-top: 24px;
}

.about-photo {
  position: sticky;
  top: 110px;
}

.about-photo img {
  width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: cover;
  border: 1px solid rgba(255, 248, 239, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.22);
}

.check-list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li + li {
  margin-top: 14px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--bronze);
  border-radius: 50%;
}

.check-list {
  columns: 1;
  max-width: 760px;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.audience-section .check-list li {
  display: flex;
  justify-content: center;
  text-align: center;
}

.audience-section .check-list li::before {
  position: static;
  flex: 0 0 auto;
  margin-top: 0.55em;
  margin-right: 14px;
}

.faq-list {
  display: grid;
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-section {
  padding: var(--section) 0;
}

.faq-section .section-heading {
  margin-bottom: 26px;
}

.faq-section .section-heading h2 {
  margin-bottom: 0;
}

.faq-section .eyebrow {
  margin-bottom: 12px;
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--ink);
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--bronze-dark);
  font-size: 1.4rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--ink-soft);
}

.final-cta {
  position: relative;
  height: min(100dvh, 940px);
  min-height: 640px;
  max-height: 940px;
  overflow: hidden;
  color: #fff8ef;
}

.final-cta-media,
.final-cta-photo {
  position: absolute;
  inset: 0;
}

.final-cta-photo {
  background-image: url("assets/images/bg-cta.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  height: min(100dvh, 940px);
  min-height: 640px;
  max-height: 940px;
}

.final-cta-copy {
  max-width: 720px;
}

.final-cta h2 {
  max-width: 700px;
  margin-bottom: 22px;
}

.final-cta p {
  max-width: 570px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.28vw, 1.22rem);
  line-height: 1.32;
}

.final-cta .button {
  margin: 24px 0 14px;
}

.final-cta small {
  display: block;
}

.site-footer {
  padding: 24px 0;
  color: rgba(255, 248, 239, 0.72);
  background: #080605;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-photo {
    inset: 0;
    background-position: center top;
  }

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

  .two-column {
    grid-template-columns: 1fr;
  }

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

  .about-content {
    max-width: none;
  }

  .about-photo {
    order: -1;
    position: static;
    max-width: 620px;
    margin: 0 auto;
  }

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

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

  .sticky-copy {
    position: static;
  }

  .final-cta-copy {
    max-width: 350px;
  }

  .final-cta h2 {
    font-size: clamp(3rem, 6vw, 4rem);
  }

  .final-cta p {
    max-width: 380px;
    font-size: 1rem;
  }

  .final-cta-photo {
    background-position: calc(63% - 10px) center;
    background-size: auto 100%;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .site-header {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    margin-top: 12px;
    padding: 12px;
  }

  .brand img {
    width: 148px;
  }

  .header-cta {
    padding: 9px 14px;
    font-size: 0.88rem;
  }

  .hero {
    height: 240svh;
    min-height: 1900px;
    max-height: none;
    overflow: visible;
  }

  .final-cta {
    height: 180dvh;
    min-height: 1320px;
    max-height: none;
    overflow: visible;
  }

  .hero-content {
    position: sticky;
    top: 0;
    display: block;
    height: 100svh;
    min-height: 760px;
    max-height: none;
    margin-top: -100svh;
    padding: 0;
    text-align: center;
  }

  .final-cta-inner {
    position: sticky;
    top: 0;
    display: block;
    height: 100dvh;
    min-height: 700px;
    max-height: none;
    margin-top: -100dvh;
    padding: 0;
    text-align: center;
  }

  .hero-media {
    position: sticky;
    top: 0;
    height: 100svh;
  }

  .final-cta-media {
    position: sticky;
    top: 0;
    height: 100dvh;
  }

  .hero-photo {
    background-position: calc(63% - 100px) center;
    background-size: auto 100%;
  }

  .final-cta-photo {
    background-position: calc(63% - 150px) center;
    background-size: auto 100%;
  }

  .hero-copy {
    position: absolute;
    right: 0;
    bottom: 170px;
    left: 0;
    display: grid;
    max-width: 100%;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .final-cta-copy {
    position: absolute;
    right: 0;
    bottom: 76px;
    left: 0;
    max-width: 100%;
    padding: 18px 14px;
    border: 1px solid rgba(255, 248, 239, 0.12);
    border-radius: var(--radius);
    background: rgba(18, 11, 9, 0.24);
    backdrop-filter: blur(14px);
    opacity: var(--final-cta-opacity, 1);
    transform: translateY(var(--final-cta-offset, 72px));
    transition: opacity 160ms linear, transform 160ms linear;
  }
  .intro-grid {
  gap: 0px;
  }
  .hero-intro,
  .hero-details {
    grid-area: 1 / 1;
    padding: 16px 14px;
    border: 1px solid rgba(255, 248, 239, 0.12);
    border-radius: var(--radius);
    background: rgba(18, 11, 9, 0.22);
    backdrop-filter: blur(14px);
    transition: opacity 160ms linear, transform 160ms linear;
  }

  .hero-intro {
    opacity: var(--hero-intro-opacity, 1);
    transform: translateY(calc(76px + (var(--hero-progress, 0) * -28px)));
    pointer-events: none;
  }

  .hero-details {
    opacity: var(--hero-details-opacity, 0);
    transform: translateY(calc((-2 - var(--hero-details-opacity, 0)) * 26px));
    pointer-events: none;
  }

  .hero.is-details-active .hero-details {
    pointer-events: auto;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 7.8vw, 3.35rem);
  }

  .hero-lead {
    max-width: 100%;
    margin: 0 auto;
    font-size: 0.94rem;
  }

  .hero-text {
    display: none;
  }

  .hero-actions {
    margin: 16px 0 0;
  }

  .hero .button {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 0.92rem;
  }

  .final-cta h2 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(1.95rem, 10vw, 3.2rem);
  }

  .final-cta p {
    max-width: 100%;
    margin: 0 auto;
    font-size: 0.94rem;
  }

  .final-cta .button {
    width: 100%;
    margin: 18px 0 12px;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 0.92rem;
  }

  .intro-section .button {
    width: 100%;
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

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

  .trust-list {
    position: absolute;
    right: 0;
    bottom: 100px;
    left: 0;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 14px;
    gap: 10px;
    background: transparent;
    border: 0;
    text-align: center;
    opacity: var(--hero-trust-opacity, 0);
    transform: translateY(calc((1 - var(--hero-trust-opacity, 0)) * 20px));
    transition: opacity 160ms linear, transform 160ms linear;
  }

  .trust-list li {
    padding: 10px 8px;
    border: 1px solid rgba(255, 248, 239, 0.18);
    border-radius: var(--radius);
    background: rgba(18, 11, 9, 0.28);
    backdrop-filter: blur(16px);
  }

  .trust-list strong {
    font-size: 0.86rem;
  }

  .trust-list span {
    font-size: 0.72rem;
    line-height: 1.28;
  }

  .intro-section,
  .results-section,
  .treatments-section,
  .process-section,
  .objection-section,
  .about-section,
  .audience-section,
  .faq-section,
  .final-cta,
  .section-heading,
  .flow-text,
  .treatment-card,
  .step,
  .check-list,
  details p {
    text-align: center;
  }

  .result-slide {
    flex-basis: min(72vw, 300px);
  }

  .section-heading {
    margin-right: auto;
    margin-left: auto;
  }

  .about-subtitle,
  .about-copy,
  .about-content {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .about-photo {
    order: -1;
  }

  .about-detail-card,
  .about-mini-bio {
    text-align: center;
  }

  .about-section .button {
    width: 100%;
    max-width: 360px;
  }

  .check-list li {
    padding-left: 0;
  }

  .check-list li::before {
    display: none;
  }

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

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

  .treatment-card:nth-child(n) {
    --fan-x: 0px;
    --fan-r: 0deg;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 128px;
  }

  .header-cta {
    font-size: 0.8rem;
  }

  .button {
    padding-right: 18px;
    padding-left: 18px;
  }
}
