/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Palette */
  --bg-cream: #fbf7ee;
  --bg-white: #ffffff;
  --bg-bonus: #fdf2f2;
  --text-dark: #1e2638;
  --text-navy: #182230;
  --text-body: #4b5563;
  --text-muted: #6b7280;
  --coral-accent: #e05638;
  --coral-bar: #cc4425;
  --green-cta: #00a651;
  --green-cta-hover: #008f45;
  --green-price: #00a651;
  --green-tag: #16a34a;
  --yellow-star: #eab308;
  
  /* Fonts */
  --font-main: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Nunito', 'Quicksand', system-ui, sans-serif;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   1. TOP ANNOUNCEMENT BAR (Print 1)
   ========================================================================== */
.top-announcement-bar {
  background-color: var(--coral-bar);
  color: #ffffff;
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.announcement-text strong {
  font-weight: 800;
}

/* ==========================================================================
   PILL BADGES (Universal)
   ========================================================================== */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1.15rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.pill-badge-hero {
  background-color: #ffffff;
  color: #d95b28;
  border: 1px solid #f2e3d5;
}

.pill-badge-solution {
  background-color: #e6f7ec;
  color: #16a34a;
}

.pill-badge-bonus {
  background-color: #ede9fe;
  color: #7c3aed;
}

.pill-badge-yellow {
  background-color: #fef3c7;
  color: #b45309;
}

.pill-badge-blue {
  background-color: #e0f2fe;
  color: #0284c7;
}

/* ==========================================================================
   2. HERO SECTION (Prints 1 & 2)
   ========================================================================== */
.hero-section {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
  text-align: center;
  background-color: var(--bg-cream);
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1.28;
  color: var(--text-navy);
  max-width: 740px;
  margin-bottom: 0.85rem;
}

.text-coral {
  color: var(--coral-accent);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.hero-card-wrapper {
  width: 100%;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 4px 10px -2px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  cursor: pointer;
}

.hero-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 22px 35px -5px rgba(0, 0, 0, 0.13), 0 12px 18px -5px rgba(0, 0, 0, 0.07);
}

.hero-mockup-image {
  width: 100%;
  border-radius: 0.85rem;
  object-fit: contain;
}

/* Hero Offer Block (Print 2) */
.hero-offer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 460px;
}

.product-title-hero {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-navy);
  margin-bottom: 0.35rem;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.stars {
  color: var(--yellow-star);
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.price-box {
  margin-bottom: 1.25rem;
  text-align: center;
}

.old-price {
  font-size: 0.92rem;
  color: #94a3b8;
  text-decoration: line-through;
  display: block;
  margin-bottom: -0.1rem;
  font-weight: 600;
}

.main-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
}

.price-prefix {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--green-price);
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--green-price);
}

.installment-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.2rem;
}

/* CTA BUTTON (UNIVERSAL) */
.cta-btn {
  display: block;
  width: 100%;
  max-width: 380px;
  background-color: var(--green-cta);
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.05rem;
  padding: 0.95rem 1.5rem;
  border-radius: 9999px;
  text-align: center;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 15px rgba(0, 166, 81, 0.35);
  transition: all 0.2s ease-in-out;
}

.cta-btn:hover {
  background-color: var(--green-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 166, 81, 0.45);
}

.microcopy-access {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--coral-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
  font-size: 0.76rem;
  color: #64748b;
  font-weight: 700;
}

.check-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  background-color: #22c55e;
  color: #ffffff;
  border-radius: 3px;
  font-size: 10px;
  margin-right: 3px;
}

/* ==========================================================================
   3. PAIN / AGITATION SECTION (Prints 2 & 3)
   ========================================================================== */
.pain-section {
  background-color: var(--bg-white);
  padding: 4rem 1.25rem;
  text-align: center;
}

.pain-container {
  max-width: 780px;
}

.pain-headline {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--text-navy);
  margin-bottom: 1.5rem;
}

.down-arrow-wrapper {
  margin-bottom: 1.25rem;
}

.down-arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #3b82f6;
  color: #ffffff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
}

.pain-intro-italic {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.pain-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.pain-card {
  border-radius: 1.25rem;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: transform 0.2s ease;
}

.pain-card-pink {
  background-color: #fdf0f2;
}

.pain-card-lavender {
  background-color: #f5f0ff;
}

.pain-card-blue {
  background-color: #eaf5ff;
}

.card-emoji {
  font-size: 1.85rem;
  margin-bottom: 1rem;
}

.pain-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-navy);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.pain-card-desc {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.45;
}

.pain-closer-italic {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

/* ==========================================================================
   4. SOLUTION & ACTIVITY SECTION (Prints 3 & 4)
   ========================================================================== */
.solution-section {
  background-color: var(--bg-cream);
  padding: 4rem 1.25rem;
  text-align: center;
}

.solution-container {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--text-navy);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
  max-width: 520px;
  margin-bottom: 1.75rem;
}

.activities-heading {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-navy);
  margin-bottom: 1.25rem;
}

.carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.25rem;
}

.carousel-card {
  width: 100%;
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 0.55rem;
  box-shadow: 0 12px 30px -5px rgba(0, 0, 0, 0.09), 0 4px 12px -2px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-card:hover {
  box-shadow: 0 18px 35px -5px rgba(0, 0, 0, 0.13);
}

.carousel-image-container {
  width: 100%;
  overflow: hidden;
  border-radius: 0.95rem;
}

.activity-sheet-img {
  width: 100%;
  border-radius: 0.95rem;
  display: block;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.activity-sheet-img.fade-out {
  opacity: 0.2;
  transform: scale(0.98);
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 1.25rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 20;
}

.carousel-nav-btn.prev-btn {
  left: -22px;
}

.carousel-nav-btn.next-btn {
  right: -22px;
}

.carousel-nav-btn:hover {
  background-color: #ffffff;
  color: var(--text-dark);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.benefits-bars-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  max-width: 440px;
}

.benefit-bar-card {
  background: #ffffff;
  border-radius: 0.65rem;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: left;
}

.green-check-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  background-color: #22c55e;
  color: #ffffff;
  border-radius: 4px;
  font-size: 11px;
  font-weight: bold;
}

.benefit-bar-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-navy);
}

/* ==========================================================================
   5. BONUSES SECTION (Prints 5 & 6)
   ========================================================================== */
.bonuses-section {
  background-color: var(--bg-bonus);
  padding: 4rem 1.25rem;
  text-align: center;
}

.bonuses-container {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bonuses-main-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text-navy);
  line-height: 1.35;
  max-width: 640px;
  margin-bottom: 2.25rem;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
  margin-bottom: 2.25rem;
}

.bonus-card {
  background: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.bonus-card-tab {
  background-color: #eb445a;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 0.35rem 0;
  text-align: center;
}

.bonus-card-body {
  padding: 1.25rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.bonus-img-box {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  width: 100%;
}

.bonus-img {
  max-height: 150px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
  border-radius: 6px;
}

.bonus-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text-navy);
  margin-bottom: 0.45rem;
}

.bonus-desc {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.45;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.bonus-price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.bonus-old-price {
  font-size: 0.75rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 600;
}

.bonus-free-tag {
  color: var(--green-tag);
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.bonus-savings-card {
  background: #ffffff;
  border-radius: 0.85rem;
  padding: 0.85rem 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: inline-block;
}

.savings-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-navy);
}

.savings-text del {
  color: #94a3b8;
  margin-right: 0.2rem;
}

.text-green-strong {
  color: var(--green-price);
  font-size: 1.05rem;
  font-weight: 900;
}

.for-you-text {
  display: block;
  font-size: 0.8rem;
  color: var(--green-price);
  font-weight: 700;
  margin-top: -2px;
}

/* ==========================================================================
   6. BENEFITS / OUTCOMES SECTION (Prints 6 & 7)
   ========================================================================== */
.benefits-grid-section {
  background-color: var(--bg-cream);
  padding: 4rem 1.25rem;
  text-align: center;
}

.benefits-grid-container {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.outcome-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  margin-top: 1.5rem;
}

.outcome-card {
  background: #ffffff;
  border-radius: 0.85rem;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.outcome-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.icon-pink { background-color: #fce7f3; }
.icon-yellow { background-color: #fef08a; }
.icon-coral { background-color: #fed7aa; }
.icon-purple { background-color: #e9d5ff; }
.icon-rose { background-color: #fecdd3; }
.icon-violet { background-color: #ddd6fe; }

.outcome-card-text {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-navy);
}

/* ==========================================================================
   7. HOW IT WORKS SECTION (Prints 7 & 8)
   ========================================================================== */
.how-it-works-section {
  background-color: var(--bg-white);
  padding: 4rem 1.25rem;
  text-align: center;
}

.how-container {
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-headline {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--text-navy);
  margin-bottom: 0.35rem;
}

.how-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2rem;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-bottom: 1.75rem;
}

.step-card {
  border-radius: 1.15rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-align: left;
}

.step-card-pink { background-color: #fdf0f2; }
.step-card-lavender { background-color: #f5f0ff; }
.step-card-green { background-color: #ebfcf2; }

.step-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.step-icon-pink { background-color: #fce7eb; }
.step-icon-lavender { background-color: #eedeff; }
.step-icon-green { background-color: #d1fae5; }

.step-title {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
}

.step-title-pink { color: #e11d48; }
.step-title-lavender { color: #7c3aed; }
.step-title-green { color: #059669; }

.step-desc {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.4;
  font-weight: 600;
}

.friendly-highlight-pill {
  background-color: #fdf0f2;
  color: #e11d48;
  border-radius: 9999px;
  padding: 0.65rem 1.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-block;
}

/* ==========================================================================
   8. PRICING & PACKAGES SECTION (Prints 8-12)
   ========================================================================== */
.pricing-section {
  background-color: var(--bg-cream);
  padding: 4rem 1.25rem;
  text-align: center;
}

.pricing-container {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.pricing-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  width: 100%;
  position: relative;
}

.premium-card {
  border: 2px solid #86efac;
}

.card-top-pill {
  display: inline-block;
  padding: 0.35rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.pill-magenta {
  background-color: #fce7f3;
  color: #db2777;
}

.pricing-product-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-navy);
  margin-bottom: 1rem;
}

.pricing-card-image-box {
  width: 100%;
  margin-bottom: 1rem;
}

.pricing-mockup-img {
  width: 100%;
  border-radius: 0.75rem;
  object-fit: contain;
}

.center-rating {
  margin-bottom: 1.25rem;
}

.checklist-items {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.checklist-items li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-navy);
}

.pricing-footer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
}

.big-price-tag {
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--green-price);
  margin-bottom: -0.1rem;
}

.cta-btn-card {
  margin-top: 1rem;
  font-size: 1.05rem;
}

.upsell-teaser-box {
  background-color: #fdf2f2;
  border: 1px solid #fecaca;
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  margin-top: 1.5rem;
}

.upsell-teaser-text {
  font-size: 0.82rem;
  color: #dc2626;
  line-height: 1.4;
}

/* Premium Card Specifics */
.premium-header-tag {
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--text-navy);
  margin-bottom: 0.85rem;
}

.premium-banner-badge {
  background: #831843;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.premium-banner-subtitle {
  font-size: 0.82rem;
  color: var(--text-navy);
  margin-bottom: 1.25rem;
  line-height: 1.35;
}

.premium-bonuses-intro {
  font-size: 0.82rem;
  color: var(--text-navy);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  text-align: center;
}

.premium-bonus-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
}

.premium-bonus-item {
  background-color: #fffbeb;
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid #fef3c7;
}

.prem-bonus-title {
  font-size: 0.88rem;
  font-weight: 900;
  color: #92400e;
  margin-bottom: 0.25rem;
}

.prem-bonus-desc {
  font-size: 0.78rem;
  color: var(--text-body);
  line-height: 1.4;
}

.mt-4 {
  margin-top: 1.25rem;
}

/* ==========================================================================
   9. FACEBOOK TESTIMONIALS SECTION (Prints 13-15)
   ========================================================================== */
.testimonials-section {
  background-color: var(--bg-cream);
  padding: 3rem 1.25rem;
  display: flex;
  justify-content: center;
}

.testimonials-container {
  max-width: 440px;
  width: 100%;
}

.testimonials-card-wrapper {
  width: 100%;
  border-radius: 1.35rem;
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08), 0 4px 10px -2px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials-card-wrapper:hover {
  box-shadow: 0 16px 35px -5px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.testimonials-card-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   10. GUARANTEE SECTION (Prints 15 & 16)
   ========================================================================== */
.guarantee-section {
  background-color: var(--bg-cream);
  padding: 2.5rem 1.25rem 3.5rem;
  text-align: center;
}

.guarantee-container {
  max-width: 520px;
}

.guarantee-card {
  background: #ffffff;
  border-radius: 1.35rem;
  padding: 2.25rem 1.75rem;
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guarantee-seal-box {
  margin-bottom: 1.15rem;
}

.guarantee-seal-img {
  width: 90px;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

.guarantee-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-navy);
  margin-bottom: 0.25rem;
}

.guarantee-subtitle {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.guarantee-body-text {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.guarantee-body-text:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   11. FAQ SECTION (Print 16)
   ========================================================================== */
.faq-section {
  background-color: var(--bg-cream);
  padding: 3rem 1.25rem 4rem;
  text-align: center;
}

.faq-container {
  max-width: 540px;
}

.faq-headline {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-navy);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
}

.faq-item {
  background: #ffffff;
  border-radius: 0.85rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-question-text {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-navy);
}

.faq-toggle-icon {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e11d48;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-answer-box {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 1.25rem;
}

.faq-item.active .faq-answer-box {
  max-height: 200px;
  padding-bottom: 1.1rem;
}

.faq-answer-text {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.45;
  font-weight: 600;
}

/* ==========================================================================
   12. FOOTER (Print 16)
   ========================================================================== */
.site-footer {
  background-color: var(--bg-cream);
  padding-bottom: 3rem;
  text-align: center;
}

.footer-copy {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 600;
}

/* ==========================================================================
   RESPONSIVENESS (MOBILE & TABLET ADAPTATION)
   ========================================================================== */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 1.55rem;
  }
  
  .pain-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .bonus-card {
    border-radius: 1rem;
  }

  .bonus-card-tab {
    font-size: 0.68rem;
    padding: 0.25rem 0;
  }

  .bonus-card-body {
    padding: 0.75rem 0.5rem 0.85rem;
  }

  .bonus-img-box {
    height: 125px;
    margin-bottom: 0.5rem;
  }

  .bonus-img {
    max-height: 118px;
  }

  .bonus-title {
    font-size: 0.84rem;
    line-height: 1.25;
    margin-bottom: 0.25rem;
  }

  .bonus-desc {
    font-size: 0.68rem;
    line-height: 1.35;
    margin-bottom: 0.6rem;
  }

  .bonus-old-price {
    font-size: 0.66rem;
  }

  .bonus-free-tag {
    font-size: 0.82rem;
  }
  
  .carousel-outer {
    max-width: 320px;
    margin-bottom: 2rem;
  }
  
  .carousel-card {
    padding: 0.4rem;
    border-radius: 1.15rem;
  }

  .carousel-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .carousel-nav-btn.prev-btn {
    left: -14px;
  }

  .carousel-nav-btn.next-btn {
    right: -14px;
  }
  
  .outcome-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .step-card {
    padding: 1rem 1.15rem;
  }
  
  .pricing-card {
    padding: 1.75rem 1.25rem;
  }
}

/* ==========================================================================
   SUPER OFERTA MODAL (UPSELL PRÉMIUM $ 9.90)
   ========================================================================== */
.special-offer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.special-offer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.special-offer-modal {
  background: #ffffff;
  border-radius: 1.5rem;
  max-width: 480px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 2rem 1.5rem 1.75rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  text-align: center;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid #fed7aa;
}

.special-offer-overlay.active .special-offer-modal {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: bold;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.special-scarcity-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
  animation: pulse-glow 2s infinite;
}

.special-timer-box {
  background: #fff7ed;
  border: 1px dashed #f97316;
  border-radius: 0.75rem;
  padding: 0.45rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.timer-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #c2410c;
}

.timer-countdown {
  font-size: 0.95rem;
  font-weight: 900;
  color: #ea580c;
  font-family: monospace;
}

.special-modal-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-navy);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.highlight-underline {
  color: #ea580c;
  text-decoration: underline;
  text-decoration-color: #fdba74;
}

.special-modal-subtitle {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.special-modal-img-box {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 1.15rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.special-modal-mockup {
  width: 100%;
  height: auto;
  display: block;
}

.special-price-box {
  background: #f8fafc;
  border-radius: 0.85rem;
  padding: 0.65rem 1rem;
  margin-bottom: 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.special-old-price-row {
  font-size: 0.82rem;
  color: #94a3b8;
  font-weight: 700;
}

.special-del-price {
  color: #ef4444;
  font-size: 0.95rem;
  font-weight: 800;
}

.special-new-price-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.special-now-label {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
}

.special-super-price {
  font-size: 1.85rem;
  font-weight: 900;
  color: #15803d;
}

.cta-btn-special {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 900;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  border-radius: 0.85rem;
  text-decoration: none;
  display: block;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  transition: all 0.2s ease;
  margin-bottom: 0.85rem;
  animation: pulse-glow 2s infinite;
}

.cta-btn-special:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
}

.special-decline-box {
  margin-top: 0.25rem;
}

.special-decline-link {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 0.74rem;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}

.special-decline-link:hover {
  color: #64748b;
}

.mt-2 {
  margin-top: 0.65rem;
}
