/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #2d2d2d;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }
h2 { font-size: clamp(1.5rem, 4vw, 2.3rem); text-align: center; margin-bottom: 1rem; font-weight: 800; line-height: 1.3; color: #1a3c1a; }
.section-sub { text-align: center; color: #666; margin-bottom: 2.5rem; font-size: 1.05rem; }
.highlight { color: #2e7d32; }
.highlight-red { color: #c0392b; }

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #43a047, #2e7d32);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  padding: 18px 44px;
  border-radius: 14px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 25px rgba(46,125,50,.3);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.cta-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 40px rgba(46,125,50,.4); }
.pulse { animation: pulse 2.5s infinite; will-change: transform; }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* ===== URGENCY BANNER ===== */
.urgency-banner {
  background: linear-gradient(90deg, #c0392b, #e74c3c);
  color: #fff;
  text-align: center;
  padding: 12px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 1px;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ===== HERO ===== */
.hero {
  padding: 60px 0 50px;
  text-align: center;
  background: linear-gradient(170deg, #f0f7f0 0%, #e8f5e9 40%, #ffffff 100%);
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #ffffff);
}
.badge {
  display: inline-block;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: .5px;
}
.hero h1 { font-size: clamp(1.6rem, 5vw, 2.6rem); font-weight: 900; margin-bottom: 20px; line-height: 1.25; color: #1a3c1a; }
.hero-sub { color: #555; font-size: 1.1rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-sub strong { color: #2e7d32; }
.hero-mockup { margin: 30px auto; max-width: 420px; position: relative; z-index: 1; }
.hero-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.12));
}
.trust-badges { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; position: relative; z-index: 1; }
.trust-badges span { font-size: .85rem; color: #555; font-weight: 600; background: #fff; padding: 6px 14px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,.06); }

/* ===== MATERIAL PREVIEW ===== */
.material-preview { padding: 70px 0 50px; background: #fff; }
.material-preview .section-sub strong { color: #2e7d32; }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.module-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,.08);
  border: 1px solid #e8e8e8;
  transition: transform 0.2s, box-shadow 0.2s;
  background: #fafafa;
}
.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,.12);
}
.module-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== PAIN SECTION ===== */
.pain-section { padding: 70px 0; background: #fff; }
.pain-section h2 { margin-bottom: 2rem; color: #2d2d2d; }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 2rem; }
.pain-card {
  background: #fff8f6;
  border: 1px solid #fde0db;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.pain-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(231,76,60,.1); }
.pain-icon { font-size: 2.2rem; display: block; margin-bottom: 12px; }
.pain-card p { color: #555; font-size: .95rem; font-weight: 500; }
.pain-cta { text-align: center; font-size: 1.1rem; color: #444; }
.pain-cta strong { color: #2e7d32; }

/* ===== COMPARISON ===== */
.comparison { padding: 70px 0; background: #f7faf7; }
.comparison h2 { color: #2d2d2d; }
.comparison-image-box {
  max-width: 600px;
  margin: 0 auto 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,.08);
}
.comparison-img {
  width: 100%;
  height: auto;
  display: block;
}
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 700px; margin: 0 auto; }
.compare-card { border-radius: 18px; padding: 30px 26px; box-shadow: 0 4px 20px rgba(0,0,0,.05); }
.compare-card.bad { background: #fff; border: 2px solid #fde0db; }
.compare-card.good { background: #fff; border: 2px solid #a5d6a7; }
.compare-header { font-weight: 800; font-size: 1rem; text-align: center; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #f0f0f0; }
.bad-header { color: #c0392b; }
.good-header { color: #2e7d32; }
.compare-card li { padding: 7px 0; font-size: .92rem; color: #555; }

/* ===== MID CTA ===== */
.mid-cta-section { padding: 40px 0; background: #f7faf7; }

/* ===== CURRICULUM ===== */
.curriculum { padding: 70px 0; background: #fff; }
.curriculum-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.curriculum-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .3s;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.curriculum-card:hover { transform: translateY(-5px); border-color: #a5d6a7; box-shadow: 0 8px 30px rgba(46,125,50,.1); }
.curriculum-icon { font-size: 2.6rem; margin-bottom: 16px; }
.curriculum-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; color: #1a3c1a; }
.curriculum-card p { font-size: .92rem; color: #666; }

/* ===== IDEAL SECTION ===== */
.ideal-section { padding: 70px 0; background: #f7faf7; }
.ideal-section h2 { color: #1a3c1a; }
.ideal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; max-width: 700px; margin: 2rem auto 0; }
.ideal-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff;
  border: 1px solid #e0efe0;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,.03);
  transition: transform .2s;
}
.ideal-card:hover { transform: translateY(-3px); }
.ideal-check { font-size: 1.2rem; flex-shrink: 0; }
.ideal-card p { font-size: .95rem; color: #444; }
.ideal-card strong { color: #2e7d32; }

/* ===== BONUS ===== */
.bonus-section { padding: 70px 0; background: #fffcf0; }
.bonus-section h2 { color: #2d2d2d; }
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.bonus-card {
  background: #fff;
  border: 1px solid #fde68a;
  border-radius: 18px;
  padding: 30px 24px;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.bonus-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(253,230,138,.3); }
.bonus-number { font-size: 3.5rem; font-weight: 900; color: rgba(253,230,138,.4); position: absolute; top: 8px; right: 16px; }
.bonus-image-box {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid #fde68a;
}
.bonus-image-box img {
  width: 100%;
  height: auto;
  display: block;
}
.bonus-card h3 { font-size: 1.08rem; font-weight: 700; color: #b8860b; margin-bottom: 10px; }
.bonus-card p { font-size: .92rem; color: #666; margin-bottom: 14px; }
.bonus-value { font-size: .82rem; color: #999; text-decoration: line-through; }

/* ===== PRICING ===== */
.pricing-section { padding: 70px 0; background: linear-gradient(170deg, #1a3c1a 0%, #2e5a2e 50%, #1a3c1a 100%); }
.pricing-section h2 { color: #fff; }
.pricing-section .section-sub { color: rgba(255,255,255,.7); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 720px; margin: 2rem auto 0; align-items: start; }
.pricing-card { border-radius: 22px; padding: 36px 26px; text-align: center; position: relative; }
.pricing-card.basic {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
}
.pricing-card.complete {
  background: #fff;
  border: 2px solid #a5d6a7;
  box-shadow: 0 12px 50px rgba(0,0,0,.25);
}
.pricing-card.basic .pricing-header h3 { color: rgba(255,255,255,.9); }
.pricing-card.basic .pricing-features .included { color: rgba(255,255,255,.75); }
.pricing-card.basic .pricing-features .excluded { color: rgba(255,255,255,.3); }
.popular-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #43a047, #2e7d32);
  color: #fff; font-size: .75rem; font-weight: 700;
  padding: 6px 22px; border-radius: 50px; white-space: nowrap;
  box-shadow: 0 4px 15px rgba(46,125,50,.3);
}
.pricing-header h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: #1a3c1a; }
.pricing-card-img {
  max-width: 180px;
  margin: 8px auto 4px;
}
.pricing-card-img img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.1));
}
.timer-box {
  background: #fff0f0; border: 1px solid #fccaca; color: #c0392b;
  font-size: .8rem; font-weight: 700; padding: 6px 14px;
  border-radius: 8px; margin-bottom: 12px; display: inline-block;
}
.price { margin: 12px 0 20px; }
.price-old { text-decoration: line-through; color: #999; font-size: .9rem; display: block; }
.pricing-card.basic .price-old { color: rgba(255,255,255,.4); }
.price-current { font-size: 2.6rem; font-weight: 900; color: #2e7d32; }
.pricing-card.basic .price-current { color: #a5d6a7; }
.price-current.big { font-size: 3rem; }
.price-current small { font-size: 1.4rem; }
.pricing-features { text-align: left; margin-bottom: 24px; }
.pricing-features li { padding: 6px 0; font-size: .88rem; }
.pricing-features .included { color: #444; }
.pricing-features .excluded { color: #bbb; }
.pricing-features .bonus-li { color: #b8860b; font-weight: 600; }
.cta-basic {
  background: linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,.1));
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: none; font-size: .95rem; padding: 14px 28px;
  display: block; width: 100%;
  animation: none !important;
}
.cta-basic:hover { background: rgba(255,255,255,.25); box-shadow: none; transform: translateY(-2px); }
.cta-complete { display: block; width: 100%; font-size: 1.05rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 70px 0; background: #fff; }
.testimonials h2 { color: #1a3c1a; }
.testimonial-slider { overflow: hidden; position: relative; }
.testimonial-track { display: flex; transition: transform .4s ease; }
.testimonial-card {
  flex: 0 0 100%;
  background: #fff; border: 1px solid #e8e8e8;
  border-radius: 18px; padding: 12px; margin: 0 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.testimonial-print {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.slider-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 20px; }
.slider-btn {
  background: #f5f5f5; border: 1px solid #e0e0e0; color: #2d2d2d;
  width: 42px; height: 42px; border-radius: 50%;
  font-size: 1.4rem; cursor: pointer; transition: background .2s;
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: #e8f5e9; border-color: #a5d6a7; }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: #ddd; cursor: pointer; transition: background .2s; }
.slider-dot.active { background: #2e7d32; }

/* ===== GUARANTEE ===== */
.guarantee-section { padding: 70px 0; background: #f7faf7; }
.guarantee-box {
  display: flex; align-items: center; gap: 30px;
  background: #fff; border: 2px solid #a5d6a7;
  border-radius: 22px; padding: 40px 36px;
  box-shadow: 0 6px 25px rgba(46,125,50,.08);
}
.guarantee-seal { flex-shrink: 0; }
.seal-inner {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, #43a047, #2e7d32);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 6px 25px rgba(46,125,50,.3);
}
.seal-days { font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1; }
.seal-text { font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.95); }
.seal-sub { font-size: .65rem; font-weight: 600; color: rgba(255,255,255,.8); letter-spacing: 1px; }
.guarantee-content h2 { text-align: left; margin-bottom: .8rem; font-size: 1.5rem; color: #1a3c1a; }
.guarantee-content p { color: #555; margin-bottom: 20px; font-size: .95rem; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 70px 0; background: #fff; }
.how-it-works h2 { color: #1a3c1a; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card { text-align: center; padding: 20px; }
.step-number {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, #43a047, #2e7d32);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.3rem; color: #fff;
  margin: 0 auto 14px;
  box-shadow: 0 4px 15px rgba(46,125,50,.25);
}
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: #1a3c1a; }
.step-card p { font-size: .88rem; color: #666; }

/* ===== FAQ ===== */
.faq-section { padding: 70px 0; background: #f7faf7; }
.faq-section h2 { color: #1a3c1a; }
.faq-list { max-width: 680px; margin: 2rem auto 0; }
.faq-item { border-bottom: 1px solid #e0e0e0; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; background: none; border: none; color: #2d2d2d;
  font-size: 1rem; font-weight: 600; cursor: pointer; text-align: left;
  font-family: inherit; transition: color .2s;
}
.faq-question:hover { color: #2e7d32; }
.faq-icon { font-size: 1.4rem; color: #2e7d32; transition: transform .3s; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 18px; }
.faq-answer p { color: #666; font-size: .92rem; }

/* ===== FINAL CTA ===== */
.final-cta { padding: 70px 0; background: linear-gradient(170deg, #e8f5e9 0%, #f0f7f0 50%, #fff 100%); text-align: center; }
.final-cta h2 { color: #1a3c1a; }
.final-cta p { color: #555; font-size: 1.1rem; margin-bottom: 24px; }

/* ===== FOOTER ===== */
.footer { padding: 30px 0; text-align: center; border-top: 1px solid #e8e8e8; background: #fafafa; }
.footer p { font-size: .75rem; color: #999; margin-bottom: 6px; }

/* ===== UPSELL POPUP ===== */
.upsell-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.6); z-index: 200;
  align-items: center; justify-content: center; padding: 20px;
}
.upsell-overlay.active { display: flex; }
.upsell-popup {
  background: #fff; border-radius: 22px; padding: 40px 32px;
  max-width: 460px; width: 100%; text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  animation: popIn .3s ease;
  max-height: 90vh; overflow-y: auto;
}
@keyframes popIn { from { transform: scale(.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.upsell-popup h3 { font-size: 1.4rem; font-weight: 800; color: #1a3c1a; margin-bottom: 12px; }
.upsell-mockup {
  max-width: 200px;
  margin: 0 auto 16px;
}
.upsell-mockup img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 15px rgba(0,0,0,.1));
}
.upsell-popup > p { color: #555; font-size: 1rem; margin-bottom: 16px; }
.upsell-price { margin-bottom: 20px; }
.upsell-old { text-decoration: line-through; color: #999; font-size: .9rem; display: block; }
.upsell-new { font-size: 3rem; font-weight: 900; color: #2e7d32; }
.upsell-new small { font-size: 1.4rem; }
.upsell-features { text-align: left; max-width: 280px; margin: 0 auto 24px; }
.upsell-features li { padding: 5px 0; font-size: .9rem; color: #444; }
.upsell-accept { display: block; width: 100%; margin-bottom: 16px; }
.upsell-decline {
  background: none; border: none; color: #999; font-size: .8rem;
  cursor: pointer; font-family: inherit; padding: 8px;
  text-decoration: underline; transition: color .2s;
}
.upsell-decline:hover { color: #666; }

/* ===== LIVE NOTIFICATION ===== */
.live-notification {
  position: fixed; bottom: 20px; left: 20px;
  background: #fff; border: 1px solid #a5d6a7;
  border-radius: 14px; padding: 14px 20px; max-width: 320px;
  z-index: 90; transform: translateX(-120%);
  transition: transform .5s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
}
.live-notification.show { transform: translateX(0); }
.notif-content { display: flex; align-items: center; gap: 10px; }
.notif-icon { font-size: 1.4rem; }
#notifText { font-size: .82rem; color: #555; }
#notifText strong { color: #2e7d32; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .modules-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .compare-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .guarantee-box { flex-direction: column; text-align: center; padding: 30px 24px; }
  .guarantee-content h2 { text-align: center; }
  .hero { padding: 40px 0 40px; }
  .cta-btn { font-size: 1rem; padding: 16px 28px; }
  .upsell-overlay { padding: 12px; }
  .upsell-popup { padding: 24px 18px; max-height: 92vh; }
  .upsell-popup h3 { font-size: 1.2rem; }
  .upsell-new { font-size: 2.4rem; }
  .upsell-accept { font-size: .95rem; padding: 16px 20px; }
  .upsell-features { margin: 0 auto 20px; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  h2 { font-size: 1.4rem; }
  .upsell-popup { padding: 20px 16px; }
  .upsell-popup h3 { font-size: 1.1rem; }
  .upsell-new { font-size: 2rem; }
  .upsell-features li { font-size: .85rem; }
}
