
:root{
  --bg: #f7f8f6;
  --bg2:#f1f5f2;
  --section-soft:#f4f8f5;
  --section-accent:#eff6f2;
  --text: #0d1713;
  --muted:#516259;
  --green:#0ea76a;
  --green2:#2fe08a;
  --mint:#b6ff6a;
  --line: rgba(14,167,106,0.18);
  --soft-line: rgba(13,23,19,0.08);
  --surface: rgba(255,255,255,0.94);
  --shadow: 0 14px 40px rgba(12,20,16,0.08);
  --radius: 18px;
  --max: 1120px;
}
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  line-height:1.6;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; text-underline-offset:4px; }
.container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

.site-header{
  position:sticky; top:0; z-index:40;
  backdrop-filter: blur(12px);
  background: rgba(247,248,246,0.84);
  border-bottom:1px solid var(--soft-line);
}
.nav{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:14px; flex-wrap:wrap; }
.brand{ display:flex; align-items:center; gap:10px; min-width:220px; }
.brand-mark{ width:28px; height:28px; }
.brand-name{ font-weight:700; letter-spacing:0.2px; }

.lang-switch{ display:flex; gap:8px; align-items:center; }
.lang-btn{
  border:1px solid rgba(13,23,19,0.12);
  background:rgba(255,255,255,0.88);
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
}
.lang-btn.active{
  border-color: rgba(14,167,106,0.35);
  box-shadow: 0 10px 20px rgba(14,167,106,0.08);
}

.nav-links{ display:flex; align-items:center; gap:18px; }
.nav-links a{ font-size:14px; color:rgba(13,23,19,0.78); }
.nav-links a:hover{ color:var(--text); text-decoration:none; }

.nav-toggle{
  display:none;
  background:transparent;
  border:1px solid var(--soft-line);
  border-radius:12px;
  width:44px; height:44px;
}
.burger{
  display:block; width:18px; height:2px; margin:0 auto; background:var(--text); position:relative;
}
.burger::before,.burger::after{
  content:""; position:absolute; left:0; width:18px; height:2px; background:var(--text);
}
.burger::before{ top:-6px; }
.burger::after{ top:6px; }

h1{
  margin:0 0 12px;
  font-size:clamp(36px, 4vw, 56px);
  line-height:1.04;
  letter-spacing:-0.9px;
  background: linear-gradient(90deg, rgba(14,167,106,0.98), rgba(47,224,138,0.95));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
h2,h3{ color:rgba(14,167,106,0.96); }
.section-head h2{ margin:0 0 8px; font-size:30px; letter-spacing:-0.3px; }
.muted{ color:var(--muted); }
.small{ font-size:13px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  border-radius:999px; padding:12px 16px;
  border:1px solid rgba(14,167,106,0.38);
  background: linear-gradient(180deg, rgba(14,167,106,0.95), rgba(47,224,138,0.84));
  color:#08130f; font-weight:800; cursor:pointer;
  box-shadow: 0 10px 20px rgba(14,167,106,0.14);
}
.btn:hover{ text-decoration:none; filter:brightness(1.02); }
.btn-small{ padding:9px 12px; font-size:14px; }
.btn-ghost{
  background:rgba(255,255,255,0.78);
  border:1px solid rgba(14,167,106,0.24);
  color:var(--text);
  box-shadow:none;
}
.btn-ghost:hover{ border-color:rgba(14,167,106,0.4); text-decoration:none; }

.hero{
  position:relative;
  padding:84px 0 46px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
  border-bottom:1px solid var(--soft-line);
}
.hero-bg{
  position:absolute; inset:-40px -40px auto -40px;
  opacity:0.18; pointer-events:none;
}
.hero-bg img{ width:920px; filter:drop-shadow(0 30px 80px rgba(12,20,16,0.10)); }
.hero-grid{ display:grid; grid-template-columns:1.2fr 0.8fr; gap:28px; align-items:start; }
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  color:rgba(14,167,106,0.92);
  font-weight:800; letter-spacing:0.5px;
  text-transform:uppercase; font-size:12px; margin:0 0 10px;
}
.lead{ margin:0 0 18px; max-width:62ch; font-size:16px; color:rgba(13,23,19,0.78); }
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 18px; }
.hero-badges{ display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }
.badge{
  border:1px solid rgba(14,167,106,0.16);
  background:rgba(255,255,255,0.74);
  padding:10px 12px; border-radius:14px;
  min-width:0;
}
.badge-title{ display:block; font-size:12px; color:rgba(13,23,19,0.58); }
.badge-value{ display:block; font-weight:780; color:rgba(13,23,19,0.9); }

.card{
  border:1px solid var(--soft-line);
  background:var(--surface);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.card-accent{
  border-color:rgba(14,167,106,0.28);
  box-shadow:0 18px 45px rgba(14,167,106,0.08);
}
.hero-card .card{ position:sticky; top:88px; }
.card-title{ margin:0 0 10px; font-size:18px; color:rgba(14,167,106,0.96); }
.card-link{ display:inline-block; margin-top:10px; color:rgba(14,167,106,0.95); font-weight:800; }
.card-link:hover{ text-decoration:none; }
.checklist{ list-style:none; padding:0; margin:0; }
.checklist li{
  position:relative; padding-left:26px; margin:10px 0; color:rgba(13,23,19,0.78);
}
.checklist li::before{
  content:""; position:absolute; left:0; top:8px; width:14px; height:14px; border-radius:6px;
  background:radial-gradient(circle at 30% 30%, var(--mint), var(--green));
  box-shadow:0 0 0 3px rgba(14,167,106,0.08);
}

.section{
  position:relative;
  padding:84px 0;
  background:#fff;
  border-bottom:1px solid var(--soft-line);
}
.section-alt{
  background:var(--section-accent);
}
.section-soft{
  background:var(--section-soft);
}
.section-grid{
  display:grid; grid-template-columns:1.15fr 0.85fr; gap:24px; align-items:start;
}
.mission-grid .quote{ margin-top:58px; }
.quote{
  border-left:3px solid rgba(14,167,106,0.55);
  padding-left:16px;
}
.quote p{ margin:0 0 8px; font-size:18px; letter-spacing:-0.2px; color:rgba(13,23,19,0.94); }
.quote-meta{ color:rgba(13,23,19,0.6); font-size:13px; }

.people{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.person{ display:flex; gap:14px; }
.person-photo{
  width:92px; height:92px; border-radius:22px; overflow:hidden; flex:0 0 auto;
  border:1px solid rgba(14,167,106,0.2);
  background:#fff;
}
.role{ margin:0 0 8px; color:rgba(14,167,106,0.9); font-size:13px; font-weight:800; }
.person-links{
  display:flex; gap:8px; align-items:center; margin-top:10px;
  color:rgba(13,23,19,0.62); font-size:13px; flex-wrap:wrap;
}
.person-links a{ overflow-wrap:anywhere; }
.dot-sep{ opacity:0.6; }

.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:16px; }
.bullets{ margin:0; padding-left:18px; color:rgba(13,23,19,0.78); }
.bullets li{ margin:8px 0; }

.process{ margin-top:16px; }
.steps{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:12px; }
.step{
  display:flex; gap:12px; padding:12px;
  border:1px solid rgba(14,167,106,0.16);
  border-radius:14px;
  background:rgba(14,167,106,0.045);
}
.step-num{
  width:32px; height:32px; border-radius:12px;
  display:grid; place-items:center; font-weight:900;
  color:#08130f;
  background:linear-gradient(180deg, var(--mint), var(--green2));
}

.criteria-grid{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:16px; }
.note{ margin-top:16px; display:flex; align-items:center; justify-content:space-between; gap:12px; }

.contact-grid{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:16px; }
.contact-list{ list-style:none; padding:0; margin:0; }
.contact-list li{ margin:12px 0; }
.label{ display:block; font-size:12px; color:rgba(13,23,19,0.62); margin-bottom:4px; }

.form label{ display:block; margin:12px 0; color:rgba(13,23,19,0.78); font-size:13px; }
.req{ color:rgba(14,167,106,0.96); font-weight:900; }
input, textarea{
  width:100%; margin-top:6px; padding:12px 12px;
  border-radius:14px; border:1px solid rgba(13,23,19,0.12);
  background:rgba(255,255,255,0.98);
  color:rgba(13,23,19,0.92); outline:none;
}
input:focus, textarea:focus{
  border-color:rgba(14,167,106,0.55);
  box-shadow:0 0 0 4px rgba(14,167,106,0.10);
}
.hint{ display:block; margin-top:6px; font-size:12px; color:rgba(13,23,19,0.52); }
.honeypot{ position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }
.inline-link{ font-weight:700; text-decoration:underline; text-underline-offset:3px; }

.footer{
  border-top:1px solid var(--soft-line);
  padding:18px 0 24px;
  background:#fff;
}
.footer-inner{ display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
.footer a{ color:rgba(13,23,19,0.72); }
.footer a:hover{ color:var(--text); text-decoration:none; }
.footer-links{ margin-top:6px; }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-card .card{ position:relative; top:auto; }
  .section-grid,.people,.two-col,.steps,.criteria-grid,.contact-grid{ grid-template-columns:1fr; }
  .note{ flex-direction:column; align-items:flex-start; }
  .mission-grid .quote{ margin-top:18px; }
}
@media (max-width: 760px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav-links{
    display:none; position:absolute; left:20px; right:20px; top:72px;
    flex-direction:column; gap:10px; padding:14px;
    border-radius:16px; border:1px solid rgba(13,23,19,0.12);
    background:rgba(247,248,246,0.98); backdrop-filter:blur(10px);
    min-width:0;
  }
  .nav-links.open{ display:flex; }
  .container{ width:min(var(--max), calc(100% - 28px)); }
  .hero{ padding:68px 0 34px; }
  .hero-cta{ flex-direction:column; }
  .hero-cta .btn{ width:100%; }
  .hero-badges{ display:grid; grid-template-columns:1fr; }
  .badge{ min-width:0; }
  .footer-inner{ flex-direction:column; }
}
