:root {
  --brand: #68243E;
  --brand-700: #4f1a2f;
  --ink: #1c1015;
  --muted: #6f5a63;
  --bg: #fbf7f9;
  --card: #ffffff;
  --accent: #d2a4b4;
  --accent-2: #f2e6ec;
  --shadow: 0 24px 60px rgba(104, 36, 62, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 800px at 10% -10%, #f7e8ee 0%, transparent 60%),
    radial-gradient(900px 700px at 110% 10%, #f1dde5 0%, transparent 60%),
    var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(104, 36, 62, 0.18), rgba(210, 164, 180, 0.08));
  filter: blur(2px);
  z-index: 0;
}

.hero-grid {
  display: grid;
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  grid-template-areas:
    "copy offer"
    "benefits offer";
  column-gap: 42px;
  row-gap: 20px;
}

.hero-copy-top {
  grid-area: copy;
  max-width: 680px;
}

.hero-copy-title {
  margin: 14px 0 0;
  font-size: clamp(2.2rem, 4.2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-copy-title span {
  display: block;
}

.hero-subheadline {
  margin: 18px 0 12px;
  color: var(--brand);
  font-size: clamp(1.6rem, 2.5vw, 1rem);
  line-height: 1.15;
}

.hero-copy-top .lead {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.5vw, 1rem);
  line-height: 1.25;
}

.hero-benefits {
  grid-area: benefits;
}

.hero-badges {
  width: 100%;
  max-width: 390px;
  margin: 0 0 16px;
  border-radius: 14px;
}

.hero-receive-title {
  margin: 0 0 6px;
  color: var(--brand);
  font-size: clamp(1.05rem, 1.3vw, 1.85rem);
  line-height: 1.2;
}

.hero-receive-list {
  margin: 0;
  padding-left: 25px;
  color: var(--ink);
  font-size: clamp(1.15rem, 0.7vw, 1.85rem);
  line-height: 1.32;
}

.hero-offer {
  grid-area: offer;
  display: grid;
  justify-items: stretch;
  align-content: start;
  max-width: 510px;
  width: 100%;
  margin-left: auto;
}

.hero-person {
  width: 100%;
  max-width: 280px;
  margin: 0 24px 0 auto;
  object-fit: contain;
}

.hero-offer .hero-price,
.hero-offer .hero-cta,
.hero-offer .hero-cta-note {
  width: 100%;
  max-width: 485px;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.3rem;
}

.card-title {
  font-size: 1.3rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 50ch;
}

.hero-price {
  margin-top: 0;
  padding: 14px 16px 11px;
  border-radius: 22px;
  border: 2px solid #e7c5d1;
  background: #fffafc;
  box-shadow: 0 12px 26px rgba(104, 36, 62, 0.08);
  display: grid;
  gap: 4px;
  width: 100%;
}

.hero-price-main {
  margin: 0;
  color: var(--brand);
  font-size: clamp(1.78rem, 2.35vw, 2.25rem);
  font-weight: 800;
  line-height: 1.1;
}

.hero-price-sub {
  margin: 5px 0 0 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.hero-price-note {
  margin: 0;
  color: #df4141;
  font-size: clamp(0.95rem, 1.1vw, 1.3rem);
  line-height: 1.2;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.hero-cta {
  flex-wrap: nowrap;
  margin-top: 12px;
}

.hero-cta .btn {
  white-space: normal;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.hero-cta-main {
  background: #07b433 !important;
  box-shadow: 0 14px 30px rgba(7, 180, 51, 0.24);
  font-size: clamp(1.25rem, 2.3vw, 1.40rem);
  letter-spacing: 0.01em;
  min-height: 60px;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.08;
}

.hero-cta-main:hover {
  background: #06a530;
}

.hero-cta-note {
  margin: 2px 0 0;
  text-align: center;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.2;
}

.btn {
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 18px 35px rgba(104, 36, 62, 0.25);
}

.btn-secondary {
  background: #fff;
  border: 1px solid #e3c6d0;
  color: var(--brand-700);
}

.btn:hover {
  transform: translateY(-2px);
}

section {
  padding: 56px 0;
}

.video-context {
  background: #fff;
  border-top: 1px solid #f0dfe6;
  border-bottom: 1px solid #f0dfe6;
}

.video-context .lead {
  max-width: none;
}

.video-box {
  margin-top: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.video-thumb {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-badge {
  position: absolute;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(104, 36, 62, 0.88);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.play-badge::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.ratio {
  position: relative;
  padding-top: 56.25%;
}

.ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid #f0dfe6;
  box-shadow: 0 12px 30px rgba(104, 36, 62, 0.08);
}

.section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-2);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1px solid #e9cfd8;
  flex-shrink: 0;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list li::before {
  content: "◆";
  color: var(--brand);
  font-size: 0.8rem;
  margin-top: 6px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-2);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--brand-700);
  font-weight: 600;
  margin-bottom: 12px;
}

.offer {
  background: linear-gradient(130deg, #fff, #f9edf2);
  border: 1px solid #f1d7e1;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.price-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #ead0d9;
  background: #fff;
  box-shadow: 0 10px 24px rgba(104, 36, 62, 0.06);
  text-align: center;
  grid-column: 1 / -1;
  width: 100%;
}

.price-box .btn {
  justify-content: center;
}

.price-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  font-weight: 700;
}

.price-main {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--brand);
  margin: 8px 0 20px;
}

.price-sub {
  color: var(--muted);
  margin: 0 0 10px;
  font-size: 1rem;
}

.price-support {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 14px;
}

.price-note {
  display: block;
  font-size: 0.6em;
  font-weight: 600;
  line-height: 0.3em;
}

.mid-cta {
  text-align: center;
}

.mid-cta .card {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.faq {
  display: grid;
  gap: 16px;
}

.faq details {
  background: var(--card);
  border: 1px solid #f0dfe6;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 10px 24px rgba(104, 36, 62, 0.06);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  content: "?";
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: var(--accent-2);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1px solid #e9cfd8;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

.certificate-img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #f0dfe6;
  background: #fff;
  box-shadow: 0 12px 26px rgba(104, 36, 62, 0.08);
}

.image-card {
  padding: 0;
  overflow: hidden;
}

.card.image-card.plain {
  background: var(--card);
  border: none;
  box-shadow: 0 12px 30px rgba(104, 36, 62, 0.08);
}

.image-card.shrink img {
  width: 50%;
  margin: 0 auto;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-card.contain img {
  object-fit: contain;
  background: #fff;
  padding: 16px;
  width: 70%;
  margin: 0 auto;
}

.final-cta {
  text-align: center;
  padding-bottom: 80px;
}

.final-cta .lead {
  max-width: none;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e7cfd8, transparent);
  margin: 12px 0 20px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero {
    padding: 48px 0 32px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "offer"
      "benefits";
    row-gap: 12px;
  }

  .hero-copy-top {
    max-width: none;
  }

  .hero-copy-top .lead {
    max-width: 100%;
  }

  .hero-offer {
    max-width: none;
    margin-left: 0;
  }

  .hero-offer .hero-price,
  .hero-offer .hero-cta,
  .hero-offer .hero-cta-note {
    max-width: 460px;
  }

  .hero-person {
    max-width: 220px;
    margin: 0 auto;
  }

  .hero-price-main {
    font-size: clamp(1.65rem, 4.6vw, 2.1rem);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 22px 0 16px;
  }

  .hero::after {
    display: none;
  }

  .hero-layout {
    row-gap: 10px;
  }

  .hero-grid {
    gap: 10px;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
    text-align: center;
  }

  .hero-cta .btn {
    white-space: normal;
  }

  .hero-price {
    margin-top: 0;
    padding: 10px 11px 9px;
    border-radius: 16px;
  }

  .hero-price-main {
    font-size: 1.48rem;
  }

  .hero-price-sub {
    font-size: 0.7rem;
  }

  .hero-price-note {
    font-size: 0.82rem;
  }

  .hero-cta-main {
    min-height: 50px;
    font-size: 1.01rem;
    padding: 9px 12px;
  }

  .hero-copy-title {
    margin-top: 10px;
    font-size: 24px;
    line-height: 1.1;
  }

  .hero-subheadline {
    margin-top: 10px;
    margin-bottom: 8px;
    font-size: 1.17rem;
  }

  .hero-copy-top .lead {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.26;
  }

  .eyebrow {
    font-size: 0.69rem;
    letter-spacing: 0.05em;
  }

  .hero-badges {
    max-width: 320px;
    margin: 0 auto 12px;
  }

  .hero-receive-title {
    margin-bottom: 4px;
    font-size: 1.08rem;
  }

  .hero-receive-list {
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.24;
  }

  .hero-person {
    max-width: 120px;
    margin: 0 auto;
  }

  .hero-cta-note {
    margin-top: 4px;
    font-size: 0.8rem;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .price-box {
    grid-column: auto;
  }

  .section-tight-top {
    padding-top: 12px;
  }

  .section-tight-bottom {
    padding-bottom: 12px;
  }

  .lead {
    margin: 0;
    font-size: 1rem;
    line-height: 1.42;
  }

  .cta-row.hero-cta {
    margin-top: 10px;
  }

  h2 {
    font-size: 1.4rem;
    line-height: 1.25;
  }

  h3 {
    line-height: 1.25;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}