/* ============ RESET + BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #0f172a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
  --primary: #16a34a;     /* green - growth, naira */
  --primary-dark: #15803d;
  --primary-light: #dcfce7;
  --accent: #f59e0b;      /* gold - premium */
  --accent-dark: #d97706;
  --dark: #0f172a;
  --darker: #020617;
  --muted: #64748b;
  --light: #f8fafc;
  --border: #e2e8f0;
  --danger: #dc2626;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 48px rgba(0,0,0,0.12);
  --radius: 14px;
  --radius-lg: 24px;
}

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

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: 1.25rem; }
.section-title {
  text-align: center;
  margin-bottom: 16px;
}
.section-title.white { color: #fff; }
.section-lede {
  text-align: center;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-lede.white { color: rgba(255,255,255,0.85); }
.highlight {
  background: linear-gradient(120deg, var(--primary-light) 0%, var(--primary-light) 100%);
  background-repeat: no-repeat;
  background-size: 100% 35%;
  background-position: 0 88%;
  padding: 0 4px;
  color: var(--primary-dark);
}
.highlight-yellow {
  color: var(--accent);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}
.btn-sub {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.85;
}
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-xl { padding: 22px 40px; font-size: 1.15rem; }
.btn-block { width: 100%; white-space: normal; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.45);
}
.btn-light {
  background: #fff;
  color: var(--dark);
  box-shadow: var(--shadow-md);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============ ANNOUNCE BAR ============ */
.announce-bar {
  background: var(--darker);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.announce-bar strong { color: var(--accent); }
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

/* ============ NAV ============ */
.nav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}
.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.logo span { color: var(--primary); font-weight: 600; font-size: 0.85em; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--dark); }

/* Hamburger toggle (mobile only) */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--light);
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle:hover { background: #eef2f7; }
.nav-toggle-bars {
  width: 18px;
  height: 2px;
  background: var(--dark);
  position: relative;
  display: block;
  border-radius: 2px;
  transition: background 0.25s ease;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s ease, top 0.25s ease;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.nav.menu-open .nav-toggle-bars { background: transparent; }
.nav.menu-open .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav.menu-open .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  padding: 64px 0 80px;
  background:
    radial-gradient(ellipse at top left, rgba(22,163,74,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(245,158,11,0.06) 0%, transparent 50%),
    #ffffff;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.badge.badge-light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.badge.badge-gold {
  background: #fef3c7;
  color: var(--accent-dark);
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 1.5s infinite;
}
.hero-title { margin-bottom: 24px; }
.hero-title em { font-style: normal; color: var(--muted); display: block; margin-top: 8px; font-size: 0.7em; font-weight: 600; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 580px;
}
.hero-bullets { margin-bottom: 36px; }
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--dark);
}
.check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 2px;
}
.hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.avatars { display: flex; }
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  margin-left: -10px;
}
.avatars .a1 { background: #f59e0b; margin-left: 0; }
.avatars .a2 { background: #16a34a; }
.avatars .a3 { background: #2563eb; }
.avatars .a4 { background: var(--dark); font-size: 0.8rem; }
.stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; }
.trust-row small { color: var(--muted); font-size: 0.85rem; }

/* HERO MOCKUP */
.hero-visual { position: relative; }
.mockup {
  position: relative;
  perspective: 1200px;
}
.mockup-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(22,163,74,0.25) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.ebook-cover {
  position: relative;
  z-index: 1;
  width: 320px;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #16a34a 100%);
  border-radius: 8px 16px 16px 8px;
  padding: 36px 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.3),
    -8px 0 0 rgba(0,0,0,0.1) inset,
    0 0 0 1px rgba(255,255,255,0.1) inset;
  transform: rotateY(-12deg) rotateX(4deg);
  transition: transform 0.4s ease;
}
.ebook-cover:hover { transform: rotateY(-6deg) rotateX(2deg); }
.ebook-tag {
  font-size: 0.7rem;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid var(--accent);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  align-self: flex-start;
}
.ebook-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}
.ebook-title span {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
  font-style: italic;
}
.ebook-sub {
  font-size: 0.95rem;
  opacity: 0.9;
  font-weight: 500;
}
.ebook-author {
  font-size: 0.78rem;
  opacity: 0.7;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mockup-stickers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.sticker {
  position: absolute;
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.sticker.s1 { top: 10%; right: -10%; transform: rotate(8deg); background: var(--accent); color: #fff; }
.sticker.s2 { top: 35%; right: -15%; transform: rotate(-4deg); }
.sticker.s3 { bottom: 25%; right: -8%; transform: rotate(6deg); background: var(--primary); color: #fff; }
.sticker.s4 { top: 20%; left: -12%; transform: rotate(-8deg); }
.sticker.s5 { bottom: 12%; left: -10%; transform: rotate(4deg); background: var(--dark); color: #fff; }

/* ============ PROOF STRIP ============ */
.proof-strip {
  background: var(--light);
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-strip-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}
.proof-logos span:nth-child(even) { color: var(--border); }

/* ============ PAIN ============ */
.pain { padding: 96px 0; background: #fff; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.pain-card {
  padding: 32px 28px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.pain-icon { font-size: 2.4rem; margin-bottom: 16px; }
.pain-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.pain-card p { color: var(--muted); font-size: 0.95rem; }
.pain-callout {
  text-align: center;
  background: var(--dark);
  color: #fff;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 600;
}
.pain-callout strong { color: var(--accent); }

/* ============ PROMISE ============ */
.promise {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 50%, #052e16 100%);
  color: #fff;
}
.promise .badge { margin-bottom: 24px; display: block; width: fit-content; margin-left: auto; margin-right: auto; }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.promise-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.promise-card:hover {
  background: rgba(22,163,74,0.12);
  border-color: var(--primary);
  transform: translateY(-4px);
}
.promise-card .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.promise-card h3 { color: #fff; margin-bottom: 8px; }
.promise-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

/* ============ INSIDE EBOOK ============ */
.inside { padding: 96px 0; background: var(--light); }
.inside .badge { display: block; width: fit-content; margin: 0 auto 24px; }
.inside-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.inside-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  transition: all 0.3s;
}
.inside-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.inside-card .chap {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.inside-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.inside-card p { color: var(--muted); font-size: 0.95rem; }

/* ============ TRANSFORMATION ============ */
.transformation { padding: 96px 0; background: #fff; }
.trans-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.trans-col {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.trans-col h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}
.trans-col h3 span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}
.trans-col ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
}
.trans-col ul li:last-child { border-bottom: none; }
.trans-col.before {
  background: #fef2f2;
  border: 1px solid #fecaca;
}
.trans-col.before h3 { color: var(--danger); }
.trans-col.before li { color: #7f1d1d; text-decoration: line-through; opacity: 0.7; }
.trans-col.after {
  background: var(--primary-light);
  border: 1px solid var(--primary);
}
.trans-col.after h3 { color: var(--primary-dark); }
.trans-col.after li { color: #14532d; font-weight: 500; }
.trans-arrow {
  font-size: 3rem;
  color: var(--primary);
  font-weight: 700;
}

/* ============ BONUSES ============ */
.bonuses {
  padding: 96px 0;
  background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
}
.bonuses .badge { display: block; width: fit-content; margin: 0 auto 24px; }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.bonus-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bonus-num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: #fef3c7;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.bonus-value {
  position: absolute;
  top: 24px;
  right: 24px;
  font-weight: 800;
  color: var(--primary);
  font-size: 0.92rem;
  background: var(--primary-light);
  padding: 4px 10px;
  border-radius: 6px;
}
.bonus-card h3 { margin-bottom: 12px; padding-right: 80px; }
.bonus-card > p { color: var(--muted); margin-bottom: 16px; font-size: 0.95rem; }
.bonus-bullets li {
  font-size: 0.88rem;
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--dark);
}
.bonus-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--primary);
  font-weight: 700;
}
.bonus-total {
  background: var(--dark);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
}
.bonus-total h3 { color: #fff; }
.total-old {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  margin: 16px 0 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.bonus-total p { color: rgba(255,255,255,0.85); margin-bottom: 20px; }

/* ============ PROOF (TESTIMONIALS) ============ */
.proof { padding: 96px 0; background: #fff; }
.proof .badge { display: block; width: fit-content; margin: 0 auto 24px; }
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial .stars { margin-bottom: 12px; }
.testimonial p {
  font-size: 0.97rem;
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--dark);
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.t-author strong { display: block; font-size: 0.95rem; }
.t-author small { color: var(--muted); font-size: 0.82rem; }

/* ============ FOR WHO ============ */
.for-who { padding: 96px 0; background: var(--light); }
.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.for-card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.for-card h3 { margin-bottom: 20px; }
.for-card.yes {
  background: var(--primary-light);
  border: 2px solid var(--primary);
}
.for-card.yes h3 { color: var(--primary-dark); }
.for-card.no {
  background: #fef2f2;
  border: 2px solid #fecaca;
}
.for-card.no h3 { color: var(--danger); }
.for-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.97rem;
}
.for-card ul li:last-child { border-bottom: none; }

/* ============ PRICING ============ */
.pricing { padding: 96px 0; background: #fff; }
.pricing .badge { display: block; width: fit-content; margin: 0 auto 24px; }
.offer-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto 40px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary);
}
.offer-stack {
  padding: 40px 36px;
  background: var(--light);
}
.offer-stack h3 { margin-bottom: 20px; }
.stack-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.stack-list li span {
  flex: 1 1 auto;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.stack-list li strong {
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.stack-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 0;
  font-size: 1.05rem;
  font-weight: 700;
}
.stack-total .strike {
  color: var(--danger);
  text-decoration: line-through;
  font-size: 1.4rem;
}
.offer-price {
  padding: 40px 36px;
  background: linear-gradient(135deg, #052e16 0%, #14532d 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price-tag {
  text-align: center;
  margin-bottom: 24px;
}
.price-tag small {
  display: block;
  opacity: 0.8;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.big-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
}
.price-tag .save {
  margin-top: 6px;
  color: var(--accent);
  font-weight: 600;
}
.payment-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 0.85rem;
  opacity: 0.85;
}
.urgency {
  text-align: center;
  margin-top: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent);
}

/* GUARANTEE */
.guarantee {
  max-width: 900px;
  margin: 0 auto;
  background: #fffbeb;
  border: 2px dashed var(--accent);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.guarantee-badge {
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 12px 24px rgba(245,158,11,0.3);
}
.guarantee-badge div {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}
.guarantee-badge small { font-size: 0.78rem; letter-spacing: 2px; font-weight: 700; }
.guarantee-text h3 { margin-bottom: 10px; color: var(--accent-dark); }
.guarantee-text p { color: var(--dark); font-size: 0.97rem; }

/* ============ FAQ ============ */
.faq { padding: 96px 0; background: var(--light); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 22px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q span {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform 0.3s;
}
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  text-align: center;
}
.final-cta h2 { color: #fff; margin-bottom: 24px; }
.final-cta > .container > p {
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 auto 36px;
  opacity: 0.95;
}
.final-cta .btn-light { margin-bottom: 36px; }
.final-cta .ps {
  font-size: 0.95rem;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--darker);
  color: #fff;
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer .logo { color: #fff; margin-bottom: 14px; display: inline-block; }
.footer-grid p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  max-width: 320px;
}
.footer h4 { color: #fff; margin-bottom: 14px; font-size: 0.95rem; }
.footer-grid div a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-grid div a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom small { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 12px 16px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.12);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 90;
  border-top: 1px solid var(--border);
}
.sticky-cta strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  color: var(--primary);
}
.sticky-cta .strike {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.9rem;
  margin-left: 6px;
}

/* ============ RESPONSIVE ============ */

/* Tablet & below */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .ebook-cover { width: 260px; }
  .offer-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .for-grid { grid-template-columns: 1fr; }
  .trans-grid { grid-template-columns: 1fr; }
  .trans-arrow { transform: rotate(90deg); margin: 0 auto; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 80px; }

  /* Mobile nav: hamburger menu */
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .nav-inner { padding: 14px 20px; gap: 12px; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    padding: 8px 24px 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    color: var(--dark);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav.menu-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .hero { padding: 48px 0 64px; }
  .hero-title { font-size: clamp(1.85rem, 7vw, 2.5rem); }
  .hero-sub { font-size: 1.05rem; }
  .hero-cta { width: 100%; align-items: stretch; }
  .hero-cta .btn-lg { width: 100%; padding: 18px 20px; }
  .trust-row { flex-wrap: wrap; gap: 12px; }
  .pain, .promise, .inside, .transformation, .bonuses, .proof, .for-who, .pricing, .faq, .final-cta { padding: 72px 0; }
  .section-lede { font-size: 1rem; margin-bottom: 40px; }
  .promise-card, .pain-card, .inside-card, .bonus-card { padding: 28px 22px; }
  .testimonial { padding: 24px 22px; }
  .for-card, .trans-col { padding: 28px 24px; }
  .offer-stack, .offer-price { padding: 32px 26px; }
  .stack-list li {
    font-size: 0.92rem;
    flex-wrap: wrap;
    gap: 6px 12px;
  }
  .stack-list li span { flex: 1 1 100%; }
  .stack-list li strong { font-size: 0.95rem; }
  .stack-total { font-size: 1rem; flex-wrap: wrap; gap: 8px; }
  .stack-total .strike { font-size: 1.2rem; }
  .big-price { font-size: 3.4rem; }
  .btn-block { padding: 18px 16px; font-size: 1rem; line-height: 1.3; }
  .btn-block .btn-sub { font-size: 0.74rem; }
  .payment-row { gap: 8px 12px; font-size: 0.78rem; }
  .urgency { font-size: 0.85rem; line-height: 1.4; }
  .faq-q { padding: 18px 20px; font-size: 0.95rem; }
  .faq-a p { padding: 0 20px 18px; }
  .footer { padding: 56px 0 24px; }
  .final-cta .btn-xl { width: 100%; }
}

/* Phones */
@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .announce-bar { font-size: 0.78rem; padding: 9px 12px; line-height: 1.4; }
  .nav-inner { padding: 12px 16px; }
  .logo { font-size: 1.2rem; }

  .hero { padding: 32px 0 56px; }
  .hero-grid { gap: 36px; }
  .pain, .promise, .inside, .transformation, .bonuses, .proof, .for-who, .pricing, .faq, .final-cta { padding: 56px 0; }

  .ebook-cover {
    width: 220px;
    padding: 26px 22px;
    transform: rotateY(-8deg) rotateX(2deg);
  }
  .ebook-title { font-size: 2rem; }
  .ebook-title span { font-size: 1.1rem; }
  .ebook-sub { font-size: 0.85rem; }

  /* Tighten / hide outermost stickers so nothing clips off-screen */
  .sticker { font-size: 0.66rem; padding: 5px 9px; }
  .sticker.s1 { top: 4%; right: -2%; }
  .sticker.s2 { display: none; }
  .sticker.s3 { bottom: 22%; right: -2%; }
  .sticker.s4 { display: none; }
  .sticker.s5 { bottom: 8%; left: -2%; }

  .big-price { font-size: 3rem; }
  .pain-callout { font-size: 1.05rem; padding: 26px 20px; }
  .final-cta > .container > p { font-size: 1rem; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .sticky-cta { padding: 10px 14px; gap: 10px; }
  .sticky-cta strong { font-size: 1.15rem; }
  .sticky-cta .strike { font-size: 0.82rem; }
  .sticky-cta .btn-sm { padding: 10px 14px; font-size: 0.85rem; }
}

/* Tiny phones */
@media (max-width: 380px) {
  .hero-title { font-size: 1.7rem; }
  .big-price { font-size: 2.5rem; }
  .ebook-cover { width: 200px; }
  .ebook-title { font-size: 1.7rem; }
  .btn-lg, .btn-xl { padding: 16px 18px; font-size: 0.98rem; }
  .stack-list li { font-size: 0.86rem; padding: 12px 0; }
  .stack-list li strong { font-size: 0.9rem; }
  .stack-total { font-size: 0.95rem; }
  .stack-total .strike { font-size: 1.1rem; }
  .btn-block { padding: 16px 12px; font-size: 0.95rem; }
  .btn-block .btn-sub { font-size: 0.7rem; }
  .payment-row { gap: 6px 10px; font-size: 0.72rem; }
  .urgency { font-size: 0.78rem; }
  .price-tag small { font-size: 0.85rem; }
  .announce-bar { font-size: 0.72rem; }
  .proof-logos { font-size: 0.85rem; gap: 14px; }
}


/* ============ SOCIAL PROOF POPUP ============ */
.sp-popup {
  position: fixed;
  bottom: 24px;
  left: 18px;
  z-index: 95;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 14px 36px 14px 14px;
  width: 300px;
  max-width: calc(100vw - 36px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  transform: translateX(-360px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.4s ease;
  pointer-events: auto;
  font-family: 'Inter', sans-serif;
}
.sp-popup.show {
  transform: translateX(0);
  opacity: 1;
}
.sp-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.sp-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.sp-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.sp-time {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 2px;
}
.sp-msg {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
  padding-left: 46px;
}
.sp-msg strong { color: var(--dark); font-weight: 600; }
.sp-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--light);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.sp-close:hover { background: var(--border); color: var(--dark); }
.sp-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  margin-left: auto;
  flex-shrink: 0;
}

/* Reposition popup above sticky CTA on mobile */
@media (max-width: 900px) {
  .sp-popup {
    bottom: 84px;
    left: 12px;
    width: 280px;
    max-width: calc(100vw - 24px);
    padding: 12px 32px 12px 12px;
  }
  .sp-msg { padding-left: 42px; font-size: 0.78rem; }
  .sp-av { width: 32px; height: 32px; font-size: 0.85rem; }
  .sp-name { font-size: 0.82rem; }
  .sp-time { font-size: 0.68rem; }
}
@media (max-width: 380px) {
  .sp-popup {
    width: 260px;
    bottom: 78px;
  }
}
