:root{
  --purple:#09b615;
  --purple2:#17dc69;
  --green:#64B833;
  --cream:#FAF7F0;
  --text:#1A1A1A;
  --muted:#6b6b6b;
  --card:#ffffff;
  --line:rgba(0,0,0,.08);
  --shadow: 0 12px 30px rgba(0,0,0,.08);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: var(--cream);
}

.container{ width:min(1100px, 92%); margin:0 auto; }

.topbar{
  background: rgba(5, 137, 69, 0.95);
  color:#fff;
  font-size:14px;
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
}
.pill{
  display:inline-block;
  padding:6px 10px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:999px;
}
.toplink{ color:#fff; text-decoration:none; opacity:.95; }
.toplink:hover{ opacity:1; text-decoration:underline; }
.dot{ opacity:.8; margin:0 8px; }

.header{
  position:sticky; top:0;
  background: #02ad55;
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  z-index:50;
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none; color:inherit;
}
.brand__logo{
  width:64px; height:64px; object-fit:contain;
  border-radius:7px;
}
.brand__name{ font-weight:800; letter-spacing:.2px; }
.brand__tag{ font-size:13px; color:var(--muted); margin-top:2px; }

.nav{ display:flex; gap:18px; align-items:center; }
.nav a{
  text-decoration:none; color:var(--text);
  font-weight:600; font-size:14px;
}
.nav a:hover{ color:var(--purple); }

.menuBtn{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  padding:8px 10px;
  font-size:18px;
  cursor:pointer;
}

.mobileNav{
  display:none;
  border-top:1px solid var(--line);
  padding:10px 0 14px;
}
.mobileNav a{
  display:block;
  padding:10px 0;
  text-decoration:none;
  color:var(--text);
  font-weight:700;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  background: var(--purple);
  color:#fff; text-decoration:none;
  font-weight:800;
  box-shadow: var(--shadow);
  border:1px solid rgba(0,0,0,.05);
}
.btn:hover{ background: var(--purple2); }
.btn--ghost{
  background: transparent;
  color: var(--purple);
  border: 2px solid rgba(58,27,90,.25);
  box-shadow:none;
}
.btn--ghost:hover{
  border-color: rgba(58,27,90,.45);
  background: rgba(58,27,90,.06);
}
.btn--small{ padding:10px 14px; font-size:14px; }

.hero{
  position:relative;
  background:
    radial-gradient(1000px 500px at 20% 10%, rgba(100,184,51,.20), transparent 60%),
    radial-gradient(1000px 500px at 80% 0%, rgba(58,27,90,.22), transparent 60%),
    var(--cream);
  padding:52px 0 30px;
  overflow:hidden;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:center;
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.05;
  letter-spacing:-.6px;
}
.accent{ color: var(--purple); }
.lead{ margin:0 0 18px; color: rgba(0,0,0,.70); font-size:16px; line-height:1.55; }

.hero__cta{ display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 18px; }

.trust{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:10px;
}
.trust__item{
  background: rgba(255,255,255,.65);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:12px;
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.trust__icon{
  width:28px; height:28px;
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(100,184,51,.20);
  color: var(--green);
  font-weight:900;
}
.trust__title{ font-weight:900; font-size:14px; }
.trust__desc{ font-size:13px; color:var(--muted); margin-top:2px; }

.hero__media{ display:flex; justify-content:flex-end; }
.heroCard{
  width:100%;
  background:#fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border:1px solid var(--line);
  overflow:hidden;
}
.heroCard__img{
  width:100%;
  height:290px;
  object-fit:cover;
  display:block;
}
.heroCard__meta{ padding:16px; }
.badge{
  display:inline-block;
  font-size:12px;
  font-weight:800;
  color: var(--purple);
  background: rgba(58,27,90,.08);
  border:1px solid rgba(58,27,90,.12);
  padding:6px 10px;
  border-radius:999px;
}
.heroCard__title{ margin:10px 0 4px; font-weight:900; }
.heroCard__text{ margin:0; color:var(--muted); }

.hero__wave{
  height:30px;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.03));
  margin-top:30px;
}

.section{ padding:60px 0; }
.section--alt{ background: rgba(255,255,255,.55); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.sectionHead h2{ margin:0 0 8px; font-size:30px; }
.sectionHead p{ margin:0; color:var(--muted); line-height:1.5; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top:22px;
}
.card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.card img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius: 14px;
  border:1px solid var(--line);
  margin-bottom:10px;
}
.card h3{ margin:10px 0 8px; }
.card ul{ margin:0; padding-left:18px; color:var(--muted); }
.card li{ margin:6px 0; }

.note{
  margin-top:16px;
  padding:14px 16px;
  border-radius: var(--radius);
  border:1px dashed rgba(58,27,90,.25);
  background: rgba(58,27,90,.06);
}
.muted{ color:var(--muted); }
.small{ font-size:13px; }

.steps{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
  margin-top:20px;
}
.step{
  display:flex; gap:12px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.step__num{
  width:36px; height:36px;
  border-radius: 14px;
  background: rgba(100,184,51,.18);
  color: var(--green);
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
}
.step h3{ margin:0 0 6px; }
.step p{ margin:0; color:var(--muted); line-height:1.5; }

.highlight{
  margin-top:18px;
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  background: rgba(58,27,90,.08);
  border:1px solid rgba(58,27,90,.16);
  border-radius: var(--radius);
  padding:16px;
}

.about{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
.twoCol{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  margin-top:16px;
}
.miniCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px;
  box-shadow: var(--shadow);
}
.miniCard h3{ margin:0 0 6px; }
.miniCard p{ margin:0; color:var(--muted); }

.about__side{
  display:grid;
  gap:12px;
}
.stat{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.stat__big{ font-size:28px; font-weight:900; color:var(--purple); }
.stat__small{ color:var(--muted); margin-top:6px; }

.contactGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  margin-top:18px;
}
.form{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.form label{
  display:block;
  font-weight:800;
  font-size:13px;
  margin-bottom:10px;
}
input, select, textarea{
  width:100%;
  margin-top:8px;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(0,0,0,.12);
  background: #fff;
  font: inherit;
}
textarea{ resize: vertical; }

.formRow{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}

.formActions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:12px;
}

.contactCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.contactItem{ margin:10px 0; }
.k{ color:var(--muted); margin-right:6px; }
.divider{
  height:1px;
  background: var(--line);
  margin:14px 0;
}
.linkRow{
  display:block;
  text-decoration:none;
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  margin-top:10px;
  color:var(--text);
}
.linkRow:hover{ border-color: rgba(58,27,90,.25); color: var(--purple); }

.footer{
  padding:20px 0;
  border-top:1px solid var(--line);
  background: rgba(250,247,240,.9);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:14px;
}
.footer__links a{ color:var(--muted); text-decoration:none; }
.footer__links a:hover{ text-decoration:underline; }

@media (max-width: 920px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__media{ justify-content:flex-start; }
  .trust{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .about{ grid-template-columns: 1fr; }
  .contactGrid{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .menuBtn{ display:inline-flex; }
  .mobileNav.show{ display:block; }
  .formRow{ grid-template-columns: 1fr; }
}