* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --purple-950: #0d0019;
  --purple-900: #1a0035;
  --purple-800: #2d0057;
  --purple-700: #4a0080;
  --purple-600: #6b00b8;
  --purple-400: #a855f7;
  --yellow-400: #facc15;
  --yellow-300: #fde047;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --red-600: #dc2626;
  --white: #ffffff;
  --purple-light: #d8b4fe;
  --purple-200: #e9d5ff;
  --muted: #64748b;
  --light-bg: #faf9ff;
  --card-bg: #f3f0ff;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #fff;
  color: #1a1a2e;
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 960px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-yellow { color: var(--yellow-400); }
.text-yellow-dark { color: #ca8a04; }
.text-purple-accent { color: var(--purple-400); }
.text-muted { color: var(--muted); }
.text-faded { color: rgba(250,204,21,0.55); }
.text-green-bold { color: var(--green-500); font-weight: 700; }
.line-through { text-decoration: line-through; }
.serif { font-family: 'Merriweather', Georgia, serif; }

.section-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #1a1a2e;
}
.section-sub { font-size: 1rem; color: var(--muted); margin-bottom: 32px; }

/* BADGE */
.badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  margin-bottom: 12px;
}
.badge-gold { background: rgba(250,204,21,0.15); color: var(--yellow-300); border-color: rgba(250,204,21,0.35); }
.badge-gold-outline { background: rgba(250,204,21,0.12); color: var(--yellow-300); border-color: rgba(250,204,21,0.4); }
.badge-red { background: #dc2626; color: #fff; border-color: #dc2626; }

/* CTA */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green-600);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  width: 100%;
  max-width: 480px;
  text-align: center;
  border: 2px solid #15803d;
}
.btn-cta:hover { background: #15803d; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(22,163,74,0.4); }
.btn-cta .arrow { font-size: 1.1rem; }
.cta-wrap { display: flex; justify-content: center; margin: 18px 0 10px; }

/* TRUST */
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 10px; font-size: 0.82rem; color: #64748b; }
.trust-badges.light { color: rgba(255,255,255,0.65); }
.trust-item { display: flex; align-items: center; gap: 4px; }
.ti-icon.green { color: #22c55e; }
.ti-icon.yellow { color: var(--yellow-400); }
.ti-icon.blue { color: #60a5fa; }

/* ================= PURCHASE POPUP ================= */
.purchase-popup {
  position: fixed; bottom: 24px; left: 20px; z-index: 9999;
  background: #fff; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 12px 14px 12px 12px;
  display: flex; align-items: center; gap: 10px;
  max-width: 300px; min-width: 250px;
  border-left: 4px solid #6b21a8;
  transform: translateX(-140%); opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease;
  pointer-events: none;
}
.purchase-popup.show { transform: translateX(0); opacity: 1; pointer-events: all; }
.pp-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #6b21a8, #a855f7);
  color: #fff; font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.pp-text { display: flex; flex-direction: column; flex: 1; gap: 1px; }
.pp-name { font-size: 0.8rem; font-weight: 700; color: #1a1a2e; }
.pp-action { font-size: 0.72rem; color: #64748b; }
.pp-product { font-size: 0.72rem; font-weight: 600; color: #6b21a8; }
.pp-close {
  background: none; border: none; cursor: pointer; color: #94a3b8;
  font-size: 0.75rem; padding: 2px 4px; flex-shrink: 0; align-self: flex-start;
  line-height: 1;
}
.pp-close:hover { color: #475569; }

/* ================= HERO ================= */
.hero-section { position: relative; overflow: hidden; min-height: 100vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(59,7,100,0.88) 0%, rgba(46,5,90,0.82) 50%, rgba(20,1,40,0.96) 100%); }
.hero-content { position: relative; z-index: 10; text-align: center; padding: 40px 20px 50px; display: flex; flex-direction: column; align-items: center; }
.hero-headline { font-family: 'Merriweather', Georgia, serif; font-size: clamp(1.7rem, 4.5vw, 3rem); font-weight: 700; color: #fff; line-height: 1.25; margin: 14px 0 18px; }
.hero-desc { font-size: clamp(0.95rem, 2.5vw, 1.15rem); color: var(--purple-200); max-width: 580px; margin-bottom: 28px; line-height: 1.7; }
.hero-desc strong { color: #fff; }
.hero-image-wrap { margin: 6px 0 22px; width: 100%; max-width: 520px; }
.hero-image-ring { border-radius: 14px; overflow: hidden; box-shadow: 0 0 0 3px rgba(168,85,247,0.4), 0 20px 60px rgba(0,0,0,0.5); border: 2px solid rgba(168,85,247,0.45); }
.hero-img-main { width: 100%; height: auto; display: block; }
.hero-ratings { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; margin-bottom: 20px; font-size: 0.9rem; }
.hero-stars-row { display: flex; align-items: center; gap: 6px; }
.stars-text { color: var(--yellow-400); font-size: 1.05rem; letter-spacing: 2px; }
.rating-count { color: var(--yellow-300); font-weight: 600; }
.hero-satisfaction { color: var(--purple-light); }
.sat-pct { font-weight: 700; font-size: 1.05rem; color: #4ade80; }
.sat-label { color: var(--purple-light); }

/* ================= SOCIAL BAR ================= */
.social-bar { background: #3b0764; padding: 10px 0; }
.social-bar-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 32px; }
.social-item { color: #fff; font-size: 0.82rem; font-weight: 500; display: flex; align-items: center; gap: 5px; }
.si-icon { color: var(--yellow-400); }

/* ================= SE VOCÊ CHEGOU ATÉ AQUI ================= */
.arrived-section { padding: 70px 0; background: var(--light-bg); }
.arrived-section .section-title { margin-bottom: 32px; }
.arrived-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 28px; max-width: 680px; margin-left: auto; margin-right: auto; }
.arrived-card { display: flex; align-items: flex-start; gap: 10px; background: var(--card-bg); border: 1px solid #ddd6fe; border-radius: 10px; padding: 14px 16px; font-size: 0.9rem; color: #374151; }
.arrived-card-full { grid-column: 1 / -1; max-width: 330px; margin: 0 auto; }
.x-icon { color: #ef4444; font-size: 1rem; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.arrived-footer { text-align: center; font-size: 1rem; color: #475569; max-width: 500px; margin: 0 auto; }
.arrived-footer strong { color: #1a1a2e; }

/* ================= A VERDADE ================= */
.truth-section { padding: 70px 0; background: #fff; }
.truth-content { max-width: 620px; margin: 0 auto; }
.truth-icon { font-size: 2rem; text-align: center; margin-bottom: 14px; }
.truth-section .section-title { margin-bottom: 10px; }
.truth-sub { font-size: 1.1rem; color: #475569; margin-bottom: 24px; }
.truth-sub strong { color: #1a1a2e; }
.truth-box { background: #faf9ff; border: 1px solid #ddd6fe; border-radius: 12px; padding: 22px 26px; margin-bottom: 20px; }
.truth-box-title { font-weight: 600; color: #1a1a2e; margin-bottom: 14px; font-size: 0.97rem; }
.truth-items { display: flex; flex-direction: column; gap: 10px; }
.truth-item { display: flex; align-items: center; gap: 12px; font-size: 0.93rem; color: #374151; }
.num-badge { width: 26px; height: 26px; border-radius: 50%; background: #6b21a8; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; flex-shrink: 0; }
.truth-footer { font-size: 1rem; color: #475569; margin-top: 16px; }
.truth-footer strong { color: #1a1a2e; }
.text-purple-accent { color: #7c3aed; }

/* ================= SOLUÇÃO ================= */
.solution-section { padding: 70px 0; background: linear-gradient(to bottom, #3b0764, #1a0035); }
.solution-title { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 700; color: #fff; line-height: 1.3; margin: 12px 0 10px; }
.solution-sub { color: var(--purple-light); font-size: 1rem; margin-bottom: 28px; }
.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 560px; margin: 0 auto; text-align: left; }
.solution-item { display: flex; align-items: center; gap: 10px; font-size: 0.93rem; color: #e2e8f0; font-weight: 500; }
.sol-check { width: 24px; height: 24px; border-radius: 50%; background: rgba(250,204,21,0.2); border: 1px solid rgba(250,204,21,0.5); color: var(--yellow-400); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; flex-shrink: 0; }

/* ================= RITUALS ================= */
.rituals-section { padding: 70px 0; background: #fff; }
.rituals-section .section-title { margin-bottom: 8px; }
.rituals-section .section-sub { margin-bottom: 36px; }
.rituals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ritual-card { border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; background: #fff; transition: transform 0.2s, box-shadow 0.2s; }
.ritual-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.ritual-img-wrap { width: 100%; aspect-ratio: 16/9; overflow: hidden; position: relative; }
.ritual-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.ritual-card:hover .ritual-img-wrap img { transform: scale(1.04); }
.ritual-label { font-size: 0.88rem; font-weight: 700; color: #fff; background: linear-gradient(to right, #3b0764, #6b21a8); padding: 8px 14px; }
.ritual-desc { font-size: 0.82rem; color: #64748b; padding: 10px 14px 14px; line-height: 1.5; }

/* ================= ESTE GUIA É PRA VOCÊ ================= */
.for-you-section { padding: 70px 0; background: var(--light-bg); }
.for-you-section .section-title { margin-bottom: 32px; }
.for-you-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 720px; margin: 0 auto; }
.for-you-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: #374151; padding: 4px 0; }
.fy-check { width: 22px; height: 22px; border-radius: 50%; background: #6b21a8; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ================= IMAGINE ================= */
.imagine-section { padding: 70px 0; background: #fff; }
.imagine-section .section-title { margin-bottom: 6px; }
.imagine-section .section-sub { margin-bottom: 28px; }
.imagine-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 48px; max-width: 680px; margin-left: auto; margin-right: auto; }
.imagine-card { display: flex; align-items: flex-start; gap: 10px; background: #fefce8; border: 1px solid #fde68a; border-radius: 10px; padding: 14px 16px; font-size: 0.9rem; color: #374151; font-weight: 500; }
.im-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.works-title { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; text-align: center; margin-bottom: 20px; }
.works-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; max-width: 680px; margin: 0 auto; }
.works-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: #374151; padding: 4px 0; }
.wk-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.4); color: var(--green-600); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ================= 2 BÔNUS EXTRAS ================= */
.bonuses-section { padding: 70px 0; background: linear-gradient(to bottom, #1a0035, #3b0764); }
.bonuses-section .badge { margin-bottom: 14px; }
.bonus-main-title { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 10px; }
.bonus-main-sub { color: var(--purple-light); font-size: 0.95rem; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.books-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; margin-bottom: 36px; }
.book-item { display: flex; flex-direction: column; align-items: center; gap: 20px; }
@media (min-width: 640px) { .book-item { flex-direction: row; align-items: flex-start; } }
.book-img { flex-shrink: 0; width: 160px; filter: drop-shadow(0 20px 40px rgba(168,85,247,0.4)); }
.book-img img { width: 100%; height: auto; }
.book-info { flex: 1; }
.book-info .badge { margin-bottom: 8px; }
.book-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.book-desc { font-size: 0.85rem; color: var(--purple-light); line-height: 1.5; margin-bottom: 8px; }
.book-old { font-size: 0.82rem; color: rgba(167,139,250,0.7); margin-top: 8px; }
.book-free { font-size: 0.95rem; color: #e2e8f0; margin-top: 4px; }
.price-summary-box { background: rgba(250,204,21,0.08); border: 1px solid rgba(250,204,21,0.3); border-radius: 16px; padding: 24px 28px; text-align: center; margin-top: 8px; }
.price-summary-top { font-size: 0.95rem; color: var(--yellow-300); font-weight: 600; margin-bottom: 6px; }
.price-summary-main { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 4px; }

/* ================= TESTIMONIALS ================= */
.testimonials-section { padding: 70px 0; background: var(--light-bg); }
.testimonials-section .section-title { margin-bottom: 36px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px; display: flex; flex-direction: column; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.t-stars { color: var(--yellow-400); font-size: 0.95rem; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.85rem; color: #64748b; line-height: 1.6; flex: 1; margin-bottom: 14px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 10px; border-top: 1px solid #f1f5f9; padding-top: 12px; }
.t-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #6b21a8, #a855f7); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.t-author strong { display: block; font-size: 0.85rem; color: #1a1a2e; }
.t-verified { display: block; font-size: 0.72rem; color: #16a34a; }

/* ================= EXTRA BONUSES ================= */
.extra-bonuses-section { padding: 70px 0; background: #fff; }
.extra-bonuses-section .section-title { margin-bottom: 6px; }
.extra-bonuses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.extra-bonus-card { border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; text-align: center; background: #fff; }
.eb-img-wrap { position: relative; }
.eb-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.eb-badge { position: absolute; top: 8px; right: 8px; background: #dc2626; color: #fff; font-size: 0.65rem; font-weight: 700; padding: 3px 8px; border-radius: 999px; }
.eb-info { padding: 14px; }
.eb-info h3 { font-size: 0.95rem; font-weight: 700; color: #1a1a2e; margin-bottom: 5px; }
.eb-info p { font-size: 0.8rem; color: #64748b; margin-bottom: 10px; }
.eb-price { display: flex; align-items: center; justify-content: center; gap: 8px; }
.price-old-sm { font-size: 0.78rem; color: #94a3b8; text-decoration: line-through; }
.price-free-sm { font-size: 0.9rem; font-weight: 700; color: #16a34a; }

/* ================= OFFER ================= */
.offer-section { padding: 70px 0; background: linear-gradient(to bottom, #3b0764, #1a0035); }
.offer-section .section-title { color: #fff !important; margin-bottom: 28px; }
.offer-box { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 36px 28px; max-width: 580px; margin: 0 auto; text-align: center; }
.offer-list { list-style: none; text-align: left; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.offer-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: #e2e8f0; }
.offer-check { width: 20px; height: 20px; border-radius: 50%; background: #22c55e; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.offer-price-area { margin-bottom: 20px; }
.offer-de { font-size: 0.82rem; color: rgba(167,139,250,0.8); margin-bottom: 2px; }
.offer-was { font-size: 1.3rem; font-weight: 700; color: rgba(167,139,250,0.6); text-decoration: line-through; margin-bottom: 4px; }
.offer-now-label { font-size: 0.85rem; color: var(--yellow-300); margin-bottom: 6px; }
.offer-price-display { display: flex; align-items: baseline; justify-content: center; gap: 2px; line-height: 1; }
.price-rs { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.price-big { font-size: clamp(3.5rem, 10vw, 5rem); font-weight: 800; color: #fff; line-height: 1; }
.price-cents { font-size: 2rem; font-weight: 700; color: #fff; align-self: flex-end; margin-bottom: 4px; }
.offer-expires { font-size: 0.85rem; color: var(--yellow-300); font-weight: 500; margin-bottom: 12px; }
.countdown { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 22px; }
.cd-unit { display: flex; flex-direction: column; align-items: center; }
.cd-num { background: #dc2626; color: #fff; font-size: 1.5rem; font-weight: 800; width: 56px; height: 56px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.cd-lbl { font-size: 0.65rem; color: var(--purple-light); margin-top: 4px; }
.cd-sep { font-size: 1.6rem; font-weight: 700; color: #dc2626; margin-bottom: 12px; }

/* ================= GUARANTEE ================= */
.guarantee-section { padding: 70px 0; background: #fff; text-align: center; }
.guarantee-content { max-width: 540px; margin: 0 auto; }
.guarantee-badge-wrap { display: flex; justify-content: center; margin-bottom: 22px; }
.guarantee-badge { width: 110px; height: 110px; border-radius: 50%; background: linear-gradient(135deg, #6b21a8, #a855f7); display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 8px 30px rgba(107,33,168,0.35); }
.g-days { font-size: 2.6rem; font-weight: 800; color: #fff; line-height: 1; }
.g-label { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.85); letter-spacing: 2px; }
.guarantee-title { font-size: 1.5rem; font-weight: 700; color: #1a1a2e; margin-bottom: 12px; }
.guarantee-desc { font-size: 0.95rem; color: #64748b; line-height: 1.7; margin-bottom: 24px; }

/* ================= FAQ ================= */
.faq-section { padding: 70px 0; background: var(--light-bg); }
.faq-section .section-title { margin-bottom: 32px; }
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid #e2e8f0; border-radius: 10px; overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: none; border: none; cursor: pointer; font-size: 0.93rem; font-weight: 600; color: #1a1a2e; text-align: left; gap: 10px; transition: background 0.2s; font-family: inherit; }
.faq-question:hover { background: #f8fafc; }
.faq-arrow { color: #6b21a8; font-size: 1rem; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 20px; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 20px 16px; }
.faq-answer p { font-size: 0.88rem; color: #64748b; line-height: 1.6; }

/* ================= FOOTER ================= */
.footer { background: #0d001a; padding: 36px 0; text-align: center; }
.footer-inner { max-width: 700px; margin: 0 auto; }
.footer-legal { font-size: 0.72rem; color: #6b7280; line-height: 1.6; margin-bottom: 10px; }
.footer-copy { font-size: 0.8rem; color: #4b5563; }

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .rituals-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .extra-bonuses-grid { grid-template-columns: repeat(2, 1fr); }
  .books-grid { grid-template-columns: 1fr; gap: 40px; }
  .solution-grid { grid-template-columns: 1fr; }
  .book-item { flex-direction: column; align-items: center; text-align: center; }
  .book-img { width: 200px; margin: 0 auto; }
  .book-info { text-align: center; width: 100%; }
  .book-info .badge { display: inline-block; }
  .bonus-main-sub { text-align: center; }
}
@media (max-width: 560px) {
  .rituals-grid { grid-template-columns: 1fr; }
  .arrived-grid { grid-template-columns: 1fr; }
  .for-you-grid { grid-template-columns: 1fr; }
  .imagine-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }
  .extra-bonuses-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .arrived-card-full { grid-column: auto; max-width: 100%; }

  /* Titles & subtitles centred — but NOT list rows */
  .section-title, .section-sub,
  .works-title,
  .arrived-footer, .truth-footer,
  .truth-sub, .truth-icon { text-align: center; }

  /* List rows: always left-aligned, icon flush-left */
  .arrived-card, .for-you-item, .works-item, .imagine-card,
  .truth-item, .solution-item {
    justify-content: flex-start;
    text-align: left;
    align-items: flex-start;
  }

  /* Grids: single column, centred block */
  .for-you-grid, .works-grid, .arrived-grid, .imagine-grid, .solution-grid {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* truth box stays left inside */
  .truth-box { text-align: left; }
  .truth-box-title { text-align: left; }

  /* solution section items single-col */
  .solution-grid { grid-template-columns: 1fr; }
  .solution-section { text-align: center; }

  .offer-box { padding: 24px 16px; }
  .price-summary-box { padding: 18px 14px; }
  .purchase-popup { max-width: calc(100vw - 40px); min-width: 0; }
  .hero-content { padding: 28px 16px 40px; }
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: fadeInUp 0.55s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
.hero-content > *:nth-child(6) { animation-delay: 0.6s; }
