:root{
  --green:#2E7D32;
  --green-2:#66BB6A;
  --bg:#F7FAF7;
  --card:#FFFFFF;
  --text:#0F172A;
  --muted:#334155;
  --line:rgba(15,23,42,.12);
  --shadow:0 16px 40px rgba(15,23,42,.10);
  --radius:18px;
  --radius-sm:12px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background:linear-gradient(180deg, #ffffff, var(--bg));
  line-height:1.5;
}

a{color:inherit}

.container{width:min(1100px, calc(100% - 40px)); margin:0 auto}

.skip-link{
  position:absolute;
  left:-999px;
  top:8px;
  background:var(--text);
  color:#fff;
  padding:10px 12px;
  border-radius:10px;
  z-index:1000;
}
.skip-link:focus{left:12px}

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(255,255,255,.82);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:700}
.brand-mark{
  width:34px; height:34px;
  display:grid; place-items:center;
  border-radius:12px;
  background:rgba(46,125,50,.10);
  color:var(--green);
}
.brand-name{letter-spacing:.2px}

.nav{display:none; gap:14px; align-items:center}
.nav-link{
  text-decoration:none;
  color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
  transition:background .2s ease, color .2s ease;
}
.nav-link:hover{background:rgba(46,125,50,.08); color:var(--text)}

.main{display:block}

.hero{padding:44px 0 24px}
.hero-grid{display:grid; gap:26px; align-items:center}
.hero-copy h1{font-size:clamp(28px, 5vw, 44px); line-height:1.08; margin:10px 0 12px}
.lead{font-size:clamp(16px, 2.2vw, 20px); margin:0 0 6px}
.muted{color:var(--muted)}
.small{font-size:13px}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(46,125,50,.10);
  color:var(--green);
  padding:8px 12px;
  border-radius:999px;
  font-weight:600;
  font-size:13px;
  margin:0;
}

.cta-row{display:flex; flex-wrap:wrap; gap:12px; margin-top:16px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  text-decoration:none;
  background:#fff;
  transition:transform .06s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor:pointer;
  font-weight:650;
}
.btn:active{transform:translateY(1px)}
.btn:focus{outline:none}
.btn:focus-visible{box-shadow:0 0 0 4px rgba(46,125,50,.18)}

.btn-primary{
  background:var(--green);
  color:#fff;
  border-color:rgba(46,125,50,.35);
  box-shadow:0 10px 22px rgba(46,125,50,.18);
}
.btn-primary:hover{background:#256628}

.btn-ghost{
  background:rgba(255,255,255,.65);
}
.btn-ghost:hover{background:#fff}

.btn-small{padding:10px 14px; font-size:14px}

.trust{margin-top:18px; display:grid; gap:10px}
.trust-item{display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-size:14px}
.trust-dot{width:10px; height:10px; margin-top:6px; border-radius:999px; background:rgba(46,125,50,.30)}

.hero-illus{
  display:grid;
  place-items:center;
}
.illus{width:min(520px, 100%); height:auto}

.section{padding:40px 0}
.section.alt{background:rgba(46,125,50,.04); border-top:1px solid rgba(46,125,50,.08); border-bottom:1px solid rgba(46,125,50,.08)}

.two-col{display:grid; gap:20px}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.form{padding:18px}

.field{margin-bottom:14px}
label{display:block; font-weight:650; margin-bottom:8px}

input, textarea{
  width:100%;
  border:1px solid rgba(15,23,42,.18);
  border-radius:14px;
  padding:12px 12px;
  background:#fff;
  font:inherit;
  color:inherit;
  transition:border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus{outline:none; border-color:rgba(46,125,50,.55); box-shadow:0 0 0 4px rgba(46,125,50,.16)}

.hint{margin:8px 0 0; color:var(--muted); font-size:13px}

fieldset{border:0; padding:0; margin:0}
legend{font-weight:650; margin-bottom:8px}

.radio-row{display:flex; gap:12px; flex-wrap:wrap}
.radio{
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border:1px solid rgba(15,23,42,.14);
  border-radius:999px;
  background:rgba(255,255,255,.65);
}

.checkbox{display:flex; gap:10px; align-items:flex-start}
.checkbox input{width:18px; height:18px; margin-top:3px}

.hidden{display:none}

.autocomplete{position:relative}
.suggestions{
  position:absolute;
  left:0;
  right:0;
  top:calc(100% + 8px);
  z-index:30;
  border:1px solid rgba(15,23,42,.16);
  border-radius:16px;
  background:#fff;
  box-shadow:0 18px 40px rgba(15,23,42,.12);
  overflow:hidden;
}

.suggestion{
  display:block;
  width:100%;
  text-align:left;
  padding:12px 12px;
  background:#fff;
  border:0;
  border-bottom:1px solid rgba(15,23,42,.10);
  color:var(--text);
  font:inherit;
  cursor:pointer;
}
.suggestion:last-child{border-bottom:0}
.suggestion:hover{background:rgba(46,125,50,.06)}
.suggestion:focus{outline:none}
.suggestion:focus-visible{box-shadow:inset 0 0 0 3px rgba(46,125,50,.22)}

.suggestion-strong{font-weight:750}
.suggestion-muted{color:var(--muted); font-size:13px; margin-left:6px}

#addressWrap{position:relative}

#addressSuggestions{
  position:absolute;
  top:100%;
  left:0;
  right:0;
  z-index:9999;
  background:#fff;
  border:1px solid rgba(0,0,0,.15);
  border-radius:10px;
  max-height:220px;
  overflow:auto;
  margin:8px 0 0;
  padding:6px;
  list-style:none;
}

#addressSuggestions li{margin:0; padding:0}

#addressSuggestions button{
  display:block;
  width:100%;
  text-align:left;
  padding:10px 10px;
  border:0;
  border-radius:8px;
  background:transparent;
  cursor:pointer;
  font:inherit;
  color:var(--text);
}

#addressSuggestions button:hover{background:rgba(46,125,50,.06)}

#addressSuggestions button:focus{outline:none}

#addressSuggestions button:focus-visible{box-shadow:inset 0 0 0 3px rgba(46,125,50,.22)}

.under-btn{margin:10px 0 0; color:var(--muted); font-size:13px}

.form-status{
  margin-top:14px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(15,23,42,.03);
  color:var(--muted);
  font-size:14px;
}
.form-status.ok{border-color:rgba(46,125,50,.35); background:rgba(46,125,50,.08); color:#0b3d0d}
.form-status.err{border-color:rgba(185,28,28,.35); background:rgba(185,28,28,.08); color:#5b1212}

.side-card{padding:18px}
.mini-grid{display:grid; gap:12px; margin-top:14px}
.mini{display:flex; gap:12px; align-items:flex-start}
.mini-ico{width:14px; height:14px; border-radius:4px; background:rgba(46,125,50,.35); margin-top:6px}
.mini-title{margin:0; font-weight:700}
.mini-text{margin:2px 0 0; color:var(--muted); font-size:14px}

.steps{display:grid; gap:14px; margin-top:16px}
.step{padding:18px}
.step-k{margin:0 0 6px; color:var(--green); font-weight:800; font-size:13px; letter-spacing:.2px}
.step h3{margin:0 0 6px}

.sponsor-box{
  margin:16px 0 16px;
  padding:16px;
  border-radius:var(--radius);
  border:1px dashed rgba(46,125,50,.35);
  background:rgba(46,125,50,.06);
}
.sponsor-k{margin:0 0 6px; color:var(--green); font-weight:800; font-size:13px}
.sponsor-msg{margin:0; color:var(--text)}

.list{margin:12px 0 0; padding-left:18px; color:var(--muted)}

.grid-2{display:grid; gap:14px}

.footer{padding:26px 0 18px; background:#fff; border-top:1px solid var(--line)}
.footer-grid{display:grid; gap:16px}
.footer-links{display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-start}
.footer-links a{color:var(--muted); text-decoration:none; padding:10px 12px; border-radius:12px}
.footer-links a:hover{background:rgba(46,125,50,.08); color:var(--text)}
.footer-bottom{margin-top:10px; padding-top:14px; border-top:1px solid var(--line)}

@media (min-width: 860px){
  .nav{display:flex}
  .hero{padding:56px 0 34px}
  .hero-grid{grid-template-columns: 1.1fr .9fr; gap:34px}
  .two-col{grid-template-columns: 1.1fr .9fr; gap:26px; align-items:start}
  .steps{grid-template-columns: repeat(3, 1fr)}
  .grid-2{grid-template-columns: 1fr 1fr}
  .footer-grid{grid-template-columns: 1.2fr .8fr; align-items:start}
  .footer-links{justify-content:flex-end}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .btn{transition:none}
  .nav-link{transition:none}
}
