/* ============================================================
   MERENDA FELICE — Landing Page
   Mobile-first · Italian warmth · Conversion-optimized
   ============================================================ */

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== DESIGN TOKENS ===== */
:root {
  /* Warmth palette — terracotta, oliva, creme */
  --red:         #C2714F;
  --red-dark:    #A35A3B;
  --red-light:   #FDF3EE;
  --red-medium:  #F5D5C3;
  --green:       #5C6B2E;
  --green-dark:  #3E4A1E;
  --green-light: #EEF2E1;
  --cream:       #FAF6F0;
  --warm-bg:     #FFF8F2;
  --white:       #FFFFFF;
  --gold:        #C9952A;

  /* Text */
  --text:        #1A1A1A;
  --text-mid:    #3D3D3D;
  --text-light:  #6B6B6B;
  --text-muted:  #9B9B9B;

  /* UI */
  --border:      #E8DDD5;
  --border-light:#F0E8E0;

  /* Typography */
  --serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:   'Inter', 'Helvetica Neue', Arial, system-ui, sans-serif;

  /* Spacing */
  --px:    20px;
  --max-w: 680px;

  /* Radii */
  --r-sm:  8px;
  --r:     14px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-pill:50px;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(0,0,0,.06);
  --sh:    0 4px 20px rgba(0,0,0,.10);
  --sh-lg: 0 8px 40px rgba(0,0,0,.14);
  --sh-red:0 6px 28px rgba(194,113,79,.38);
}

/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2 {
  font-family: var(--serif);
  line-height: 1.18;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 7.5vw, 2.8rem); }
h2 { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }

p {
  color: var(--text-mid);
  line-height: 1.72;
}

em {
  font-style: italic;
  color: var(--red);
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

section {
  padding: 60px var(--px);
}

/* ===== LABELS ===== */
.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 17px 28px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--sh-red);
}

.btn-primary:hover,
.btn-primary:active {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(194,113,79,.50);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-sticky {
  background: var(--red);
  color: var(--white);
  font-size: .85rem;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
  transition: background .18s;
}

.btn-sticky:hover { background: var(--red-dark); }

/* ===== STICKY BAR ===== */
.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px;
  transform: translateY(-110%);
  transition: transform .3s ease;
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar > p {
  font-size: .85rem;
  color: var(--text);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== ITALIAN STRIPE ===== */
.italian-stripe {
  height: 4px;
  background: linear-gradient(
    to right,
    #009246 0%, #009246 33.33%,
    #FFFFFF 33.33%, #FFFFFF 66.66%,
    #CE2B37 66.66%, #CE2B37 100%
  );
}

/* ===== HERO ===== */
.hero {
  background: var(--white);
  padding: 0;
  overflow: hidden;
}

.hero-inner {
  padding: 36px var(--px) 0;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--warm-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 7px 18px;
  font-size: .85rem;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.hero-badge .stars {
  font-size: .9rem;
  letter-spacing: -1px;
}

.hero-title {
  margin-bottom: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 8vw, 2.8rem);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 28px;
}

.btn-hero {
  font-size: 1.05rem;
  padding: 18px 32px;
  margin-bottom: 16px;
  width: 100%;
  max-width: 380px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  font-size: .78rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.hero-image-wrap {
  margin: 0 -20px;
  position: relative;
}

.hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: center top;
}

/* ===== PROOF BAR ===== */
.proof-bar {
  background: var(--red);
  padding: 22px 20px;
}

.proof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.proof-item {
  text-align: center;
  color: var(--white);
  flex: 1;
}

.proof-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.1;
}

.proof-item span {
  font-size: .72rem;
  opacity: .88;
}

.proof-div {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.28);
  flex-shrink: 0;
}

/* ===== PROBLEM ===== */
.problem {
  background: var(--warm-bg);
}

.problem h2 {
  text-align: center;
  margin-bottom: 32px;
}

.problem .section-tag {
  display: block;
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.problem-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 20px 20px 20px 16px;
  border-left: 4px solid var(--red);
  box-shadow: var(--sh-sm);
}

.problem-emoji {
  font-size: 1.9rem;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.problem-quote {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  font-size: .97rem;
}

.problem-detail {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== REFRAME ===== */
.reframe {
  background: var(--green);
  padding: 64px var(--px);
}

.reframe .container {
  text-align: center;
}

.reframe-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 18px;
}

.reframe-title {
  color: var(--white);
  font-size: clamp(1.5rem, 5.5vw, 2rem);
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.reframe-body {
  color: rgba(255,255,255,.88);
  font-size: 1.02rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== SOLUTION ===== */
.solution {
  background: var(--white);
  text-align: center;
}

.solution-title {
  font-size: clamp(2.2rem, 8vw, 3rem);
  margin-bottom: 16px;
}

.solution-sub {
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 1.02rem;
}

.mockup-wrap {
  max-width: 340px;
  margin: 0 auto 40px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.mockup-img { width: 100%; }

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  max-width: 420px;
  margin: 0 auto 36px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  width: 40px;
  min-width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}

.step-text strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
  font-size: 1rem;
}

.step-text p {
  font-size: .88rem;
  margin: 0;
}

.solution-cta { text-align: center; }

/* ===== INSIDE ===== */
.inside {
  background: var(--cream);
}

.inside h2,
.inside .section-tag {
  text-align: center;
}

.inside h2 { margin-bottom: 12px; }

.inside-sub {
  text-align: center;
  font-size: .93rem;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto 32px;
}

.recipe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.recipe-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border-light);
}

.recipe-img-wrap {
  height: 110px;
  overflow: hidden;
}

.recipe-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.recipe-card:hover .recipe-img-wrap img {
  transform: scale(1.04);
}

.recipe-info {
  padding: 12px 14px;
}

.recipe-cat {
  display: block;
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.recipe-count {
  font-size: .95rem;
  color: var(--red);
  font-weight: 700;
}

.recipe-special {
  background: var(--red-light);
  border: 2px solid var(--red-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.recipe-info-special {
  text-align: center;
  padding: 20px 14px;
}

.recipe-special-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}

.recipe-special .recipe-cat { color: var(--red); font-weight: 600; }

.recipe-special-note {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 6px;
}

/* ===== BENEFITS ===== */
.benefits {
  background: var(--white);
}

.benefits h2,
.benefits .section-tag {
  text-align: center;
}

.benefits h2 { margin-bottom: 32px; }

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--cream);
  border-radius: var(--r);
  padding: 22px 20px;
  border: 1px solid var(--border-light);
}

.benefit-icon-wrap {
  font-size: 2rem;
  min-width: 48px;
  text-align: center;
  line-height: 1;
}

.benefit-text strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
}

.benefit-text p {
  font-size: .9rem;
  margin: 0;
}

/* ===== EXPERT ===== */
.expert {
  background: var(--warm-bg);
}

.expert-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.expert-photo-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--red);
  box-shadow: 0 0 0 4px var(--red-medium);
  flex-shrink: 0;
}

.expert-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-name {
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.expert-text p {
  font-size: .95rem;
  margin-bottom: 14px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.expert-quote {
  color: var(--green) !important;
  font-style: italic;
  border-left: 3px solid var(--green);
  padding-left: 16px;
  text-align: left;
  max-width: 460px !important;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--cream);
}

.testimonials h2,
.testimonials .section-tag {
  text-align: center;
}

.testimonials h2 { margin-bottom: 32px; }

.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--red);
}

.testi-stars {
  font-size: .95rem;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.testi-quote {
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 18px;
  font-size: .95rem;
  line-height: 1.65;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testi-author strong {
  display: block;
  font-size: .9rem;
  color: var(--text);
}

.testi-author span {
  font-size: .8rem;
  color: var(--text-light);
}

/* ===== BONUSES ===== */
.bonuses {
  background: var(--white);
}

.bonuses h2,
.bonuses .section-tag {
  text-align: center;
}

.bonuses h2 { margin-bottom: 10px; }

.bonus-sub {
  text-align: center;
  font-size: .93rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--cream);
}

.bonus-num {
  font-size: .72rem;
  font-weight: 700;
  color: var(--red);
  background: var(--red-light);
  border-radius: 6px;
  padding: 4px 8px;
  min-width: 34px;
  text-align: center;
  align-self: flex-start;
  margin-top: 3px;
  flex-shrink: 0;
}

.bonus-text strong {
  display: block;
  font-size: .93rem;
  color: var(--text);
  margin-bottom: 4px;
}

.bonus-text p {
  font-size: .83rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

.bonus-highlight {
  background: var(--green-light);
  border-color: rgba(26,92,42,.3);
}

.bonus-num-special {
  background: var(--green-light);
  color: var(--green);
}

.bonus-wa-img {
  width: 56px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.bundle-wrap {
  max-width: 320px;
  margin: 0 auto;
}

.bundle-img {
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  width: 100%;
}

/* ===== GUARANTEE ===== */
.guarantee {
  background: var(--warm-bg);
}

.guarantee-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.guarantee-badge {
  width: 110px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.14));
}

.guarantee-text h2 {
  margin-bottom: 16px;
  font-size: clamp(1.4rem, 5vw, 1.9rem);
}

.guarantee-text p {
  font-size: .97rem;
  margin-bottom: 12px;
  max-width: 460px;
}

.guarantee-text em {
  color: var(--green);
  font-style: italic;
}

/* ===== OFFER ===== */
.offer {
  background: var(--white);
  text-align: center;
}

.offer h2 { margin-bottom: 28px; }

.price-card {
  background: var(--cream);
  border: 2px solid var(--red);
  border-radius: var(--r-xl);
  padding: 36px 24px 32px;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: var(--sh);
}

.price-crossed {
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

.price-crossed s {
  text-decoration-color: var(--red);
}

.price-main {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.price-note {
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.btn-price {
  display: block;
  width: 100%;
  font-size: 1rem;
  padding: 18px 20px;
  border-radius: var(--r-lg);
  margin-bottom: 20px;
  white-space: normal;
  line-height: 1.3;
}

.price-trust-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
  margin-bottom: 16px;
  text-align: left;
}

.price-trust-list span {
  font-size: .82rem;
  color: var(--green);
  font-weight: 500;
}

.price-secure {
  font-size: .78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin: 0;
}

/* ===== FAQ ===== */
.faq {
  background: var(--cream);
}

.faq h2,
.faq .section-tag {
  text-align: center;
}

.faq h2 { margin-bottom: 32px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}

.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  transition: transform .25s ease;
  line-height: 1;
}

.faq-item.is-open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}


.faq-item.is-open .faq-a {
  max-height: 400px;
}

.faq-a p {
  padding: 0 20px 20px;
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--green);
  text-align: center;
}

.final-title {
  color: var(--white);
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 5vw, 1.9rem);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.final-body {
  color: rgba(255,255,255,.88);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto 30px;
}

.btn-final {
  font-size: 1.05rem;
  padding: 20px 36px;
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto 18px;
}

.final-trust {
  font-size: .78rem;
  color: rgba(255,255,255,.68);
  margin-bottom: 20px;
}

.final-badge {
  width: 72px;
  margin: 0 auto;
  opacity: .88;
  filter: brightness(1.1);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  padding: 44px var(--px) 32px;
  text-align: center;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-links a {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  transition: color .18s;
}

.footer-links a:hover { color: var(--white); }

.footer-links span {
  color: rgba(255,255,255,.25);
  font-size: .8rem;
}

.footer-copy {
  font-size: .76rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}

.footer-disclaimer {
  font-size: .7rem;
  color: rgba(255,255,255,.28);
  line-height: 1.55;
  max-width: 480px;
  margin: 0 auto;
}

/* ===== FLOATING MOBILE CTA ===== */
.float-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 16px 16px;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,.1);
  transform: translateY(110%);
  transition: transform .35s ease;
}

.float-cta.visible {
  transform: translateY(0);
}

.float-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: 16px 20px;
  border-radius: var(--r-lg);
  background: #3a7d44;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(58,125,68,.40);
}

.float-btn:hover,
.float-btn:active {
  background: #2f6538;
}

/* ===== SCROLL HINT ===== */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 12px 0 28px;
  color: var(--text-muted);
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.scroll-arrow-icon {
  width: 22px;
  height: 22px;
  color: var(--red);
  animation: bounce-arrow 1.6s ease infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== DESKTOP BREAKPOINTS ===== */
@media (min-width: 540px) {
  .problem-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .recipe-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  /* Hide float CTA on desktop */
  .float-cta {
    display: none;
  }
}

@media (min-width: 768px) {
  section {
    padding: 80px 40px;
  }

  .hero-inner {
    padding: 56px 40px 0;
  }

  .expert-inner {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }

  .expert-text .section-tag,
  .expert-name {
    text-align: left;
  }

  .expert-text p {
    margin-left: 0;
  }

  .expert-quote {
    margin-left: 0;
    text-align: left;
  }

  .guarantee-box {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }

  .guarantee-badge {
    flex-shrink: 0;
  }
}

/* ===== PULSE ANIMATION FOR CTA (opacity — GPU composited, no repaint) ===== */
@keyframes pulse-shadow {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.88; }
}

.btn-hero,
.btn-final {
  animation: pulse-shadow 2.8s ease infinite;
  will-change: opacity;
}

.btn-hero:hover,
.btn-final:hover {
  animation: none;
  opacity: 1;
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
  background: var(--red-light);
  border: 1px solid var(--red-medium);
  border-radius: var(--r-sm);
  padding: 12px 20px;
  text-align: center;
  font-size: .88rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PRICE SAVING ===== */
.price-saving {
  font-size: .82rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 16px;
  letter-spacing: .02em;
}

/* ===== STICKY BAR: mobile-only show float CTA ===== */
@media (max-width: 539px) {
  .sticky-bar { display: none !important; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn-hero, .btn-final { animation: none; }
  .reveal-cascade { opacity: 1; transform: none; transition: none; }
  .anim-ingredient { opacity: 1; transform: none; }
}

/* ===== HERO SLIDE-UP ENTRANCE (no opacity — avoids LCP delay) ===== */
@keyframes hero-enter {
  from { transform: translateY(10px); }
  to   { transform: translateY(0); }
}
.hero-inner {
  animation: hero-enter .5s ease forwards;
}

/* ===== CASCADE REVEAL (problem cards) ===== */
.reveal-cascade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-cascade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-cascade[data-delay="1"] { transition-delay: .1s; }
.reveal-cascade[data-delay="2"] { transition-delay: .2s; }
.reveal-cascade[data-delay="3"] { transition-delay: .3s; }

/* ===== TESTIMONIAL SLIDE-IN ===== */
.testi-card.slide-left  { opacity: 0; transform: translateX(-28px); transition: opacity .55s ease, transform .55s ease; }
.testi-card.slide-right { opacity: 0; transform: translateX(28px);  transition: opacity .55s ease, transform .55s ease; }
.testi-card.slide-left.is-visible,
.testi-card.slide-right.is-visible { opacity: 1; transform: translateX(0); }
.testi-card[data-delay="1"] { transition-delay: .12s; }
.testi-card[data-delay="2"] { transition-delay: .24s; }
.testi-card[data-delay="3"] { transition-delay: .36s; }

/* ===== ANIMAZIONE MERENDA SVG ===== */
.anim-merenda {
  background: linear-gradient(180deg, var(--warm-bg) 0%, #EDF5E1 100%);
  padding: 64px var(--px) 56px;
  overflow: hidden;
}
.anim-merenda .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.anim-label {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 4.5vw, 1.7rem);
  color: var(--text);
  text-align: center;
  max-width: 400px;
  line-height: 1.4;
  font-style: italic;
}
.anim-stage {
  position: relative;
  width: 260px;
  height: 300px;
}
.anim-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.anim-ingredient {
  opacity: 0;
  transform: translateY(-180px);
  transition: opacity .6s ease, transform .7s cubic-bezier(.22,.68,0,1.2);
}
.anim-ingredient.landed {
  opacity: 1;
  transform: translateY(0);
}
.anim-ingredient[data-i="1"] { transition-delay: .05s; }
.anim-ingredient[data-i="2"] { transition-delay: .18s; }
.anim-ingredient[data-i="3"] { transition-delay: .31s; }
.anim-ingredient[data-i="4"] { transition-delay: .44s; }
.anim-ingredient[data-i="5"] { transition-delay: .57s; }
.anim-lunchbox {
  opacity: 0;
  transform: scale(.88);
  transition: opacity .5s ease .1s, transform .5s cubic-bezier(.34,1.56,.64,1) .1s;
}
.anim-lunchbox.landed {
  opacity: 1;
  transform: scale(1);
}
