:root {
  color-scheme: light;
  --ink: #21312c;
  --muted: #65746f;
  --line: #e5ded9;
  --paper: #fffaf5;
  --white: #ffffff;
  --rose: #f0608d;
  --rose-dark: #ba2f63;
  --plum: #6a3f83;
  --mint: #e8f7ef;
  --teal: #2f766d;
  --honey: #f8c35a;
  --lilac: #f0e6f6;
  --shadow: 0 20px 60px rgba(71, 45, 38, 0.14);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 10px 18px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.top-strip span + span::before {
  content: "•";
  margin-right: 16px;
  color: var(--honey);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: clamp(18px, 3vw, 30px);
  max-width: 980px;
  min-height: calc(100svh - 38px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) 24px 26px;
  text-align: center;
}

.hero-copy {
  display: grid;
  justify-items: center;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.25vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 620px;
  color: #465650;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin: 18px 0;
}

.hero-benefits span {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid #dbe8df;
  border-radius: var(--radius);
  background: var(--mint);
  color: #244842;
  font-weight: 800;
}

.hero-offer {
  display: grid;
  gap: 4px;
  max-width: 460px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid #efc7d4;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-offer small,
.hero-offer span,
.plan small {
  color: var(--muted);
  font-weight: 700;
}

.hero-offer strong {
  color: var(--rose-dark);
  font-size: clamp(1.42rem, 2.5vw, 1.84rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.primary {
  background: var(--rose-dark);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(186, 47, 99, 0.24);
}

.primary:hover {
  background: #a72557;
}

.secondary {
  border: 1px solid #d4c5d9;
  background: var(--white);
  color: var(--plum);
}

.text-link {
  color: var(--teal);
  font-weight: 900;
}

.access-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-visual {
  margin: 0;
  max-width: 520px;
  justify-self: center;
}

.hero-visual img {
  width: 100%;
  max-height: 280px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.section-pad {
  padding: clamp(54px, 7vw, 92px) 24px;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

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

.narrow {
  max-width: 720px;
}

.demo {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.steps article,
.situations article,
.package-grid article,
.contrast article,
.plan {
  text-align: center;
}

.steps article,
.situations article,
.package-grid article,
.plan,
.contrast article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.steps article {
  position: relative;
  overflow: hidden;
}

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

.steps span {
  position: absolute;
  top: 10px;
  left: 50%;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
  transform: translateX(-50%);
}

.steps h3,
.steps p {
  padding-right: 16px;
  padding-left: 16px;
}

.steps h3 {
  margin-top: 16px;
}

.steps p {
  margin-bottom: 18px;
  color: var(--muted);
}

.problem {
  background: #fff3f7;
}

.situations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}

.situations article {
  padding: 24px;
}

.situations p,
.solution p,
.package-grid li,
.proof p,
.plan p,
.plan li,
.faq p,
.final-cta p,
footer span {
  color: var(--muted);
}

.solution {
  background: var(--paper);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

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

.contrast article {
  padding: 22px;
}

.contrast span {
  display: block;
  margin-bottom: 8px;
  color: var(--plum);
  font-weight: 900;
}

.package {
  background: var(--mint);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}

.package-grid article {
  padding: 26px;
}

.package-grid ul,
.plan ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.package-grid li,
.plan li {
  position: relative;
  padding-left: 0;
}

.package-grid li::before,
.plan li::before {
  content: none;
}

.proof {
  background: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto 26px;
}

.gallery figure {
  margin: 0;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
}

.gallery figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  text-align: center;
}

.video-block {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(360px, 0.75fr);
  gap: 24px;
  align-items: center;
  max-width: 980px;
  margin: 38px auto 0;
  padding: 24px;
  border: 1px solid #eadbe7;
  border-radius: var(--radius);
  background: #fbf4fb;
  text-align: center;
}

.video-block video {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 560px;
  margin-left: auto;
  border-radius: var(--radius);
  background: #22172b;
}

.offer {
  background: var(--paper);
}

.plans {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: 18px;
  align-items: start;
  max-width: 1030px;
  margin: 0 auto;
}

.plan .plan-badge {
  margin-right: auto;
  margin-left: auto;
}

.plan {
  position: relative;
  padding: 28px;
  box-shadow: 0 14px 40px rgba(71, 45, 38, 0.08);
}

.plan.featured {
  border: 2px solid var(--rose-dark);
  background: linear-gradient(180deg, #fff, #fff7fa);
}

.plan.basic {
  margin-top: 28px;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: var(--rose-dark);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.plan-badge.subtle {
  background: var(--lilac);
  color: var(--plum);
}

.price {
  display: block;
  margin: 18px 0 2px;
  color: var(--rose-dark);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.95;
}

.plan .button {
  width: 100%;
  margin-top: 22px;
}

.guarantee-faq {
  background: var(--white);
}

.guarantee-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto 28px;
  padding: 26px;
  border: 1px solid #d8eadf;
  border-radius: var(--radius);
  background: var(--mint);
  text-align: center;
}

.guarantee-box h2 {
  margin-bottom: 10px;
}

.guarantee-box p {
  max-width: 680px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: #47625b;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  will-change: opacity, transform;
}

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

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-delay-3 {
  transition-delay: 230ms;
}

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

  .button,
  .reveal {
    transition: none;
  }

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

.guarantee-box strong {
  display: inline-grid;
  min-width: 150px;
  min-height: 110px;
  place-items: center;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--white);
  font-size: 1.18rem;
  text-align: center;
}

.faq {
  display: grid;
  gap: 10px;
  max-width: 980px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

summary::marker {
  color: var(--rose-dark);
}

details p {
  margin: 0;
  padding: 0 20px 18px;
}

.final-cta {
  padding: clamp(54px, 7vw, 86px) 24px;
  background: #432951;
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0 auto 14px;
}

.final-cta p {
  margin-bottom: 22px;
  color: #efe5f6;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px 24px;
  background: var(--ink);
  color: var(--white);
}

.mobile-buy {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 14px;
  border-radius: var(--radius);
  background: rgba(33, 49, 44, 0.96);
  color: var(--white);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.mobile-buy span {
  font-weight: 900;
}

.mobile-buy a {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--honey);
  color: #352512;
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

@media (max-width: 940px) {
  .hero,
  .solution-grid,
  .video-block,
  .plans,
  .guarantee-box {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    max-width: 480px;
    justify-self: center;
  }

  .hero-visual img {
    max-height: 300px;
  }

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

  .situations,
  .package-grid,
  .contrast {
    grid-template-columns: 1fr;
  }

  .plan.basic {
    margin-top: 0;
  }

  .video-block video {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 78px;
  }

  .top-strip {
    flex-direction: column;
    gap: 2px;
    font-size: 0.72rem;
  }

  .top-strip span + span::before {
    content: "";
    margin: 0;
  }

  .hero {
    gap: 20px;
    padding-top: 26px;
    padding-right: 18px;
    padding-left: 18px;
  }

  h1 {
    font-size: clamp(1.92rem, 9vw, 2.55rem);
  }

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

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }

  .steps,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 14px 0;
  }

  .hero-benefits span {
    min-height: 34px;
    padding: 7px 8px;
    font-size: 0.82rem;
  }

  .hero-offer {
    padding: 14px;
  }

  .hero-visual {
    max-width: 100%;
  }

  .hero-visual img {
    max-height: 190px;
    aspect-ratio: 16 / 9;
  }

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

  .section-pad {
    padding-right: 18px;
    padding-left: 18px;
  }

  .situations article,
  .package-grid article,
  .plan,
  .guarantee-box,
  .video-block {
    padding: 20px;
  }

  .guarantee-box strong {
    width: 100%;
    min-height: 78px;
  }

  .mobile-buy {
    display: flex;
  }
}
