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

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

:root {
  --green: #0a5c36;
  --green2: #0e7a48;
  --green3: #12a05e;
  --gold: #f5c518;
  --dark: #0d1f17;
  --white: #ffffff;
  --offwhite: #f7faf8;
  --border: #e2ece7;
  --text: #3d4f45;
  --radius: 10px;
}

body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); line-height: 1.6; }
html { scroll-behavior: smooth; }

a { color: inherit; }
img { max-width: 100%; display: block; }

/* NAV */
nav { background: var(--dark); position: sticky; top: 0; z-index: 999; border-bottom: 3px solid var(--green3); }
.nav-wrap { max-width: 1140px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.nav-logo { font-size: 1.5rem; font-weight: 800; color: var(--white); text-decoration: none; letter-spacing: -0.5px; }
.nav-logo span { color: var(--gold); }
.nav-menu { list-style: none; display: flex; gap: 4px; }
.nav-menu a { display: block; padding: 6px 11px; border-radius: 6px; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.75); text-decoration: none; transition: background 0.15s, color 0.15s; }
.nav-menu a:hover { background: var(--green); color: #fff; }
.nav-menu a.active { background: var(--green); color: #fff; }
.nav-book { background: var(--gold) !important; color: var(--dark) !important; font-weight: 700 !important; }
.nav-book:hover { background: #e6b820 !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }

/* HERO */
.hero { background: linear-gradient(145deg, var(--dark) 0%, var(--green) 100%); color: #fff; padding: 80px 20px 70px; text-align: center; }
.hero-inner { max-width: 760px; margin: 0 auto; }
.badge { display: inline-block; border: 1px solid rgba(245,197,24,0.5); background: rgba(245,197,24,0.1); color: var(--gold); font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 18px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 32px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 13px 24px; border-radius: var(--radius); font-weight: 700; font-size: 0.92rem; text-decoration: none; transition: transform 0.15s, box-shadow 0.15s; cursor: pointer; border: none; font-family: inherit; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-white { background: rgba(255,255,255,0.13); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-green { background: var(--green3); color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-wa { background: #25d366; color: #fff; }

/* TRUST BAR */
.trust { background: var(--green); padding: 12px 20px; }
.trust-list { max-width: 1140px; margin: 0 auto; display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.trust-list span { color: #fff; font-size: 0.82rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }

/* STATS */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 48px; }
.stat { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 18px 10px; text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--gold); }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* SECTIONS */
.section { padding: 70px 20px; }
.section-alt { background: var(--offwhite); }
.wrap { max-width: 1140px; margin: 0 auto; }
.label { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green3); margin-bottom: 8px; }
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 800; line-height: 1.2; margin-bottom: 12px; }
.section-sub { color: var(--text); font-size: 1rem; max-width: 560px; margin-bottom: 40px; }

/* GRID */
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.g2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

/* CARD */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; box-shadow: 0 2px 12px rgba(10,92,54,0.07); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(10,92,54,0.13); }
.card-icon { font-size: 2rem; margin-bottom: 12px; }
.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 7px; }
.card p { font-size: 0.88rem; color: var(--text); line-height: 1.6; }
.card-link { display: inline-flex; align-items: center; gap: 4px; margin-top: 12px; font-size: 0.83rem; font-weight: 700; color: var(--green3); text-decoration: none; }

/* REVIEW */
.review { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: 0 2px 10px rgba(10,92,54,0.07); }
.stars { color: #f59e0b; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-size: 0.87rem; color: var(--text); line-height: 1.65; font-style: italic; margin-bottom: 12px; }
.review-author { font-size: 0.82rem; font-weight: 700; }
.review-where { font-size: 0.75rem; color: #9aa8a2; }
.rating-hero { font-size: 3.2rem; font-weight: 800; line-height: 1; }
.stars-big { color: #f59e0b; font-size: 1.3rem; letter-spacing: 3px; margin: 6px 0; }

/* TABLE */
.price-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.price-table th { background: var(--green); color: #fff; padding: 11px 14px; text-align: left; font-size: 0.82rem; }
.price-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.price-table tr:nth-child(even) td { background: var(--offwhite); }
.price-table tr:hover td { background: #e6f3eb; }
.price-hi { font-weight: 700; color: var(--green); }

/* FAQ */
.faq { border-bottom: 1px solid var(--border); padding: 16px 0; }
.faq-q { font-weight: 700; font-size: 0.92rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.faq-a { font-size: 0.88rem; color: var(--text); margin-top: 10px; line-height: 1.7; display: none; }
.faq.open .faq-a { display: block; }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--green3); flex-shrink: 0; }
.faq.open .faq-q::after { content: '−'; }

/* TAGS */
.tags { display: flex; flex-wrap: wrap; gap: 9px; }
.tag { background: var(--offwhite); border: 1px solid var(--border); border-radius: 20px; padding: 5px 15px; font-size: 0.81rem; font-weight: 600; color: var(--green); text-decoration: none; transition: background 0.15s, color 0.15s; }
.tag:hover { background: var(--green); color: #fff; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--green), var(--dark)); padding: 70px 20px; text-align: center; color: #fff; }
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.8); margin-bottom: 30px; font-size: 1rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.cta-phone { display: flex; align-items: center; gap: 8px; color: var(--gold); font-size: 1.3rem; font-weight: 800; text-decoration: none; margin-bottom: 10px; justify-content: center; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* CHECK LIST */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.checklist li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.9rem; color: var(--text); }
.checklist li::before { content: '✓'; color: var(--green3); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* HIGHLIGHT BOX */
.hbox { background: #e6f3eb; border-left: 4px solid var(--green3); border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 18px; font-size: 0.9rem; color: var(--dark); margin: 18px 0; }

/* PAGE HERO */
.page-hero { background: linear-gradient(145deg, var(--dark), var(--green)); padding: 56px 20px 48px; color: #fff; }
.page-hero h1 { font-size: clamp(1.7rem, 4vw, 2.7rem); font-weight: 800; line-height: 1.2; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1rem; max-width: 580px; }
.page-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

/* BREADCRUMB */
.breadcrumb { background: var(--offwhite); border-bottom: 1px solid var(--border); padding: 9px 20px; font-size: 0.77rem; color: var(--text); }
.breadcrumb a { color: var(--green); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* FOOTER */
footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 52px 20px 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; max-width: 1140px; margin: 0 auto; }
.footer-logo { font-size: 1.5rem; font-weight: 800; color: #fff; text-decoration: none; display: block; margin-bottom: 10px; }
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 0.83rem; line-height: 1.7; max-width: 250px; }
.footer-col h4 { color: #fff; font-size: 0.83rem; font-weight: 700; margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 7px; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.81rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: 1140px; margin: 32px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.77rem; }
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* WHATSAPP FLOAT */
.wa-float { position: fixed; bottom: 22px; right: 22px; background: #25d366; color: #fff; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; text-decoration: none; box-shadow: 0 4px 18px rgba(37,211,102,0.45); z-index: 999; transition: transform 0.2s; }
.wa-float:hover { transform: scale(1.1); }

/* RESPONSIVE */
@media(max-width: 960px) {
  .g3, .g4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 640px) {
  .g3, .g2, .g4 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-desc { max-width: 100%; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--dark); padding: 14px 20px 20px; gap: 4px; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: block; }
  .trust-list { gap: 12px; justify-content: flex-start; }
}
