@font-face {
  font-family: "Open Sauce One";
  src: url("../assets/fonts/open-sauce-one-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Open Sauce One";
  src: url("../assets/fonts/open-sauce-one-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Open Sauce One";
  src: url("../assets/fonts/open-sauce-one-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Open Sauce One", Arial, sans-serif;
  --cream: #EEE7DA;
  --paper: #F7F3EA;
  --green: #10271F;
  --gold: #D19A64;
  --ink: #101F18;
  --body-ink: #25231F;
}

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

html,
body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  color: var(--body-ink);
  background: var(--cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--green);
  transform: translateY(-150%);
}

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

.site-header {
  height: 80px;
  background: var(--paper);
}

.header-inner {
  display: grid;
  grid-template-columns: 193px 1fr 160px;
  align-items: center;
  gap: 64px;
  width: min(1032px, 90vw);
  height: 100%;
  margin: 0 auto;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
}

.wordmark span {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 26.4px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.wordmark small {
  color: var(--gold);
  font-size: 9.28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 38.4px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.main-nav a,
.wordmark,
.cta-button {
  transition: opacity 180ms ease, transform 180ms ease, background-position 260ms ease, box-shadow 180ms ease;
}

.main-nav a:hover,
.wordmark:hover {
  opacity: 0.65;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 48px;
  padding: 10px 24px;
  color: var(--ink);
  background: linear-gradient(115deg, var(--gold) 0%, #F1C995 52%, #D8A66F 100%);
  background-size: 180% 100%;
  border: 0;
  box-shadow: 0 8px 20px rgba(141, 91, 43, 0.12);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
}

.cta-button:hover {
  background-position: 100% 50%;
  box-shadow: 0 12px 24px rgba(141, 91, 43, 0.18);
  transform: translateY(-2px);
}

.cta-button:focus-visible,
.vsl-play:focus-visible,
.main-nav a:focus-visible,
.wordmark:focus-visible {
  outline: 3px solid rgba(209, 154, 100, 0.55);
  outline-offset: 4px;
}

.button-icon {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.header-button {
  width: 190px;
}

.hero {
  display: flex;
  justify-content: center;
  min-height: 922px;
  padding: 52px 5vw 65px;
  background: var(--cream);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: min(720px, 100%);
  animation: hero-enter 700ms cubic-bezier(.22, 1, .36, 1) both;
}

.hero-copy {
  width: min(656px, 100%);
  text-align: center;
}

.hero h1 {
  margin: 0 0 20px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 60px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.0359em;
}

.hero h1 strong {
  color: var(--gold);
  font-weight: 700;
}

.hero-copy p {
  margin: 0;
  color: var(--body-ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.hero-copy b {
  font-weight: 700;
}

.hero-copy .video-intro {
  margin-top: 20px;
}

.vsl-shell {
  position: relative;
  width: 720px;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0c211a;
  border-radius: 18px;
  box-shadow: 0 22px 63px rgba(38, 31, 23, 0.13);
}

.hero-vsl {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.vsl-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 7px;
  overflow: hidden;
  background: rgba(247, 243, 234, 0.28);
  pointer-events: none;
}

.vsl-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #F1C995);
  box-shadow: 0 0 12px rgba(241, 201, 149, 0.65);
  transform: scaleX(var(--video-progress, 0));
  transform-origin: left center;
  transition: transform 180ms linear;
}

.hero-vsl::-webkit-media-controls,
.hero-vsl::-webkit-media-controls-enclosure {
  display: none !important;
}

.vsl-play {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  padding: 0;
  color: var(--green);
  background: var(--gold);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.vsl-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.vsl-play svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.vsl-shell.is-playing .vsl-play {
  opacity: 0;
  pointer-events: none;
}

.hero-button {
  width: 300px;
}

.trust-strip {
  height: 72px;
  background: var(--paper);
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 74px;
  width: min(868px, 90vw);
  height: 100%;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.trust-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-section {
  min-height: 1251px;
  padding: 169px 5vw 132px;
  background: var(--cream);
}

.story-card {
  position: relative;
  width: min(740px, 100%);
  min-height: 950px;
  margin: 0 auto;
  color: var(--cream);
  background: var(--green);
  border-radius: 20px;
}

.story-image {
  position: absolute;
  top: -101px;
  left: 52px;
  display: block;
  width: 636px;
  height: 222px;
  object-fit: cover;
  object-position: center 59%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 151px 49px 48px;
}

.story-content p,
.story-title {
  margin: 0;
}

.story-title {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 36px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.0417em;
}

.story-content > p:not(.story-quote, .story-emphasis, .story-close) {
  color: var(--cream);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.story-content b {
  font-weight: 700;
}

.story-quote,
.story-emphasis,
.story-close {
  font-family: var(--font-display);
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.0333em;
}

.story-emphasis span,
.story-close span {
  color: var(--cream);
}

.story-emphasis,
.story-emphasis strong {
  color: var(--gold);
}

.story-emphasis strong,
.story-close strong {
  font-weight: 700;
}

.story-button {
  width: 300px;
  align-self: flex-start;
}

.value-section {
  min-height: 1272px;
  padding: 77px 5vw;
  color: var(--cream);
  background: var(--ink);
}

.value-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1069px, 100%);
  gap: 60px;
  margin: 0 auto;
}

.value-row {
  display: grid;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.value-row-costs {
  grid-template-columns: 476px 522px;
  justify-content: center;
}

.value-row-product {
  grid-template-columns: 522px 487px;
}

.value-copy-costs {
  min-height: 272px;
}

.value-copy-product {
  grid-column: 2;
  grid-row: 1;
  min-height: 371px;
}

.value-copy h2,
.value-copy p,
.value-body p,
.value-closing p,
.value-closing h3 {
  margin: 0;
}

.value-copy h2 {
  margin-bottom: 22px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 36px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.0417em;
}

.value-copy h2 span {
  color: var(--cream);
}

.value-copy h2 strong {
  font-weight: 700;
}

.value-copy-product h2 {
  font-weight: 700;
}

.value-copy-product h2 span {
  font-weight: 500;
}

.value-copy > p,
.value-body p {
  color: var(--cream);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.value-copy b,
.value-body b {
  font-weight: 700;
}

.value-body {
  display: grid;
  gap: 18px;
}

.value-image {
  display: block;
  width: 522px;
  object-fit: cover;
  border-radius: 19px;
  box-shadow: 8px 4px 19px rgba(0, 0, 0, 0.2), 32px 15px 35px rgba(0, 0, 0, 0.17), 71px 33px 47px rgba(0, 0, 0, 0.1);
}

.value-image-costs {
  height: 287px;
}

.value-image-product {
  grid-column: 1;
  grid-row: 1;
  height: 387px;
}

.value-row-follicle {
  grid-template-columns: minmax(0, 487px) 522px;
}

.value-copy-follicle {
  min-height: 348px;
}

.value-follicle-figure {
  margin: 0;
}

.value-follicle-figure .value-image-follicle {
  width: 522px;
  height: 348px;
  background: var(--paper);
}

.value-follicle-figure figcaption {
  margin-top: 10px;
  color: rgba(238, 231, 218, 0.55);
  font-size: 12.5px;
  line-height: 1.5;
}

.value-closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 29px;
  width: min(758px, 100%);
  min-height: 324px;
  padding: 38px 5vw;
  color: var(--ink);
  background: var(--paper);
  border-radius: 25px;
  text-align: center;
}

.value-question {
  color: #1D4436;
  font-family: var(--font-display);
  font-size: 30px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.value-question span {
  color: var(--ink);
  font-weight: 500;
}

.value-closing h3 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 36px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.0417em;
}

.value-button {
  width: 300px;
}

.discretion-section {
  padding: 76px 5vw;
  color: var(--body-ink);
  background: #FAF7F0;
}

.discretion-layout {
  display: grid;
  grid-template-columns: 475px minmax(0, 1fr);
  align-items: center;
  gap: 80px;
  width: min(1070px, 100%);
  margin: 0 auto;
}

.discretion-visual {
  position: relative;
  margin: 0;
}

.discretion-visual::after {
  position: absolute;
  right: -12px;
  bottom: -12px;
  z-index: 0;
  width: 74%;
  height: 76%;
  content: "";
  border-right: 1px solid rgba(209, 154, 100, 0.75);
  border-bottom: 1px solid rgba(209, 154, 100, 0.75);
  border-radius: 0 0 22px;
}

.discretion-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 594px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: 0 24px 54px rgba(16, 39, 31, 0.14);
}

.discretion-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.discretion-content h2,
.discretion-content h3,
.discretion-content p {
  margin: 0;
}

.discretion-content h2 {
  max-width: 470px;
  margin-bottom: 22px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 48px;
  font-style: italic;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.discretion-content h2 strong {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}

.discretion-intro {
  max-width: 500px;
  font-size: 16px;
  line-height: 1.65;
}

.discretion-points {
  display: grid;
  gap: 0;
  width: 100%;
  margin: 30px 0 28px;
  border-top: 1px solid rgba(16, 39, 31, 0.16);
}

.discretion-point {
  position: relative;
  padding: 22px 0 22px 25px;
  border-bottom: 1px solid rgba(16, 39, 31, 0.16);
}

.discretion-point::before {
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 0;
  width: 3px;
  content: "";
  background: var(--gold);
}

.discretion-point h3 {
  margin-bottom: 8px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 27px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
}

.discretion-point p {
  max-width: 490px;
  font-size: 14px;
  line-height: 1.55;
}

.discretion-point b {
  font-weight: 700;
}

.discretion-close {
  max-width: 500px;
  margin-bottom: 22px !important;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 27px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.discretion-button {
  width: 340px;
  white-space: nowrap;
}

.section-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 10.88px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.steps-section {
  padding: 70px 5vw 72px;
  color: var(--cream);
  background: var(--ink);
}

.steps-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.steps-header {
  max-width: 520px;
  margin-bottom: 42px;
  text-align: center;
}

.steps-header h2,
.steps-header p,
.step-item h3,
.step-item p {
  margin: 0;
}

.steps-header h2 {
  margin: 8px 0 12px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 42px;
  font-style: italic;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.0417em;
}

.steps-header h2 span {
  color: var(--gold);
}

.steps-header > p:last-child {
  font-size: 16px;
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step-item {
  position: relative;
  min-height: 250px;
  padding: 24px 34px 28px;
  transition: transform 260ms ease, background 260ms ease;
}

.step-item::after {
  position: absolute;
  right: 34px;
  bottom: 0;
  left: 34px;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}

.step-item + .step-item {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.step-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.step-number {
  color: rgba(238, 231, 218, 0.24);
  font-family: var(--font-display);
  font-size: 58px;
  font-style: italic;
  font-weight: 600;
  transition: color 260ms ease;
  line-height: 0.8;
  letter-spacing: -0.06em;
}

.step-icon {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 320ms ease;
}

.step-item h3 {
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 29px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.0417em;
}

.step-item p {
  font-size: 14px;
  line-height: 1.6;
}

.step-item b {
  font-weight: 700;
}

.steps-button {
  width: 360px;
  white-space: nowrap;
}

.testimonials-button {
  width: 300px;
}

.testimonials-section {
  padding: 72px 5vw 80px;
  color: var(--body-ink);
  background: #FAF7F0;
}

.testimonials-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.testimonials-header {
  display: grid;
  grid-template-columns: 380px minmax(0, 680px);
  justify-content: space-between;
  gap: 70px;
  width: 100%;
}

.testimonials-header h2,
.testimonials-header p {
  margin: 0;
}

.testimonials-header h2 {
  margin-top: 8px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 40px;
  font-style: italic;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.0417em;
}

.testimonials-header h2 strong {
  color: var(--gold);
  font-weight: 700;
}

.testimonials-header > p {
  align-self: end;
  font-size: 16px;
  line-height: 1.6;
}

.testimonials-header b {
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 373px));
  justify-content: center;
  gap: 36px;
  width: 100%;
}

.testimonial-card {
  min-width: 0;
}

.testimonial-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 373 / 581;
  overflow: hidden;
  background: var(--green);
  border: 1px solid rgba(209, 154, 100, 0.34);
  border-radius: 20px;
  box-shadow: 0 20px 46px rgba(16, 39, 31, 0.15);
}

.testimonial-shell::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 26%;
  content: "";
  background: linear-gradient(to top, rgba(8, 26, 20, 0.68), transparent);
  pointer-events: none;
}

.testimonial-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.testimonial-video::-webkit-media-controls,
.testimonial-video::-webkit-media-controls-enclosure {
  display: none !important;
}

.testimonial-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 0;
  color: var(--green);
  background: linear-gradient(135deg, var(--gold), #F1C995);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.testimonial-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.testimonial-play svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.testimonial-shell.is-playing .testimonial-play {
  opacity: 0;
  pointer-events: none;
}

.testimonial-label {
  position: absolute;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  color: var(--paper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ads-section {
  padding: 68px 5vw 76px;
  color: var(--body-ink);
  background: #FFFFFF;
}

.ads-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: min(1253px, 100%);
  margin: 0 auto;
}

.ads-header {
  width: min(441px, 100%);
  text-align: center;
}

.ads-header h2,
.ads-header p {
  margin: 0;
}

.ads-header h2 {
  margin-top: 8px;
  color: #1D4436;
  font-family: var(--font-display);
  font-size: 40px;
  font-style: italic;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.0417em;
}

.ads-header h2 strong {
  color: var(--gold);
  font-weight: 700;
}

.ads-header > p:last-child {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6;
}

.ads-header b {
  font-weight: 700;
}

.ads-videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 480px));
  align-items: start;
  justify-content: center;
  gap: 22px;
  width: 100%;
}

.ad-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 403 / 251;
  overflow: hidden;
  background: var(--ink);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(16, 31, 24, 0.15);
}

.ad-photo {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}

.ad-shell-photo {
  cursor: default;
}

.ad-photo-caption {
  margin: 0;
  color: var(--body-ink);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.ad-photo-caption b {
  font-weight: 700;
}

.ad-shell img,
.ad-video,
.ad-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.ad-video {
  cursor: pointer;
}

.ad-video::-webkit-media-controls,
.ad-video::-webkit-media-controls-enclosure {
  display: none !important;
}

.ad-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 0;
  color: var(--green);
  background: linear-gradient(135deg, var(--gold), #F1C995);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.ad-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.ad-play:focus-visible {
  outline: 3px solid rgba(241, 201, 149, 0.8);
  outline-offset: 4px;
}

.ad-play svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.ad-shell.is-playing .ad-play {
  opacity: 0;
  pointer-events: none;
}

.ads-button {
  width: 320px;
  white-space: nowrap;
}

.kits-section {
  color: var(--body-ink);
  background: var(--cream);
}

.kits-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 78px 0 72px;
}

.kits-header {
  width: min(580px, 100%);
  text-align: center;
}

.kits-header h2,
.kits-header p {
  margin: 0;
}

.kits-header h2 {
  margin-top: 8px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 46px;
  font-style: italic;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.0417em;
}

.kits-header h2 strong {
  color: var(--gold);
  font-weight: 700;
}

.kits-header > p:last-child {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.6;
}

.kits-header b {
  font-weight: 700;
}

.kits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  width: 100%;
}

.kit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 560px;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(145deg, #FFFFFF, #F6F1E6 78%);
  border: 1px solid rgba(16, 39, 31, 0.12);
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(16, 39, 31, 0.1);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.kit-card .kit-image {
  transition: transform 420ms ease;
}

.kit-card .kit-button {
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.kits-section .kit-card {
  background: linear-gradient(145deg, #FBF8F2, #F1E9DA 78%);
}

.kit-card-featured {
  z-index: 1;
  border-color: var(--gold);
  box-shadow: 0 22px 46px rgba(16, 39, 31, 0.23);
  transform: translateY(-12px);
}

.kit-label {
  min-height: 18px;
  margin: 24px 24px 0;
  color: #B07A3E;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.kit-image-shell {
  width: 100%;
  height: 216px;
  margin-top: 10px;
  background: #FFFFFF;
  overflow: hidden;
}

.kit-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.kit-image-single {
  object-fit: contain;
}

.kit-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding: 20px 24px 26px;
  text-align: left;
}

.kit-card-body h3,
.kit-card-body p {
  margin-top: 0;
}

.kit-card-body h3 {
  margin-bottom: 8px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 34px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
}

.kit-volume {
  margin-bottom: 10px;
  color: rgba(16, 39, 31, 0.6);
  font-size: 14px;
  line-height: 1.35;
}

.kit-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
  color: #B07A3E;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
}

.kit-price-note {
  color: rgba(16, 39, 31, 0.55);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.kit-price-before {
  color: rgba(16, 39, 31, 0.42);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-color: rgba(16, 39, 31, 0.32);
}

.kit-savings {
  align-self: flex-start;
  margin: -8px 0 20px;
  padding: 5px 12px;
  color: #1F6B3B;
  font-size: 12.5px;
  font-weight: 700;
  background: rgba(31, 107, 59, 0.1);
  border: 1px solid rgba(31, 107, 59, 0.16);
  border-radius: 999px;
}

.kit-checklist {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.kit-checklist li {
  position: relative;
  padding-left: 27px;
  color: rgba(16, 39, 31, 0.82);
  font-size: 13.5px;
  line-height: 1.5;
  text-align: left;
}

.kit-checklist li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  content: "";
  background: rgba(31, 107, 59, 0.12);
  border-radius: 50%;
}

.kit-checklist li::after {
  position: absolute;
  top: 5px;
  left: 5.5px;
  width: 7px;
  height: 4px;
  content: "";
  border-bottom: 2px solid #1F6B3B;
  border-left: 2px solid #1F6B3B;
  border-radius: 1px;
  transform: rotate(-45deg);
}

.kit-description {
  margin-bottom: 22px;
  color: rgba(16, 39, 31, 0.78);
  font-size: 13px;
  line-height: 1.55;
  text-align: left;
}

.kit-payment-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 14px 0 0;
  color: rgba(16, 39, 31, 0.55);
  font-size: 11px;
  letter-spacing: 0.01em;
  text-align: center;
}

.kit-payment-note svg {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kit-button {
  width: 100%;
  margin-top: auto;
  color: var(--paper);
  background: linear-gradient(115deg, #1D4436 0%, #10271F 60%, #16332A 100%);
  background-size: 180% 100%;
  box-shadow: 0 10px 22px rgba(16, 39, 31, 0.22);
  padding-right: 14px;
  padding-left: 14px;
}

.kit-button:hover {
  box-shadow: 0 14px 28px rgba(16, 39, 31, 0.3);
}

.kit-button .button-icon {
  fill: currentColor;
}

.kits-trust {
  padding: 28px 5vw;
  background: #FFFFFF;
  border-top: 1px solid rgba(16, 39, 31, 0.1);
}

.kits-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: min(1060px, 100%);
  margin: 0 auto;
}

.kits-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.05;
}

.kit-trust-icon {
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Criador ---------- */

.creator-section {
  padding: 84px 5vw;
  color: var(--paper);
  background: var(--ink);
}

.creator-layout {
  display: grid;
  grid-template-columns: 475px minmax(0, 1fr);
  align-items: start;
  gap: 60px;
  width: min(1070px, 100%);
  margin: 0 auto;
}

.creator-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.creator-content h2,
.creator-content p {
  margin: 0;
}

.creator-content h2 {
  max-width: 500px;
  margin: 6px 0 20px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 36px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.0417em;
}

.creator-content h2 strong {
  color: var(--gold);
  font-weight: 700;
}

.creator-content p {
  max-width: 500px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--paper);
}

.creator-content b {
  font-weight: 700;
}

.creator-visual {
  margin: 0;
}

.creator-visual img {
  display: block;
  width: 100%;
  height: 416px;
  object-fit: cover;
  object-position: center;
  border-radius: 19px;
}

/* ---------- História em vídeo ---------- */

.story-video-section {
  padding: 84px 5vw;
  color: var(--paper);
  background: var(--ink);
}

.story-video-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.story-video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ink);
  border-radius: 20px;
  box-shadow: 0 24px 54px rgba(16, 39, 31, 0.16);
}

.story-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.story-video::-webkit-media-controls,
.story-video::-webkit-media-controls-enclosure {
  display: none !important;
}

.story-video-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  color: var(--paper);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(16, 39, 31, 0.72);
  border-radius: 999px;
}

.story-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.story-video-play:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.story-video-play-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--green);
  background: linear-gradient(135deg, var(--gold), #F1C995);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.story-video-play-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.story-video-play-label {
  padding: 5px 12px;
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(16, 39, 31, 0.55);
  border-radius: 999px;
}

.story-video-shell.is-playing .story-video-play {
  opacity: 0;
  pointer-events: none;
}

.story-video-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.story-video-content .section-kicker {
  margin-bottom: 8px;
}

.story-video-content h2 {
  max-width: 480px;
  margin: 0 0 28px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 36px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.0417em;
}

.story-video-content h2 strong {
  color: var(--gold);
  font-weight: 700;
}

.story-video-tabs {
  display: flex;
  gap: 14px;
  width: 100%;
  margin-bottom: 16px;
}

.story-video-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  text-align: left;
  background: var(--paper);
  border: 1px solid rgba(16, 39, 31, 0.12);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
}

.story-video-tab:hover {
  transform: translateY(-2px);
}

.story-video-tab.is-active {
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(16, 39, 31, 0.1);
}

.story-video-tab-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
}

.story-video-tab-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-video-tab-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  padding: 6px;
  color: var(--green);
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.story-video-tab-label {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--body-ink);
}

.story-video-tab-label strong {
  color: var(--green);
  font-size: 12.5px;
  font-weight: 700;
}

.story-video-hint {
  margin: 0;
  color: rgba(247, 243, 234, 0.65);
  font-size: 13px;
  font-style: italic;
}

/* ---------- FAQ ---------- */

.faq-section {
  padding: 84px 5vw;
  color: var(--body-ink);
  background: #FAF7F0;
}

.faq-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: min(682px, 100%);
  margin: 0 auto;
}

.faq-header {
  width: 100%;
  text-align: center;
}

.faq-header h2,
.faq-header p {
  margin: 0;
}

.faq-header h2 {
  margin-top: 8px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 36px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.0417em;
}

.faq-header h2 strong {
  color: var(--gold);
  font-weight: 700;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.faq-item {
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.1);
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px 32px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  list-style: none;
  cursor: pointer;
}

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

.faq-chevron {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--body-ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(-180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 32px 22px 63px;
  color: var(--body-ink);
  font-size: 15px;
  line-height: 1.65;
}

.faq-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 46px 40px;
  text-align: center;
  background: var(--ink);
  border-radius: 20px;
}

.faq-contact h3 {
  max-width: 400px;
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 36px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.0417em;
}

.faq-contact h3 strong {
  color: var(--gold);
  font-weight: 700;
}

.faq-contact p {
  max-width: 420px;
  margin: 0;
  color: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

.faq-contact-button {
  width: 326px;
}

/* ---------- Oferta final ---------- */

.final-offer-section {
  position: relative;
  overflow: hidden;
  padding: 100px 5vw 108px;
  color: var(--paper);
  background: radial-gradient(120% 140% at 50% -20%, #1a3a2c 0%, var(--ink) 62%);
}

.final-offer-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 1px;
  height: 64px;
  content: "";
  background: linear-gradient(rgba(209, 154, 100, 0), rgba(209, 154, 100, 0.65));
  transform: translateX(-50%);
}

.final-offer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

.final-offer-trust {
  max-width: 560px;
}

.final-offer-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 10.88px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.final-offer-inner h2 {
  max-width: 620px;
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 52px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.0417em;
}

.final-offer-inner h2 strong {
  color: var(--gold);
  font-weight: 700;
}

.final-offer-inner > p {
  max-width: 520px;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(247, 243, 234, 0.88);
}

.final-offer-inner > p b {
  color: var(--paper);
  font-weight: 700;
}

.final-offer-kits {
  width: 100%;
  margin: 6px 0;
}

.kit-card--final {
  background: linear-gradient(145deg, #FFFFFF, #F6F1E6 78%);
}

.final-offer-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
  margin: 0;
  color: rgba(247, 243, 234, 0.75);
  font-size: 13.5px;
}

.final-offer-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.final-offer-trust svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.final-offer-button {
  width: 360px;
  max-width: 100%;
  margin-top: 6px;
}

.final-offer-close {
  max-width: 480px;
  margin: 4px 0 0;
  color: rgba(247, 243, 234, 0.9);
  font-family: var(--font-display);
  font-size: 21px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
}

.final-offer-close strong {
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Rodapé ---------- */

.site-footer {
  padding: 40px 5vw;
  color: var(--body-ink);
  background: var(--cream);
  border-top: 1px solid rgba(16, 39, 31, 0.12);
}

.footer-inner {
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
}

.footer-legal {
  margin: 0;
  color: rgba(37, 35, 31, 0.62);
  font-size: 11.5px;
  line-height: 1.7;
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 193px 1fr 160px;
    gap: 32px;
    width: min(960px, 90vw);
  }

  .main-nav {
    gap: 24px;
  }

  .value-row {
    gap: 40px;
  }

  .value-row-costs,
  .value-row-product,
  .value-row-follicle {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .value-image {
    width: 100%;
  }

  .value-follicle-figure .value-image-follicle {
    width: 100%;
  }

  .discretion-layout {
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
    gap: 56px;
  }

  .steps-grid {
    width: min(960px, 100%);
  }

  .step-item {
    padding-right: 24px;
    padding-left: 24px;
  }

  .testimonials-header {
    grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
    gap: 50px;
  }

  .ads-videos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(1000px, 100%);
  }

  .ad-shell {
    width: 100%;
  }

  .kits-inner {
    width: min(760px, 90vw);
  }

  .kits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .kit-card-featured {
    transform: none;
  }

  .kit-card-featured:hover {
    transform: translateY(-8px);
  }

  .kits-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 28px;
  }

  .creator-layout {
    grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1fr);
    gap: 56px;
  }

  .faq-inner {
    width: min(680px, 100%);
  }
}

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

  .main-nav {
    display: none;
  }

  .story-video-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-video-content {
    align-items: stretch;
  }

  .story-video-content h2 {
    max-width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: clamp(48px, 8vw, 60px);
  }

  .trust-strip {
    height: auto;
    min-height: 112px;
    padding: 18px 5vw;
  }

  .trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 32px;
    width: min(620px, 100%);
  }

  .story-section {
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 96px;
  }

  .value-section {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .value-inner {
    gap: 50px;
  }

  .value-row-costs,
  .value-row-product,
  .value-row-follicle {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .value-copy-costs,
  .value-copy-product,
  .value-copy-follicle {
    min-height: auto;
  }

  .value-image-costs,
  .value-image-product {
    width: 100%;
    height: auto;
    aspect-ratio: 522 / 287;
  }

  .value-follicle-figure .value-image-follicle {
    width: 100%;
    height: auto;
    aspect-ratio: 1300 / 866;
  }

  .value-image-product {
    aspect-ratio: 522 / 387;
  }

  .value-copy-product {
    grid-column: auto;
    grid-row: auto;
  }

  .value-image-product {
    grid-column: auto;
    grid-row: auto;
  }

  .discretion-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .discretion-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    width: min(620px, 100%);
  }

  .discretion-visual {
    order: 2;
  }

  .discretion-content {
    order: 1;
  }

  .discretion-visual img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    width: min(620px, 100%);
  }

  .step-item {
    min-height: auto;
    padding: 28px 30px;
  }

  .step-item + .step-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .testimonials-header {
    grid-template-columns: 1fr;
    gap: 24px;
    width: min(620px, 100%);
  }

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

  .ads-videos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(720px, 100%);
  }

  .ad-shell {
    width: 100%;
  }

  .creator-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .creator-visual {
    order: -1;
    width: min(420px, 100%);
    margin: 0 auto;
  }

  .creator-visual img {
    height: 380px;
  }

  .creator-content {
    align-items: center;
    text-align: center;
  }

  .creator-content h2,
  .creator-content p {
    max-width: 100%;
  }

  .final-offer-inner h2 {
    font-size: 38px;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 72px;
  }

  .story-video-section {
    padding: 58px 5vw;
  }

  .story-video-content h2 {
    font-size: 30px;
  }

  .story-video-tabs {
    gap: 8px;
  }

  .story-video-tab {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px;
  }

  .story-video-tab-label {
    font-size: 11px;
  }

  .story-video-tab-label strong {
    font-size: 11.5px;
  }

  .story-video-play-label {
    font-size: 10px;
  }

  .header-inner {
    gap: 12px;
  }

  .wordmark {
    display: block;
  }

  .wordmark span {
    display: block;
    font-size: 23px;
  }

  .wordmark small {
    display: block;
    margin-top: 4px;
    font-size: 8px;
  }

  .header-button {
    width: auto;
    min-height: 42px;
    padding: 8px 12px;
    font-size: 11.5px;
  }

  .hero {
    padding: 44px 5vw 52px;
  }

  .hero-content {
    gap: 28px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 12.3vw, 54px);
  }

  .hero-copy p {
    font-size: 14.5px;
  }

  .desktop-break {
    display: none;
  }

  .vsl-play {
    width: 58px;
    height: 58px;
  }

  .hero-button {
    min-width: 0;
    width: 100%;
    font-size: 13px;
  }

  .trust-strip {
    min-height: 170px;
  }

  .trust-row {
    gap: 18px 14px;
  }

  .trust-item {
    align-items: flex-start;
    font-size: 17px;
    white-space: normal;
  }

  .trust-icon {
    flex-basis: 24px;
  }

  .story-section {
    padding-top: 118px;
    padding-right: 5vw;
    padding-bottom: 72px;
    padding-left: 5vw;
  }

  .story-card {
    min-height: auto;
  }

  .story-image {
    top: -68px;
    left: 18px;
    width: calc(100% - 36px);
    height: 150px;
    border-radius: 16px;
  }

  .story-content {
    gap: 18px;
    padding: 106px 24px 32px;
  }

  .story-title {
    font-size: 34px;
  }

  .story-content > p:not(.story-quote, .story-emphasis, .story-close) {
    font-size: 15px;
  }

  .story-quote,
  .story-emphasis,
  .story-close {
    font-size: 27px;
  }

  .story-button {
    min-width: 0;
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 12px;
  }

  .value-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .value-copy h2 {
    font-size: 30px;
  }

  .value-copy > p,
  .value-body p {
    font-size: 15px;
    line-height: 1.55;
  }

  .value-closing {
    gap: 24px;
    min-height: auto;
    padding: 34px 22px;
    border-radius: 20px;
  }

  .value-question {
    font-size: 27px;
  }

  .value-closing h3 {
    font-size: 32px;
  }

  .value-button {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 12px;
  }

  .discretion-section {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .discretion-layout {
    gap: 38px;
  }

  .discretion-content h2 {
    margin-bottom: 18px;
    font-size: 39px;
  }

  .discretion-intro {
    font-size: 15px;
    line-height: 1.6;
  }

  .discretion-points {
    margin-top: 25px;
    margin-bottom: 24px;
  }

  .discretion-point {
    padding: 20px 0 20px 20px;
  }

  .discretion-point h3,
  .discretion-close {
    font-size: 25px;
  }

  .discretion-button {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 12px;
  }

  .discretion-visual::after {
    right: -8px;
    bottom: -8px;
  }

  .steps-section {
    padding-top: 56px;
    padding-bottom: 60px;
  }

  .steps-header {
    margin-bottom: 32px;
  }

  .steps-header h2 {
    font-size: 38px;
  }

  .steps-header > p:last-child {
    font-size: 15px;
  }

  .step-item h3 {
    font-size: 27px;
  }

  .steps-button,
  .testimonials-button {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 12px;
  }

  .steps-button,
  .discretion-button {
    white-space: normal;
  }

  .testimonials-section {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .testimonials-header h2 {
    font-size: 37px;
  }

  .testimonials-header > p {
    font-size: 15px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    width: min(360px, 100%);
  }

  .ads-section {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .ads-header h2 {
    font-size: 37px;
  }

  .ads-header > p:last-child {
    font-size: 14.5px;
  }

  .ads-videos {
    grid-template-columns: 1fr;
    gap: 22px;
    width: min(403px, 100%);
  }

  .ads-button {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 12px;
    white-space: normal;
  }

  .kits-inner {
    gap: 32px;
    width: min(403px, 90vw);
    padding-top: 60px;
    padding-bottom: 58px;
  }

  .kits-header h2 {
    font-size: 39px;
  }

  .kits-header > p:last-child {
    font-size: 14.5px;
  }

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

  .kit-card {
    min-height: 530px;
  }

  .kits-trust {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .kits-trust-row {
    grid-template-columns: 1fr;
    gap: 16px;
    width: min(310px, 100%);
  }

  .kits-trust-item {
    justify-content: flex-start;
    font-size: 18px;
  }

  .faq-header h2 {
    font-size: 30px;
  }

  .faq-item summary {
    font-size: 15px;
    padding: 18px 20px;
  }

  .faq-item p {
    padding: 0 20px 18px 20px;
  }

  .faq-contact {
    padding: 36px 24px;
  }

  .faq-contact h3 {
    font-size: 28px;
  }

  .faq-contact-button {
    width: 100%;
  }

  .final-offer-section {
    padding: 72px 6vw 80px;
  }

  .final-offer-inner h2 {
    font-size: 30px;
  }

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

  .final-offer-trust {
    flex-direction: column;
    gap: 10px;
  }

  .floating-cta {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    left: 16px;
    width: auto;
  }
}

/* ---------- CTA flutuante ---------- */

.floating-cta {
  position: fixed;
  right: 28px;
  bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 14px 30px rgba(16, 39, 31, 0.28);
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
}

.floating-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .kit-card:hover {
    border-color: rgba(209, 154, 100, 0.65);
    box-shadow: 0 26px 52px rgba(16, 39, 31, 0.2);
    transform: translateY(-8px);
  }

  .kit-card:hover .kit-image {
    transform: scale(1.06);
  }

  .kit-card:hover .kit-button {
    box-shadow: 0 16px 30px rgba(16, 39, 31, 0.32);
    transform: translateY(-2px);
  }

  .kit-card-featured:hover {
    transform: translateY(-20px);
  }

  .step-item:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-6px);
  }

  .step-item:hover::after {
    transform: scaleX(1);
  }

  .step-item:hover .step-icon {
    transform: scale(1.12) rotate(-4deg);
  }

  .step-item:hover .step-number {
    color: rgba(209, 154, 100, 0.55);
  }
}

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