:root {
  color-scheme: light;
  --rose: #b93566;
  --rose-deep: #6f1837;
  --ink: #261620;
  --muted: #6d5964;
  --paper: #fff8f6;
  --surface: #ffffff;
  --line: #ead3da;
  --gold: #c9953f;
  --green: #1d7d5b;
  --shadow: 0 24px 70px rgba(111, 24, 55, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(255, 248, 246, 0.92);
  border-bottom: 1px solid rgba(185, 53, 102, 0.16);
  backdrop-filter: blur(14px);
}

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

nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a,
.top-cta,
.button,
.sticky-buy a {
  text-decoration: none;
}

.top-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--rose-deep);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 480px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 76px);
  padding: clamp(34px, 6vw, 84px) clamp(18px, 5vw, 82px);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 220, 225, 0.95), transparent 32%),
    linear-gradient(135deg, #fff9f8 0%, #ffe8e4 52%, #f7d5cf 100%);
}

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

.eyebrow,
.section-kicker,
.tag {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.98;
}

.lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: #57414d;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  box-shadow: 0 14px 30px rgba(185, 53, 102, 0.28);
}

.button.secondary {
  border: 1px solid rgba(111, 24, 55, 0.22);
  background: rgba(255, 255, 255, 0.58);
}

.trust-row {
  margin-top: 28px;
  color: var(--rose-deep);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-row span {
  padding: 9px 13px;
  border: 1px solid rgba(111, 24, 55, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.hero-product {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.hero-product::before {
  content: "";
  position: absolute;
  width: min(86vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(246, 187, 184, 0.82));
  box-shadow: var(--shadow);
}

.hero-product img {
  position: relative;
  width: min(62vw, 320px);
  filter: drop-shadow(0 34px 36px rgba(93, 34, 48, 0.28));
}

section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 82px);
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: 38px;
  background: #fff;
}

.proof-band h2,
.section-heading h2,
.guarantee-band h2,
.faq h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.proof-grid article,
.offer-card,
.video-stack article,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(111, 24, 55, 0.08);
}

.proof-grid article {
  padding: 24px;
}

.proof-grid strong {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--rose);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.proof-grid p,
.offer-card li,
.faq p,
.guarantee-band p,
.section-heading p,
figcaption,
.installments {
  color: var(--muted);
  line-height: 1.6;
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 660px;
}

.media-section {
  background: linear-gradient(180deg, #fff8f6 0%, #fff 100%);
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 1.2fr);
  gap: 22px;
  align-items: start;
}

.result-card {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.result-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

figcaption {
  padding: 16px 18px 20px;
  font-size: 0.94rem;
}

.video-stack {
  display: grid;
  gap: 22px;
}

.video-stack article {
  padding: 18px;
}

.video-stack video {
  width: 100%;
  max-height: 480px;
  border-radius: 8px;
  background: #1c0e15;
}

.offer-section {
  background: #fff;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
}

.offer-card.best {
  border: 2px solid var(--green);
  background: linear-gradient(180deg, #f4fff9 0%, #ffffff 52%);
  transform: translateY(-12px);
}

.offer-card.complete {
  border-color: rgba(201, 149, 63, 0.55);
}

.offer-card h3 {
  min-height: 58px;
}

.price {
  margin-bottom: 4px;
  color: var(--rose-deep);
  font-size: 2rem;
  font-weight: 950;
}

.installments {
  min-height: 50px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.offer-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 18px;
}

.offer-card .button {
  width: 100%;
  margin-top: auto;
}

.guarantee-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1.2fr);
  gap: 28px;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-deep), #32111d);
}

.guarantee-band .section-kicker,
.guarantee-band p {
  color: #ffe0e7;
}

.guarantee-band strong {
  color: #fff;
}

.faq {
  max-width: 920px;
  margin: 0 auto;
}

details {
  margin-bottom: 14px;
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
}

.sticky-buy {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: min(92vw, 520px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #fff;
  background: rgba(38, 22, 32, 0.92);
  box-shadow: 0 16px 38px rgba(38, 22, 32, 0.26);
  backdrop-filter: blur(12px);
}

.sticky-buy span {
  padding-left: 8px;
  font-size: 0.92rem;
  font-weight: 800;
}

.sticky-buy a {
  flex: 0 0 auto;
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--rose-deep);
  background: #fff;
  font-weight: 950;
}

footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 44px 18px 96px;
  color: var(--muted);
  text-align: center;
  background: #fff;
}

footer img {
  width: 142px;
}

footer p {
  max-width: 660px;
  font-size: 0.92rem;
}

@media (max-width: 1180px) {
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-card.best {
    transform: none;
  }
}

@media (max-width: 820px) {
  .topbar {
    align-items: center;
  }

  nav {
    display: none;
  }

  .brand img {
    width: 118px;
  }

  .top-cta {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .hero,
  .proof-band,
  .media-layout,
  .guarantee-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-product {
    min-height: 420px;
  }

  .hero-product img {
    width: min(72vw, 270px);
  }

  .proof-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card h3,
  .installments {
    min-height: auto;
  }

  .sticky-buy {
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .hero-actions .button {
    width: 100%;
  }

  .sticky-buy span {
    font-size: 0.82rem;
  }

  .sticky-buy a {
    padding-inline: 13px;
  }
}
