
:root{
  --green:#2E7D32;
  --green-light:#43A047;
  --green-soft:#8BC34A;
  --text:#111111;
  --muted:#5f6368;
  --bg:#ffffff;
  --bg-soft:#f5f8f5;
  --line:#dfe6df;
  --shadow:0 16px 40px rgba(17,17,17,.06);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}
a{color:inherit}
.container{max-width:1160px;margin:0 auto;padding:0 24px}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:#ffffff;
  border-bottom:1px solid rgba(0,0,0,.06);
  backdrop-filter:blur(10px);
}
.nav{
  min-height:104px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
  flex:0 0 auto;
}
.brand-logo{
  width:360px;
  max-width:min(42vw, 420px);
  height:auto;
  display:block;
  background:#fff;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:28px;
}
.main-nav a{
  text-decoration:none;
  font-weight:700;
  font-size:1rem;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:14px;
  background:var(--green);
  color:#fff;
  font-weight:800;
  text-decoration:none;
  border:none;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(46,125,50,.18);
}
.btn:hover{filter:brightness(.97)}
.btn-secondary{
  background:#fff;
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn-small{
  min-height:46px;
  padding:0 18px;
  border-radius:12px;
}

.hero{
  padding:84px 0 56px;
  background:linear-gradient(180deg, #f9fbf9 0%, #ffffff 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:42px;
  align-items:center;
}
.hero-copy h1{
  margin:0 0 18px;
  font-size:clamp(3rem, 6vw, 5rem);
  line-height:1.02;
  letter-spacing:-.03em;
}
.eyebrow{
  margin:0 0 14px;
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:800;
  font-size:.95rem;
}
.lead{
  font-size:1.28rem;
  max-width:760px;
  color:#202124;
  margin:0;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:28px 0;
}
.trust-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  color:var(--muted);
  font-weight:700;
}
.trust-list li::before{
  content:"✓ ";
  color:var(--green);
  font-weight:900;
}

.hero-panel,
.card,
.check-card,
.contact-form,
.stat-card,
.process-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
}
.hero-panel{
  padding:28px;
}
.hero-panel h2{
  margin:0 0 10px;
  font-size:2rem;
}
.hero-panel p{
  margin:0;
  color:var(--muted);
}
.pill-grid{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:22px 0 18px;
}
.pill-grid span{
  border:1px solid var(--line);
  background:var(--bg-soft);
  border-radius:999px;
  padding:10px 16px;
  font-weight:800;
}
.panel-note{
  color:var(--muted);
  font-weight:600;
}

.section{padding:78px 0}
.section-alt{background:var(--bg-soft)}
.section-head{
  margin-bottom:28px;
}
.section-head h2{
  margin:0 0 12px;
  font-size:clamp(2rem,4vw,3rem);
  line-height:1.08;
}
.section-intro{
  max-width:820px;
  margin:0;
  font-size:1.12rem;
  color:var(--muted);
}

.stat-section{
  padding-top:8px;
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.stat-card{
  padding:24px 18px;
  text-align:center;
}
.stat-card strong{
  display:block;
  font-size:2rem;
  line-height:1;
  margin-bottom:8px;
}
.stat-card span{
  color:var(--muted);
  font-weight:700;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.card{
  padding:26px;
}
.card h3{
  margin:0 0 10px;
  font-size:1.38rem;
}
.card p{
  margin:0;
  color:#303134;
}
.highlight-card{
  background:linear-gradient(180deg, #ffffff 0%, #f7fbf7 100%);
  border-color:#cfe0cf;
}
.text-link{
  display:inline-block;
  margin-top:14px;
  font-weight:800;
  color:var(--green);
  text-decoration:none;
}

.two-col{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
  align-items:start;
}
.two-col h2{
  margin:0 0 14px;
  font-size:clamp(2rem,4vw,3rem);
  line-height:1.08;
}
.two-col p{
  font-size:1.08rem;
}
.check-card{
  padding:28px;
}
.check-card h3{
  margin:0 0 14px;
  font-size:1.4rem;
}
.checks{
  margin:0;
  padding-left:18px;
}
.checks li{
  margin:12px 0;
  font-weight:700;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.process-card{
  padding:24px;
}
.step{
  display:inline-flex;
  width:42px;
  height:42px;
  border-radius:999px;
  align-items:center;
  justify-content:center;
  background:var(--green);
  color:#fff;
  font-weight:800;
  margin-bottom:14px;
}
.process-card h3{
  margin:0 0 10px;
  font-size:1.22rem;
}
.process-card p{
  margin:0;
  color:#303134;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.gallery-box{
  aspect-ratio:1/1;
  border-radius:22px;
  border:2px dashed #c7d6c7;
  background:#fbfdfb;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
  font-weight:800;
}

.contact-list p{
  margin:12px 0;
  font-size:1.08rem;
}
.contact-form{
  padding:28px;
}
.contact-form label{
  display:block;
  font-weight:800;
  margin-bottom:16px;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  margin-top:8px;
  border-radius:14px;
  border:1px solid #d5ddd5;
  padding:14px 16px;
  font:inherit;
}
.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--green);
  box-shadow:0 0 0 4px rgba(46,125,50,.12);
}

.site-footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  color:var(--muted);
}
.footer-flex{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

@media (max-width: 980px){
  .hero-grid,
  .two-col,
  .cards,
  .gallery-grid,
  .stats-grid,
  .process-grid{
    grid-template-columns:1fr;
  }
  .nav{
    flex-direction:column;
    align-items:flex-start;
    padding:16px 24px 20px;
  }
  .brand-logo{
    width:360px;
    max-width:92vw;
  }
  .main-nav{
    width:100%;
    flex-wrap:wrap;
    gap:16px;
  }
}


.trust-line{
  margin: 8px 0 18px;
  font-weight: 700;
  color: var(--text);
}
.proof-section{
  padding-top: 18px;
  padding-bottom: 10px;
}
.proof-text{
  margin: 0;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
}
.risk-section{
  padding-top: 12px;
  padding-bottom: 12px;
}
.risk-box{
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf7 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 32px 24px;
}
.risk-box h2{
  margin: 0 0 10px;
}
.risk-box p{
  margin: 0;
  font-size: 1.08rem;
  color: var(--muted);
}


.micro-urgency{
  margin: 4px 0 10px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--muted);
}
