:root {
  --blue: #0fb981;
  --blue-dark: #0a8f65;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-800.ttf") format("truetype");
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--slate-900);
  font-family: "Manrope", Arial, sans-serif;
}

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

button,
input {
  font: inherit;
}

.page {
  padding-bottom: 76px;
}

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

section {
  padding: 56px 0;
}

.band {
  background: var(--slate-50);
}

h1,
h2 {
  margin: 0;
  color: var(--slate-950);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.30;
}

h1 {
  font-size: clamp(2.1rem, 6vw, 3.15rem);
}

h2 {
  max-width: 690px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3,
p {
  margin: 0;
}

.hero {
  padding: 24px 0 42px;
}

.hero__copy {
  text-align: center;
}

.hero__grid,
.inside-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.product-cover {
  margin: 0 auto;
  width: min(100%, 340px);
}

.book-card img {
  border: 1px solid var(--slate-200);
  border-radius: 6px;
}

.book-mockup {
  perspective: 1200px;
}

.book-scene {
  perspective: 1200px;
}

.book-card {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 0.55s ease;
  border-radius: 5px 10px 10px 5px;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.12), 0 18px 34px -14px rgba(15, 23, 42, 0.4);
  cursor: pointer;
  will-change: transform;
}

.book-card::after {
  content: "";
  position: absolute;
  top: 1.5%;
  right: -5px;
  bottom: 1.5%;
  width: 6px;
  border-radius: 0 3px 3px 0;
  background: repeating-linear-gradient(
    to bottom,
    #fdfdfb 0,
    #fdfdfb 2px,
    #d9dcd4 3px,
    #fdfdfb 4px
  );
  transform: translateZ(-2px);
}

.book-card img {
  width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

.book-spine {
  position: absolute;
  inset: 0 auto 0 0;
  width: 16px;
  border-radius: 5px 0 0 5px;
  background: linear-gradient(
    90deg,
    rgba(10, 25, 50, 0.38),
    rgba(255, 255, 255, 0.22) 52%,
    rgba(10, 25, 50, 0.14)
  );
  pointer-events: none;
}

.book-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--glare-x, 50%) var(--glare-y, 35%),
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0) 55%
  );
  opacity: var(--glare-o, 0);
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.book-floor {
  width: 78%;
  height: 18px;
  margin: 10px auto 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.26), transparent 70%);
  filter: blur(4px);
  transition: transform 0.55s ease, opacity 0.55s ease;
}

.book-mockup:hover .book-floor,
.book-scene:hover + .book-floor {
  transform: scaleX(0.86);
  opacity: 0.7;
}

.offer-banner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  border-radius: 999px;
  border: 1px solid #fbbf24;
  background: #facc15;
  box-shadow: 0 8px 22px rgba(250, 204, 21, 0.28);
  padding: 5px 10px;
  color: #451a03;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  animation: offer-pulse 2s ease-in-out infinite;
}

.offer-banner__icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow + h1 {
  margin-top: 16px;
}

.eyebrow.offer-banner {
  margin-bottom: 0;
  color: #451a03;
}

@keyframes offer-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

.lead {
  margin-top: 18px;
  color: var(--slate-600);
  font-size: 1.1rem;
  line-height: 1.7;
}

.lead strong {
  color: var(--slate-900);
}

.lead--narrow {
  max-width: 680px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero__actions .check-list {
  margin-top: 8px;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--slate-700, #334155);
  font-size: 0.94rem;
  line-height: 1.45;
}

.check-list li::before,
.spec-list div::before {
  content: "✓";
  flex: 0 0 auto;
  color: var(--blue);
  font-weight: 900;
}

.check-list--strong li {
  color: var(--slate-800);
  font-size: 1rem;
  font-weight: 800;
}

.hero__cta {
  max-width: 420px;
  margin-top: 30px;
}

.hero__cta p {
  text-align: center;
}

.secure {
  text-align: center;
}

.hero__cta p,
.secure,
.proof,
.note {
  margin-top: 12px;
  color: var(--slate-500);
  font-size: 0.82rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  padding: 14px 22px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button--primary {
  background: var(--blue);
  color: var(--white);
}

.button--primary:hover {
  background: var(--blue-dark);
}

.button--outline {
  border: 2px solid var(--slate-900);
  background: var(--white);
  color: var(--slate-900);
}

.button--outline:hover {
  background: var(--slate-900);
  color: var(--white);
}

.button--light {
  background: var(--white);
  color: var(--slate-950);
}

.audience-section {
  padding: 42px 0;
}

.audience-grid {
  display: grid;
  gap: 34px;
  margin-top: 28px;
}

.audience-grid h2 {
  font-size: clamp(1.45rem, 5vw, 2rem);
  line-height: 1.16;
}

.audience-grid .check-list {
  margin-top: 22px;
}

.audience-list li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.58;
}

.problem-grid,
.steps,
.timeline,
.bonus-grid,
.plans {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.bonus-grid {
  gap: 48px;
}

.steps article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
}

.how-it-works {
  padding: 34px 0 38px;
}

.how-it-works .steps {
  gap: 18px;
  margin-top: 22px;
}

.how-it-works .steps article {
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 2px 10px;
  align-items: start;
}

.problem-grid p {
  border-top: 2px solid var(--slate-300);
  padding-top: 16px;
  color: var(--slate-600);
  line-height: 1.65;
}

.ficha-preview {
  max-width: 480px;
  margin: 32px auto 0;
  text-align: center;
}

.ficha-preview img {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow);
}

.ficha-preview figcaption {
  margin-top: 14px;
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.55;
}

.statement {
  max-width: 680px;
  margin-top: 28px;
  color: var(--slate-900);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.7;
}

.statement--small {
  font-size: 0.95rem;
}

.inside-cover {
  width: min(100%, 320px);
  margin-inline: auto;
}

.spec-list {
  margin: 28px 0 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.spec-list div {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--slate-200);
}

.spec-list div:last-child {
  border-bottom: 0;
}

.spec-list dt {
  color: var(--slate-900);
  font-weight: 900;
}

.spec-list dd {
  margin: 4px 0 0;
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.55;
}

.steps span {
  color: var(--blue);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
}

.how-it-works .steps span {
  grid-row: 1 / 3;
  font-size: 2.15rem;
  line-height: 1;
}

.steps h3,
.timeline h3,
.bonus-grid h3,
.plan h3 {
  margin-top: 12px;
  color: var(--slate-900);
  font-size: 1.12rem;
  font-weight: 900;
}

.steps h3 {
  margin-top: 0;
}

.how-it-works .steps h3 {
  font-size: 1.02rem;
  line-height: 1.18;
}

.steps p,
.timeline p,
.bonus-grid p,
.section-intro p,
.plan p,
.checkout-note {
  margin-top: 10px;
  color: var(--slate-600);
  line-height: 1.6;
}

.steps p {
  grid-column: 2;
  margin-top: 2px;
}

.how-it-works .steps p {
  font-size: 0.95rem;
  line-height: 1.45;
}

.timeline article {
  border-top: 4px solid var(--blue);
  padding-top: 16px;
}

.timeline .week,
.bonus-grid .bonus-value {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bonus-grid article {
  display: flex;
  flex-direction: column;
  padding-bottom: 6px;
}

.bonus-grid .book-mockup {
  order: 2;
  width: 100%;
  margin-top: 18px;
}

.bonus-grid h3 {
  order: 3;
}

.bonus-grid .bonus-result {
  order: 4;
}

.bonus-grid article > p:last-child {
  order: 5;
}

.bonus-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--white);
}

.bonus-grid .bonus-value {
  order: 1;
  margin-top: 0;
  margin-inline: auto;
}

.bonus-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid #fbbf24;
  border-radius: 999px;
  background: #facc15;
  box-shadow: 0 8px 22px rgba(250, 204, 21, 0.22);
  padding: 5px 10px;
  color: #451a03 !important;
  letter-spacing: 0.05em;
}

.bonus-grid .bonus-result {
  color: var(--slate-800);
  font-weight: 800;
}

.callout {
  max-width: 820px;
  margin-top: 40px;
  border-left: 4px solid var(--blue);
  padding-left: 20px;
  color: var(--slate-900);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.65;
}

.plans-section {
  scroll-margin-top: 16px;
}

.section-intro h2 {
  font-size: clamp(1.55rem, 7vw, 2.5rem);
}

.section-intro p {
  font-size: 1.08rem;
}

.plan {
  position: relative;
  border: 1px solid var(--slate-300);
  border-radius: 12px;
  background: var(--white);
  padding: 26px;
}

.plan--featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  top: -13px;
  left: 24px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  padding: 6px 12px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  display: block;
  margin-top: 4px;
  color: var(--slate-950);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 2.5rem;
}

.plan small {
  display: block;
  margin-top: 4px;
  color: var(--slate-500);
  font-weight: 700;
}

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

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.price-row span {
  color: #94a3b8;
  font-weight: 800;
  text-decoration: line-through;
}

.price-row strong {
  color: var(--blue);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(2.8rem, 8vw, 3.6rem);
  line-height: 0.95;
}

.price-row--simple strong {
  color: var(--slate-600);
}

.upgrade {
  border-radius: 8px;
  background: #eff6ff;
  padding: 12px 16px;
  color: #1e3a8a !important;
  font-weight: 900;
}

.check-list--two {
  border-top: 1px solid var(--slate-200);
  padding-top: 22px;
}

.proof,
.checkout-note {
  margin-top: 24px;
  font-weight: 800;
}

.checkout-note {
  border: 1px dashed var(--slate-300);
  border-radius: 8px;
  background: var(--slate-50);
  padding: 20px;
  font-weight: 600;
}

.guarantee-section {
  padding: 72px 0;
}

.guarantee-wrap {
  max-width: 780px;
  text-align: center;
}

.secure-badge {
  width: 58px;
  height: 58px;
  margin: 0 auto 32px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.guarantee-wrap h2 {
  margin-inline: auto;
}

.guarantee-wrap p {
  margin-top: 20px;
  color: var(--slate-600);
  line-height: 1.6;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 44px;
  color: var(--slate-600);
  font-size: 0.78rem;
  font-weight: 900;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.faq-wrap {
  max-width: 760px;
}

.faq {
  margin-top: 30px;
  border-top: 1px solid var(--slate-200);
}

.faq-item {
  border-bottom: 1px solid var(--slate-200);
}

.faq-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  padding: 18px 0;
  cursor: pointer;
  color: var(--slate-900);
  text-align: left;
  font-weight: 900;
}

.faq-button span {
  color: var(--blue);
  font-size: 1.3rem;
  transition: transform 160ms ease;
}

.faq-item.is-open .faq-button span {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 34px 20px 0;
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.final-cta {
  background: var(--slate-50);
  color: var(--slate-900);
  text-align: center;
}

.final-cta h2 {
  margin-inline: auto;
  color: var(--slate-950);
}

.final-cta p {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--slate-600);
  font-size: 1.08rem;
  line-height: 1.7;
}

.final-cta .button {
  width: auto;
  margin-top: 30px;
}

.final-cta .button--light {
  background: var(--blue);
  color: var(--white);
}

.final-cta .button--light:hover {
  background: var(--blue-dark);
}

.link-button {
  display: block;
  margin: 16px auto 0;
  border: 0;
  background: transparent;
  color: var(--slate-600);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

footer {
  background: var(--white);
  color: var(--slate-600);
  padding: 34px 20px 40px;
  text-align: center;
}

footer p {
  max-width: 680px;
  margin: 0 auto 10px;
  color: var(--slate-500);
  font-size: 0.78rem;
  line-height: 1.6;
}

footer p:last-child {
  margin-bottom: 0;
}

footer a {
  color: var(--slate-600);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  min-height: 100vh;
  padding: 28px 0 72px;
  background: var(--slate-50);
}

.legal-container {
  max-width: 840px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  color: var(--blue-dark);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-content {
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 56px);
}

.legal-content h1 {
  margin-top: 8px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.legal-content p,
.legal-content li {
  color: var(--slate-600);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-content p + p {
  margin-top: 18px;
}

.legal-content ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-table-wrap {
  overflow-x: auto;
  margin-top: 16px;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
}

.legal-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--white);
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--slate-200);
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--slate-50);
  color: var(--slate-900);
  font-weight: 800;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-content a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  margin-top: 14px;
  margin-bottom: 24px;
}

.mobile-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--slate-200);
  background: rgba(255, 255, 255, 0.96);
  padding: 12px 16px;
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.12);
}

.mobile-bar p {
  color: var(--slate-500);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-bar strong {
  color: var(--slate-950);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.3rem;
}

.mobile-bar button {
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 13px 18px;
  font-size: 0.9rem;
  font-weight: 900;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

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

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.78);
}

.modal__panel {
  position: relative;
  width: min(100%, 560px);
  max-height: min(720px, 92vh);
  overflow: auto;
  border-radius: 16px;
  background: var(--white);
  padding: 28px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.32);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-600);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.modal h2 {
  margin-top: 8px;
}

.modal h2 + p {
  margin-top: 8px;
  color: var(--slate-600);
  font-weight: 800;
}

.checkout-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  color: var(--slate-800);
  font-size: 0.88rem;
  font-weight: 800;
}

.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"] {
  width: 100%;
  border: 1px solid var(--slate-300);
  border-radius: 8px;
  padding: 13px 12px;
}

.checkout-form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 4px 0 0;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  padding: 14px;
}

.checkout-form legend {
  color: var(--slate-800);
  font-weight: 900;
}

.checkout-form fieldset label {
  display: flex;
  align-items: center;
}

.success {
  margin-top: 22px;
  border-radius: 10px;
  background: #ecfdf5;
  padding: 18px;
  color: #065f46;
  line-height: 1.55;
}

.success strong {
  display: block;
  font-size: 1.15rem;
}

@media (min-width: 720px) {
  .page {
    padding-bottom: 0;
  }

  section {
    padding: 72px 0;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 340px;
    grid-template-areas:
      "copy product"
      "actions product";
    gap: 44px;
    align-items: center;
  }

  .hero__copy {
    grid-area: copy;
    text-align: left;
  }

  .hero__actions {
    grid-area: actions;
  }

  .product-cover {
    grid-area: product;
  }

  .inside-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .audience-section {
    padding: 72px 0;
  }

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

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

  .how-it-works {
    padding: 72px 0;
  }

  .how-it-works .steps {
    gap: 24px;
    margin-top: 32px;
  }

  .steps article {
    display: block;
  }

  .how-it-works .steps span {
    font-size: 2.5rem;
  }

  .how-it-works .steps h3 {
    font-size: 1.12rem;
  }

  .how-it-works .steps p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .bonus-grid .book-mockup {
    width: min(100%, 340px);
    margin-inline: auto;
  }

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

  .steps p {
    grid-column: auto;
    margin-top: 8px;
  }

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

  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .plans {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
    align-items: start;
  }

  .check-list--two {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (min-width: 1024px) {
  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
