
:root{
  --green:#128341;
  --green-600:#1A8341;
  --green-100:#F2FAF5;
  --text:#0a0f12;
  --muted:#5b6b6f;
  --bg:#ffffff;
  --shadow: 0 10px 30px rgba(18,131,65,.12);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.header{
  position:sticky;top:0;background:#fff;border-bottom:1px solid #eef2f0;z-index:10
}
.nav{display:flex;align-items:center;justify-content:space-between;height:64px}
.logo{display:flex;align-items:center;gap:10px;font-weight:700;color:var(--green);text-decoration:none}
.logo img{width:24px;height:24px}
.btn{
  display:inline-block;padding:14px 20px;border-radius:14px;background:var(--green);
  color:#fff;text-decoration:none;font-weight:600;box-shadow:var(--shadow);
  transition:transform .08s ease, box-shadow .2s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(18,131,65,.18)}
.btn.secondary{background:#fff;color:var(--green);border:1px solid #dfeee6}
.hero{
  background:url('assets/hero.svg') center/cover no-repeat;
  padding:64px 0 40px 0;
}
.hero-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:32px;align-items:center}
.tag{display:inline-flex;gap:10px;align-items:center;background:#E8F5EE;border:1px solid #DDEFE5;color:var(--green);
  padding:8px 12px;border-radius:999px;font-weight:600;font-size:14px}
.h1{font-size:42px;line-height:1.12;margin:14px 0 16px}
.lead{font-size:18px;color:#2b3235;max-width:640px}
.cta{display:flex;gap:14px;flex-wrap:wrap;margin-top:16px}
.kpis{display:flex;gap:24px;margin-top:22px;color:#2b3235}
.kpis .k{background:#fff;border:1px solid #eef2f0;border-radius:14px;padding:12px 16px}
.section{padding:56px 0}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:#fff;border:1px solid #eef2f0;border-radius:18px;padding:18px;box-shadow:0 8px 20px rgba(10,15,18,.04)}
.card h3{margin:8px 0 6px;font-size:18px}
.list{margin:0;padding-left:18px}
.badge{display:inline-block;background:#ECF7F0;color:var(--green);border:1px solid #E1EFE6;padding:4px 10px;border-radius:999px;font-size:12px}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.footer{background:#f8fbf8;border-top:1px solid #eef2f0;padding:28px 0;color:#4a585b;font-size:14px}
.footer a{color:var(--green);text-decoration:none}
.hero-ill{
  width:100%;height:340px;border:1px solid #dfeee6;background:#fff;border-radius:20px;
  box-shadow:0 12px 32px rgba(18,131,65,.10);
  display:flex;align-items:center;justify-content:center;flex-direction:column;gap:10px
}
.hero-ill .circle{width:68px;height:68px;border-radius:50%;background:var(--green);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-size:28px}
.hero-ill .line{width:70%;height:10px;border-radius:8px;background:#ECF7F0}
.hero-ill .line.thin{height:6px;width:60%}
.hero-ill .line.t{width:40%}
.faq details{background:#fff;border:1px solid #eef2f0;border-radius:14px;padding:14px}
.faq details+details{margin-top:10px}
.faq summary{cursor:pointer;font-weight:600;color:#102014}
.note{font-size:13px;color:#576668;margin-top:8px}
.replace{font-family:ui-monospace, SFMono-Regular, Menlo, monospace;color:#335a3f;background:#f0faf3;padding:0 6px;border-radius:6px}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .kpis{flex-direction:column}
  .h1{font-size:34px}
}
