:root {
  --pink-dark: #c60055;
  --pink: #f32c82;
  --purple: #645cc7;
  --purple-certificate: #6d35c4;
  --green: #29cb40;
  --green-dark: #11a125;
  --navy: #001638;
  --coral: #f09985;
  --wine: #ba4e67;
  --text: #1e1e1e;
  --muted: #4f4f4f;
  --white: #fff;
  --max-width: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.55;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p, h1, h2, h3, h4 { margin-top: 0; }

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.container--text { max-width: 980px; }
.section { padding: 64px 0; }

.deadline {
  display: grid;
  min-height: 50px;
  place-items: center;
  padding: 9px 20px;
  color: #fff;
  background: #000;
  text-align: center;
}

.deadline p { margin: 0; font-size: 14px; font-weight: 700; }

.hero {
  padding: 34px 0 58px;
  color: #fff;
  background: linear-gradient(180deg, var(--pink-dark), var(--pink));
  text-align: center;
}

.hero__content { max-width: 1050px; }
.hero h1 { max-width: 940px; margin: 0 auto 26px; font-size: 32px; line-height: 1.25; }
.hero__subtitle { max-width: 920px; margin: 0 auto 22px; font-size: 18px; line-height: 1.45; }
.hero__price { margin-bottom: 10px; font-family: "Montserrat", sans-serif; font-size: 27px; font-weight: 700; }
.hero__mockup { width: min(640px, 90%); aspect-ratio: 19 / 12; margin: 0 auto 22px; object-fit: contain; }

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 15px 38px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(180deg, #3da24b, #328b3f);
  box-shadow: 0 5px 0 rgba(0, 92, 18, .38);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button:hover, .button:focus-visible { background: var(--green-dark); }
.button--large { padding: 20px 34px; background: var(--green); font-family: "Montserrat", sans-serif; font-size: 25px; }

.story { text-align: center; }
.story h2 { margin-bottom: 28px; color: #282828; font-size: 36px; line-height: 1.3; }
.prose { font-size: 19px; }
.prose p:last-child { margin-bottom: 0; }

.course { padding: 54px 0; background: var(--pink-dark); }
.course__card { padding: 44px 70px; border-radius: 4px; background: linear-gradient(180deg, #f2f2f2, #fff); }
.course__title { margin-bottom: 28px; text-align: center; font-size: 25px; }
.check-list { max-width: 850px; margin: 0 auto; padding: 0; list-style: none; font-size: 18px; }
.check-list li { position: relative; margin: 10px 0; padding-left: 32px; }
.check-list li::before { content: "✔"; position: absolute; left: 0; color: #181818; font-weight: 700; }
.recipes { margin-top: 38px; padding-top: 30px; border-top: 1px solid #d7d7d7; text-align: center; }
.recipes h3 { font-size: 22px; }
.recipes__columns { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; text-align: left; }
.recipes h4 { margin-bottom: 10px; text-align: center; font-size: 17px; }
.recipes ul { margin: 0; padding: 0; list-style: none; text-align: center; }

.section-title { max-width: 900px; margin: 0 auto 38px; font-size: 27px; line-height: 1.3; text-align: center; }
.section-title--dark { color: #313131; }
.videos { text-align: center; }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.video-frame { overflow: hidden; aspect-ratio: 16 / 9; background: #000; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-facade { position: relative; display: block; width: 100%; height: 100%; color: #fff; background: #000; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; opacity: .92; }
.video-play { position: absolute; inset: 50% auto auto 50%; width: 74px; height: 52px; border-radius: 14px; background: #f00; box-shadow: 0 4px 16px rgba(0,0,0,.35); transform: translate(-50%, -50%); }
.video-play::after { content: ""; position: absolute; top: 50%; left: 52%; border-top: 12px solid transparent; border-bottom: 12px solid transparent; border-left: 20px solid #fff; transform: translate(-42%, -50%); }
.video-facade:focus-visible { outline: 4px solid #fff; outline-offset: -4px; }
.videos__copy { max-width: 900px; margin: 34px auto 25px; font-size: 20px; }

.social-proof { background: linear-gradient(135deg, #f0ede9, #fff8eb); text-align: center; }
.proof-grid { display: grid; grid-template-columns: .9fr .9fr 1.2fr; align-items: start; gap: 22px; margin-bottom: 34px; }
.proof-grid > img, .proof-grid__stack img { width: 100%; border-radius: 11px; box-shadow: 0 8px 22px rgba(40, 20, 10, .18); }
.proof-grid__stack { display: grid; gap: 22px; }

.certificate { color: #fff; background: var(--purple-certificate); text-align: center; }
.certificate h2 { margin-bottom: 34px; font-size: 46px; line-height: 1.15; }
.certificate img { width: min(600px, 100%); margin: 0 auto; }

.bonuses h2 { margin-bottom: 55px; color: #383838; font-size: 46px; text-align: center; }
.bonus { display: grid; grid-template-columns: 320px 1fr; align-items: center; gap: 55px; max-width: 960px; margin: 0 auto; padding: 42px 0; border-bottom: 1px solid #ece7e2; }
.bonus:last-child { border-bottom: 0; }
.bonus img { width: 100%; max-height: 360px; object-fit: cover; }
.bonus__number { margin-bottom: 4px; color: var(--coral); font-size: 25px; font-weight: 700; letter-spacing: 1.7px; }
.bonus h3 { margin-bottom: 12px; color: var(--wine); font-size: 27px; line-height: 1.08; }
.bonus__price { margin-bottom: 18px; color: var(--coral); font-size: 30px; font-weight: 500; }
.bonus p:not([class]) { color: var(--muted); }

.offers { color: #fff; background: var(--purple); }
.container--offers { max-width: 720px; }
.offers h2 { margin-bottom: 42px; font-size: 43px; line-height: 1.15; text-align: center; }
.offer-card { overflow: hidden; margin: 0 auto 38px; padding: 34px 48px; border-radius: 12px; color: #222; background: #fff; box-shadow: 0 8px 25px rgba(20, 18, 75, .23); text-align: center; }
.offer-card h3 { margin-bottom: 22px; font-family: "Montserrat", sans-serif; font-size: 33px; line-height: 1; }
.offer-card__limited { margin: 0 -48px 28px; padding: 8px 16px; color: #fff; background: #df1d3e; font-size: 22px; font-weight: 700; }
.offer-list { margin: 0 0 30px; padding: 0; list-style: none; color: #575757; font-family: "Roboto", Arial, sans-serif; font-size: 19px; text-align: left; }
.offer-list li { position: relative; margin: 15px 0; padding-left: 30px; }
.offer-list li::before { content: "✅"; position: absolute; left: 0; }
.offer-list .bonus-item::before { content: "🏆"; }
.offer-card__from { margin-bottom: 0; color: #94675c; font-size: 25px; }
.offer-card__price { margin: 0 0 22px; color: #008d2d; font-size: 76px; font-weight: 700; line-height: 1; }
.button--offer { background: var(--green); font-family: "Montserrat", sans-serif; font-size: 22px; }
.offer-card__aside { margin: 28px 0 0; color: #8d2006; font-size: 20px; line-height: 1.15; }
.payment-methods { width: min(420px, 100%); margin: 28px auto 0; }

.guarantee { color: #fff; background: var(--navy); }
.guarantee__layout { display: grid; grid-template-columns: 320px 1fr; align-items: center; gap: 50px; }
.guarantee h2 { color: #00ccff; font-family: "Montserrat", sans-serif; font-size: 26px; line-height: 1.35; }
.guarantee p { margin-bottom: 10px; font-family: "Montserrat", sans-serif; }

.container--faq { max-width: 900px; }
.faq h2 { margin-bottom: 30px; color: #ba1919; font-family: "Lobster", cursive; font-size: 42px; font-weight: 400; text-align: center; }
.faq details { border-bottom: 1px solid #eadedc; }
.faq summary { position: relative; padding: 18px 46px 18px 4px; color: #8f292a; cursor: pointer; font-size: 17px; font-weight: 600; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; top: 13px; right: 8px; font-size: 26px; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details div { padding: 0 40px 18px 4px; color: #474141; }

footer { padding: 28px 0; color: #fff; background: var(--pink-dark); text-align: center; }
footer p { margin: 5px 0; font-size: 13px; }

@media (max-width: 820px) {
  .section { padding: 50px 0; }
  .hero h1 { font-size: 28px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid__stack { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .bonus { grid-template-columns: 240px 1fr; gap: 34px; }
  .guarantee__layout { grid-template-columns: 240px 1fr; gap: 30px; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .deadline { min-height: 58px; padding: 10px 14px; }
  .deadline p { font-size: 13px; }
  .hero { padding: 28px 0 44px; }
  .hero h1 { margin-bottom: 20px; font-size: 27px; line-height: 1.28; }
  .hero__subtitle { font-size: 17px; line-height: 1.45; }
  .hero__price { font-size: 23px; line-height: 1.25; }
  .hero__mockup { width: 100%; margin-bottom: 16px; }
  .button, .button--large, .button--offer { width: 100%; min-height: 64px; padding: 17px 15px; font-size: 20px; }
  .story h2 { font-size: 34px; line-height: 1.12; }
  .prose { font-size: 18px; text-align: left; }
  .course { padding: 45px 0; }
  .course__card { padding: 32px 22px; }
  .course__title { font-size: 23px; line-height: 1.3; }
  .check-list { font-size: 17px; }
  .recipes__columns { grid-template-columns: 1fr; gap: 28px; }
  .video-grid, .proof-grid, .proof-grid__stack { grid-template-columns: 1fr; }
  .proof-grid__stack { grid-column: auto; }
  .section-title { font-size: 23px; line-height: 1.2; }
  .videos__copy { font-size: 18px; }
  .certificate h2, .bonuses h2, .offers h2 { font-size: 34px; line-height: 1.12; }
  .bonus { grid-template-columns: 1fr; gap: 25px; padding: 38px 0; text-align: center; }
  .bonus img { width: 220px; max-height: 330px; margin: 0 auto; }
  .bonus__number { font-size: 20px; }
  .bonus h3 { font-size: 25px; }
  .bonus__price { font-size: 29px; }
  .offer-card { padding: 30px 22px; }
  .offer-card h3 { font-size: 30px; }
  .offer-card__limited { margin: 0 -22px 26px; font-size: 19px; }
  .offer-list { font-size: 17px; }
  .offer-card__from { font-size: 20px; }
  .offer-card__price { font-size: 58px; }
  .offer-card__aside { font-size: 18px; }
  .guarantee__layout { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .guarantee__layout img { width: 280px; margin: 0 auto; }
  .guarantee h2 { font-size: 23px; }
  .guarantee p { font-size: 15px; }
  .faq h2 { font-size: 38px; }
  .faq summary { font-size: 16px; line-height: 1.35; }
}

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