/* ============================================
   COMÉ RICO SIN CULPA — Landing Page
   ============================================ */

:root {
  --green: #2c7a51;
  --green-light: #3fa66d;
  --green-pale: #eaf6ef;
  --green-pale2: #f4faf6;
  --orange: #ff9a52;
  --orange-dark: #f07a2a;
  --cream: #fffaf3;
  --cream-deep: #fdf3e3;
  --card: #ffffff;
  --text: #2c2621;
  --text-soft: #6b6259;
  --border: #eee2d3;
  --red: #e2574c;
  --gold: #d9a441;
  --shadow: 0 6px 20px rgba(60, 45, 20, 0.08);
  --shadow-hover: 0 14px 32px rgba(60, 45, 20, 0.16);
  --shadow-lg: 0 24px 60px rgba(30, 60, 40, 0.18);
  --radius: 20px;
  --radius-sm: 12px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

h1, h2, h3, h4 { font-family: var(--serif); margin: 0 0 .5em; line-height: 1.15; font-weight: 600; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}
.section--tight { padding: 60px 0; }
.section--alt { background: var(--green-pale2); }
.section--dark { background: linear-gradient(135deg, #326d49, var(--green) 45%, #1a3d29); color: #fff; }
.section--cream-deep { background: var(--cream-deep); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section--dark .eyebrow { background: rgba(255,255,255,.15); color: #fff; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
}
.section-head p {
  font-size: 18px;
  color: var(--text-soft);
}
.section--dark .section-head p { color: rgba(255,255,255,.85); }

.highlight { color: var(--green); }
.highlight-orange { color: var(--orange-dark); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #ffcf8e 0%, var(--orange) 50%, #b8591c 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(240, 122, 42, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(240, 122, 42, 0.45); }
.btn-secondary {
  background: linear-gradient(135deg, #4a9d6e 0%, var(--green) 55%, #1f4d33 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(44, 122, 81, 0.3);
}
.btn-secondary:hover { transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}
.btn-block { width: 100%; }
.btn-lg { padding: 20px 40px; font-size: 18px; }

/* ---------- ANNOUNCEMENT BAR ---------- */
.announce-bar {
  background: linear-gradient(to right, #1f4d33, var(--green) 45%, #1f4d33);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 10px 16px;
}
.announce-bar strong { color: #ffe1b8; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--green);
  text-decoration: none;
}
.logo span.tag {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: .5px;
  color: var(--text-soft);
}
.header-cta { white-space: nowrap; }

/* ---------- COUNTDOWN ---------- */
.countdown {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.countdown-unit {
  background: rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 4px 10px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

/* ---------- HERO ---------- */
.hero {
  padding: 64px 0 40px;
  background:
    radial-gradient(circle at 15% 20%, rgba(63,166,109,.10), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(255,154,82,.14), transparent 40%),
    var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.25fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  color: var(--green);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .5px;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -.5px;
}
.hero .lede {
  font-size: 19px;
  color: var(--text-soft);
  max-width: 540px;
  margin: 18px 0 30px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-cta-note {
  font-size: 13.5px;
  color: var(--text-soft);
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14.5px;
  color: var(--text-soft);
}
.stars { color: var(--gold); letter-spacing: 2px; }
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.hero-visual { position: relative; }
.hero-visual img {
  filter: drop-shadow(0 24px 40px rgba(60, 45, 20, 0.18));
}
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  padding: 14px 18px;
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-float-card.top { top: -18px; right: -18px; color: var(--green); }
.hero-float-card.bottom { bottom: -18px; left: -18px; color: var(--orange-dark); }
.hero-float-card .emoji { font-size: 20px; }

/* ---------- MOCKUP / "ASI SE VERA" SECTION ---------- */
.mockup-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.mockup-book img {
  filter: drop-shadow(0 20px 34px rgba(60, 45, 20, 0.2));
  transform: rotate(-2deg);
}
.browser-mock {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.browser-chrome {
  background: #f1ece1;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-dot.r { background: #ef6a5a; }
.browser-dot.y { background: #f2b93d; }
.browser-dot.g { background: #4cbb6c; }
.browser-url {
  margin-left: 14px;
  background: #fff;
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 12.5px;
  color: var(--text-soft);
  flex: 1;
}
.browser-body { padding: 18px; background: var(--cream); }
.browser-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13.5px;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.browser-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.browser-tab {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--green-pale);
  color: var(--green);
}
.browser-tab.active { background: var(--green); color: #fff; }
.browser-recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.browser-recipe {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,.06);
  position: relative;
}
.browser-recipe img { height: 78px; object-fit: cover; width: 100%; }
.browser-recipe .heart {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.browser-recipe .name {
  font-size: 10.5px;
  font-weight: 700;
  padding: 6px 8px;
  color: var(--text);
}
.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.mockup-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-align: center;
}
.mockup-stat .num { font-family: var(--serif); font-size: 24px; color: var(--green); font-weight: 700; }
.mockup-stat .lbl { font-size: 12px; color: var(--text-soft); font-weight: 600; }

/* ---------- UNLOCK OVERLAY SECTION ---------- */
.unlock-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-deep);
}
.unlock-bg {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 3%;
  padding: 26px 3%;
  filter: blur(1.5px);
  transform: scale(1.03); /* hide blurred edges from the viewport crop */
}
.recipe-page-mock {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: .97;
}
.recipe-page-mock .rp-top {
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
}
.recipe-page-mock .rp-hero {
  display: flex;
  gap: 18px;
  padding: 22px;
}
.recipe-page-mock .rp-hero img { width: 42%; height: 190px; object-fit: cover; border-radius: 12px; flex-shrink: 0; }
.recipe-page-mock .rp-hero h4 { font-size: 22px; margin: 0 0 14px; }
.recipe-page-mock .rp-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.recipe-page-mock .rp-pill { font-size: 12.5px; font-weight: 700; background: var(--green-pale); color: var(--green); padding: 5px 12px; border-radius: 999px; }
.recipe-page-mock .rp-body { padding: 0 22px 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; font-size: 13.5px; color: var(--text-soft); }
.recipe-page-mock .rp-body b { display: block; color: var(--text); font-size: 14px; margin-bottom: 10px; }
.recipe-page-mock .rp-body ul, .recipe-page-mock .rp-body ol { margin: 0; padding-left: 18px; }
.recipe-page-mock .rp-body li { margin-bottom: 7px; }
.unlock-card {
  position: relative;
  z-index: 5;
  background: #fff;
  border: 3px solid var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 44px 40px;
  text-align: center;
  max-width: 460px;
  margin: 20px;
}
.unlock-card .eyebrow { background: var(--cream-deep); color: var(--orange-dark); }
.unlock-card h3 { font-size: 26px; margin-bottom: 10px; }
.unlock-card h3 .highlight { color: var(--green); }
.unlock-card p { color: var(--text-soft); margin-bottom: 22px; font-size: 15px; }

/* ---------- PAIN POINTS ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 26px 20px;
  text-align: center;
  transition: box-shadow .2s ease, transform .2s ease;
}
.pain-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.pain-card .emoji { font-size: 32px; margin-bottom: 12px; }
.pain-card p { margin: 0; font-size: 14.5px; color: var(--text); font-weight: 500; }
.pain-quote {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--green);
  max-width: 640px;
  margin: 46px auto 0;
}

/* ---------- DIFERENCIAL ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.compare-card {
  border-radius: var(--radius);
  padding: 34px;
}
.compare-card.bad {
  background: #fdf1ef;
  border: 1px dashed #e7b6ac;
}
.compare-card.good {
  background: linear-gradient(160deg, var(--green), #245f40);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.compare-card h3 { font-size: 20px; margin-bottom: 18px; }
.compare-list { list-style: none; margin: 0; padding: 0; }
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 15px;
}
.compare-list li .ico { flex-shrink: 0; font-size: 17px; }

/* ---------- BENEFITS ---------- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.benefit-card .ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.benefit-card h3 { font-size: 18px; margin-bottom: 8px; }
.benefit-card p { font-size: 14.5px; color: var(--text-soft); margin: 0; }

/* ---------- TESTIMONIALS ---------- */
.rating-summary {
  text-align: center;
  margin-bottom: 26px;
}
.rating-summary .stars { font-size: 22px; }
.rating-summary p { font-size: 15px; color: var(--text-soft); margin: 6px 0 0; }

.review-photos-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  margin-bottom: 10px;
  scrollbar-width: thin;
  justify-content: center;
}
.review-photos-strip img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .15s ease;
}
.review-photos-strip img:hover { transform: scale(1.05); }
@media (max-width: 640px) {
  .review-photos-strip { justify-content: flex-start; }
}
.review-photos-caption {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-soft);
  margin: -4px 0 30px;
}

.review-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.btn-review {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
}
.btn-review:hover { background: var(--green-light); }

.review-form {
  max-width: 520px;
  margin: 0 auto 34px;
  background: var(--green-pale2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: none;
}
.review-form.open { display: block; }
.review-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.review-form input[type="text"],
.review-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 16px;
  background: #fff;
}
.review-form textarea { resize: vertical; min-height: 70px; }
.star-picker { display: flex; gap: 4px; margin-bottom: 16px; font-size: 24px; }
.star-picker span { cursor: pointer; color: #d8cfc0; }
.star-picker span.active { color: var(--gold); }
.review-form-photo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-form-photo label.file-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}
.review-form-photo input[type="file"] { display: none; }
.review-form-photo .file-preview {
  width: 40px; height: 40px;
  border-radius: 8px;
  object-fit: cover;
  display: none;
}
.review-form-note { font-size: 12px; color: var(--text-soft); margin: -8px 0 16px; }

/* ---------- TESTIMONIAL CAROUSEL ---------- */
.testi-carousel { position: relative; }
.testi-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 10px;
  scrollbar-width: thin;
}
.testi-track .testi-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  min-width: 0;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--green);
  z-index: 3;
}
.carousel-arrow.prev { left: -20px; }
.carousel-arrow.next { right: -20px; }
@media (max-width: 980px) {
  .testi-track .testi-card { flex-basis: calc((100% - 20px) / 2); }
}
@media (max-width: 640px) {
  .testi-track .testi-card { flex-basis: 88%; }
  .carousel-arrow { display: none; }
}

.testi-avatar-img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testi-card.is-anon .testi-name { color: var(--text-soft); font-style: italic; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card .testi-date { font-size: 11.5px; color: #b7ab9c; float: right; }
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.testi-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 14.5px; }
.testi-meta { font-size: 12px; color: var(--text-soft); }
.testi-card .stars { font-size: 13px; margin-bottom: 8px; display: block; }
.testi-card p.quote { font-size: 14.5px; color: var(--text); margin: 0 0 10px; }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-pale);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ---------- BONUS ---------- */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}
.bonus-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.bonus-card img { width: 100%; height: 280px; object-fit: contain; background: #fff; padding: 18px 18px 0; }
.bonus-body { padding: 20px 22px; }
.bonus-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.bonus-body h3 { font-size: 17px; margin-bottom: 6px; }
.bonus-body p { font-size: 13.5px; color: var(--text-soft); margin: 0 0 10px; }
.bonus-price { font-size: 13px; }
.bonus-price .old { text-decoration: line-through; color: #b7ab9c; margin-right: 8px; }
.bonus-price .free { color: var(--green); font-weight: 800; }

.bonus-app-card {
  background: linear-gradient(120deg, var(--green), #245f40);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-lg);
  flex-wrap: wrap;
}
.bonus-app-card .ico { font-size: 42px; }
.bonus-app-card h3 { font-size: 22px; margin-bottom: 6px; color: #fff; }
.bonus-app-card p { margin: 0; color: rgba(255,255,255,.9); font-size: 14.5px; }

.price-breakdown {
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow);
}
.price-breakdown-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14.5px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}
.price-breakdown-row:last-of-type { border-bottom: none; }
.price-breakdown-row .item-name { color: var(--text); }
.price-breakdown-row .item-price { font-weight: 700; color: var(--text-soft); }
.price-breakdown-row.total-row {
  border-top: 2px solid var(--text);
  border-bottom: none;
  margin-top: 6px;
  padding-top: 16px;
  font-weight: 800;
  font-size: 16px;
}
.price-breakdown-row.total-row .item-price { text-decoration: line-through; color: #b7ab9c; }

.value-stack {
  text-align: center;
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 26px;
  margin-top: 22px;
}
.value-stack .total { font-family: var(--serif); font-size: 30px; color: var(--green); }
.value-stack .old-total { text-decoration: line-through; color: #b7ab9c; font-size: 18px; }
.value-stack .savings {
  display: inline-block;
  margin-top: 10px;
  background: linear-gradient(135deg, #f0857a, var(--red) 60%, #a5322a);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 999px;
}

/* ---------- PRICING / PRODUCT PRESENTATION ---------- */
.pricing-grid.container {
  max-width: 1500px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.pricing-visual { width: 100%; }
.pricing-visual img { width: 100%; display: block; }
.pricing-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 2px solid var(--green);
  max-width: 620px;
  width: 100%;
  text-align: center;
}
.pricing-includes { list-style: none; margin: 0 0 26px; padding: 0; text-align: left; }
.pricing-includes li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 15px;
}
.pricing-includes li b { font-weight: 700; }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-bottom: 6px;
}
.price-old { font-size: 20px; color: #b7ab9c; text-decoration: line-through; }
.price-new { font-family: var(--serif); font-size: 46px; color: var(--green); font-weight: 700; }
.pricing-card .trust-row { justify-content: center; }
.price-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f0857a, var(--red) 60%, #a5322a);
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.pricing-stock {
  background: #fdf3e9;
  border: 1px solid #f0d8b8;
  color: #a5691a;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin: 18px 0;
  text-align: center;
}
.payment-badges {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--text-soft);
  flex-wrap: wrap;
}

/* ---------- GUARANTEE ---------- */
.guarantee-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 50px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.guarantee-box .ico { font-size: 52px; margin-bottom: 14px; }
.guarantee-box .badge-img { width: 130px; height: auto; margin: 0 auto 14px; }
.guarantee-box h2 { font-size: 28px; }
.guarantee-box p { font-size: 16px; color: var(--text-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text);
}
.faq-q .plus { color: var(--green); font-size: 20px; transition: transform .2s ease; flex-shrink: 0; margin-left: 14px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding .25s ease;
  padding: 0 24px;
  font-size: 14.5px;
  color: var(--text-soft);
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 22px; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  text-align: center;
}
.final-cta h2 { font-size: clamp(28px, 4vw, 40px); color: #fff; }
.final-cta p { max-width: 560px; margin: 0 auto 30px; font-size: 17px; color: rgba(255,255,255,.9); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #1e3d2b;
  color: rgba(255,255,255,.8);
  padding: 50px 0 26px;
  font-size: 13.5px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}
.footer-brand .logo { color: #fff; }
.footer-brand p { max-width: 300px; color: rgba(255,255,255,.6); margin-top: 10px; }
.footer-links { display: flex; gap: 50px; flex-wrap: wrap; }
.footer-links h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; font-family: var(--sans); }
.footer-links a, .footer-links button {
  display: block;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  padding: 0;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 13.5px;
  text-align: left;
}
.footer-links a:hover, .footer-links button:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,.5);
}
.footer-disclaimer { max-width: 900px; margin-top: 16px; color: rgba(255,255,255,.4); font-size: 12px; }

/* ---------- PHOTO + COMMENT LIGHTBOX ---------- */
.photo-lightbox .modal { max-width: 420px; }
.photo-lightbox .modal-body { padding: 0; }
.photo-lightbox .lb-img { width: 100%; height: 280px; object-fit: cover; display: block; }
.photo-lightbox .lb-body { padding: 22px 24px; }
.photo-lightbox .lb-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.photo-lightbox .lb-stars { font-size: 13px; color: var(--gold); margin-bottom: 8px; display: block; }
.photo-lightbox .lb-quote { font-size: 14.5px; color: var(--text); margin: 0; }

/* ---------- MODALS (Terms / Legal / Privacy) ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 25, 15, .55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: #fff;
  border-radius: var(--radius);
  max-width: 640px;
  width: 100%;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.modal-header {
  background: var(--green);
  color: #fff;
  padding: 22px 26px;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h3 { color: #fff; margin: 0; font-size: 19px; }
.modal-close {
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}
.modal-body {
  padding: 26px;
  overflow-y: auto;
  font-size: 14.5px;
  color: var(--text-soft);
}
.modal-body h4 { color: var(--green); font-family: var(--sans); font-size: 15px; margin: 20px 0 8px; }
.modal-body h4:first-child { margin-top: 0; }
.modal-body p { margin: 0 0 10px; }

/* ---------- FLOATING WIDGETS ---------- */
.purchase-toast {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  z-index: 150;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.purchase-toast.show { transform: translateY(0); opacity: 1; }
.purchase-toast .check {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}
.purchase-toast .name { font-weight: 700; font-size: 13.5px; }
.purchase-toast .action { font-size: 12.5px; color: var(--text-soft); }
.purchase-toast .meta { font-size: 11.5px; color: var(--text-soft); }
.purchase-toast .meta .dot { margin: 0 4px; }
.purchase-toast .meta .verified { color: var(--green); font-weight: 700; }
.purchase-toast-close {
  position: absolute;
  top: 4px;
  right: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: #c9bfb0;
  font-size: 12px;
}

.viewers-badge {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow-hover);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  z-index: 150;
}
.viewers-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4cbb6c;
  box-shadow: 0 0 0 0 rgba(76,187,108,.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(76,187,108,.55); }
  70% { box-shadow: 0 0 0 8px rgba(76,187,108,0); }
  100% { box-shadow: 0 0 0 0 rgba(76,187,108,0); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-grid, .mockup-grid, .compare-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid, .testi-grid, .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { order: -1; }
  .footer-grid { flex-direction: column; }

  /* Center text/buttons on mobile & tablet — desktop keeps left alignment */
  .hero-copy { text-align: center; }
  .hero-cta-row { justify-content: center; }
  .trust-row { justify-content: center; }
  .footer-brand { text-align: center; margin: 0 auto; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .bonus-app-card { text-align: center; justify-content: center; }
  .compare-card h3 { text-align: center; }
  .final-cta .container { text-align: center; }
}
@media (max-width: 640px) {
  .section { padding: 46px 0; }
  .pain-grid, .benefit-grid, .testi-grid, .bonus-grid { grid-template-columns: 1fr; }
  .browser-recipe-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-float-card { display: none; }
  .header-cta { display: none; }
  .purchase-toast { max-width: calc(100vw - 40px); }
  .viewers-badge { padding: 8px 14px; font-size: 12px; }
  .site-header-inner { padding: 12px 16px; }
  .unlock-card { margin: 0 auto; max-width: 80%; padding: 22px 18px; }
  .unlock-card h3 { font-size: 19px; }
  .unlock-card p { font-size: 13px; margin-bottom: 16px; }
  .unlock-card .btn { padding: 14px 20px; font-size: 15px; }
  .unlock-wrap { min-height: 640px; padding: 10px; }
  .price-breakdown { padding: 22px 18px; }
  .pricing-visual { width: 92vw; margin-left: calc(50% - 46vw); margin-right: calc(50% - 46vw); }

  /* Unlock section: show one full-width recipe at a time, cross-fading, instead of two narrow columns */
  .unlock-bg { padding: 20px 14px; }
  .unlock-bg .recipe-page-mock {
    position: absolute;
    inset: 20px 14px;
    width: auto;
    opacity: 0;
    transition: opacity 1s ease;
  }
  .unlock-bg .recipe-page-mock.active { opacity: 1; }
}
