/* =========================================================
   Design tokens
   ========================================================= */
:root {
  color-scheme: light;

  --color-ink: #151911;
  --color-body: #4d5548;
  --color-muted: #747c6e;
  --color-line: #e4e9dc;
  --color-page: #ffffff;
  --color-soft: #f6f8ee;
  --color-panel: #fbfcf7;

  --color-green-950: #17230c;
  --color-green-850: #24370f;
  --color-green-700: #3b5b10;
  --color-green-600: #4f7417;
  --color-green-100: #edf5d8;

  --color-yellow-500: #fbbc05;
  --color-yellow-650: #c99b02;
  --color-red-100: #fff0ec;
  --color-red-700: #9f3325;

  --font-display: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Be Vietnam Pro", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1160px;
  --space-page: clamp(1rem, 4vw, 2rem);
  --section-y: clamp(4rem, 10vw, 7.5rem);

  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.35rem;
  --radius-xl: 1.75rem;
  --radius-pill: 999px;

  --shadow-sm: 0 0.5rem 1.5rem rgba(24, 35, 12, 0.08);
  --shadow-md: 0 1.2rem 3rem rgba(24, 35, 12, 0.12);
  --shadow-lg: 0 2rem 5rem rgba(24, 35, 12, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-page);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--color-yellow-500) 85%, white);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--color-ink);
  color: #fff;
  padding: 0.75rem 1rem;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: auto;
  max-width: var(--container);
  margin-inline: var(--space-page);
  padding-inline: 0;
}

.section {
  padding-block: var(--section-y);
}

.section-surface {
  background:
    radial-gradient(circle at 15% 5%, rgba(251, 188, 5, 0.12), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, var(--color-panel) 100%);
}

.section-label,
.microcopy {
  color: var(--color-green-700);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.section-copy h2,
.problem-panel h2,
.offer-content h2,
.faq-layout h2 {
  margin-top: 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 7.2vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.02;
  overflow-wrap: break-word;
}

.section-heading p,
.section-lead {
  margin-top: 1rem;
  color: var(--color-body);
  font-size: clamp(1rem, 2vw, 1.12rem);
  overflow-wrap: anywhere;
}

.section-heading-light h2,
.section-heading-light p {
  color: #fff;
}

.section-heading-light .section-label {
  color: #dbeab3;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  display: none;
  position: sticky;
  top: 0.75rem;
  z-index: 50;
  padding-block: 0.65rem;
  border-bottom: 0;
  background: transparent;
  pointer-events: none;
}

.header-inner {
  width: min(calc(100% - 1.25rem), 62rem);
  min-height: 3.75rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  border: 1px solid rgba(228, 233, 220, 0.9);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.88);
  padding: 0.38rem;
  box-shadow: 0 1rem 2.5rem rgba(24, 35, 12, 0.1);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.55rem;
  border-radius: var(--radius-pill);
  color: var(--color-green-950);
  font-family: var(--font-display);
  font-weight: 900;
  padding: 0.22rem 0.75rem 0.22rem 0.22rem;
  white-space: nowrap;
  transition: background 180ms ease;
}

.brand:hover {
  background: var(--color-soft);
}

.brand-icon {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-green-700);
  color: #fff;
  box-shadow: 0 0.5rem 1.2rem rgba(59, 91, 16, 0.18);
}

.brand-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.brand-icon path:first-child {
  fill: currentColor;
  opacity: 0.22;
}

.brand-icon path:last-child {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.desktop-nav {
  display: none;
}

.header-cta {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--color-green-700);
  color: #fff;
  padding: 0.78rem 1.05rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 0.7rem 1.6rem rgba(59, 91, 16, 0.18);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--color-green-850);
  box-shadow: 0 0.9rem 1.9rem rgba(59, 91, 16, 0.24);
}

/* =========================================================
   Buttons
   ========================================================= */
.button {
  display: inline-flex;
  width: 100%;
  min-height: 3.55rem;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  padding: 0.95rem 1.35rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.985);
}

.button-primary {
  background: var(--color-green-700);
  color: #fff;
  box-shadow: 0 1rem 2.2rem rgba(59, 91, 16, 0.24);
}

.button-primary:hover,
.button-dark:hover {
  background: var(--color-green-850);
}

.button-ghost {
  border-color: color-mix(in srgb, var(--color-green-700) 24%, white);
  background: rgba(255, 255, 255, 0.84);
  color: var(--color-green-850);
}

.button-dark {
  margin-top: 1.5rem;
  background: var(--color-ink);
  color: #fff;
}

.button-checkout {
  margin-top: 1.15rem;
  border-color: var(--color-yellow-650);
  border-bottom-width: 5px;
  background: var(--color-yellow-500);
  color: #332706;
  box-shadow: 0 1rem 2.4rem rgba(251, 188, 5, 0.25);
}

.button-checkout:hover {
  background: #f5b401;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding-block: 2.4rem 3.5rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.hero-copy {
  display: grid;
  gap: 1.15rem;
}

.hero h1 {
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(2.28rem, 10.6vw, 3rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.hero h1 span {
  display: block;
}

.hero-text {
  color: var(--color-body);
  font-size: clamp(1.05rem, 3.8vw, 1.28rem);
}

.hero-actions {
  display: grid;
  gap: 0.8rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.3rem;
}

.hero-metrics li {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  padding: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.hero-metrics li:first-child {
  grid-column: 1 / -1;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--color-green-700);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 950;
  line-height: 1;
}

.hero-metrics span {
  margin-top: 0.25rem;
  color: var(--color-body);
  font-size: 0.85rem;
  font-weight: 800;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: var(--color-soft);
  box-shadow: var(--shadow-lg);
}

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

.hero-media figcaption {
  display: none;
  position: static;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background: rgba(23, 35, 12, 0.86);
  color: #fff;
  padding: 0.95rem;
}

.hero-media strong,
.hero-media span {
  display: block;
}

.hero-media strong {
  font-family: var(--font-display);
  font-weight: 900;
}

.hero-media span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

/* =========================================================
   Trust strip
   ========================================================= */
.trust-strip {
  border-block: 1px solid var(--color-line);
  background: var(--color-green-950);
  color: #fff;
  padding-block: 1rem;
}

.trust-grid {
  display: grid;
  gap: 0.75rem;
}

.trust-grid div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.95rem;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-family: var(--font-display);
  font-weight: 900;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

/* =========================================================
   Shared sections
   ========================================================= */
.split-layout {
  display: grid;
  gap: 2rem;
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--color-soft);
  box-shadow: var(--shadow-md);
}

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

.image-card-tall img {
  aspect-ratio: 4 / 4.4;
}

.feature-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.55rem;
}

.feature-list li {
  position: relative;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-panel);
  padding: 1rem 1rem 1rem 3rem;
  box-shadow: var(--shadow-sm);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 1rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 42%, #fff 43% 56%, transparent 57%),
    var(--color-green-700);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  font-family: var(--font-display);
  font-weight: 900;
}

.feature-list span {
  margin-top: 0.15rem;
  color: var(--color-body);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

/* =========================================================
   Recipes
   ========================================================= */
.recipes,
.faq {
  background: var(--color-panel);
}

.recipe-grid {
  display: grid;
  gap: 1rem;
}

.recipe-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.recipe-card img {
  width: 100%;
  aspect-ratio: 4 / 3.15;
  object-fit: cover;
}

.card-body {
  display: grid;
  gap: 0.6rem;
  padding: 1.1rem;
}

.card-body h3,
.bonus-card h3,
.method-grid h3 {
  font-family: var(--font-display);
  font-weight: 950;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.card-body h3 {
  font-size: 1.2rem;
}

.card-body p {
  color: var(--color-body);
  overflow-wrap: anywhere;
}

.card-body span {
  width: fit-content;
  border-radius: var(--radius-pill);
  background: var(--color-green-100);
  color: var(--color-green-850);
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 900;
}

/* =========================================================
   Method
   ========================================================= */
.method {
  background:
    radial-gradient(circle at 80% 10%, rgba(251, 188, 5, 0.14), transparent 22rem),
    var(--color-green-950);
  color: #fff;
}

.method-grid {
  display: grid;
  gap: 0.85rem;
}

.method-grid article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  padding: 1.25rem;
}

.method-grid span {
  display: inline-grid;
  min-width: 2.55rem;
  min-height: 2.55rem;
  place-items: center;
  border-radius: var(--radius-pill);
  background: var(--color-yellow-500);
  color: #332706;
  font-family: var(--font-display);
  font-weight: 950;
}

.method-grid h3 {
  margin-top: 1rem;
  font-size: 1.3rem;
}

.method-grid p {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.74);
}

/* =========================================================
   Bonuses
   ========================================================= */
.bonuses {
  background: #fff;
}

.bonus-grid {
  display: grid;
  gap: 1rem;
}

.bonus-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(7.5rem, 38%) 1fr;
  min-height: 10.5rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: var(--color-panel);
  box-shadow: var(--shadow-sm);
}

.bonus-card img {
  width: 100%;
  height: 100%;
  min-height: 10.5rem;
  object-fit: cover;
}

.bonus-card div {
  display: grid;
  align-content: center;
  gap: 0.45rem;
  padding: 1rem;
}

.bonus-card span {
  color: var(--color-green-700);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bonus-card h3 {
  font-size: 1.08rem;
}

.bonus-card p {
  color: var(--color-body);
  font-size: 0.95rem;
}

/* =========================================================
   Problem / solution
   ========================================================= */
.problem-solution {
  background: linear-gradient(180deg, var(--color-soft), #fff);
}

.problem-panel {
  display: grid;
  gap: 1.5rem;
}

.problem-panel ul {
  display: grid;
  gap: 0.75rem;
}

.problem-panel li {
  border: 1px solid #f1d2ca;
  border-radius: var(--radius-lg);
  background: var(--color-red-100);
  color: var(--color-red-700);
  padding: 0.95rem 1rem;
  font-weight: 850;
}

/* =========================================================
   Offer
   ========================================================= */
.offer {
  background:
    linear-gradient(180deg, #fff 0%, var(--color-green-100) 100%);
}

.offer-card {
  display: grid;
  gap: 1.35rem;
  border: 1px solid color-mix(in srgb, var(--color-green-700) 35%, white);
  border-radius: var(--radius-xl);
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
}

.offer-product {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-soft);
}

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

.offer-product div {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  left: 0.85rem;
  border-radius: var(--radius-md);
  background: rgba(23, 35, 12, 0.88);
  color: #fff;
  padding: 1rem;
}

.offer-product span,
.offer-product strong {
  display: block;
  font-family: var(--font-display);
}

.offer-product span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-product strong {
  margin-top: 0.15rem;
  font-size: clamp(1.45rem, 6vw, 2.35rem);
  font-weight: 950;
  line-height: 1;
}

.offer-content {
  padding: 0.25rem 0.25rem 0.4rem;
}

.offer-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.offer-list li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--color-body);
  font-weight: 800;
}

.offer-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: -0.05rem;
  color: var(--color-green-700);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 950;
  line-height: 1;
}

.price-box {
  margin-top: 1.25rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-soft);
  padding: 1.1rem;
  text-align: center;
}

.price-box p {
  color: var(--color-muted);
  font-weight: 850;
}

.price-box strong {
  display: block;
  margin-top: 0.2rem;
  color: var(--color-green-700);
  font-family: var(--font-display);
  font-size: clamp(3rem, 15vw, 5rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.price-box span {
  display: block;
  margin-top: 0.25rem;
  color: var(--color-ink);
  font-weight: 900;
}

.safe-note {
  margin-top: 0.8rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

/* =========================================================
   Testimonials
   ========================================================= */
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.testimonial-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: #fff;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
  content: "✓";
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border-radius: 50%;
  background: var(--color-green-100);
  color: var(--color-green-700);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
  margin-bottom: 0.9rem;
}

.testimonial-card p {
  color: var(--color-body);
}

.testimonial-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--color-green-700);
  font-family: var(--font-display);
  font-weight: 950;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-layout {
  display: grid;
  gap: 1.6rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem;
  font-family: var(--font-display);
  font-weight: 900;
  list-style: none;
}

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

.faq summary::after {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  flex: 0 0 auto;
  border-right: 3px solid var(--color-green-700);
  border-bottom: 3px solid var(--color-green-700);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.faq details[open] summary::after {
  transform: rotate(225deg);
}

.faq details p {
  border-top: 1px solid var(--color-line);
  color: var(--color-body);
  padding: 1rem;
}

/* =========================================================
   Footer / sticky CTA
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--color-line);
  background: #fff;
  padding-block: 1.6rem 6rem;
}

.footer-grid {
  display: grid;
  gap: 0.75rem;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.footer-grid a {
  width: fit-content;
  color: var(--color-green-700);
  font-weight: 900;
}

.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 45;
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--color-green-700);
  color: #fff;
  box-shadow: 0 1rem 2.5rem rgba(24, 35, 12, 0.24);
  font-family: var(--font-display);
  font-weight: 950;
  text-transform: uppercase;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (min-width: 42rem) {
  .button {
    width: auto;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-metrics,
  .trust-grid,
  .recipe-grid,
  .method-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-metrics li:first-child {
    grid-column: auto;
  }

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

@media (min-width: 56rem) {
  .container {
    width: calc(100% - (var(--space-page) * 2));
    margin-inline: auto;
  }

  .site-header {
    display: block;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-pill);
    background: var(--color-soft);
    padding: 0.22rem;
    color: var(--color-body);
    font-size: 0.94rem;
    font-weight: 850;
  }

  .desktop-nav a {
    border-radius: var(--radius-pill);
    padding: 0.58rem 0.85rem;
    transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  }

  .desktop-nav a:hover {
    background: #fff;
    color: var(--color-green-700);
    box-shadow: 0 0.35rem 1rem rgba(24, 35, 12, 0.07);
  }

  .hero {
    padding-block: 4.75rem 5.25rem;
  }

  .hero-grid,
  .split-layout,
  .problem-panel,
  .offer-card,
  .faq-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .hero-grid {
    gap: clamp(2rem, 5vw, 4.5rem);
  }

  .hero h1 {
    max-width: 10.5ch;
  }

  .hero-media img {
    aspect-ratio: 4 / 4.35;
  }

  .hero-media figcaption {
    display: block;
    position: absolute;
    right: 0.9rem;
    bottom: 0.9rem;
    left: 0.9rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
  }

  .section-heading {
    margin-inline: auto;
    text-align: center;
  }

  .section-copy {
    max-width: 34rem;
  }

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

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

  .bonus-card {
    grid-template-columns: 1fr;
  }

  .bonus-card img {
    height: 13rem;
  }

  .offer-card {
    padding: 1.2rem;
  }

  .offer-content {
    padding: 1.2rem clamp(0.5rem, 3vw, 1.8rem);
  }

  .footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .site-footer {
    padding-bottom: 1.6rem;
  }

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 72rem) {
  .hero h1 {
    font-size: clamp(4.6rem, 7.2vw, 6.7rem);
  }

  .section-heading h2,
  .section-copy h2,
  .problem-panel h2,
  .offer-content h2,
  .faq-layout h2 {
    font-size: clamp(2.75rem, 4vw, 4rem);
  }

  .offer-card {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

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