:root {
  --navy: #000f33;
  --navy-2: #0e3186;
  --sky: #69b4e0;
  --orange: #ff8108;
  --orange-hover: #e87300;
  --lavender: #d2daee;
  --peach: #ffd9b1;
  --bg: #f4f4f4;
  --surface: #ffffff;
  --ink: #000f33;
  --muted: #5b6478;
  --line: rgba(0, 15, 51, 0.1);
  --radius: 32px;
  --radius-sm: 20px;
  --shadow: 0 18px 40px rgba(0, 15, 51, 0.08);
  --header: 84px;
  --d: 0s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--bg);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}

.blob--lavender {
  width: 620px;
  height: 480px;
  left: -180px;
  top: 18%;
  background: #d2daee;
  opacity: 0.7;
}

.blob--peach {
  width: 520px;
  height: 420px;
  right: -160px;
  top: 62%;
  background: #ffd9b1;
  opacity: 0.55;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

h1,
h2,
h3,
.logo__text,
.price-card__old,
.price-card__value,
.stat strong,
.lesson__num {
  font-family: "Montserrat", "Manrope", sans-serif;
}

h1,
h2 {
  letter-spacing: -0.03em;
  line-height: 1.14;
}

h1 {
  font-size: clamp(32px, 4.8vw, 54px);
  font-weight: 800;
  margin: 16px 0 20px;
}

h1 em,
h2 em {
  font-style: normal;
  color: var(--orange);
}

h2 {
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 800;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
  margin: 18px 0 10px;
  font-weight: 800;
}

.lead,
.section-lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-2);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 129, 8, 0.2);
}

.section-head {
  max-width: 820px;
  margin-bottom: 40px;
}

.section-head h2 {
  margin: 0 0 16px;
}

.results .section-head,
.bonus .section-head,
.errors .section-head,
.program .section-head {
  margin-inline: auto;
  text-align: center;
}

.results .section-lead,
.bonus .section-lead {
  margin-inline: auto;
}

.results h2 em {
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(255, 129, 8, 0.28);
}

.btn:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  box-shadow: none;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--sm {
  min-height: 46px;
  padding: 0 18px;
  font-size: 14px;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: #fff;
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(0, 15, 51, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.logo__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--navy);
  color: var(--orange);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.logo__text {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}

.logo__text span {
  color: var(--orange);
}

.logo__text--light {
  color: #fff;
}

.logo__text--light span {
  color: var(--orange);
}

.nav {
  display: flex;
  gap: 22px;
  font-weight: 700;
  color: var(--muted);
}

.nav a:hover {
  color: var(--navy);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  position: relative;
}

.burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--navy);
}

.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }

.hero {
  padding: 28px 0 20px;
}

.hero__panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  overflow: hidden;
  border-radius: 36px;
  min-height: 400px;
  background: var(--navy);
  color: #fff;
  position: relative;
  isolation: isolate;
}

.hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 280px at 20% 120%, rgba(105, 180, 224, 0.22), transparent 60%),
    linear-gradient(180deg, transparent 40%, rgba(14, 49, 134, 0.35));
  pointer-events: none;
}

.hero__main {
  position: relative;
  z-index: 1;
  padding: 40px 32px 32px 40px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(26px, 4vw, 44px);
  margin: 12px 0 14px;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  font-size: 16px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero__actions .btn {
  min-height: 48px;
  padding: 0 22px;
}

.hero .eyebrow {
  color: var(--peach);
}

.hero .eyebrow::before {
  background: var(--orange);
}

.hero__side {
  position: relative;
  z-index: 1;
  background: var(--orange);
  padding: 28px 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.hero__art {
  width: min(280px, 100%);
  margin: 0 auto;
  pointer-events: none;
}

.hero__art img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__pills {
  display: grid;
  gap: 14px;
  width: 100%;
  margin-top: 48px;
}

.hero__pills li {
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.2;
  padding-left: 38px;
  position: relative;
}

.hero__pills li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='white' stroke-width='2' d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E") center / 13px no-repeat;
}

.dark-panel {
  background: var(--navy);
  color: #fff;
  border-radius: 40px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.system__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 156px;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.system__head .section-head {
  max-width: none;
  margin-bottom: 0;
}

.dark-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 220px at 90% 10%, rgba(255, 129, 8, 0.18), transparent 60%);
  pointer-events: none;
}

.dark-panel > * {
  position: relative;
  z-index: 1;
}

.dark-panel h2,
.dark-panel .section-lead,
.final h2 {
  color: #fff;
}

.dark-panel .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form label span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.lead-form input[type="text"] {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 14px;
  background: #f4f4f4;
}

.lead-form input:focus {
  outline: 2px solid rgba(255, 129, 8, 0.28);
  border-color: var(--orange);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.check input {
  margin-top: 3px;
}

.stats {
  padding: 48px 0 40px;
}

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

.stat {
  text-align: center;
  padding: 12px 8px;
}

.stat strong {
  display: block;
  font-size: clamp(40px, 5vw, 58px);
  color: var(--orange);
  margin-bottom: 8px;
  font-weight: 800;
}

.stat span {
  display: block;
  font-weight: 800;
  color: var(--navy);
  font-size: 15px;
}

.offer,
.problem,
.results,
.feature,
.program,
.value,
.bonus,
.errors,
.audience,
.why,
.price,
.faq,
.system,
.imagine,
.final {
  padding: 72px 0;
}

.offer {
  padding-top: 12px;
}

.offer__grid,
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(200px, 0.62fr);
  gap: 28px;
  align-items: stretch;
}

.feature__col {
  display: flex;
  padding-block: 28px;
  box-sizing: border-box;
}

.offer__text,
.value__box,
.why__box,
.price-card,
.dark-panel {
  position: relative;
}

.illus {
  display: block;
  pointer-events: none;
  user-select: none;
}

.illus-wrap {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 84px;
  height: 84px;
  overflow: visible;
  background: transparent;
}

.illus-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.offer__copy {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.offer__copy-text {
  min-width: 0;
}

.illus--offer {
  width: 112px;
  flex-shrink: 0;
  margin: 0;
}

.illus--feature {
  width: 110px;
  flex-shrink: 0;
  margin: 0;
}

.illus--value {
  position: absolute;
  right: 28px;
  top: 18px;
  width: 92px;
}

.illus--why {
  position: absolute;
  right: 24px;
  top: 16px;
  width: 100px;
}

.illus--price {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 88px;
}

.illus--system {
  width: 156px;
  justify-self: end;
}

.illus--final {
  width: 92px;
  margin: 0 auto 18px;
}

.faq .section-head {
  max-width: none;
  margin-bottom: 0;
}

.faq .section-head h2 {
  margin-bottom: 0;
}

.illus--faq {
  width: 168px;
  margin-top: 28px;
}

.value__box,
.why__box,
.price-card {
  padding-right: 120px;
}

.highlight-line,
.offer__end,
.problem__accent,
.feature__strong,
.why__accent,
.errors__note,
.value__note {
  font-weight: 800;
}

.offer__end,
.feature__strong,
.why__accent {
  margin-top: 16px;
  font-size: 20px;
}

.problem__accent {
  margin-top: 16px;
}

.problem {
  position: relative;
}

.problem__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 8px;
  align-items: center;
  margin-bottom: 40px;
}

.problem__head .section-head {
  max-width: none;
  margin-bottom: 0;
}

.illus--problem {
  width: 180px;
  transform: translateX(-28px);
}

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

.question-grid li {
  background: #fff;
  border-radius: 24px;
  padding: 22px 20px;
  font-weight: 700;
  min-height: 96px;
  box-shadow: var(--shadow);
}

.question-grid__last {
  background: var(--orange) !important;
  color: #fff;
}

.problem__bottom {
  margin-top: 28px;
  max-width: 760px;
}

.path-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 32px;
  align-items: stretch;
  margin: 36px 0 28px;
}

.path-flow__item {
  position: relative;
  display: flex;
}

.path-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: var(--orange);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.path-flow__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  min-height: 72px;
  padding: 12px 10px;
  border-radius: 24px;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.3;
  color: var(--navy);
  background: var(--lavender);
}

.system__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.system__notes li {
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 14px;
}

.cards-8,
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.info-card,
.bonus-card {
  position: relative;
  padding: 26px 24px 88px;
  border-radius: 28px;
  min-height: 240px;
  transition: transform 0.2s ease;
}

.info-card::after,
.bonus-card::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 16px;
  height: 16px;
  background: currentColor;
  opacity: 0.85;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17L17 7M8 7h9v9'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17L17 7M8 7h9v9'/%3E%3C/svg%3E") center / contain no-repeat;
}

.info-card:hover,
.bonus-card:hover,
.question-grid li:hover,
.lesson:hover,
.faq-item:hover {
  transform: translateY(-3px);
}

.info-card--navy,
.bonus-card--navy {
  background: var(--navy);
  color: #fff;
}

.info-card--orange,
.bonus-card--orange {
  background: var(--orange);
  color: #fff;
}

.info-card--lavender,
.bonus-card--lavender {
  background: var(--lavender);
  color: var(--navy);
}

.info-card--navy p,
.info-card--orange p,
.bonus-card--navy p,
.bonus-card--orange p {
  color: rgba(255, 255, 255, 0.86);
}

.info-card--lavender p,
.bonus-card--lavender p {
  color: var(--muted);
}

.info-card__icon {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.16);
  color: inherit;
}

.info-card--lavender .info-card__icon {
  background: rgba(14, 49, 134, 0.12);
  color: var(--navy-2);
}

.know-list {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  gap: 10px;
  flex: 1;
  width: 100%;
}

.know-list li {
  background: #fff;
  border-radius: 18px;
  padding: 12px 18px;
  font-weight: 800;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
}

.feature__banner,
.value__box,
.why__box,
.price-card,
.lesson,
.faq-item,
.fit {
  background: #fff;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.feature__banner {
  margin-top: 20px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature__banner-text {
  min-width: 0;
}

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

.lesson,
.faq-item {
  overflow: hidden;
  border-radius: 24px;
}

.lesson summary,
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  font-weight: 800;
}

.lesson summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.lesson p,
.faq-item p {
  padding: 0 22px 20px 74px;
  color: var(--muted);
}

.lesson__num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lavender);
  color: var(--navy-2);
  font-size: 13px;
  font-weight: 800;
}

.value__box,
.why__box {
  padding: 48px 120px 48px 48px;
}

.value__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 18px;
}

.value__steps span {
  background: var(--lavender);
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  line-height: 1.2;
}

.error-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.error-list li {
  padding: 18px 18px 18px 48px;
  border-radius: 20px;
  background: #fff;
  position: relative;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.error-list li::before {
  content: "!";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 13px;
}

.errors__foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.errors__note {
  margin: 0;
  max-width: none;
}

.illus--errors {
  width: 168px;
  justify-self: end;
}

.audience__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.fit {
  padding: 32px;
}

.fit ul {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.fit li {
  padding-left: 28px;
  position: relative;
}

.fit--yes li::before,
.fit--no li::before {
  position: absolute;
  left: 0;
  font-weight: 800;
}

.fit--yes li::before { content: "✓"; color: #17824b; }
.fit--no li::before { content: "✕"; color: var(--peach); }

.fit--no {
  background: var(--navy);
  color: #fff;
  box-shadow: none;
}

.fit--no .eyebrow {
  color: var(--peach);
}

.imagine__list {
  display: grid;
  gap: 14px;
}

.imagine__list li {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  font-weight: 800;
}

.price__wrap {
  display: flex;
  justify-content: center;
}

.price-card {
  width: min(560px, 100%);
  padding: 40px 118px 40px 40px;
}

.price-card__deal {
  margin: 16px 0 8px;
}

.price-card__value {
  font-size: clamp(48px, 8vw, 72px);
  margin: 0;
  color: var(--orange);
  line-height: 1;
}

.price-card__was {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.price-card__old {
  font-family: "Montserrat", "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(91, 100, 120, 0.85);
}

.price-card__save {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--peach);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.price-card__access,
.price-card__note,
.modal__panel > p {
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.price-card li {
  padding-left: 22px;
  position: relative;
}

.price-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  position: absolute;
  left: 0;
  top: 8px;
}

.price-card .btn {
  margin-bottom: 16px;
}

.final__box {
  text-align: center;
  max-width: none;
}

.final h2 {
  margin: 0 0 18px;
}

.final .lead,
.final p {
  color: rgba(255, 255, 255, 0.8);
}

.final__steps {
  font-size: 20px;
  font-weight: 800;
  margin: 18px 0 28px;
  color: #fff !important;
}

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  padding: 40px 0;
}

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

.footer__copy {
  font-size: 13px;
}

.modal[hidden],
.toast[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 15, 51, 0.55);
}

.modal__panel {
  position: relative;
  width: min(460px, calc(100% - 32px));
  margin: 10vh auto;
  background: #fff;
  border-radius: 28px;
  padding: 32px;
}

.modal__panel > p {
  margin-bottom: 20px;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: var(--navy);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  background: var(--navy);
  color: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  max-width: 320px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s ease forwards;
  animation-delay: var(--d);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero__panel,
  .offer__grid,
  .faq__grid,
  .imagine__grid,
  .audience__grid,
  .stats__row,
  .cards-8,
  .bonus-grid,
  .question-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero__art {
    width: min(280px, 70%);
  }

  .header__cta {
    display: none;
  }

  .burger {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1180px, calc(100% - 28px));
  }

  .offer__grid,
  .feature__grid,
  .faq__grid,
  .imagine__grid,
  .audience__grid,
  .stats__row,
  .cards-8,
  .bonus-grid,
  .question-grid,
  .error-list {
    grid-template-columns: 1fr;
  }

  .feature__col {
    padding-block: 0;
  }

  .path-flow {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .path-flow__item:not(:last-child)::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -22px;
    transform: translateX(-50%) rotate(90deg);
  }

  .hero,
  .offer,
  .problem,
  .results,
  .feature,
  .program,
  .value,
  .bonus,
  .errors,
  .audience,
  .why,
  .price,
  .faq,
  .system,
  .imagine,
  .final {
    padding: 48px 0;
  }

  .hero__main,
  .hero__side,
  .dark-panel,
  .value__box,
  .why__box,
  .price-card {
    padding: 28px 22px;
  }

  .hero__art {
    width: min(240px, 64%);
  }

  .illus--offer,
  .illus--feature,
  .illus--value,
  .illus--why,
  .illus--price,
  .illus--final,
  .illus--problem {
    width: 72px;
  }

  .problem__head,
  .system__head,
  .errors__foot {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .illus--problem {
    width: 120px;
    justify-self: end;
  }

  .illus--system {
    width: 112px;
    justify-self: end;
  }

  .illus--faq {
    width: 120px;
    margin-top: 16px;
  }

  .illus--errors {
    width: 120px;
    justify-self: end;
  }

  .illus--value,
  .illus--why,
  .illus--price {
    top: 10px;
    right: 10px;
  }

  .lesson p,
  .faq-item p {
    padding-left: 22px;
  }

  .hero__actions .btn,
  .final .btn {
    width: 100%;
  }
}

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

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