/* ========================
   SALADAS NO POTE — LP
   Orgânico aconchegante
   ======================== */

:root {
  --cream: #F6F1E8;
  --cream-2: #EFE6D4;
  --linen: #FAF6EE;
  --paper: #FCFAF4;

  --forest: #1F3A2E;
  --forest-2: #2A4A38;
  --moss: #455A3C;
  --sage: #8FA081;
  --sage-soft: #C8D2BA;

  --terracotta: #C75D3E;
  --terracotta-2: #A94A2E;
  --amber: #D4974B;

  --ink: #1A1F1A;
  --ink-2: #3D4438;
  --muted: #6F7464;

  --max: 1180px;
  --radius: 22px;
  --radius-sm: 14px;

  --shadow-soft: 0 1px 2px rgba(31,58,46,.04), 0 12px 32px -8px rgba(31,58,46,.12);
  --shadow-lift: 0 1px 2px rgba(31,58,46,.05), 0 24px 60px -12px rgba(31,58,46,.22);

  --font-display: "Instrument Serif", "DM Serif Display", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

/* ── Layout ─────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

section { position: relative; }

/* ── Type ─────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--moss);
  display: inline-block;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--forest);
  margin: 0;
}
.display em {
  font-style: italic;
  color: var(--terracotta);
}

h1.display { font-size: clamp(48px, 7vw, 96px); }
h2.display { font-size: clamp(38px, 5.4vw, 72px); }
h3.display { font-size: clamp(28px, 3.6vw, 48px); }

.lede {
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 56ch;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
}

/* ── Buttons ─────────────── */
.btn {
  --bg: var(--terracotta);
  --fg: #FFF8EE;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 32px;
  background: var(--bg);
  color: var(--fg);
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 12px 24px -10px rgba(199,93,62,.55);
  position: relative;
  overflow: hidden;
}
.btn:hover {
  transform: translateY(-1px);
  background: var(--terracotta-2);
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 18px 36px -12px rgba(199,93,62,.6);
}
/* Subtle pulse on all primary CTAs to draw attention */
.btn:not(.btn-ghost) {
  animation: btn-pulse 2.8s ease-in-out infinite;
}
.btn:not(.btn-ghost):hover { animation: none; }
@keyframes btn-pulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 12px 24px -10px rgba(199,93,62,.55);
  }
  50% {
    transform: translateY(-2px) scale(1.015);
    box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 20px 36px -12px rgba(199,93,62,.7);
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn:not(.btn-ghost) { animation: none; }
}
.btn .arrow {
  width: 18px; height: 18px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .18s ease;
  margin-left: 2px;
}
.btn:hover .arrow { transform: rotate(45deg) translate(2px, -2px); }

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--forest); color: var(--linen); }

.btn-block { width: 100%; max-width: 460px; }
.btn-xl { padding: 24px 40px; font-size: 18px; }

/* ── Top banner ─────────────── */
.topbar {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); display: inline-block; }
.topbar .countdown { color: var(--amber); }

/* ── Header ─────────────── */
.header {
  padding: 22px 0;
  border-bottom: 1px solid rgba(31,58,46,.08);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo .leaf {
  width: 22px; height: 22px;
  background: var(--terracotta);
  border-radius: 50% 0;
  transform: rotate(-30deg);
  display: inline-block;
}
.logo small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--moss);
  text-transform: uppercase;
  margin-left: 6px;
}

/* ── Hero ─────────────── */
.hero {
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 .badge-inline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(199,93,62,.1);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  vertical-align: middle;
}
.hero .lede { margin-top: 24px; }

.hero-cta-row {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-microproof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  font-size: 13px;
  color: var(--ink-2);
}
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--sage-soft);
  border: 2px solid var(--cream);
  margin-left: -8px;
  background-size: cover;
  background-position: center;
}
.avatar-stack span:first-child { margin-left: 0; }
.stars { color: var(--amber); letter-spacing: 2px; font-size: 14px; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.hero-visual .img-main {
  width: 100%; height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sage-soft);
  box-shadow: var(--shadow-lift);
  position: relative;
}
.hero-visual .img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .floating-card {
  position: absolute;
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
}
.hero-visual .card-1 { bottom: 28px; left: -22px; }
.hero-visual .card-2 { top: 28px; right: -22px; }
.float-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--forest); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px;
}
.float-icon.terra { background: var(--terracotta); }
.float-meta strong { display: block; font-weight: 700; color: var(--ink); }
.float-meta span { color: var(--muted); }

.organic-blob {
  position: absolute;
  border-radius: 60% 40% 55% 45%;
  filter: blur(60px);
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}
.blob-1 { width: 440px; height: 440px; background: var(--sage-soft); top: -120px; left: -120px; }
.blob-2 { width: 380px; height: 380px; background: rgba(199,93,62,.25); bottom: -120px; right: -100px; }

.hero > .container { position: relative; z-index: 1; }

/* ── Marquee strip ─────────────── */
.marquee {
  background: var(--forest);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--font-display);
  font-size: 32px;
  font-style: italic;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta); display: inline-block;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Features ─────────────── */
.features { padding: 110px 0; }
.features-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.feature-list { list-style: none; padding: 0; margin: 40px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; }

.features-grid--centered {
  grid-template-columns: 1fr;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.features-grid--centered .lede { margin-left: auto; margin-right: auto; }
.features-grid--centered .eyebrow { justify-content: center; }
.features-grid--centered .feature-list {
  text-align: left;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .features-grid--centered .feature-list { grid-template-columns: 1fr; }
}
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--ink-2);
  padding: 14px 0;
  border-top: 1px solid rgba(31,58,46,.1);
}
.feature-list li:first-child,
.feature-list li:nth-child(2) { border-top: 1px solid rgba(31,58,46,.1); }
.check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  flex: 0 0 26px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.feature-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sage-soft);
  box-shadow: var(--shadow-lift);
  position: relative;
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-image .tag {
  position: absolute; top: 24px; left: 24px;
  background: var(--paper); border-radius: 999px; padding: 8px 14px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--forest);
}
/* Photo variant — full-bleed landscape with editorial caption */
.feature-image--photo {
  aspect-ratio: auto;
  background: var(--paper);
  padding: 0;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.feature-image--photo > img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  border-radius: 0;
}
.feature-image--photo .tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(252,250,244,.96);
  z-index: 2;
}
.feature-image__caption {
  padding: 22px 26px 26px;
  background: var(--paper);
  border-top: 1px solid rgba(31,58,46,.08);
}
.feature-image__caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.feature-image__caption span {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .feature-image--photo {
    max-width: none;
    margin-left: -18px;
    margin-right: -18px;
    border-radius: 0;
  }
  .feature-image--photo > img {
    aspect-ratio: 16 / 10;
  }
  .feature-image--photo .tag { top: 14px; left: 14px; font-size: 10px; padding: 6px 10px; }
  .feature-image__caption { padding: 18px 20px 20px; text-align: center; }
  .feature-image__caption strong { font-size: 22px; }
  .feature-image__caption span { font-size: 13px; }
}
@media (max-width: 420px) {
  .feature-image--photo {
    margin-left: -16px;
    margin-right: -16px;
  }
}
.feature-image--contain {
  aspect-ratio: 1 / 1.05;
  background: var(--forest);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-image--contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.feature-image--contain .tag { z-index: 2; }

/* ── Salad grid ─────────────── */
.salads {
  background: var(--linen);
  padding: 120px 0;
  border-top: 1px solid rgba(31,58,46,.06);
  border-bottom: 1px solid rgba(31,58,46,.06);
}
.salads-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 60px;
}
.salads-header .lede { margin-top: 18px; }
.salads-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  display: flex; gap: 18px; align-items: center;
}
.salad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.salad-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.salad-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.salad-card .img-wrap {
  aspect-ratio: 5 / 4;
  background: var(--sage-soft);
  overflow: hidden;
  position: relative;
}
.salad-card img { width: 100%; height: 100%; object-fit: cover; }
.salad-card .badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.94);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--forest);
}
.salad-card .body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.salad-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.05;
  color: var(--forest);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.salad-card h3 em { font-style: italic; color: var(--terracotta); }
.salad-card .sauce { font-size: 13px; color: var(--moss); margin-bottom: 18px; font-style: italic; }
.salad-card .stats {
  display: flex; justify-content: space-between;
  border-top: 1px dashed rgba(31,58,46,.18);
  padding-top: 14px;
  margin-top: auto;
  font-size: 13px;
  color: var(--ink-2);
}
.salad-card .stats strong { display: block; color: var(--forest); font-family: var(--font-display); font-size: 19px; font-weight: 400; }

.salads-cta { text-align: center; margin-top: 64px; }

/* Inline CTA inside salad grid — mobile only */
.section-cta.salad-inline-cta {
  display: none;
  margin-top: 0;
  padding: 8px 0;
}
@media (max-width: 640px) {
  .section-cta.salad-inline-cta { display: flex; margin-top: 0; }
}

/* Section CTA — repeating throughout page */
.section-cta {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.section-cta .btn { margin: 0; }
.section-cta .cta-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
}
.section-cta--dark .cta-hint { color: var(--sage-soft); }
@media (max-width: 640px) {
  .section-cta { margin-top: 36px; }
}

/* ── Frescor / mosaic ─────────────── */
.mosaic { padding: 120px 0; }
.mosaic-head { text-align: center; max-width: 820px; margin: 0 auto 60px; }
.mosaic-head .lede { margin: 18px auto 0; }
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 18px;
}
.mosaic-grid > div {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sage-soft);
  position: relative;
}
.mosaic-grid img { width: 100%; height: 100%; object-fit: cover; }
.mosaic-grid .span-2 { grid-row: span 2; }
.mosaic-grid .tall { grid-column: span 1; }
.mosaic-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(252,250,244,.94);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--forest);
}

/* ── Video ─────────────── */
.video-section {
  background: var(--forest);
  color: var(--cream);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.video-section .display { color: var(--cream); }
.video-section .display em { color: var(--amber); }
.video-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.video-head .eyebrow { color: var(--sage-soft); }
.video-head .eyebrow::before { background: var(--sage-soft); }
.video-frame {
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lift);
  border: 6px solid rgba(255,255,255,.08);
}
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Shorts (vertical) variant — Vimeo embed */
.video-frame--shorts {
  display: block;
  position: relative;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lift);
  border: 6px solid rgba(255,255,255,.08);
  padding: 0;
}
.video-frame--shorts > div { width: 100%; height: 100%; }
.video-frame--shorts iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Lazy poster — shown until user clicks play */
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  padding: 0; margin: 0;
  border: 0;
  background: var(--forest);
  cursor: pointer;
  font: inherit; color: inherit;
  display: block;
  overflow: hidden;
}
.video-thumb-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(212,151,75,.2), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(199,93,62,.18), transparent 55%),
    linear-gradient(180deg, var(--forest), #0e1f17);
}
.video-thumb-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 75%, rgba(143,160,129,.15) 0 24px, transparent 25px),
    radial-gradient(circle at 80% 25%, rgba(143,160,129,.12) 0 30px, transparent 31px),
    radial-gradient(circle at 50% 50%, rgba(212,151,75,.08) 0 50px, transparent 51px);
}
.video-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: var(--cream);
  padding: 24px;
  text-align: center;
}
.play-btn {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #FFF8EE;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(199,93,62,.5), inset 0 0 0 4px rgba(255,255,255,.18);
  animation: btn-pulse 2.6s ease-in-out infinite;
  margin-bottom: 14px;
}
.play-btn svg { width: 32px; height: 32px; margin-left: 4px; }
.video-poster:hover .play-btn { transform: scale(1.06); }
.video-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}
.video-title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
  color: var(--cream);
  max-width: 14ch;
  margin: 0;
}

@media (max-width: 640px) {
  .video-frame--shorts { max-width: 320px; border-width: 4px; }
  .play-btn { width: 68px; height: 68px; }
  .play-btn svg { width: 28px; height: 28px; }
  .video-title { font-size: 19px; }
}

/* ── Bonuses ─────────────── */
.bonuses { padding: 120px 0; background: var(--cream-2); }
.bonus-head { text-align: center; max-width: 820px; margin: 0 auto 64px; }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.bonus-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.bonus-card .img-wrap { aspect-ratio: 1 / 1; background: var(--sage-soft); }
.bonus-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.bonus-card .body { padding: 30px 28px 32px; text-align: center; }
.bonus-num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.bonus-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--forest);
  margin: 0 0 8px;
  line-height: 1.05;
}
.bonus-card .recipes-count {
  font-size: 13px; color: var(--muted);
  font-family: var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 22px;
}
.bonus-price {
  display: flex; align-items: baseline; justify-content: center; gap: 10px;
  padding-top: 18px;
  border-top: 1px dashed rgba(31,58,46,.18);
}
.bonus-price .strike { text-decoration: line-through; color: var(--muted); font-size: 14px; }
.bonus-price .free {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--terracotta);
  font-style: italic;
}

/* ── Pain points / Offer ─────────────── */
.pain {
  padding: 120px 0;
  background: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.pain .display { color: var(--cream); }
.pain .display em { color: var(--amber); }
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pain-list { list-style: none; padding: 0; margin: 36px 0 0; }
.pain-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 17px;
  color: rgba(252,250,244,.85);
}
.pain-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.pain-list .x {
  width: 26px; height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: rgba(199,93,62,.18);
  color: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}

.pain-card-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--moss);
  box-shadow: var(--shadow-lift);
}
.pain-card-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Pricing — value stack ─────────────── */
.pricing {
  padding: 120px 0;
  background: var(--cream);
  scroll-margin-top: 40px;
}
.pricing-head { text-align: center; max-width: 760px; margin: 0 auto 50px; }

/* New offer card */
.offer-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: 28px;
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  border: 1px solid rgba(31,58,46,.08);
}
.offer-card__head {
  background: linear-gradient(180deg, var(--forest), var(--forest-2));
  color: var(--cream);
  text-align: center;
  padding: 32px 28px 28px;
  position: relative;
}
.offer-card__head .kicker { color: var(--sage-soft); display: block; margin-bottom: 10px; }
.offer-card__title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.05;
  color: var(--cream);
  margin: 0;
  letter-spacing: -0.01em;
}
.offer-card__title em { color: var(--amber); font-style: italic; }

/* Value stack */
.value-stack { list-style: none; padding: 0; margin: 0; }
.value-stack li {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 32px;
  border-top: 1px solid rgba(31,58,46,.08);
}
.value-stack li:first-child { border-top: none; }
.value-stack .vs-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--forest); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
}
.value-stack .vs-bonus .vs-num { background: var(--terracotta); }
.value-stack .vs-body strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.25;
}
.value-stack .vs-body span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.value-stack .vs-price {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 2px;
}
.value-stack .vs-price s { font-size: 14px; }
.value-stack .vs-price em {
  font-style: normal;
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* Total row */
.value-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 32px;
  border-top: 2px dashed rgba(31,58,46,.18);
  background: rgba(31,58,46,.03);
}
.value-total span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
}
.value-total strong {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--ink-2);
}
.value-total s { color: var(--muted); }

/* Deal section */
.offer-deal {
  background: linear-gradient(180deg, var(--forest), #14271f);
  color: var(--cream);
  padding: 36px 32px 36px;
  position: relative;
}
.deal-badge {
  display: inline-block;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin: 0 auto 24px;
  display: block;
  text-align: center;
  width: fit-content;
}

.deal-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.deal-installment-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-soft);
}
.deal-price {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-display);
  color: var(--cream);
  line-height: 0.9;
}
.deal-price .dp-installment {
  font-size: 30px;
  font-style: italic;
  color: var(--amber);
  margin-right: 6px;
  align-self: baseline;
}
.deal-price .dp-currency {
  font-size: 26px;
  align-self: flex-start;
  margin-top: 12px;
}
.deal-price .dp-int {
  font-size: 96px;
  letter-spacing: -0.03em;
}
.deal-price .dp-frac {
  font-size: 40px;
  align-self: flex-start;
  margin-top: 14px;
}
.deal-cash {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(252,250,244,.72);
  text-align: center;
  margin-top: 2px;
}
.deal-cash strong {
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.deal-saving {
  display: flex; align-items: center; gap: 10px;
  justify-content: center;
  background: rgba(212,151,75,.15);
  border: 1px solid rgba(212,151,75,.4);
  border-radius: 14px;
  padding: 14px 18px;
  margin: 0 auto 24px;
  font-size: 14px;
  color: var(--cream);
  max-width: 460px;
  text-align: center;
  flex-wrap: wrap;
}
.deal-saving .ds-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--amber); color: var(--forest);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px;
}
.deal-saving strong { color: var(--amber); font-family: var(--font-display); font-size: 18px; font-weight: 400; }
.deal-saving em { color: var(--amber); font-style: italic; font-weight: 600; }

.deal-cta {
  width: 100%;
  margin: 0 auto 18px !important;
  font-size: 17px !important;
  padding: 22px 28px !important;
  animation: cta-pulse 2.6s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 12px 24px -10px rgba(199,93,62,.55); }
  50% { transform: translateY(-3px); box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 22px 36px -12px rgba(199,93,62,.7); }
}

.deal-trust {
  display: flex; gap: 18px; justify-content: center;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(252,250,244,.78);
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.deal-trust .t-icon { color: var(--amber); margin-right: 4px; font-size: 13px; }

.deal-pay {
  display: flex; gap: 8px; justify-content: center; align-items: center;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(252,250,244,.6);
  flex-wrap: wrap;
}
.deal-pay .pay-method {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--cream);
}

/* old price-card kept as legacy if used elsewhere */
.price-card {
  display: none;
}

.urgency-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(199,93,62,.12);
  color: var(--terracotta);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 auto 24px;
}
.urgency-pill .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.3); }
}

/* ── Guarantee ─────────────── */
.guarantee {
  padding: 80px 0;
  background: var(--cream-2);
  text-align: center;
}
.guarantee-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: 28px;
  padding: 50px 56px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-soft);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.guarantee-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(199,93,62,.05), transparent 40%),
    radial-gradient(circle at 88% 50%, rgba(31,58,46,.04), transparent 40%);
  pointer-events: none;
}
.guarantee-seal {
  position: relative;
  width: 200px;
  height: 200px;
  flex: 0 0 200px;
  z-index: 1;
}
.guarantee-seal .seal-ring {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: seal-rotate 22s linear infinite;
}
@keyframes seal-rotate { to { transform: rotate(360deg); } }
.guarantee-seal .seal-text {
  fill: var(--moss);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.guarantee-seal .seal-inner {
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 12px 24px -10px rgba(31,58,46,.3);
}
.guarantee-seal .seal-inner::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(252,250,244,.3);
  border-radius: 50%;
  pointer-events: none;
}
.guarantee-seal .seal-num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.85;
  color: var(--amber);
}
.guarantee-seal .seal-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 6px;
}
.guarantee-seal .seal-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-top: 2px;
}
.guarantee-copy { position: relative; z-index: 1; }
.guarantee-copy .kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-block;
  margin-bottom: 12px;
}
.guarantee-copy h3 {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.04;
  color: var(--forest);
  margin: 0 0 16px;
  letter-spacing: -0.015em;
}
.guarantee-copy h3 em { font-style: italic; color: var(--terracotta); }
.guarantee-copy p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 20px;
  max-width: 50ch;
}
.guarantee-copy p strong { color: var(--forest); }
.guarantee-perks {
  display: flex; gap: 18px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
}
.guarantee-perks > div { display: inline-flex; align-items: center; gap: 8px; }
.guarantee-perks .gp-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
}

/* ── Author ─────────────── */
.author { padding: 120px 0; background: var(--linen); }
.author-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.author-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sage-soft);
  box-shadow: var(--shadow-lift);
  position: relative;
}
.author-photo img { width: 100%; height: 100%; object-fit: cover; }
.author-photo .tag-name {
  position: absolute; left: 24px; bottom: 24px;
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.author-photo .tag-name strong { display: block; font-family: var(--font-display); font-size: 22px; color: var(--forest); }
.author-photo .tag-name span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--moss); }
.author-body .display { font-size: clamp(36px, 4.4vw, 56px); }
.author-body p { font-size: 18px; color: var(--ink-2); line-height: 1.6; max-width: 56ch; }
.author-stats { display: flex; gap: 36px; margin-top: 36px; padding-top: 32px; border-top: 1px solid rgba(31,58,46,.12); }
.author-stats div strong {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--terracotta);
  display: block;
  line-height: 1;
}
.author-stats div span { font-size: 13px; color: var(--muted); font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── Testimonials ─────────────── */
.testimonials { padding: 120px 0; background: var(--cream); }
.testimonials-head { text-align: center; max-width: 820px; margin: 0 auto 60px; }

.testimonials-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 9 / 16;
  background-size: cover;
  background-position: center;
  position: relative;
}
.testimonial-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31,58,46,.7));
}
.testimonial-card .tag {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  color: var(--cream); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  z-index: 1;
}
.testimonial-card .tag .stars { color: var(--amber); display: block; font-size: 14px; margin-bottom: 6px; letter-spacing: 2px; }

.carousel-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.carousel-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(31,58,46,.2);
  padding: 0;
  cursor: pointer;
  transition: background .2s, width .2s;
}
.carousel-dots button.active {
  background: var(--terracotta);
  width: 24px;
  border-radius: 4px;
}

.testimonials-footer {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.rating-block { text-align: center; }
.rating-block .rating-stars {
  color: var(--amber);
  font-size: 28px;
  letter-spacing: 4px;
  margin-bottom: 6px;
}
.rating-block .rating-text {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
}
.rating-block .rating-text strong { color: var(--forest); font-size: 14px; }

/* ── FAQ ─────────────── */
.faq { padding: 120px 0; background: var(--linen); }
.faq-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(31,58,46,.14);
}
.faq-item:first-child { border-top: 1px solid rgba(31,58,46,.14); }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 28px 0;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--forest);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  letter-spacing: -0.01em;
}
.faq-q .plus {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex: 0 0 36px;
  transition: transform .25s ease, background .25s ease;
}
.faq-item.open .faq-q .plus { background: var(--terracotta); color: var(--cream); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  color: var(--ink-2);
  font-size: 16px;
  padding: 0 0 0 0;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 60px 28px 0;
}

/* ── Final CTA ─────────────── */
.final-cta {
  padding: 120px 0 140px;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta .display { max-width: 14ch; margin: 24px auto; }
.final-cta .lede { margin: 0 auto 36px; }

/* ── Footer ─────────────── */
.footer {
  background: var(--forest);
  color: rgba(252,250,244,.7);
  padding: 70px 0 28px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 460px; height: 460px;
  background: rgba(199,93,62,.08);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

/* Top block — logo + tagline + CTA */
.footer-top {
  text-align: center;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.logo--footer {
  font-size: 36px;
  justify-content: center;
}
.logo--footer .leaf { width: 28px; height: 28px; }
.footer-tagline {
  margin: 18px auto 28px;
  max-width: 44ch;
  line-height: 1.55;
  font-size: 16px;
  color: rgba(252,250,244,.85);
}
.footer-cta { margin: 0 auto; }

/* 3-col grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 1;
}
.footer .logo { color: var(--cream); }
.footer .logo small { color: var(--sage-soft); }
.footer h4 {
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 600;
}
.footer p { line-height: 1.6; margin: 0; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 12px; line-height: 1.5; }
.footer ul li a {
  color: rgba(252,250,244,.78);
  transition: color .18s;
}
.footer ul li a:hover { color: var(--amber); }

/* Trust column */
.footer-col--trust .footer-badges {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 22px;
}
.fb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  width: fit-content;
}
.footer-pay > span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252,250,244,.5);
  margin-bottom: 8px;
}
.footer-pay .pay-row { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-pay .pay-row span {
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(252,250,244,.55);
  position: relative;
  z-index: 1;
}
.footer-links { display: flex; gap: 12px; align-items: center; }
.footer-links a { color: rgba(252,250,244,.7); transition: color .18s; }
.footer-links a:hover { color: var(--amber); }
.footer-links .sep { color: rgba(252,250,244,.35); }

.footer-disclaimer {
  margin-top: 28px;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(252,250,244,.4);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* ───────────────────────────────
   RESPONSIVE — mobile-first tuning
   ─────────────────────────────── */

/* Tablet (≤980px) */
@media (max-width: 980px) {
  .container { padding: 0 22px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid, .pain-grid, .author-grid { grid-template-columns: 1fr; gap: 48px; }
  .salad-grid, .bonus-grid, .testimonials-carousel { grid-template-columns: repeat(2, 1fr); }
  .mosaic-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 240px 240px 240px; }
  .price-card { grid-template-columns: 1fr; }
  .price-card .left, .price-card .right { padding: 40px 32px; }
  .feature-list { grid-template-columns: 1fr; }
  .salads-header { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .guarantee-card { flex-direction: column; text-align: center; align-items: center; }
}

/* Mobile (≤640px) — bulk refinements */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }

  .features, .salads, .mosaic, .video-section, .bonuses,
  .pain, .pricing, .author, .testimonials, .faq { padding: 64px 0; }
  .final-cta { padding: 80px 0 90px; }
  .guarantee { padding: 48px 0; }

  /* Top bar — compact, drop middle chip */
  .topbar { font-size: 10px; gap: 10px; padding: 10px 14px; letter-spacing: 0.12em; }
  .topbar > span:nth-child(2) { display: none; }

  /* Header */
  .header { padding: 16px 0; }
  .logo { font-size: 22px; gap: 8px; }
  .logo small { display: none; }
  .header .btn-ghost { padding: 10px 14px !important; font-size: 11px !important; width: auto; }

  /* Hero — image flows inside copy on mobile */
  .hero { padding: 36px 0 56px; }
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .hero-copy { display: contents; }
  .hero-copy > .badge-inline { order: 1; }
  .hero-copy > h1.display { order: 2; }
  .hero-copy > .lede { order: 3; margin-top: 18px; }
  .hero-visual { order: 4; margin: 24px auto 0; max-width: 380px; width: 100%; }
  .hero-copy > .hero-cta-row { order: 5; margin-top: 28px; }
  .hero-copy > .hero-microproof { order: 6; }

  h1.display { font-size: clamp(40px, 11vw, 60px); line-height: 1.0; letter-spacing: -0.022em; }
  h2.display { font-size: clamp(34px, 9.5vw, 50px); line-height: 1.02; letter-spacing: -0.018em; }
  h3.display { font-size: clamp(24px, 6vw, 32px); line-height: 1.05; }

  .hero .badge-inline { font-size: 11px; padding: 6px 11px; margin-bottom: 0; letter-spacing: 0.12em; }
  .lede { font-size: 16px; }
  .hero-cta-row { gap: 14px; flex-direction: column; align-items: stretch; }
  .hero-cta-row > div:last-child { display: flex; gap: 12px; align-items: center; justify-content: center; }
  .hero-microproof { margin-top: 22px; font-size: 12px; gap: 10px; align-items: flex-start; }
  .hero-microproof > div:last-child { line-height: 1.4; }

  /* Floating cards repositioned INSIDE image bounds */
  .hero-visual .floating-card { padding: 10px 12px; font-size: 11px; gap: 8px; border-radius: 12px; }
  .hero-visual .card-1 { bottom: 14px; left: 14px; }
  .hero-visual .card-2 { top: 14px; right: 14px; }
  .float-icon { width: 30px; height: 30px; font-size: 14px; border-radius: 8px; }
  .float-meta strong { font-size: 11px; }
  .float-meta span { font-size: 10px; }

  /* Scale down decorative blobs */
  .blob-1, .blob-2 { width: 280px; height: 280px; filter: blur(50px); }

  /* All CTAs full-width on mobile */
  .btn { width: 100%; max-width: 420px; padding: 18px 22px; font-size: 14px; letter-spacing: 0.05em; }
  .btn-xl { padding: 20px 24px; font-size: 15px; }
  .btn-block { max-width: none; }

  /* Marquee */
  .marquee { padding: 16px 0; }
  .marquee-track { font-size: 22px; gap: 36px; }
  .marquee-track span { gap: 36px; }

  /* Features — image flows after subheadline on mobile */
  .features-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .features-copy { display: contents; }
  .features-copy > .eyebrow { order: 1; }
  .features-copy > h2.display { order: 2; }
  .features-copy > .lede { order: 3; }
  .feature-image { order: 4; margin: 28px auto 0; max-width: 380px; width: 100%; }
  .features-copy > .feature-list { order: 5; margin-top: 28px; }
  .features-copy > .section-cta { order: 6; }

  .feature-image--contain { aspect-ratio: 1 / 1.05; padding: 16px; }

  .feature-list { margin-top: 28px; gap: 0; }
  .feature-list li { font-size: 17px; padding: 16px 0; gap: 16px; }
  .feature-list .check { width: 32px; height: 32px; flex: 0 0 32px; font-size: 15px; }
  .feature-image .tag { top: 16px; left: 16px; font-size: 10px; padding: 6px 10px; }

  /* Salads header on mobile */
  .salads-header { gap: 12px; margin-bottom: 36px; align-items: center; }
  .salads-header > div:first-child { display: flex; flex-direction: column; gap: 14px; align-items: center; }
  .salads-header h2.display { margin-top: 0 !important; }
  .salads-meta { font-size: 10px; gap: 10px; flex-wrap: wrap; order: 3; justify-content: center; }
  /* All section content centered on mobile */
  .hero-copy,
  .features-copy,
  .pain-copy,
  .author-body,
  .salads-header,
  .salads-header > div:first-child { text-align: center; }

  .hero-copy > .badge-inline,
  .hero-copy > h1.display,
  .hero-copy > .lede,
  .features-copy > h2.display,
  .features-copy > .lede,
  .pain-copy > h2.display,
  .pain-copy > .pain-close,
  .author-body > h2.display,
  .author-body > p,
  .salads-header h2.display { margin-left: auto; margin-right: auto; }

  .hero .lede,
  .features-copy .lede,
  .author-body p,
  .pain-close { max-width: 36ch; }

  /* Center eyebrow's leading bar */
  .features-copy > .eyebrow,
  .pain-copy > .eyebrow,
  .salads-header .eyebrow,
  .author-body > .eyebrow { justify-content: center; }

  /* CTAs and microproof inside hero centered */
  .hero-cta-row { align-items: center; }
  .hero-cta-row .btn { margin: 0 auto; }
  .hero-microproof { justify-content: center; text-align: left; }

  /* Pain list still left-aligned for readability */
  .pain-copy > .pain-list { text-align: left; max-width: 460px; margin-left: auto; margin-right: auto; }
  .features-copy > .feature-list { text-align: left; max-width: 420px; margin-left: auto; margin-right: auto; }

  /* Author stats centered */
  .author-stats { justify-content: center; }
  .salad-grid { gap: 18px; grid-template-columns: 1fr; }
  .salad-card .body { padding: 18px 20px 22px; }
  .salad-card h3 { font-size: 24px; }
  .salad-card .sauce { margin-bottom: 14px; font-size: 13px; }
  .salad-card .stats { font-size: 12px; padding-top: 12px; }
  .salad-card .stats strong { font-size: 17px; }
  .salads-cta { margin-top: 36px; }

  /* Mosaic */
  .mosaic-head { margin-bottom: 36px; }
  .mosaic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
  .mosaic-grid > div { aspect-ratio: 4/3; height: auto; }
  .mosaic-grid .span-2 { aspect-ratio: 4/5; }
  .mosaic-tag { bottom: 12px; left: 12px; font-size: 10px; padding: 8px 12px; }

  /* Video */
  .video-frame { border-width: 4px; border-radius: 16px; }
  .video-head { margin-bottom: 32px; }

  /* Bonuses */
  .bonus-head { margin-bottom: 36px; }
  .bonus-grid { grid-template-columns: 1fr; gap: 18px; }
  .bonus-card .body { padding: 22px 22px 24px; }
  .bonus-card h3 { font-size: 24px; }
  .bonus-card .recipes-count { font-size: 11px; margin-bottom: 16px; }
  .bonus-price .free { font-size: 22px; }

  /* Pain — image flows after headline on mobile */
  .pain-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .pain-copy { display: contents; }
  .pain-copy > .eyebrow { order: 1; }
  .pain-copy > h2.display { order: 2; }
  .pain-card-image { order: 3; margin: 24px auto 0; max-width: 380px; width: 100%; }
  .pain-copy > .pain-list { order: 4; margin-top: 28px; }
  .pain-copy > .pain-close { order: 5; }

  .pain-list li { font-size: 17px; padding: 18px 0; gap: 16px; }
  .pain-list .x { width: 32px; height: 32px; flex: 0 0 32px; font-size: 14px; }

  /* Pricing — value stack mobile */
  .urgency-pill { font-size: 10px; padding: 7px 14px; }

  .offer-card { border-radius: 22px; }
  .offer-card__head { padding: 26px 22px 24px; }
  .offer-card__title { font-size: 26px; }

  .value-stack li {
    grid-template-columns: 36px 1fr auto;
    gap: 14px;
    padding: 18px 20px;
  }
  .value-stack .vs-num { width: 34px; height: 34px; font-size: 11px; }
  .value-stack .vs-body strong { font-size: 14px; }
  .value-stack .vs-body span { font-size: 12px; }
  .value-stack .vs-price { font-size: 12px; }
  .value-stack .vs-price s { font-size: 12px; }
  .value-stack .vs-price em { font-size: 15px; }

  .value-total { padding: 18px 20px; }
  .value-total span { font-size: 10px; letter-spacing: 0.14em; }
  .value-total strong { font-size: 24px; }

  .offer-deal { padding: 28px 20px 26px; }
  .deal-badge { font-size: 10px; padding: 7px 14px; margin-bottom: 18px; }
  .deal-row { margin-bottom: 14px; gap: 6px; }
  .deal-installment-label { font-size: 10px; letter-spacing: 0.18em; }
  .deal-price .dp-installment { font-size: 24px; margin-right: 4px; }
  .deal-price .dp-currency { font-size: 22px; margin-top: 8px; }
  .deal-price .dp-int { font-size: 80px; }
  .deal-price .dp-frac { font-size: 32px; margin-top: 10px; }
  .deal-cash { font-size: 13px; }
  .deal-saving { font-size: 13px; padding: 12px 14px; margin-bottom: 20px; gap: 8px; }
  .deal-saving strong { font-size: 16px; }
  .deal-cta { font-size: 15px !important; padding: 20px 22px !important; }
  .deal-trust { font-size: 10px; gap: 12px; padding-top: 16px; }
  .deal-pay { font-size: 10px; gap: 6px; }
  .deal-pay .pay-method { padding: 5px 8px; font-size: 10px; }

  /* Guarantee mobile */
  .guarantee-card {
    grid-template-columns: 1fr;
    padding: 40px 26px;
    gap: 24px;
    text-align: center;
    border-radius: 22px;
  }
  .guarantee-seal { width: 160px; height: 160px; flex: 0 0 160px; margin: 0 auto; }
  .guarantee-seal .seal-inner { inset: 20px; }
  .guarantee-seal .seal-num { font-size: 54px; }
  .guarantee-seal .seal-label { font-size: 10px; }
  .guarantee-seal .seal-sub { font-size: 9px; }
  .guarantee-seal .seal-text { font-size: 9px; letter-spacing: 0.2em; }
  .guarantee-copy .kicker { display: block; margin-bottom: 10px; }
  .guarantee-copy h3 { font-size: 28px; }
  .guarantee-copy p { font-size: 15px; margin-left: auto; margin-right: auto; }
  .guarantee-perks { justify-content: center; gap: 12px; font-size: 10px; }

  /* Author */
  .author-photo { max-width: 380px; margin: 0 auto; width: 100%; }
  .author-photo .tag-name { left: 16px; bottom: 16px; padding: 10px 14px; }
  .author-photo .tag-name strong { font-size: 18px; }
  .author-photo .tag-name span { font-size: 10px; }
  .author-body p { font-size: 16px; }
  .author-stats { gap: 20px; margin-top: 28px; padding-top: 24px; flex-wrap: wrap; }
  .author-stats div strong { font-size: 30px; }
  .author-stats div span { font-size: 11px; }

  /* Testimonials → carousel on mobile */
  .testimonials-head { margin-bottom: 36px; }
  .testimonials-carousel {
    display: flex;
    grid-template-columns: unset;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 18px;
    padding: 6px 18px 24px;
    margin: 0 -18px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .testimonials-carousel::-webkit-scrollbar { display: none; }
  .testimonial-card {
    flex: 0 0 78%;
    scroll-snap-align: center;
    aspect-ratio: 9/16;
  }
  .testimonial-card .tag { font-size: 10px; bottom: 16px; left: 14px; right: 14px; letter-spacing: 0.12em; }
  .testimonial-card .tag .stars { font-size: 12px; margin-bottom: 4px; }
  .carousel-dots { display: flex; }
  .testimonials-footer { margin-top: 36px; gap: 18px; }
  .rating-block .rating-stars { font-size: 22px; letter-spacing: 3px; }
  .rating-block .rating-text { font-size: 11px; }

  /* FAQ */
  .faq-head { margin-bottom: 32px; }
  .faq-q { font-size: 19px; padding: 22px 0; gap: 14px; }
  .faq-q .plus { width: 30px; height: 30px; font-size: 18px; flex: 0 0 30px; }
  .faq-a { font-size: 15px; }
  .faq-item.open .faq-a { padding: 0 0 22px 0; }

  /* Final CTA */
  .final-cta .display { margin: 18px auto 24px; }

  /* Footer mobile */
  .footer { padding: 50px 0 24px; }
  .footer-top { padding-bottom: 36px; margin-bottom: 36px; padding-left: 4px; padding-right: 4px; }
  .logo--footer { font-size: 28px; }
  .logo--footer small { display: inline; font-size: 9px; letter-spacing: 0.24em; }
  .footer-tagline { font-size: 14px; margin-bottom: 22px; max-width: 32ch; line-height: 1.5; }
  .footer-cta { font-size: 13px !important; padding: 16px 24px !important; max-width: 280px; letter-spacing: 0.06em; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 28px; text-align: center; }
  .footer h4 { margin-bottom: 12px; }
  .footer ul li { margin-bottom: 10px; font-size: 14px; }
  .footer-col--trust .footer-badges { align-items: center; }
  .footer-pay .pay-row { justify-content: center; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    font-size: 10px;
    padding-top: 22px;
  }
  .footer-disclaimer { font-size: 10px; margin-top: 20px; padding: 0 8px; }

  /* Eyebrow */
  .eyebrow { font-size: 11px; letter-spacing: 0.14em; }
  .eyebrow::before { width: 20px; }
}

/* Small phones (≤420px) */
@media (max-width: 420px) {
  .container { padding: 0 16px; }
  h1.display { font-size: 36px; }
  h2.display { font-size: 30px; }
  h3.display { font-size: 22px; }
  .price-big { font-size: 48px; }
  .price-big .cents { font-size: 34px; }
  .deal-price .dp-int { font-size: 68px; }
  .deal-price .dp-frac { font-size: 26px; }
  .offer-card__title { font-size: 22px; }
  .value-stack li { padding: 16px 16px; }
  .topbar { font-size: 9px; gap: 8px; padding: 8px 12px; }
  .marquee-track { font-size: 18px; }
  .testimonial-card { flex-basis: 82%; }
  .hero-visual .floating-card { padding: 8px 10px; }
  .float-icon { width: 26px; height: 26px; font-size: 12px; }
  .pricing-head, .bonus-head, .video-head, .mosaic-head, .testimonials-head, .faq-head { padding: 0 4px; }
}

/* Touch — disable hover lifts */
@media (hover: none) {
  .salad-card:hover { transform: none; box-shadow: var(--shadow-soft); }
  .btn:hover { transform: none; }
}

/* Density tweaks */
body.density-compact section { padding-top: 80px; padding-bottom: 80px; }
body.density-spacious section { padding-top: 150px; padding-bottom: 150px; }
@media (max-width: 640px) {
  body.density-compact section { padding-top: 48px; padding-bottom: 48px; }
  body.density-spacious section { padding-top: 88px; padding-bottom: 88px; }
}


/* ─── Sopinhas deltas ─── */
/* ─── Deltas for Sopinhas LP ─── */

/* Palette tweak — warmer for cozy soup feel */
:root {
  --terracotta: #BF4E2B;
  --terracotta-2: #9E3D1F;
  --amber: #DA9542;
}

/* 4-col bonus grid */
@media (min-width: 981px) {
  .bonus-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Recipe illustration cards (placeholder for soup photos) */
.recipe-illust {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--forest), #14271f);
  position: relative;
  overflow: hidden;
  display: block;
}
.recipe-illust--amber { background: linear-gradient(135deg, #6b4318, #3a230c); }
.recipe-illust--olive { background: linear-gradient(135deg, #3a4a2a, #1d2614); }
.recipe-illust--rust { background: linear-gradient(135deg, #7a2e15, #401509); }
.recipe-illust--moss { background: linear-gradient(135deg, #2f5d3f, #143019); }
.recipe-illust--clay { background: linear-gradient(135deg, #6f3622, #3b1810); }
.recipe-illust--herb { background: linear-gradient(135deg, #4a5d35, #21280f); }
.recipe-illust--cream { background: linear-gradient(135deg, #c6884b, #6d4422); }
.recipe-illust > svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: block;
}

.recipe-illust::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.08), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,.25), transparent 55%);
  pointer-events: none;
}

/* Hero illustration */
.hero-illust {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 70% 30%, rgba(218,149,66,.25), transparent 55%),
    radial-gradient(circle at 25% 75%, rgba(191,78,43,.2), transparent 55%),
    linear-gradient(135deg, #2A4A38, #14271f);
  position: relative;
  overflow: hidden;
}
.hero-illust > svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.feature-image--contain { background: linear-gradient(180deg, var(--forest), #14271f); }

/* Pain photo — editorial card with caption */
.pain-photo {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--paper);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 30px 60px -20px rgba(0,0,0,.4);
}
.pain-photo__frame {
  position: relative;
  aspect-ratio: 1140 / 597;
  overflow: hidden;
}
.pain-photo__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease-out;
}
.pain-photo:hover .pain-photo__frame img { transform: scale(1.04); }
.pain-photo__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,39,31,0.4));
  pointer-events: none;
}
.pain-photo__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(252,250,244,.94);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  z-index: 2;
}
.pain-photo__caption {
  padding: 22px 28px 26px;
  text-align: left;
  background: var(--paper);
}
.pain-photo__caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.pain-photo__caption span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 980px) {
  .pain-photo { max-width: 580px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .pain-photo { border-radius: 18px; order: 3; margin: 24px auto 0; }
  .pain-photo__frame { aspect-ratio: 4 / 3; }
  .pain-photo__frame img { object-position: center 35%; }
  .pain-photo__tag { top: 14px; left: 14px; font-size: 10px; padding: 7px 12px; }
  .pain-photo__caption { padding: 20px 22px 22px; text-align: center; }
  .pain-photo__caption strong { font-size: 22px; }
  .pain-photo__caption span { font-size: 13px; }
}

/* Hero — landscape ratio to match real soup photos (5:4) */
.hero-visual { aspect-ratio: 5 / 4; }
.hero-visual .img-main img { object-position: center 60%; }

@media (max-width: 640px) {
  .hero-visual { aspect-ratio: 5 / 4; max-width: 460px; }
}
@media (max-width: 420px) {
  .hero-visual { aspect-ratio: 5 / 4; }
}

/* Mosaic single-image variant — only the main hero photo */
.mosaic-grid--single {
  grid-template-columns: 1fr !important;
  grid-template-rows: auto !important;
  max-width: 900px;
  margin: 0 auto;
}
.mosaic-grid--single > .span-2 {
  grid-column: span 1 !important;
  aspect-ratio: 16 / 9;
}
@media (max-width: 640px) {
  .mosaic-grid--single > .span-2 { aspect-ratio: 16 / 9; }
}
.mosaic-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
}
.mosaic-grid > .span-2 {
  grid-column: span 2;
  grid-row: span 1;
  aspect-ratio: 16 / 9;
  height: auto;
}
.mosaic-grid > div:not(.span-2) {
  aspect-ratio: 5 / 4;
  height: auto;
}
@media (max-width: 640px) {
  .mosaic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .mosaic-grid > .span-2 {
    grid-column: span 1;
    aspect-ratio: 16 / 9;
  }
  .mosaic-grid > div:not(.span-2) {
    aspect-ratio: 5 / 4;
  }
}

/* Image fade-in placeholders */
.salad-card .img-wrap,
.bonus-card .img-wrap,
.feature-image,
.pain-photo__frame,
.mosaic-grid > div,
.hero-visual .img-main {
  background-color: #2a3a30;
}
.salad-card .img-wrap > img,
.bonus-card .img-wrap > img,
.feature-image > img,
.pain-photo__frame > img,
.mosaic-grid > div > img,
.hero-visual .img-main > img {
  opacity: 0;
  transition: opacity .35s ease-in;
}
img.is-loaded,
img[fetchpriority="high"] { opacity: 1 !important; }
