/* ===== ROOT & RESET ===== */
:root {
  --green: #2d6a4f;
  --green-light: #40916c;
  --green-pale: #d8f3dc;
  --gold: #e09f3e;
  --gold-dark: #c17f24;
  --coral: #e07a5f;
  --cream: #fefae0;
  --cream-dark: #f5f0d0;
  --dark: #1b2a1b;
  --text: #3a3a3a;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 12px;
}
body { font-family: 'Nunito', sans-serif; color: var(--text); overflow-x: hidden; }
h1,h2,h3,h4,h5 { font-family: 'Merriweather', serif; }
section { padding: 5rem 0; }
.section-badge { display:inline-block; background:var(--green-pale); color:var(--green); padding:.4rem 1.2rem; border-radius:50px; font-weight:700; font-size:.85rem; letter-spacing:.03em; margin-bottom:1rem; }
.section-title { font-size: clamp(1.8rem,4vw,2.8rem); font-weight:800; margin-bottom:1rem; line-height:1.2; }
.section-subtitle { font-size:1.1rem; color:var(--text-light); max-width:600px; margin:0 auto 2.5rem; line-height:1.7; }

/* ===== HERO ===== */
.hero { background: linear-gradient(160deg, var(--cream) 0%, var(--green-pale) 60%, var(--cream) 100%); min-height:90vh; display:flex; align-items:center; position:relative; overflow:hidden; }
.hero::before { content:''; position:absolute; top:-100px; right:-100px; width:400px; height:400px; background:radial-gradient(circle, rgba(45,106,79,0.08) 0%, transparent 70%); border-radius:50%; }
.hero::after { content:''; position:absolute; bottom:-80px; left:-80px; width:300px; height:300px; background:radial-gradient(circle, rgba(224,159,62,0.1) 0%, transparent 70%); border-radius:50%; }
.hero-title { font-size:clamp(2.2rem,5vw,3.5rem); font-weight:900; color:var(--dark); line-height:1.15; }
.hero-title span { color:var(--green); }
.hero-text { font-size:1.2rem; color:var(--text-light); line-height:1.7; margin:1.5rem 0 2rem; max-width:520px; }
.hero-stats { display:flex; gap:2rem; margin-top:2rem; padding-top:1.5rem; border-top:1px solid rgba(45,106,79,0.15); }
.hero-stat-num { font-size:1.6rem; font-weight:900; color:var(--green); font-family:'Merriweather',serif; }
.hero-stat-label { font-size:.78rem; color:var(--text-light); text-transform:uppercase; letter-spacing:.04em; }
.book-image { max-width:420px; filter:drop-shadow(0 20px 40px rgba(0,0,0,0.15)); animation:float 3s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ===== TRUST BAR ===== */
.trust-bar { background:var(--white); border-top:1px solid #eee; border-bottom:1px solid #eee; padding:1rem 0; }
.trust-item { display:flex; align-items:center; gap:.5rem; font-size:.9rem; color:var(--text-light); font-weight:600; }
.trust-item i { color:var(--green); font-size:1.1rem; }

/* ===== BENEFITS ===== */
.benefits { background:var(--white); }
.benefit-card { background:var(--cream); border-radius:var(--radius); padding:2rem 1.5rem; text-align:center; transition:all .3s ease; border:1px solid transparent; height:100%; }
.benefit-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:var(--green-pale); }
.benefit-icon { width:60px; height:60px; border-radius:50%; background:linear-gradient(135deg, var(--green), var(--green-light)); color:white; display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin:0 auto 1.2rem; }
.benefit-card h5 { font-size:1.05rem; font-weight:700; margin-bottom:.6rem; color:var(--dark); }
.benefit-card p { color:var(--text-light); font-size:.92rem; line-height:1.6; }

/* ===== INSIDE THE GUIDE ===== */
.guide-preview { background:var(--cream); }
.toc-card { background:var(--white); border-radius:var(--radius); padding:1.5rem; box-shadow:var(--shadow); transition:all .3s ease; height:100%; border-left:4px solid var(--green); }
.toc-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.toc-num { font-family:'Merriweather',serif; font-size:2rem; font-weight:900; color:var(--green-pale); line-height:1; margin-bottom:.5rem; }
.toc-card h6 { font-weight:700; color:var(--dark); margin-bottom:.4rem; }
.toc-card p { font-size:.85rem; color:var(--text-light); margin:0; line-height:1.5; }

/* ===== SHOWCASE ===== */
.showcase { background:var(--white); }
.showcase-img { border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-lg); }
.showcase-img img { width:100%; height:400px; object-fit:cover; }
.check-list { list-style:none; padding:0; }
.check-list li { padding:.5rem 0; display:flex; align-items:flex-start; gap:.75rem; color:var(--text); font-size:.95rem; }
.check-list li i { color:var(--green); margin-top:3px; }

/* ===== TESTIMONIALS ===== */
.testimonials { background:linear-gradient(160deg, var(--dark) 0%, #1a3a2a 100%); color:white; }
.testimonial-card { background:rgba(255,255,255,0.07); backdrop-filter:blur(10px); border:1px solid rgba(255,255,255,0.1); border-radius:var(--radius); padding:2rem; height:100%; }
.testimonial-stars { color:var(--gold); font-size:1rem; margin-bottom:1rem; }
.testimonial-text { color:rgba(255,255,255,0.85); font-style:italic; line-height:1.7; margin-bottom:1.2rem; font-size:.95rem; }
.testimonial-name { font-weight:700; font-size:.95rem; }
.testimonial-role { font-size:.8rem; color:rgba(255,255,255,0.5); }

/* ===== HOW IT WORKS ===== */
.how-it-works { background:var(--cream); }
.step-card { text-align:center; padding:1.5rem; }
.step-num { width:56px; height:56px; border-radius:50%; background:linear-gradient(135deg, var(--green), var(--green-light)); color:white; display:flex; align-items:center; justify-content:center; font-size:1.3rem; font-weight:900; margin:0 auto 1.2rem; font-family:'Merriweather',serif; box-shadow:0 4px 15px rgba(45,106,79,0.3); }
.step-card h5 { font-size:1.05rem; font-weight:700; margin-bottom:.6rem; color:var(--dark); }
.step-card p { color:var(--text-light); font-size:.92rem; line-height:1.6; }

/* ===== CTA BANNER ===== */
.cta-banner { background:linear-gradient(135deg, var(--green), var(--green-light)); color:white; text-align:center; padding:4rem 0; }
.cta-banner h2 { color:white; }

/* ===== FORM SECTION ===== */
.form-section { background:linear-gradient(160deg, var(--cream) 0%, var(--green-pale) 100%); padding:5rem 0; }
.form-container { background:var(--white); border-radius:16px; padding:2.5rem; box-shadow:var(--shadow-lg); }
.form-header { text-align:center; margin-bottom:2rem; }
.form-header h4 { font-size:1.3rem; margin-bottom:.4rem; }
.form-header p { color:var(--text-light); font-size:.9rem; }
.form-control { padding:.85rem 1rem; border:2px solid #e0e0e0; border-radius:8px; font-size:1rem; transition:all .2s; }
.form-control:focus { border-color:var(--green); box-shadow:0 0 0 3px rgba(45,106,79,0.12); }
.form-control.is-invalid { border-color:#dc3545; box-shadow:0 0 0 3px rgba(220,53,69,0.1); }
.invalid-feedback { font-size:.8rem; }
.guarantee-list { list-style:none; padding:0; }
.guarantee-list li { display:flex; align-items:center; gap:.75rem; padding:.55rem 0; color:var(--text); font-size:.93rem; }
.guarantee-list li i { color:var(--green); font-size:1rem; width:20px; text-align:center; }

/* ===== BUTTONS ===== */
.btn-green { background:linear-gradient(135deg, var(--green), var(--green-light)); color:white; border:none; padding:.85rem 2rem; font-weight:700; border-radius:50px; font-size:1rem; transition:all .25s; box-shadow:0 4px 15px rgba(45,106,79,0.3); }
.btn-green:hover { transform:translateY(-2px); box-shadow:0 8px 25px rgba(45,106,79,0.4); color:white; }
.btn-gold { background:linear-gradient(135deg, var(--gold), var(--gold-dark)); color:white; border:none; padding:.85rem 2rem; font-weight:700; border-radius:50px; font-size:1rem; transition:all .25s; box-shadow:0 4px 15px rgba(224,159,62,0.3); }
.btn-gold:hover { transform:translateY(-2px); box-shadow:0 8px 25px rgba(224,159,62,0.4); color:white; }
.btn-outline-green { border:2px solid var(--green); color:var(--green); background:transparent; padding:.85rem 2rem; font-weight:700; border-radius:50px; font-size:1rem; transition:all .25s; }
.btn-outline-green:hover { background:var(--green); color:white; }

/* ===== FOOTER ===== */
.footer { background:var(--dark); color:white; padding:2rem 0; text-align:center; }
.footer-link { color:rgba(255,255,255,0.6); font-size:.9rem; transition:color .2s; cursor:pointer; background:none; border:none; padding:0; font-family:inherit; }
.footer-link:hover { color:white; }
.footer-copy { color:rgba(255,255,255,0.3); font-size:.8rem; margin-top:1rem; }

/* ===== FLOATING CTA ===== */
.floating-cta { position:fixed; bottom:1.5rem; right:1.5rem; z-index:900; opacity:0; pointer-events:none; transition:opacity .3s; animation:pulse-float 2s ease-in-out infinite; }
.floating-cta.visible { opacity:1; pointer-events:auto; }
@keyframes pulse-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@media(max-width:768px) { .floating-cta { left:1rem; right:1rem; } .floating-cta .btn { width:100%; } }

/* ===== MODAL OVERRIDES ===== */
.modal-header { border-bottom:1px solid #f0f0f0; }
.modal-title { font-family:'Merriweather',serif; }
.modal-body h6 { color:var(--dark); font-family:'Merriweather',serif; margin-top:1.2rem; margin-bottom:.4rem; }
.modal-body p { color:var(--text-light); line-height:1.7; font-size:.93rem; }

/* ===== THANK YOU MODAL ===== */
.thank-you-icon { width:80px; height:80px; border-radius:50%; background:var(--green-pale); color:var(--green); display:flex; align-items:center; justify-content:center; font-size:2.2rem; margin:0 auto 1.2rem; animation:scale-bounce .5s ease; }
@keyframes scale-bounce { 0%{transform:scale(0)} 60%{transform:scale(1.15)} 100%{transform:scale(1)} }

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
  .hero { padding-top:3rem; padding-bottom:3rem; }
  .hero-stats { gap:1rem; flex-wrap:wrap; }
  .book-image { max-width:280px; margin:2rem auto 0; }
}
