:root {
  --green:#02C324; --green-dark:#019e1c; --green-dim:#02c32415;
  --bg:#FFFFFF; --bg2:#F2F7F0; --card:#FFFFFF; --border:#C8DFC0;
  --text:#1A2E1A; --muted:#4A6A4A; --muted2:#7A9A7A; --white:#FFFFFF; --orange:#D4580A;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { background:var(--bg); color:var(--text); font-family:'Outfit',sans-serif; overflow-x:hidden; }
nav {
  position:sticky; top:0; z-index:1000; display:flex; align-items:center; justify-content:space-between;
  padding:0 40px; height:68px; background:rgba(255,255,255,0.95); backdrop-filter:blur(16px); border-bottom:1px solid var(--border);
}
.nav-logo { display:flex; align-items:center; gap:10px; font-family:'Bebas Neue',cursive; font-size:28px; letter-spacing:2px; color:var(--text); text-decoration:none; }
.logo-icon {
  width:38px; height:38px; background:var(--green); border-radius:10px; display:flex; align-items:center; justify-content:center;
  font-size:18px; font-weight:900; color:var(--white); font-family:'Bebas Neue',cursive;
}
.nav-links { display:flex; gap:28px; list-style:none; }
.nav-links a { color:var(--muted); text-decoration:none; font-size:14px; font-weight:500; }
.nav-links a:hover, .nav-links a.active { color:var(--green); }
.nav-cta { display:flex; gap:12px; align-items:center; }
.btn-outline { padding:9px 22px; border:1.5px solid var(--border); border-radius:8px; color:var(--text); text-decoration:none; font-size:14px; font-weight:500; background:transparent; }
.btn-outline:hover { border-color:var(--green); color:var(--green); }
.btn-green { padding:10px 24px; background:var(--green); border-radius:8px; color:var(--white); text-decoration:none; font-size:14px; font-weight:700; }
.btn-green:hover { background:var(--green-dark); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; }
.hamburger span { width:24px; height:2px; background:var(--text); border-radius:2px; }
.page-hero { padding:72px 40px 48px; background:linear-gradient(160deg,#F2F7F0 0%,#FFFFFF 55%,#EAF5E4 100%); border-bottom:1.5px solid var(--border); }
.page-hero-inner { max-width:860px; margin:0 auto; }
.eyebrow { display:inline-block; font-size:12px; font-weight:700; letter-spacing:1.4px; text-transform:uppercase; color:var(--green-dark); margin-bottom:16px; }
.page-hero h1 { font-family:'Bebas Neue',cursive; font-size:clamp(42px,6vw,72px); line-height:0.95; margin-bottom:20px; }
.page-hero p { font-size:18px; color:var(--muted); line-height:1.7; max-width:640px; }
.contact-row { display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; }
.contact-row a {
  display:inline-flex; align-items:center; gap:10px; background:var(--white); border:1.5px solid var(--border); border-radius:12px;
  padding:12px 18px; text-decoration:none; color:var(--text); font-size:16px; font-weight:600;
}
.contact-row a:hover { border-color:var(--green); color:var(--green-dark); }
.contact-label { font-size:10px; font-weight:700; letter-spacing:1.2px; text-transform:uppercase; color:var(--muted2); display:block; }
.section { padding:64px 40px; }
.section.alt { background:var(--bg2); border-top:1.5px solid var(--border); border-bottom:1.5px solid var(--border); }
.wrap { max-width:960px; margin:0 auto; }
.bullets { list-style:none; display:grid; gap:18px; margin-top:28px; }
.bullets li { background:var(--card); border:1.5px solid var(--border); border-radius:14px; padding:22px 24px; }
.bullets h2 { font-size:18px; font-weight:700; margin-bottom:8px; }
.bullets p { font-size:15px; color:var(--muted); line-height:1.7; }
.prose h2 { font-family:'Bebas Neue',cursive; font-size:36px; margin:0 0 16px; }
.prose p, .prose li { font-size:16px; color:var(--muted); line-height:1.75; }
.prose p + p, .prose ul { margin-top:14px; }
.prose ul { padding-left:20px; }
.prose a { color:var(--green-dark); font-weight:600; }
.note { margin-top:24px; background:var(--bg2); border:1.5px solid var(--border); border-radius:12px; padding:16px 20px; font-size:14px; color:var(--muted); line-height:1.65; }
.cta-band { background:var(--text); color:var(--white); padding:48px 40px; }
.cta-band .wrap { display:flex; justify-content:space-between; align-items:center; gap:24px; flex-wrap:wrap; }
.cta-band h2 { font-family:'Bebas Neue',cursive; font-size:36px; }
.cta-band p { color:rgba(255,255,255,0.7); margin-top:8px; max-width:460px; }
.btn-hero { display:inline-block; padding:14px 28px; background:var(--green); border-radius:10px; color:var(--white); text-decoration:none; font-weight:700; }
footer { background:var(--text); padding:48px 40px 28px; }
.footer-inner { max-width:1200px; margin:0 auto; display:flex; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.footer-links { list-style:none; display:flex; flex-wrap:wrap; gap:16px 24px; }
.footer-links a { color:rgba(255,255,255,0.5); text-decoration:none; font-size:14px; }
.footer-links a:hover { color:var(--green); }
.footer-copy { color:rgba(255,255,255,0.4); font-size:13px; }
@media (max-width:900px) {
  nav { padding:0 20px; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .page-hero, .section, .cta-band, footer { padding-left:20px; padding-right:20px; }
}
