:root {
  --color-cream: #fcefd9;
  --color-text: #2c1810;
  --color-accent: #b8742b;
  --color-badge-bg: #dff4df;
  --color-badge-text: #276b2d;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --page-gutter: clamp(20px, 5vw, 24px);
  --section-padding-y: 32px;
}

@media (min-width: 640px) {
  :root {
    --section-padding-y: 40px;
  }
}

@media (min-width: 1024px) {
  :root {
    --section-padding-y: 48px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-cream);
  color: var(--color-text);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

body.sticky-cta-visible {
  padding-bottom: 72px;
}

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

section {
  margin: 0;
  padding: var(--section-padding-y) 0;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--color-cream);
  overflow-x: hidden;
}

.hero__inner {
  width: min(100%, 720px);
  min-height: calc(100svh - (var(--section-padding-y) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__logo {
  width: clamp(80px, 24vw, 96px);
  height: auto;
  margin-inline: auto;
  margin-bottom: 22px;
}

.hero__badge {
  margin: 0 auto 28px;
  padding: 9px 14px;
  border-radius: 8px;
  background: var(--color-badge-bg);
  color: var(--color-badge-text);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__header {
  width: 100%;
  display: grid;
  gap: 20px;
  justify-items: center;
}

.hero__title {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 16px;
  justify-items: center;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 10vw, 4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero__title-line {
  font-size: clamp(1.42rem, 6.2vw, 2.55rem);
  line-height: 1.14;
}

.hero__title em {
  color: var(--color-accent);
  font-style: italic;
}

.text-accent {
  color: var(--color-accent);
}

.hero__subtitle {
  max-width: 34rem;
  margin-inline: auto;
  font-size: clamp(1rem, 4.2vw, 1.25rem);
  line-height: 1.55;
}

.hero__subtitle strong,
.hero__transition strong {
  font-weight: 800;
}

.hero__photo-wrap {
  width: 80%;
  max-width: 380px;
  margin: 34px auto 28px;
}

.hero__photo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(44, 24, 16, 0.12);
}

.hero__transition {
  max-width: 36rem;
  margin: 0 auto;
  font-size: clamp(0.98rem, 4vw, 1.12rem);
  line-height: 1.64;
}

.hero__scroll {
  margin-top: auto;
  padding-top: 30px;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 2.15rem;
  line-height: 1;
  text-decoration: none;
  animation: bounce 1.6s ease-in-out infinite;
}

.about-larissa {
  background: var(--color-cream);
}

.about-larissa__inner {
  width: min(100%, 720px);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  display: grid;
  justify-items: center;
  text-align: center;
}

.about-larissa__badge {
  margin: 0 0 24px;
  padding: 8px 13px;
  border: 1px solid rgba(184, 116, 43, 0.42);
  border-radius: 8px;
  background: #f8dfb8;
  color: var(--color-accent);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-larissa__title {
  max-width: 40rem;
  margin: 0 0 34px;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(2rem, 8.8vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-larissa__title span {
  color: var(--color-accent);
}

.story-photo {
  width: 80%;
  max-width: 380px;
  margin: 0 auto 30px;
}

.story-photo + .about-larissa__copy {
  margin-top: 0;
}

.story-photo img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(44, 24, 16, 0.12);
}

.about-larissa__copy {
  width: 100%;
  max-width: 36rem;
  margin: 0 auto 34px;
  display: grid;
  gap: 22px;
  text-align: left;
}

.about-larissa__copy p {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1rem, 4.1vw, 1.12rem);
  line-height: 1.7;
}

.about-larissa__copy strong {
  font-weight: 800;
}

.about-stats {
  width: 100%;
  max-width: 40rem;
  margin-top: 10px;
  padding: 22px 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border-radius: 12px;
  background: #fcf6e8;
  box-shadow: 0 10px 26px rgba(44, 24, 16, 0.08);
}

.about-stats__item {
  min-width: 0;
  display: grid;
  gap: 7px;
  justify-items: center;
  align-content: start;
  color: var(--color-text);
}

.about-stats__item strong {
  color: var(--color-accent);
  font-size: clamp(1.05rem, 5vw, 1.55rem);
  font-weight: 800;
  line-height: 1;
}

.about-stats__item span {
  max-width: 6.5rem;
  font-size: clamp(0.72rem, 3vw, 0.88rem);
  font-weight: 700;
  line-height: 1.25;
}

.method-mechanism {
  background: var(--color-cream);
}

.method-mechanism__inner {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  display: grid;
  gap: 40px;
  justify-items: center;
}

.mechanism-hero {
  max-width: 760px;
  text-align: center;
}

.mechanism-hero__title {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 9vw, 4.25rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.mechanism-hero__subtitle {
  max-width: 42rem;
  margin: 22px auto 0;
  color: var(--color-text);
  font-size: clamp(1rem, 4vw, 1.18rem);
  line-height: 1.58;
}

.problem-block {
  width: 100%;
  display: grid;
  gap: 24px;
  justify-items: center;
}

.mechanism-copy {
  width: min(100%, 640px);
  display: grid;
  gap: 12px;
  text-align: left;
}

.mechanism-copy p {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1rem, 4vw, 1.14rem);
  line-height: 1.7;
}

.problem-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: stretch;
}

.problem-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(184, 116, 43, 0.24);
  border-radius: 10px;
  background: rgba(252, 246, 232, 0.78);
  box-shadow: 0 8px 18px rgba(44, 24, 16, 0.06);
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 12px;
  align-items: start;
}

.problem-card svg {
  width: 28px;
  height: 28px;
  margin: 2px 0 0;
  fill: none;
  stroke: #6b3410;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  grid-row: span 2;
}

.problem-card h4 {
  margin: 0 0 4px;
  color: var(--color-accent);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.problem-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.88rem;
  line-height: 1.36;
}

.mechanism-transition {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.mechanism-transition p {
  max-width: 38rem;
  margin: 0;
  color: #6b3410;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5.8vw, 2rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
}

.mechanism-transition span {
  width: 80px;
  height: 1px;
  background: var(--color-accent);
}

.discovery-story {
  width: min(100%, 600px);
  display: grid;
  gap: 24px;
  justify-items: center;
}

.discovery-story__photo {
  width: 120px;
  height: 120px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(44, 24, 16, 0.1);
}

.discovery-story__copy {
  width: 100%;
  display: grid;
  gap: 18px;
  color: var(--color-text);
  text-align: left;
}

.discovery-story__copy p {
  margin: 0;
  font-size: clamp(1rem, 4vw, 1.1rem);
  line-height: 1.7;
}

.discovery-story__copy strong {
  font-weight: 800;
}

.comparison-section {
  width: 100%;
}

.comparison-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  border-radius: 14px;
  color: var(--color-text);
  font-size: 0.98rem;
  line-height: 1.45;
}

.comparison-table thead {
  display: none;
}

.comparison-table tbody,
.comparison-table tr,
.comparison-table th,
.comparison-table td {
  display: block;
}

.comparison-table tr {
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 6px 16px rgba(44, 24, 16, 0.05);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-table tbody th {
  grid-column: 1 / -1;
  padding: 10px 14px;
  background: rgba(184, 116, 43, 0.16);
  color: var(--color-accent);
  font-weight: 800;
  text-align: center;
}

.comparison-table td {
  min-width: 0;
  padding: 10px 12px;
  border-top: 1px solid rgba(44, 24, 16, 0.08);
  font-size: 0.9rem;
}

.comparison-table td::before {
  display: block;
  margin-bottom: 4px;
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.comparison-table td:nth-of-type(1) {
  background: rgba(44, 24, 16, 0.05);
  color: rgba(44, 24, 16, 0.7);
}

.comparison-table td:nth-of-type(1)::before {
  content: "Palha tradicional";
  color: rgba(44, 24, 16, 0.58);
}

.comparison-table td:nth-of-type(2) {
  position: relative;
  border: 2px solid var(--color-accent);
  background: #fff3d7;
  box-shadow: inset 0 0 0 999px rgba(184, 116, 43, 0.04);
}

.comparison-table td:nth-of-type(2)::before {
  content: "✓ Método sem fogo";
  color: #4a7c2a;
}

.comparison-table td strong {
  color: var(--color-accent);
  font-weight: 800;
}

.mechanism-closing {
  max-width: 760px;
  display: grid;
  gap: 16px;
  text-align: center;
}

.mechanism-closing p {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 7.4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
}

.mechanism-closing strong {
  color: var(--color-accent);
  font-weight: 800;
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 4px;
  background: #6b3410;
  color: var(--color-cream);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease;
}

.secondary-cta:hover,
.secondary-cta:focus-visible {
  background: var(--color-accent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.social-proof {
  background: var(--color-cream);
}

.social-proof__inner {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  display: grid;
  gap: 42px;
  justify-items: center;
}

.social-proof__header {
  max-width: 780px;
  text-align: center;
}

.social-proof__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 8.5vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.social-proof__title strong {
  color: var(--color-accent);
  font-weight: 800;
  white-space: nowrap;
}

.social-proof__subtitle {
  max-width: 700px;
  margin: 22px auto 0;
  color: var(--color-text);
  font-size: clamp(1rem, 4vw, 1.18rem);
  line-height: 1.6;
}

.press-strip,
.student-results {
  width: 100%;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.section-eyebrow {
  margin: 0;
  color: #6b3410;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}

.press-grid {
  width: min(100%, 860px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.press-card {
  width: 100%;
  margin: 0;
  padding: 10px;
  border-radius: 6px;
  background: #fffaf0;
  box-shadow: 0 4px 12px rgba(44, 24, 16, 0.08);
}

.press-card img {
  width: 100%;
  max-height: 360px;
  height: auto;
  border-radius: 4px;
  object-fit: contain;
}

.testimonial-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.testimonial-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 4px 16px rgba(44, 24, 16, 0.1);
  display: flex;
  flex-direction: column;
}

.testimonial-card__print {
  height: 320px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(184, 116, 43, 0.2);
  background: #ffffff;
}

.testimonial-card__print img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.testimonial-card__person {
  padding: 12px 16px 6px;
}

.testimonial-card__person h3 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.15;
}

.testimonial-card__person p {
  margin: 5px 0 0;
  color: #6b3410;
  font-size: 0.8rem;
  line-height: 1.35;
}

.testimonial-card__result {
  margin: 8px 16px;
  padding: 10px 12px;
  border: 2px solid var(--color-accent);
  border-radius: 6px;
  background: rgba(184, 116, 43, 0.12);
  color: #6b3410;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  margin: 0;
  padding: 10px 16px 16px;
  color: var(--color-text);
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.5;
}

.social-stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(184, 116, 43, 0.3);
  border-bottom: 1px solid rgba(184, 116, 43, 0.3);
  background: #fffaf0;
}

.social-stats__item {
  min-width: 0;
  padding: 32px 14px;
  display: grid;
  gap: 8px;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.social-stats__item:nth-child(even) {
  border-left: 1px solid rgba(184, 116, 43, 0.2);
}

.social-stats__item:nth-child(n + 3) {
  border-top: 1px solid rgba(184, 116, 43, 0.2);
}

.social-stats__item strong {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 10vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.social-stats__item span {
  color: var(--color-text);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.social-proof__closing {
  max-width: 700px;
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.social-proof__closing p {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 7.2vw, 2.15rem);
  font-weight: 800;
  line-height: 1.15;
}

.social-proof__closing p:nth-child(2) {
  margin-bottom: 20px;
  color: var(--color-accent);
  font-size: clamp(2rem, 8vw, 2.55rem);
}

.guide-showcase {
  background: var(--color-cream);
}

.guide-showcase__inner {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  display: grid;
  gap: 48px;
  justify-items: center;
}

.guide-showcase__header {
  max-width: 780px;
  text-align: center;
}

.guide-showcase__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 8.6vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.guide-showcase__subtitle {
  max-width: 700px;
  margin: 18px auto 0;
  color: var(--color-accent);
  font-size: clamp(1rem, 4vw, 1.16rem);
  font-weight: 700;
  line-height: 1.55;
}

.guide-product {
  width: 100%;
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}

.guide-product__mockup {
  width: min(85%, 620px);
  height: auto;
  filter: drop-shadow(0 22px 28px rgba(44, 24, 16, 0.14));
}

.guide-product__pitch {
  max-width: 720px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(0.98rem, 4vw, 1.12rem);
  line-height: 1.68;
}

.guide-modules,
.recipe-preview {
  width: 100%;
  display: grid;
  gap: 24px;
  justify-items: center;
}

.guide-section-title {
  max-width: 760px;
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
}

.module-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.module-card {
  min-width: 0;
  padding: 18px 18px 16px;
  border: 1px solid rgba(184, 116, 43, 0.2);
  border-radius: 14px;
  background: #fffaf0;
  box-shadow: 0 6px 16px rgba(44, 24, 16, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.module-card:hover,
.module-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(44, 24, 16, 0.1);
}

.module-card:nth-child(10),
.module-card:nth-child(11) {
  border-left: 4px solid #6b3410;
  background: #e8c988;
  box-shadow: 0 8px 20px rgba(44, 24, 16, 0.1);
}

.module-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.module-card h4 {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.28;
}

.module-card p {
  margin: 7px 0 0;
  color: #5c4530;
  font-size: 0.9rem;
  line-height: 1.45;
}

.recipe-tags {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.recipe-tags span {
  min-width: 0;
  padding: 10px 12px;
  border-radius: 999px;
  background: #f0d9b0;
  color: var(--color-text);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 200ms ease;
}

.recipe-tags span:hover,
.recipe-tags span:focus-visible {
  transform: scale(1.03);
}

.recipe-preview__more {
  width: 100%;
  max-width: 900px;
  margin: 0;
  color: var(--color-accent);
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.4;
  text-align: right;
}

.guide-seals {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(184, 116, 43, 0.28);
  border-bottom: 1px solid rgba(184, 116, 43, 0.28);
  background: transparent;
}

.guide-seal {
  min-width: 0;
  padding: 20px 14px;
  display: grid;
  gap: 8px;
  grid-column: span 2;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.guide-seal:nth-child(4) {
  grid-column: 2 / span 2;
}

.guide-seal:nth-child(5) {
  grid-column: 4 / span 2;
}

.guide-seal span {
  font-size: 1.55rem;
  line-height: 1;
}

.guide-seal p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.88rem;
  line-height: 1.35;
}

.guide-seal strong {
  font-weight: 800;
}

.guide-bridge {
  display: grid;
  gap: 0;
  justify-items: center;
  text-align: center;
}

.guide-bridge p {
  margin: 0 0 22px;
  color: var(--color-accent);
  font-size: clamp(1.12rem, 5vw, 1.5rem);
  font-style: italic;
  line-height: 1.5;
}

.guide-bridge__button {
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  background: #6b3410;
  color: var(--color-cream);
  box-shadow: 0 4px 12px rgba(44, 24, 16, 0.15);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, transform 180ms ease;
}

.guide-bridge__button:hover,
.guide-bridge__button:focus-visible {
  background: var(--color-accent);
  transform: translateY(-1px);
}

.guide-bridge__chevron {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  text-decoration: none;
  animation: pulse-chevron 1.2s ease-in-out infinite;
}

.guide-bridge__chevron svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.bonus-stack {
  background: #f5e0bd;
}

.bonus-stack__inner {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  display: grid;
  gap: 32px;
  justify-items: center;
}

.bonus-stack__header {
  max-width: 760px;
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.bonus-stack__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
}

.bonus-stack__subtitle {
  max-width: 680px;
  margin: 0;
  color: #6b3410;
  font-size: clamp(1rem, 4vw, 1.12rem);
  font-style: italic;
  line-height: 1.5;
}

.bonus-grid {
  width: 100%;
  display: grid;
  gap: 16px;
}

.bonus-card {
  min-width: 0;
  padding: 16px;
  border-left: 4px solid var(--color-accent);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(44, 24, 16, 0.1);
  display: grid;
  gap: 22px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.bonus-card:hover,
.bonus-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.14);
}

.bonus-card__visual {
  width: 100%;
  height: 100px;
  border-radius: 14px;
  background: #fcefd9;
  object-fit: cover;
  object-position: center;
  box-shadow: inset 0 0 0 1px rgba(184, 116, 43, 0.18);
}

.bonus-card__content {
  min-width: 0;
  display: grid;
  align-content: start;
}

.bonus-card__pill {
  width: fit-content;
  margin-bottom: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #6b3410;
  color: var(--color-cream);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.bonus-card h3 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(1.38rem, 6vw, 2rem);
  font-weight: 800;
  line-height: 1.12;
}

.bonus-card__subtitle {
  margin: 10px 0 0;
  color: #5c4530;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.55;
}

.bonus-card hr {
  width: 100%;
  height: 1px;
  margin: 16px 0;
  border: 0;
  background: #e8c988;
}

.bonus-card h4 {
  margin: 0 0 12px;
  color: #6b3410;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.bonus-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.bonus-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  color: var(--color-text);
  font-size: 0.94rem;
  line-height: 1.45;
}

.bonus-list li > span {
  color: #7ab55c;
}

.bonus-value {
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.bonus-value s {
  color: rgba(44, 24, 16, 0.48);
  font-weight: 700;
}

.bonus-value strong {
  color: #4a7c2a;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bonus-total {
  width: min(100%, 780px);
  padding: 32px 24px;
  border-radius: 16px;
  background: #6b3410;
  color: var(--color-cream);
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.bonus-total p {
  margin: 0;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.4;
}

.bonus-total strong {
  text-decoration: line-through;
  text-decoration-color: #c73e1d;
  text-decoration-thickness: 4px;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 16vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
}

.bonus-total b {
  color: #7ab55c;
  font-family: var(--font-display);
  font-size: clamp(3.375rem, 18vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
}

.bonus-total span {
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.5;
}

.bonus-cta {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.bonus-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  border-radius: 12px;
  background: #4a7c2a;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(74, 124, 42, 0.3);
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.bonus-cta a:hover,
.bonus-cta a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(74, 124, 42, 0.36);
}

.bonus-cta p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.4;
}

.payback-section {
  background: #f5e0bd;
  color: var(--color-text);
}

.payback-section__inner {
  display: grid;
  gap: 32px;
  justify-items: center;
  width: min(100%, 720px);
  margin: 0 auto;
  padding-inline: var(--page-gutter);
  text-align: center;
}

.payback-section__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
}

.payback-card {
  display: grid;
  gap: 10px;
  width: min(92vw, 560px);
  padding: 28px 20px;
  border-radius: 20px;
  background: var(--color-cream);
  box-shadow: 0 10px 26px rgba(44, 24, 16, 0.12);
}

.payback-card__label,
.payback-card__note,
.payback-card__math {
  margin: 0;
  color: #5c4530;
  font-size: 0.96rem;
  line-height: 1.45;
}

.payback-card__label {
  font-size: 1rem;
  font-style: italic;
}

.payback-card__price,
.payback-card__result {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 15vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
  white-space: nowrap;
}

.payback-card__price {
  color: #6b3410;
}

.payback-card__result {
  color: #4a7c2a;
}

.payback-card__divider {
  position: relative;
  display: grid;
  place-items: center;
  margin: 14px 0;
}

.payback-card__divider::before {
  content: "";
  width: 100%;
  border-top: 2px dashed var(--color-accent);
}

.payback-card__divider span {
  position: absolute;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--color-cream);
  color: var(--color-accent);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
}

.payback-card__math {
  color: var(--color-text);
}

.payback-section__close {
  max-width: 36rem;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.125rem, 5vw, 1.5rem);
  font-weight: 800;
  line-height: 1.35;
}

.payback-section__close em {
  font-style: italic;
}

@supports (animation-timeline: view()) {
  .payback-card {
    animation: payback-card-in 400ms ease both;
    animation-range: entry 10% cover 30%;
    animation-timeline: view();
  }
}

.offer-section {
  background: #2c1810;
  color: #fcefd9;
}

.offer-section__inner {
  display: grid;
  gap: 40px;
  justify-items: center;
  width: min(100%, 760px);
  margin: 0 auto;
  padding-inline: var(--page-gutter);
}

.offer-hero {
  display: grid;
  gap: 14px;
  text-align: center;
}

.offer-hero h2 {
  margin: 0;
  color: #fcefd9;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 12vw, 4.2rem);
  font-weight: 800;
  line-height: 0.96;
}

.offer-hero p {
  margin: 0;
  color: var(--color-accent);
  font-size: clamp(1rem, 4vw, 1.2rem);
  font-style: italic;
  line-height: 1.45;
}

.offer-card {
  display: grid;
  gap: 22px;
  width: min(92vw, 640px);
  padding: 28px;
  border-radius: 20px;
  background: var(--color-cream);
  color: var(--color-text);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  scroll-margin-top: 24px;
}

.offer-kit {
  display: block;
  width: 100%;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 10px 26px rgba(44, 24, 16, 0.14);
}

.offer-pill {
  justify-self: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: #6b3410;
  color: var(--color-cream);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.offer-items {
  display: grid;
  gap: 16px;
}

.offer-items h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 5vw, 1.45rem);
  font-weight: 800;
  line-height: 1.1;
}

.offer-items ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-items li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  color: var(--color-text);
  font-size: 0.98rem;
  line-height: 1.35;
}

.offer-item__content {
  display: inline-flex;
  flex: 1 1 auto;
  gap: 8px;
}

.offer-item__content > span {
  color: #4a7c2a;
  flex: 0 0 auto;
}

.offer-item__price {
  flex: 0 0 auto;
  color: #6b3410;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.offer-total {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding-top: 20px;
  border-top: 2px solid var(--color-accent);
  text-align: center;
}

.offer-total p {
  margin: 0;
  color: #5c4530;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.offer-total strong {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 12vw, 3.8rem);
  font-weight: 800;
  line-height: 0.95;
  text-decoration: line-through;
  text-decoration-color: #c73e1d;
  text-decoration-thickness: 3px;
}

.offer-price {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 22px 16px;
  border: 2px solid rgba(184, 116, 43, 0.45);
  border-radius: 16px;
  background: #f5e0bd;
  text-align: center;
}

.offer-price p,
.offer-price em {
  margin: 0;
  color: #5c4530;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.35;
}

.offer-price strong {
  color: #6b3410;
  font-family: var(--font-display);
  font-size: clamp(4rem, 18vw, 7.5rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.84;
}

.offer-price span {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.35;
}

.offer-scarcity {
  margin: 0;
  color: #c73e1d;
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.45;
  text-align: center;
}

.offer-action {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.offer-main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  min-height: 68px;
  padding: 22px 32px;
  border-radius: 14px;
  background: #4a7c2a;
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(74, 124, 42, 0.4);
  font-size: clamp(1.1rem, 4.8vw, 1.5rem);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  animation: offer-cta-pulse 2s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.offer-main-cta:hover,
.offer-main-cta:focus-visible {
  animation: none;
  transform: scale(1.04);
  box-shadow: 0 16px 38px rgba(74, 124, 42, 0.48);
}

.offer-action p {
  margin: 0;
  color: #5c4530;
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.4;
}

.security-seals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 4px;
}

.security-seal {
  display: grid;
  gap: 8px;
  justify-items: center;
  align-content: start;
  color: #5c4530;
  text-align: center;
}

.security-seal:last-child {
  grid-column: 1 / -1;
}

.security-seal svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #6b3410;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.security-seal p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.3;
}

.security-seal strong {
  color: var(--color-text);
}

.guarantee-card {
  display: grid;
  gap: 14px;
  justify-items: center;
  width: min(88vw, 560px);
  padding: 24px;
  border: 3px double #4a7c2a;
  border-radius: 16px;
  background: var(--color-cream);
  color: var(--color-text);
  text-align: center;
}

.guarantee-card svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: #4a7c2a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.guarantee-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 6vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
}

.guarantee-card p {
  max-width: 48ch;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
}

.offer-close {
  margin: 0;
  color: rgba(252, 239, 217, 0.85);
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: center;
}

.faq-section {
  background: var(--color-cream);
  color: var(--color-text);
}

.faq-section__inner {
  display: grid;
  gap: 32px;
  justify-items: center;
  width: min(100%, 820px);
  margin: 0 auto;
  padding-inline: var(--page-gutter);
}

.faq-section__header {
  display: grid;
  gap: 14px;
  max-width: 680px;
  text-align: center;
}

.faq-section__header h2 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3.55rem);
  font-weight: 800;
  line-height: 1;
}

.faq-section__header p {
  margin: 0;
  color: #6b3410;
  font-size: clamp(1rem, 4vw, 1.1rem);
  font-style: italic;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(92vw, 720px);
}

.faq-item {
  overflow: hidden;
  border-left: 3px solid var(--color-accent);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(44, 24, 16, 0.06);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.faq-item:hover,
.faq-item:focus-within {
  background: #fdf6e8;
  box-shadow: 0 4px 14px rgba(44, 24, 16, 0.08);
}

.faq-item summary {
  display: flex;
  min-height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  list-style: none;
}

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

.faq-item h3 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.faq-item__chevron {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--color-accent);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 300ms ease;
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 300ms ease, opacity 220ms ease;
}

.faq-item[open] .faq-answer {
  max-height: 520px;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
  color: #5c4530;
  font-size: 0.96rem;
  line-height: 1.6;
}

.faq-answer strong {
  color: var(--color-text);
}

.faq-cta {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-top: 8px;
  text-align: center;
}

.faq-cta p {
  margin: 0;
  color: #5c4530;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.4;
}

.faq-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  border-radius: 12px;
  background: #4a7c2a;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(74, 124, 42, 0.3);
  font-size: 1.0625rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.faq-cta a:hover,
.faq-cta a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(74, 124, 42, 0.36);
}

.faq-cta span {
  color: #5c4530;
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.4;
}

.site-footer {
  padding: 40px 0;
  background: var(--color-text);
  color: var(--color-cream);
}

.site-footer__inner {
  display: grid;
  justify-items: center;
  width: min(100%, 760px);
  margin: 0 auto;
  padding-inline: var(--page-gutter);
  text-align: center;
}

.site-footer__brand {
  display: grid;
  gap: 4px;
}

.site-footer__brand strong {
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 8vw, 2.625rem);
  font-weight: 800;
  line-height: 1;
}

.site-footer__brand span {
  color: var(--color-accent);
  font-size: clamp(0.9rem, 4vw, 1.0625rem);
  font-style: italic;
  line-height: 1.2;
}

.site-footer__divider {
  width: min(240px, 70vw);
  height: 1px;
  margin: 32px 0;
  background: rgba(252, 239, 217, 0.2);
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.site-footer__nav a,
.site-footer__contact {
  border: 0;
  background: transparent;
  color: rgba(252, 239, 217, 0.75);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  line-height: 1.35;
  padding: 0;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__contact:hover,
.site-footer__contact:focus-visible {
  color: var(--color-cream);
  text-decoration: underline;
}

.site-footer__nav span {
  display: none;
  color: var(--color-accent);
}

.site-footer__copyright {
  margin: 28px 0 0;
  color: rgba(252, 239, 217, 0.6);
  font-size: 0.82rem;
  line-height: 1.45;
}

.sticky-mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: #4a7c2a;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 300ms ease;
}

.sticky-mobile-cta.is-visible {
  transform: translateY(0);
}

.sticky-mobile-cta__copy {
  display: grid;
  gap: 2px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.15;
}

.sticky-mobile-cta__copy span {
  font-size: 0.86rem;
}

.sticky-mobile-cta a {
  flex: 0 0 auto;
  padding: 10px 18px;
  border-radius: 8px;
  background: #ffffff;
  color: #4a7c2a;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.7);
}

.contact-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(100%, 480px);
  padding: 32px;
  border-radius: 16px;
  background: var(--color-cream);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  color: var(--color-text);
  text-align: center;
}

.contact-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #6b3410;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.contact-modal__dialog h2 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 7vw, 1.85rem);
  font-weight: 800;
  line-height: 1.1;
}

.contact-modal__dialog p {
  margin: 0 0 8px;
  color: #5c4530;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.45;
}

.contact-modal__actions {
  display: grid;
  gap: 12px;
}

.contact-modal__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  border-radius: 10px;
  color: var(--color-cream);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.contact-modal__actions a:first-child {
  background: #6b3410;
}

.contact-modal__actions a:last-child {
  background: #4a7c2a;
  color: #ffffff;
}

.contact-modal__actions svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.legal-page {
  background: var(--color-cream);
}

.legal-document {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 64px var(--page-gutter) 80px;
  color: var(--color-text);
}

.legal-document__back {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--color-accent);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.legal-document__back:hover,
.legal-document__back:focus-visible {
  text-decoration: underline;
}

.legal-document h1,
.legal-document h2 {
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
}

.legal-document h1 {
  margin: 0 0 14px;
  font-size: clamp(2.35rem, 10vw, 4rem);
}

.legal-document h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.5rem, 6vw, 2rem);
}

.legal-document p,
.legal-document li {
  color: #5c4530;
  font-size: 1rem;
  line-height: 1.7;
}

.legal-document p {
  margin: 0 0 16px;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 1.2rem;
}

.legal-document a {
  color: #6b3410;
  font-weight: 700;
}

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

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

@keyframes payback-card-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 480px) {
  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 640px) {
  body.sticky-cta-visible {
    padding-bottom: 0;
  }

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

  .recipe-tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .guide-seals {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .guide-seal,
  .guide-seal:nth-child(4),
  .guide-seal:nth-child(5) {
    grid-column: auto;
  }

  .guide-seal + .guide-seal {
    border-left: 1px solid rgba(184, 116, 43, 0.18);
  }

  .security-seals {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }

  .security-seal:last-child {
    grid-column: auto;
  }

  .sticky-mobile-cta {
    display: none;
  }

  .site-footer__nav {
    flex-direction: row;
    gap: 14px;
  }

  .site-footer__nav span {
    display: inline;
  }

  .bonus-card {
    grid-template-columns: 40% 1fr;
    align-items: stretch;
  }

  .bonus-card__visual {
    align-self: start;
    height: auto;
    aspect-ratio: 1280 / 426;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

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

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

@media (min-width: 768px) {
  .hero__badge {
    margin-bottom: 34px;
  }

  .hero__photo-wrap {
    margin-top: 42px;
  }

  .about-larissa__badge {
    margin-bottom: 28px;
  }

  .story-photo {
    margin-bottom: 36px;
  }

  .about-larissa__copy {
    margin-bottom: 42px;
  }

  .about-stats {
    padding: 28px 24px;
  }

  .method-mechanism__inner {
    gap: 56px;
  }

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

  .comparison-table {
    display: table;
    border: 1px solid rgba(184, 116, 43, 0.22);
    background: #fcf6e8;
    box-shadow: 0 14px 34px rgba(44, 24, 16, 0.09);
  }

  .comparison-table thead {
    display: table-header-group;
  }

  .comparison-table tbody {
    display: table-row-group;
  }

  .comparison-table tr {
    display: table-row;
    margin-bottom: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .comparison-table th,
  .comparison-table td {
    display: table-cell;
    padding: 16px 20px;
    border-top: 1px solid rgba(44, 24, 16, 0.08);
    vertical-align: middle;
  }

  .comparison-table thead th {
    border-top: 0;
    color: var(--color-text);
    font-size: 0.82rem;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
  }

  .comparison-table thead th:nth-child(2) {
    background: rgba(44, 24, 16, 0.07);
    color: rgba(44, 24, 16, 0.7);
  }

  .comparison-table thead th:nth-child(3) {
    border-right: 2px solid var(--color-accent);
    border-left: 2px solid var(--color-accent);
    background: #fff3d7;
    color: var(--color-accent);
  }

  .comparison-table tbody th {
    width: 24%;
    background: rgba(252, 239, 217, 0.7);
    color: var(--color-text);
    text-align: left;
  }

  .comparison-table td::before {
    content: none;
  }

  .comparison-table td:nth-of-type(1) {
    width: 38%;
    background: rgba(44, 24, 16, 0.05);
  }

  .comparison-table td:nth-of-type(2) {
    width: 38%;
    border-top: 1px solid rgba(44, 24, 16, 0.08);
    border-right: 2px solid var(--color-accent);
    border-left: 2px solid var(--color-accent);
    background: #fff3d7;
    padding-left: 44px;
  }

  .comparison-table tbody tr:last-child td:nth-of-type(2) {
    border-bottom: 2px solid var(--color-accent);
  }

  .comparison-table td:nth-of-type(2)::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #4a7c2a;
    font-weight: 800;
  }

  .secondary-cta {
    min-height: 54px;
    padding: 16px 32px;
    font-size: 0.92rem;
  }

  .social-proof__inner {
    gap: 54px;
  }

  .press-strip,
  .student-results {
    gap: 22px;
  }

  .press-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    justify-content: center;
  }

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

  .testimonial-card__print {
    height: 320px;
  }

  .social-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .social-stats__item {
    padding-block: 40px;
  }

  .social-stats__item:nth-child(even),
  .social-stats__item:nth-child(n + 3) {
    border-top: 0;
    border-left: 0;
  }

  .social-stats__item + .social-stats__item {
    border-left: 1px solid rgba(184, 116, 43, 0.2);
  }

  .guide-showcase__inner {
    gap: 64px;
  }

  .guide-product__mockup {
    width: min(70%, 620px);
  }

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

  .recipe-tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .guide-seals {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .guide-seal,
  .guide-seal:nth-child(even),
  .guide-seal:nth-child(n + 3),
  .guide-seal:last-child {
    grid-column: auto;
    border-top: 0;
    border-left: 0;
  }

  .guide-seal + .guide-seal {
    border-left: 1px solid rgba(184, 116, 43, 0.18);
  }

  .offer-items li {
    font-size: 1.06rem;
  }

  .offer-price {
    padding: 26px 22px;
  }
}

@media (min-width: 1024px) {
  .method-mechanism__inner {
    gap: 64px;
  }

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

  .discovery-story {
    grid-template-columns: 120px 1fr;
    align-items: start;
    justify-items: start;
  }

  .discovery-story__photo {
    margin-top: 4px;
  }

  .press-grid {
    width: min(100%, 760px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .press-card {
    width: 100%;
  }

  .testimonial-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
  }

  .testimonial-card__print {
    height: 320px;
  }

  .testimonial-card {
    grid-column: span 2;
  }

  .testimonial-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .testimonial-card:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .guide-product__mockup {
    width: min(60%, 680px);
  }

  .guide-bridge__button {
    padding: 16px 36px;
    font-size: 1.0625rem;
  }

  .module-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .recipe-tags {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .bonus-stack__inner {
    gap: 40px;
  }

  .bonus-grid {
    gap: 24px;
  }

  .bonus-card {
    grid-template-columns: 35% 1fr;
    gap: 32px;
    padding: 22px;
  }

  .bonus-card__subtitle {
    font-size: 0.98rem;
  }

  .bonus-list li {
    font-size: 1rem;
  }

  .bonus-total {
    padding: 48px;
  }

  .bonus-cta a {
    padding: 20px 48px;
    font-size: 1.125rem;
  }

  .payback-section__inner {
    gap: 48px;
  }

  .payback-card {
    gap: 12px;
    padding: 40px;
  }

  .payback-card__label {
    font-size: 1.0625rem;
  }

  .payback-card__price,
  .payback-card__result {
    font-size: clamp(5rem, 8vw, 6rem);
  }

  .payback-card__divider {
    margin: 18px 0;
  }

  .offer-section__inner {
    gap: 56px;
  }

  .offer-card {
    gap: 24px;
    padding: 48px;
  }

  .offer-kit {
    height: 240px;
  }

  .offer-main-cta {
    min-height: 76px;
    padding: 26px 56px;
  }

  .guarantee-card {
    padding: 32px;
  }

  .faq-section__inner {
    gap: 48px;
  }

  .faq-item summary {
    padding: 24px;
  }

  .faq-item h3 {
    font-size: 1.18rem;
  }

  .faq-answer p {
    padding: 0 24px 24px;
    font-size: 1.03rem;
  }

  .faq-cta {
    margin-top: -8px;
  }

  .faq-cta p {
    font-size: 1.0625rem;
  }

  .faq-cta a {
    padding: 20px 44px;
    font-size: 1.22rem;
  }

  .site-footer {
    padding: 48px 0;
  }

  .site-footer__copyright {
    font-size: 0.88rem;
  }
}

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

  .hero__scroll {
    animation: none;
  }

  .guide-bridge__chevron {
    animation: none;
  }

  .offer-main-cta {
    animation: none;
  }

  .payback-card {
    animation: none;
  }

  .faq-answer,
  .faq-item__chevron,
  .faq-cta a,
  .sticky-mobile-cta,
  .site-footer__nav a,
  .site-footer__contact {
    transition: none;
  }
}
