@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@700;800;900&display=swap');

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

:root {
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-light: #dcfce7;
  --navy: #0f172a;
  --slate: #1e293b;
  --yellow: #facc15;
  --red: #ef4444;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-display { font-family: 'Poppins', sans-serif; }

/* ── STICKY BAR ─────────────────────────────────── */
#sticky-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
}
.bar-top {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  letter-spacing: 0.03em;
}
.bar-urgency {
  background: var(--red);
  color: var(--white);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-wrap: wrap;
}
.bar-urgency span { white-space: nowrap; }
#countdown {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 14px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

/* ── SECTION HELPERS ─────────────────────────────── */
.section { padding: 80px 20px; }
.section-dark { background: var(--navy); }
.section-slate { background: #f8fafc; }
.container { max-width: 1100px; margin: 0 auto; }
.section-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
  font-size: 0.72rem;
  padding: 5px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}
.text-green { color: var(--green); }
.text-yellow { color: var(--yellow); }

/* ── HERO ────────────────────────────────────────── */
#hero {
  background: var(--navy);
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media(max-width:768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img-wrap { order: -1; }
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  color: #cbd5e1;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-bullets { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
.hero-bullets li {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.9); font-size: 1.05rem; font-weight: 500;
}
.hero-bullets li .check-icon {
  background: rgba(34,197,94,0.2);
  border-radius: 50%;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 500;
}
.stars { color: var(--yellow); letter-spacing: 2px; }
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 18px 36px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 40px -10px rgba(34,197,94,0.7);
  transition: transform 0.2s, background 0.2s;
  animation: pulse-glow 2s infinite;
}
.btn-green:hover { background: #16c553; transform: scale(1.03); }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 30px -5px rgba(34,197,94,0.6); }
  50% { box-shadow: 0 0 50px -5px rgba(34,197,94,0.9); }
}
.hero-note { font-size: 0.8rem; color: #94a3b8; margin-top: 12px; }
.hero-img-wrap { display: flex; align-items: center; justify-content: center; }
.hero-img-wrap img {
  width: 100%; max-width: 520px;
  drop-shadow: 0 40px 80px rgba(0,0,0,0.4);
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ── PROBLEM ─────────────────────────────────────── */
#problem { background: var(--white); }
.problem-text { font-size: 1.05rem; color: #475569; line-height: 1.8; max-width: 680px; margin: 0 auto 32px; text-align: center; }
.pain-card {
  background: #fff5f5;
  border: 2px solid #fecaca;
  border-radius: 20px;
  padding: 32px 36px;
  max-width: 560px;
  margin: 0 auto 40px;
}
.pain-card li {
  list-style: none;
  font-size: 1rem;
  color: #b91c1c;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid #fecaca;
}
.pain-card li:last-child { border: none; }
.revelation {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--green);
  margin-bottom: 12px;
}
.revelation-sub { text-align: center; color: #64748b; font-size: 1.05rem; }

/* ── TRANSFORMATION ──────────────────────────────── */
#transformation { background: #f8fafc; }
.transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media(max-width:768px) { .transform-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .transform-grid { grid-template-columns: 1fr; } }
.transform-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.transform-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.transform-icon {
  width: 48px; height: 48px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.transform-icon svg { width: 24px; height: 24px; color: var(--green); }
.transform-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.transform-card p { font-size: 0.88rem; color: #64748b; line-height: 1.6; }

/* ── SOCIAL PROOF ────────────────────────────────── */
#social-proof { background: var(--white); }
.testimonials { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.testimonial { display: flex; }
.testimonial.right { justify-content: flex-end; }
.testimonial-bubble {
  max-width: 75%;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.testimonial.left .testimonial-bubble { border-top-left-radius: 4px; }
.testimonial.right .testimonial-bubble { border-top-right-radius: 4px; }
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%; object-fit: cover;
  ring: 2px solid var(--green-light);
  border: 2px solid #bbf7d0;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: #64748b; }
.testimonial-stars { margin-left: auto; color: var(--yellow); font-size: 0.85rem; align-self: flex-start; }
.testimonial-msg {
  background: #f0fdf4;
  border-radius: 12px 12px 12px 0;
  padding: 14px 16px;
  font-size: 0.93rem;
  color: #1e293b;
  font-weight: 500;
  line-height: 1.6;
}

/* ── EXPERT ──────────────────────────────────────── */
#expert { background: var(--white); padding-top: 0; }
.expert-card {
  background: linear-gradient(135deg, var(--navy) 0%, #1e293b 100%);
  border-radius: 28px;
  padding: 48px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  max-width: 900px;
  margin: 0 auto;
}
@media(max-width:768px) { .expert-card { flex-direction: column; align-items: center; padding: 32px 24px; gap: 28px; } }
.expert-photo {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.expert-photo img {
  width: 130px; height: 130px;
  border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(34,197,94,0.5);
  box-shadow: 0 0 0 6px rgba(34,197,94,0.1);
}
.expert-photo .expert-name { color: var(--white); font-weight: 700; font-size: 1rem; text-align: center; }
.expert-photo .expert-title { color: var(--green); font-size: 0.8rem; text-align: center; line-height: 1.4; }
.expert-quote svg { width: 32px; height: 32px; color: var(--green); opacity: 0.5; margin-bottom: 16px; }
.expert-quote p { color: #cbd5e1; line-height: 1.8; font-size: 0.97rem; margin-bottom: 16px; }
.expert-quote p em { color: var(--white); font-style: italic; }
.expert-quote p strong { color: var(--green); font-style: normal; }
.expert-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-top: 28px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.expert-stat-num { font-size: 1.5rem; font-weight: 900; color: var(--green); font-family: 'Poppins', sans-serif; }
.expert-stat-label { font-size: 0.75rem; color: #94a3b8; }

/* ── WHAT YOU GET ────────────────────────────────── */
#what-you-get { background: var(--navy); }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media(max-width:900px) { .modules-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px) { .modules-grid { grid-template-columns: 1fr; } }
.module-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 24px 20px;
  backdrop-filter: blur(12px);
  transition: transform 0.2s, border-color 0.2s;
}
.module-card:hover { transform: translateY(-4px); border-color: rgba(34,197,94,0.4); }
.module-emoji { font-size: 2rem; margin-bottom: 12px; }
.module-card h3 { font-size: 0.93rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.module-card p { font-size: 0.8rem; color: #94a3b8; line-height: 1.5; }

/* ── BNCC ACCORDION ──────────────────────────────── */
#bncc { background: #f8fafc; }
.accordion { max-width: 760px; margin: 32px auto 0; display: flex; flex-direction: column; gap: 10px; }
.accordion-item {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}
.accordion-btn {
  width: 100%; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem;
  color: var(--navy); text-align: left;
}
.accordion-btn .chevron { transition: transform 0.3s; font-size: 1.1rem; }
.accordion-btn.open .chevron { transform: rotate(180deg); }
.accordion-content {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.accordion-content.open { max-height: 400px; }
.accordion-inner { padding: 0 22px 20px; }
.accordion-inner li {
  list-style: none;
  font-size: 0.88rem; color: #475569;
  padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex; align-items: flex-start; gap: 8px;
}
.accordion-inner li::before { content: '→'; color: var(--green); flex-shrink: 0; font-weight: 700; }

/* ── OFFER ───────────────────────────────────────── */
#offer { background: linear-gradient(to bottom, #0f172a, #020617); padding: 80px 20px; }
.offer-title { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 900; color: var(--white); text-align: center; margin-bottom: 48px; }
.plans-wrap {
  display: flex;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  align-items: stretch;
}
@media(max-width:768px) { .plans-wrap { flex-direction: column; } }

/* Plan complete */
.plan-complete {
  flex: 1;
  background: var(--white);
  border-radius: 28px;
  padding: 40px;
  position: relative;
  border: 4px solid var(--green);
  box-shadow: 0 0 60px rgba(34,197,94,0.15);
}
.plan-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--green);
  color: var(--white); font-weight: 900; font-size: 0.72rem;
  padding: 6px 20px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.08em;
  white-space: nowrap;
}
.plan-title { font-size: 1.2rem; font-weight: 700; color: var(--navy); text-align: center; margin-bottom: 4px; }
.plan-sub { text-align: center; font-size: 0.82rem; color: #64748b; margin-bottom: 24px; }
.plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.88rem; color: #374151;
}
.plan-features li .ck { color: var(--green); font-weight: 900; flex-shrink: 0; }
.plan-price-was { text-align: center; color: #94a3b8; font-size: 1rem; font-weight: 700; text-decoration: line-through; text-decoration-color: var(--red); margin-bottom: 4px; }
.plan-price-wrap { display: flex; align-items: flex-end; justify-content: center; gap: 6px; margin-bottom: 4px; }
.plan-price-label { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.plan-price { font-size: 3.5rem; font-weight: 900; color: var(--green); line-height: 1; font-family: 'Poppins', sans-serif; }
.plan-price-note { text-align: center; font-size: 0.82rem; color: #94a3b8; margin-bottom: 28px; }
.btn-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 20px;
  background: var(--green); color: var(--white);
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.15rem;
  border: none; border-radius: 16px; cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 40px rgba(34,197,94,0.5);
  transition: transform 0.2s, background 0.2s;
  animation: pulse-glow 2s infinite;
}
.btn-cta:hover { background: #16c553; transform: scale(1.02); }
.btn-cta-note { text-align: center; font-size: 0.75rem; color: #94a3b8; margin-top: 10px; }

/* Trust seals */
.trust-seals {
  display: flex; gap: 12px; margin-top: 24px; padding-top: 22px;
  border-top: 1px solid #f1f5f9; flex-wrap: wrap;
}
.trust-seal {
  display: flex; align-items: center; gap: 12px;
  background: #f0fdf4; border: 2px solid #bbf7d0;
  border-radius: 16px; padding: 12px 16px; flex: 1; min-width: 140px;
}
.trust-seal.secure { background: #f8fafc; border-color: #e2e8f0; }
.seal-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.seal-icon.green { background: var(--green); }
.seal-icon.dark { background: #334155; }
.seal-icon svg { width: 20px; height: 20px; color: white; }
.seal-label { }
.seal-label .l1 { font-size: 0.75rem; font-weight: 700; color: #15803d; }
.seal-label .l2 { font-size: 1.15rem; font-weight: 900; color: var(--green); line-height: 1; font-family: 'Poppins', sans-serif; }
.seal-label .l3 { font-size: 0.7rem; color: var(--green); font-weight: 500; }
.seal-label.dark-label .l1 { color: #475569; }
.seal-label.dark-label .l2 { color: #1e293b; }
.seal-label.dark-label .l3 { color: #94a3b8; }
.trust-extras { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 10px; font-size: 0.75rem; color: #94a3b8; flex-wrap: wrap; }
.trust-extras span { display: flex; align-items: center; gap: 4px; }

/* Plan starter */
.plan-starter {
  width: 280px; flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
}
@media(max-width:768px) { .plan-starter { width: 100%; } }
.plan-starter .plan-title { color: var(--white); }
.plan-starter .plan-sub { color: #94a3b8; }
.plan-starter .plan-features li { color: #94a3b8; }
.plan-starter .plan-features li .ck { color: #64748b; }
.plan-starter .plan-price { font-size: 2.2rem; color: var(--white); }
.plan-starter .plan-price-note { color: #64748b; }
.btn-outline {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 16px;
  background: transparent; color: #cbd5e1;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 14px;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  margin-top: auto;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); background: rgba(255,255,255,0.06); }
.btn-outline-note { text-align: center; font-size: 0.72rem; color: #475569; margin-top: 8px; }

/* ── UPSELL MODAL ────────────────────────────────── */
#upsell-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
#upsell-overlay.open { display: flex; }
.upsell-modal {
  background: var(--white);
  border-radius: 28px; padding: 40px 36px;
  max-width: 440px; width: 100%;
  position: relative;
  animation: modal-in 0.3s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.92) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  color: #94a3b8; font-size: 1.4rem; line-height: 1;
}
.modal-close:hover { color: var(--navy); }
.modal-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fefce8; color: #a16207;
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 14px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.modal-title { font-size: 1.35rem; font-weight: 900; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.modal-sub { font-size: 0.88rem; color: #64748b; margin-bottom: 20px; }
.modal-price-box {
  background: #f0fdf4; border: 2px solid #bbf7d0;
  border-radius: 16px; padding: 20px; text-align: center; margin-bottom: 20px;
}
.modal-price-label { font-size: 0.82rem; color: #64748b; font-weight: 500; margin-bottom: 4px; }
.modal-prices { display: flex; align-items: center; justify-content: center; gap: 14px; }
.modal-price-was { font-size: 1.1rem; font-weight: 700; color: #94a3b8; text-decoration: line-through; }
.modal-price-new { font-size: 2.4rem; font-weight: 900; color: var(--green); font-family: 'Poppins', sans-serif; }
.modal-price-note { font-size: 0.75rem; color: #64748b; margin-top: 4px; }
.modal-decline { display: block; text-align: center; font-size: 0.78rem; color: #94a3b8; text-decoration: underline; margin-top: 10px; cursor: pointer; }
.modal-decline:hover { color: #64748b; }

/* ── FAQ ─────────────────────────────────────────── */
#faq { background: var(--white); }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--navy); color: #94a3b8;
  padding: 48px 20px; text-align: center;
}
footer .footer-title { color: var(--white); font-weight: 800; font-size: 1.1rem; margin-bottom: 16px; font-family: 'Poppins', sans-serif; }
footer .footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
footer .footer-links a { color: #94a3b8; text-decoration: none; font-size: 0.85rem; }
footer .footer-links a:hover { color: var(--green); }
footer .footer-copy { font-size: 0.78rem; color: #475569; }

/* ── SOCIAL TOAST ────────────────────────────────── */
#social-toast {
  position: fixed; bottom: 24px; left: 16px; z-index: 150;
  pointer-events: none;
}
.toast-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  max-width: 290px;
  pointer-events: auto;
  transform: translateY(12px) scale(0.96);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.toast-card.show { opacity: 1; transform: translateY(0) scale(1); }
.toast-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: #f0fdf4;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.toast-icon svg { width: 20px; height: 20px; color: var(--green); }
.toast-name { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.toast-city { font-size: 0.75rem; color: #94a3b8; }
.toast-action { font-size: 0.75rem; color: var(--green); font-weight: 600; margin-top: 2px; }
.toast-action .ago { color: #94a3b8; font-weight: 400; }

/* ── MOBILE STICKY CTA ───────────────────────────── */
#mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--white);
  border-top: 1px solid #e2e8f0;
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
@media(max-width:640px) { #mobile-cta { display: block; } }
#mobile-cta .btn-green { width: 100%; font-size: 1rem; padding: 14px; }

/* ── SCROLL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── UTILITIES ───────────────────────────────────── */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.flex-spacer { flex: 1; }
