:root{
  --bg:#eef3f1;
  --card:#ffffff;
  --text:#10201a;
  --muted:#4f5f58;

  --green:#15803d;
  --greenDark:#0f6a30;
  --greenSoft:#e8f7ee;

  --blue:#2563eb;

  --border:#d5ddd9;
  --shadow:0 12px 32px rgba(0,0,0,.08);
  --radius:16px;
}

*{ box-sizing:border-box; }

html,body{
  margin:0;
  padding:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--text);
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(34,197,94,.14), transparent 60%),
    radial-gradient(800px 360px at 90% 10%, rgba(37,99,235,.08), transparent 60%),
    var(--bg);
}

a{ color:var(--blue); text-decoration:none; }
a:hover{ text-decoration:underline; }

.wrap{ max-width:1100px; margin:0 auto; padding:18px; }

/* Header */
.siteHeader{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.headerInner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.brand{ display:flex; gap:12px; align-items:center; }

.logo{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:900;
  background:linear-gradient(135deg, rgba(34,197,94,.18), rgba(21,128,61,.10));
  color:var(--green);
  border:1px solid var(--border);
}

.title{ font-weight:900; letter-spacing:.2px; }
.subtitle{ color:var(--muted); font-size:13px; }

.nav{ display:flex; gap:14px; align-items:center; flex-wrap:wrap; }
.nav a{ color:var(--muted); font-weight:650; }
.nav a:hover{ color:var(--text); text-decoration:none; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 16px;
  border-radius:14px;
  font-weight:850;
  border:1px solid transparent;
  cursor:pointer;
}

.btnPrimary{
  background:linear-gradient(135deg, var(--green), var(--greenDark));
  color:white;
  box-shadow: 0 10px 22px rgba(21,128,61,.25);
}

.btnPrimary:hover{ filter:brightness(1.04); text-decoration:none; }

.btnGhost{
  background:white;
  color:var(--green);
  border-color:var(--border);
}

.btnGhost:hover{
  border-color:#b9c3be;
  text-decoration:none;
}

.btnCta{
  background:var(--green);
  color:white;
  box-shadow: 0 8px 18px rgba(21,128,61,.35);
}
.btnCta:hover{ background:var(--greenDark); text-decoration:none; }

/* Hero */
.hero{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  padding:34px 0 10px 0;
}

@media(max-width:900px){
  .hero{ grid-template-columns:1fr; }
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--green);
  font-weight:900;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.3px;
  margin-bottom:10px;
}

.kickerDot{
  width:8px;
  height:8px;
  border-radius:99px;
  background:#22c55e;
  box-shadow:0 0 0 6px rgba(34,197,94,.14);
}

h1{
  margin:0 0 12px 0;
  font-size:42px;
  line-height:1.08;
  letter-spacing:-.5px;
}

.lead{
  color:var(--muted);
  font-size:17px;
  line-height:1.68;
}

.ctaRow{ display:flex; gap:10px; flex-wrap:wrap; margin:14px 0; }

/* Cards */
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}

.heroRight{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.mediaCard{ padding:0; overflow:hidden; }
.mediaImg{ width:100%; height:240px; object-fit:cover; display:block; }
.mediaBody{ padding:16px; }
.mediaBody h2{ margin:0 0 8px 0; }
.mediaBody p{ margin:0 0 12px 0; color:var(--muted); line-height:1.55; }

.miniPoints{
  display:grid;
  gap:8px;
}
.miniPoint{
  background:var(--greenSoft);
  border:1px solid rgba(21,128,61,.18);
  border-radius:12px;
  padding:10px 12px;
  color:#254437;
  font-weight:700;
  font-size:13px;
}

.ecoCard{
  background:linear-gradient(135deg, rgba(34,197,94,.10), rgba(21,128,61,.06));
  border:1px solid rgba(21,128,61,.20);
}

.ecoTop{
  display:flex;
  gap:12px;
  align-items:center;
}

.ecoIcon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(34,197,94,.14);
  border:1px solid rgba(21,128,61,.22);
  font-size:18px;
}

.ecoTitle{ font-weight:900; }
.ecoSub{ color:var(--muted); font-size:13px; margin-top:2px; }

/* Badges */
.badgeGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:12px;
}

@media(max-width:520px){
  .badgeGrid{ grid-template-columns:1fr; }
}

.badge{
  background:white;
  border:1px solid var(--border);
  border-radius:999px;
  padding:10px 12px;
  font-weight:750;
  color:#2d3b35;
  box-shadow: 0 6px 16px rgba(0,0,0,.04);
}

/* Sections */
.section{ padding:28px 0; }
.section h2{ margin:0 0 12px 0; font-size:26px; letter-spacing:-.2px; }
.section p{ color:var(--muted); line-height:1.6; }

.grid2{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.grid3{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:16px; }

@media(max-width:900px){
  .grid2,.grid3{ grid-template-columns:1fr; }
}

.small{ color:var(--muted); font-size:13px; }

hr.sep{
  border:none;
  border-top:1px solid var(--border);
  margin:16px 0;
}

/* Forms */
label{
  display:block;
  margin:10px 0;
  color:var(--muted);
  font-size:13px;
  font-weight:750;
}

input,textarea,select{
  width:100%;
  margin-top:6px;
  padding:11px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:white;
  color:var(--text);
}

textarea{ min-height:120px; resize:vertical; }

.notice{
  margin-top:12px;
  background:#f7fbf9;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px;
  color:#2c3f36;
}

/* Footer */
.footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:28px 0 44px 0;
  border-top:1px solid var(--border);
  margin-top:18px;
  color:var(--muted);
}
