:root {
  --rose-50: #fff8fb;
  --rose-100: #fdeaf2;
  --rose-200: #f8cedf;
  --rose-400: #df6a9e;
  --rose-500: #d94e89;
  --rose-700: #9e315f;
  --rose-900: #5d203d;
  --gold-300: #ead28e;
  --gold-500: #cda44a;
  --gold-700: #9e772c;
  --ink: #3e2430;
  --muted: #755c67;
  --white: #ffffff;
  --cream: #fffaf6;
  --shadow: 0 24px 70px rgba(94, 32, 61, .14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--rose-50);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: 96px 0;
}

.topbar {
  padding: 10px 16px;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, var(--rose-900), var(--rose-700));
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(205, 164, 74, .16);
  background: rgba(255, 248, 251, .88);
  backdrop-filter: blur(18px);
}

.header__content {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 164px;
  height: 55px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-weight: 700;
}

.nav > a:not(.nav__cta) {
  position: relative;
}

.nav > a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: .25s ease;
}

.nav > a:not(.nav__cta):hover::after {
  width: 100%;
}

.nav__cta {
  padding: 12px 21px;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  background: var(--rose-700);
  color: #fff;
  box-shadow: 0 12px 30px rgba(158, 49, 95, .2);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 12px;
  background: var(--rose-100);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--rose-900);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(234,210,142,.25), transparent 28%),
    linear-gradient(135deg, #fffafc 0%, #fdebf3 56%, #fff9ef 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.hero::before {
  width: 430px;
  height: 430px;
  right: -180px;
  top: -130px;
  background: rgba(205,164,74,.15);
}

.hero::after {
  width: 300px;
  height: 300px;
  left: -160px;
  bottom: -110px;
  background: rgba(217,78,137,.12);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--gold-700);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold-500);
}

.eyebrow--light {
  color: var(--gold-300);
}

.hero h1,
.section-heading h2,
.learning__copy h2,
.bonus__copy h2,
.certificate__copy h2,
.offer__summary h2,
.faq__intro h2,
.final-cta h2,
.guarantee h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.65rem, 5vw, 5.1rem);
}

.hero h1 em {
  color: var(--rose-700);
  font-style: normal;
}

.hero__lead {
  max-width: 660px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.13rem;
}

.hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero__benefits span {
  padding: 9px 13px;
  border: 1px solid rgba(205,164,74,.35);
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  color: var(--rose-900);
  font-size: .9rem;
  font-weight: 700;
}

.hero__offer {
  margin-bottom: 22px;
}

.hero__offer small {
  color: var(--gold-700);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 3px;
}

.price__old {
  color: #9b8790;
  text-decoration: line-through;
}

.price strong {
  display: block;
  color: var(--rose-900);
  font-size: 1.15rem;
}

.price strong b {
  font-size: 2.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rose-700), var(--rose-500));
  box-shadow: 0 18px 38px rgba(158,49,95,.28);
}

.btn--primary:hover {
  box-shadow: 0 24px 45px rgba(158,49,95,.34);
}

.btn--outline {
  border: 1px solid var(--rose-700);
  color: var(--rose-700);
  background: #fff;
}

.btn--light {
  color: var(--rose-900);
  background: #fff;
  box-shadow: 0 18px 40px rgba(55,22,38,.25);
}

.btn--full {
  width: 100%;
}

.microcopy {
  margin: 12px 0 0 16px;
  color: #8a737e;
  font-size: .82rem;
}

.hero__image-wrap {
  position: relative;
}

.hero__image-wrap > img {
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  min-width: 205px;
  padding: 16px 19px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(94,32,61,.16);
}

.floating-card strong {
  color: var(--rose-700);
}

.floating-card span {
  color: var(--muted);
  font-size: .84rem;
}

.floating-card--one {
  left: -30px;
  top: 15%;
}

.floating-card--two {
  right: -26px;
  bottom: 12%;
}

.trust-strip {
  border-block: 1px solid rgba(205,164,74,.2);
  background: #fff;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid > div {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border-right: 1px solid rgba(205,164,74,.18);
  text-align: center;
}

.trust-strip__grid > div:last-child {
  border-right: 0;
}

.trust-strip strong {
  color: var(--rose-900);
}

.trust-strip span {
  color: var(--muted);
  font-size: .85rem;
}

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

.section-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cards {
  display: grid;
  gap: 22px;
}

.cards--4 {
  grid-template-columns: repeat(4, 1fr);
}

.cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.testimonial {
  border: 1px solid rgba(205,164,74,.22);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 50px rgba(94,32,61,.07);
}

.info-card {
  padding: 32px 26px;
}

.info-card__number {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold-500);
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  font-weight: 800;
}

.info-card h3,
.deliverable h3 {
  margin-bottom: 10px;
  color: var(--rose-900);
  font-size: 1.15rem;
}

.info-card p,
.deliverable p,
.testimonial p {
  color: var(--muted);
}

.learning {
  background: #fff;
}

.learning__grid,
.bonus__grid,
.certificate__grid,
.offer__grid,
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.learning__visual img,
.certificate__visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.learning__copy h2,
.bonus__copy h2,
.certificate__copy h2,
.offer__summary h2,
.faq__intro h2 {
  margin-bottom: 26px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion__item {
  overflow: hidden;
  border: 1px solid rgba(205,164,74,.24);
  border-radius: 16px;
  background: #fff;
}

.accordion__item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.accordion__item button b {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--rose-700);
  transition: transform .25s ease;
}

.accordion__item.active button b {
  transform: rotate(45deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.accordion__content p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.learning__copy > .btn {
  margin-top: 26px;
}

.deliverables {
  background:
    radial-gradient(circle at 15% 20%, rgba(234,210,142,.25), transparent 30%),
    linear-gradient(180deg, var(--cream), var(--rose-50));
}

.deliverables__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.deliverable {
  padding: 30px 26px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 18px 50px rgba(94,32,61,.08);
}

.deliverable__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-500), var(--rose-500));
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.results {
  background: #fff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery figure {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--rose-100);
  box-shadow: 0 18px 45px rgba(94,32,61,.1);
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.gallery figcaption {
  padding: 18px 20px;
  color: var(--rose-900);
  background: #fff;
  font-weight: 800;
  text-align: center;
}

.bonus {
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(234,210,142,.18), transparent 28%),
    linear-gradient(135deg, var(--rose-900), var(--rose-700));
}

.bonus__copy p {
  margin-bottom: 22px;
  color: #f7dce8;
  font-size: 1.07rem;
}

.bonus__copy ul,
.offer__summary ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.bonus__copy li::before,
.offer__summary li::before {
  content: "✓";
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-right: 10px;
  border-radius: 50%;
  color: var(--rose-900);
  background: var(--gold-300);
  font-size: .82rem;
  font-weight: 900;
}

.bonus__visual img {
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(43,15,28,.35);
}

.certificate {
  background: var(--cream);
}

.certificate__copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.highlight-box {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(205,164,74,.28);
  border-radius: 15px;
  background: #fff;
}

.highlight-box strong {
  color: var(--rose-700);
}

.testimonials {
  background: #fff;
}

.testimonial {
  padding: 30px;
}

.stars {
  margin-bottom: 16px;
  color: var(--gold-500);
  letter-spacing: .18em;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.testimonial__author > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--rose-700);
  background: var(--rose-100);
  font-size: .7rem;
  font-weight: 800;
}

.testimonial__author div {
  display: flex;
  flex-direction: column;
}

.testimonial__author small {
  color: var(--muted);
}

.guarantee {
  background: linear-gradient(180deg, var(--rose-50), #fff);
}

.guarantee__box {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 34px;
  max-width: 920px;
  padding: 44px;
  border: 1px solid rgba(205,164,74,.28);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.guarantee__seal {
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  border: 8px double var(--gold-500);
  border-radius: 50%;
  color: var(--rose-700);
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 800;
}

.guarantee h2 {
  margin-bottom: 12px;
  font-size: 2.8rem;
}

.guarantee p {
  color: var(--muted);
}

.offer {
  background:
    radial-gradient(circle at 10% 15%, rgba(234,210,142,.18), transparent 28%),
    linear-gradient(135deg, #fff8fb, #f9dfeb);
}

.offer__summary ul {
  margin-top: 25px;
}

.offer__summary li::before {
  color: #fff;
  background: var(--rose-700);
}

.offer-card {
  max-width: 520px;
  margin-left: auto;
  padding: 38px;
  border: 1px solid rgba(205,164,74,.3);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.offer-card__tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--rose-900);
  background: var(--gold-300);
  font-weight: 800;
}

.offer-card__old {
  color: #9b8790;
  text-decoration: line-through;
}

.offer-card__price {
  display: block;
  margin: 4px 0;
  color: var(--rose-900);
  font-size: 1.2rem;
}

.offer-card__price b {
  font-size: 2.55rem;
}

.offer-card__cash {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
}

.secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 22px 0 12px;
  text-align: left;
}

.secure p {
  color: var(--muted);
  font-size: .86rem;
}

.offer-card > small {
  color: #99818c;
}

.checkout-section {
  background: #fff;
}

.checkout-box {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(205,164,74,.3);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fffafc, #fff7ef);
  box-shadow: var(--shadow);
}

.checkout-box iframe {
  width: 100%;
  min-height: 620px;
  border: 0;
  background: #fff;
}

#checkoutPlaceholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 14px;
  padding: 30px;
  text-align: center;
}

#checkoutPlaceholder strong {
  color: var(--rose-900);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

#checkoutPlaceholder p {
  color: var(--muted);
}

code {
  padding: 3px 7px;
  border-radius: 6px;
  color: var(--rose-700);
  background: var(--rose-100);
}

.faq__grid {
  align-items: start;
}

.faq {
  background: var(--cream);
}

.faq__intro {
  position: sticky;
  top: 130px;
}

.faq__intro p {
  color: var(--muted);
}

.final-cta {
  padding: 92px 0;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(234,210,142,.18), transparent 28%),
    linear-gradient(135deg, var(--rose-900), var(--rose-700));
  text-align: center;
}

.final-cta__content {
  max-width: 860px;
}

.final-cta h2 {
  margin-bottom: 30px;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

.footer {
  color: #eadde3;
  background: #2f1723;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr 1fr;
  gap: 50px;
  padding: 58px 0;
}

.footer img {
  width: 170px;
  height: 60px;
  margin-bottom: 14px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.footer__grid > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer__grid strong {
  margin-bottom: 8px;
  color: var(--gold-300);
}

.footer__grid a:hover {
  color: #fff;
}

.footer__bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 245px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-700), var(--rose-500));
  box-shadow: 0 18px 45px rgba(94,32,61,.34);
  font-weight: 800;
}

.floating-cta strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--rose-900);
  background: var(--gold-300);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

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

@media (max-width: 1040px) {
  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 4%;
    right: 4%;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    border: 1px solid rgba(205,164,74,.2);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 14px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero__grid,
  .learning__grid,
  .bonus__grid,
  .certificate__grid,
  .offer__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__benefits,
  .price {
    justify-content: center;
  }

  .microcopy {
    margin-left: 0;
  }

  .hero__visual {
    max-width: 760px;
    margin-inline: auto;
  }

  .cards--4,
  .deliverables__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq__intro {
    position: static;
    text-align: center;
  }

  .offer-card {
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }

  .topbar {
    font-size: .75rem;
  }

  .header__content {
    min-height: 70px;
  }

  .brand img {
    width: 135px;
    height: 48px;
  }

  .hero {
    padding-top: 66px;
  }

  .hero__grid {
    gap: 42px;
  }

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

  .hero__benefits span {
    width: 100%;
  }

  .price {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .btn {
    width: 100%;
    padding-inline: 20px;
  }

  .floating-card {
    position: static;
    min-width: 0;
    margin-top: 12px;
  }

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

  .trust-strip__grid > div {
    padding: 20px 12px;
  }

  .trust-strip__grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip__grid > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(205,164,74,.18);
  }

  .cards--4,
  .cards--3,
  .deliverables__grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .learning__grid,
  .bonus__grid,
  .certificate__grid,
  .offer__grid,
  .faq__grid {
    gap: 42px;
  }

  .learning__visual,
  .certificate__visual {
    order: -1;
  }

  .guarantee__box {
    grid-template-columns: 1fr;
    padding: 30px 24px;
    text-align: center;
  }

  .guarantee__seal {
    margin-inline: auto;
  }

  .offer-card {
    padding: 30px 22px;
  }

  .checkout-box,
  .checkout-box iframe {
    min-height: 500px;
  }

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

  .footer__bottom .container {
    flex-direction: column;
  }

  .floating-cta {
    right: 14px;
    left: 14px;
    bottom: 14px;
    display: flex;
    min-width: 0;
  }

  body {
    padding-bottom: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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