:root{
  --green:#38643B;
  --dark:#21211D;
  --bg:#F6F7F6;
  --muted:#6C716B;
  --border:#D9DCD8;
  --card:#FFFFFF;
  --shadow: 0 10px 25px rgba(0,0,0,.06);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--dark);
  background:var(--bg);
  line-height:1.5;
}
img{max-width:100%; height:auto; display:block}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.section{padding:56px 0}
.section.tight{padding:36px 0}
.section.alt{background:#fff}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border:1px solid var(--border);
  border-radius:999px; background:rgba(255,255,255,.7);
  font-size:14px; color:var(--muted)
}
.badge .dot{width:8px; height:8px; border-radius:50%; background:var(--green)}

header{
  position:sticky; top:0; z-index:50;
  background:rgba(246,247,246,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:10px}
.brand img{height:34px; width:auto}
.brand span{font-weight:800; letter-spacing:.2px}

.menu{display:flex; align-items:center; gap:18px}
.menu a{
  font-size:14px; color:var(--muted);
  padding:8px 10px; border-radius:999px;
}
.menu a.active{color:var(--dark); background:rgba(56,100,59,.10); border:1px solid rgba(56,100,59,.20)}
.menu a:hover{background:rgba(0,0,0,.04)}

.cta{display:flex; align-items:center; gap:10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px; border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:700; font-size:14px;
}
.btn.primary{background:var(--green); border-color:var(--green); color:#fff}
.btn.small{padding:9px 12px; font-size:13px}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}

.burger{display:none; border:1px solid var(--border); background:#fff; border-radius:12px; padding:10px}
.burger span{display:block; width:20px; height:2px; background:var(--dark); margin:4px 0; border-radius:2px}

.hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:24px;
  align-items:center;
}
.hero h1{font-size:42px; line-height:1.12; margin:14px 0}
.hero p{color:var(--muted); font-size:16px; margin:0 0 18px}
.hero .actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.hero-card{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid var(--border);
  background:#fff;
  min-height:320px;
}
.hero-card img{width:100%; height:100%; object-fit:cover}
.hero-fallback{
  width:100%; height:100%;
  min-height:320px;
  display:flex; align-items:center; justify-content:center;
  color:var(--muted);
  background:linear-gradient(135deg, rgba(56,100,59,.12), rgba(0,0,0,.02));
}

.kpis{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin-top:18px}
.kpi{background:#fff; border:1px solid var(--border); border-radius:16px; padding:14px}
.kpi .t{font-size:13px; color:var(--muted)}
.kpi .v{font-size:18px; font-weight:900; margin-top:6px}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.grid2{display:grid; grid-template-columns: repeat(2, 1fr); gap:16px}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:var(--muted); font-size:14px}

.icon{
  width:38px; height:38px; border-radius:14px;
  background: rgba(56,100,59,.12);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:10px;
}
.icon svg{width:20px; height:20px; fill:var(--green)}

.products{display:grid; grid-template-columns: repeat(2, 1fr); gap:16px}
.product{display:grid; grid-template-columns: 120px 1fr; gap:14px; align-items:start}
.product img{
  width:120px; height:120px; object-fit:cover;
  border-radius:16px; border:1px solid var(--border);
  background:#fff;
}
.product h3{margin:0 0 6px}
.product .meta{color:var(--muted); font-size:13px; margin-bottom:10px}

.bars{display:grid; gap:10px; margin:12px 0}
.bar{display:grid; grid-template-columns: 110px 1fr 34px; gap:10px; align-items:center}
.bar .label{font-size:13px; color:var(--muted)}
.track{height:10px; background:#ECEEEB; border-radius:999px; overflow:hidden; border:1px solid var(--border)}
.fill{height:100%; background:var(--green); width:60%}
.score{font-weight:800; font-size:13px; color:var(--muted); text-align:right}

.accordion{margin-top:10px}
.acc-item{
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
}
.acc-btn{
  width:100%;
  text-align:left;
  padding:12px 14px;
  background:#fff;
  border:0;
  display:flex; justify-content:space-between; align-items:center;
  font-weight:900;
  cursor:pointer;
}
.acc-btn span{color:var(--muted); font-weight:700; font-size:13px}
.acc-panel{max-height:0; overflow:hidden; transition:max-height .25s ease}
.acc-panel .inner{padding:0 14px 14px; color:var(--muted); font-size:14px}
.acc-item.open .acc-panel{max-height:460px}
.chev{transition: transform .2s ease}
.acc-item.open .chev{transform: rotate(180deg)}

.split{display:grid; grid-template-columns: 1fr 1fr; gap:16px; align-items:stretch}

.team{display:grid; grid-template-columns: 220px 1fr; gap:16px}
.team img{
  width:220px; height:220px; object-fit:cover;
  border-radius:22px;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  background:#fff;
}
.team p{margin:0; color:var(--muted)}
.team h2{margin:0 0 10px}

.photo-row{display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; margin-top:14px}
.photo-row img{border-radius:16px; border:1px solid var(--border); height:160px; object-fit:cover; background:#fff}

.form{display:grid; gap:12px}
input, textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  font: inherit;
}
textarea{min-height:140px; resize:vertical}
.checkbox{display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-size:13px}
.checkbox input{width:18px; height:18px; margin-top:3px}
.small{color:var(--muted); font-size:13px}

footer{border-top:1px solid var(--border); padding:28px 0; background:#fff}
.footergrid{display:grid; grid-template-columns: 1.2fr .8fr .8fr; gap:14px}
.footergrid a{color:var(--muted); font-size:14px}
.footergrid a:hover{color:var(--dark)}
.copy{margin-top:14px; color:var(--muted); font-size:13px}

@media (max-width: 980px){
  .hero{grid-template-columns:1fr}
  .kpis{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .products{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .footergrid{grid-template-columns:1fr}
  .team{grid-template-columns:1fr}
  .team img{width:100%; height:320px}
  .photo-row{grid-template-columns:1fr 1fr}
  .menu{display:none}
  .burger{display:block}
  .menu.mobile{
    display:grid;
    position:absolute;
    left:18px; right:18px;
    top:64px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:10px;
    gap:6px;
    box-shadow: var(--shadow);
  }
  .menu.mobile a{padding:10px 12px}
}
