:root{
  --bg:#f7f6ea;
  --bg-soft:#eef3de;
  --card:#ffffffcc;
  --primary:#264626;
  --primary-2:#4f7d41;
  --accent:#b7cf84;
  --accent-2:#f1cf58;
  --text:#1f321f;
  --muted:#607160;
  --line:#dde6c7;
  --shadow:0 18px 45px rgba(39, 61, 36, 0.10);
  --radius:28px;
  --container:100%;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: "Segoe UI", Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, #fbfbe8 0%, #f4f5e8 35%, #f7f6ea 100%);
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:100%;max-width:none;margin:0 auto;padding-left:40px;padding-right:40px}
.section{padding:80px 0}
.eyebrow{
  display:inline-block;
  padding:10px 14px;
  border-radius:999px;
  background:#edf4d9;
  color:#4d7047;
  font-weight:700;
  font-size:13px;
  letter-spacing:.03em;
  margin-bottom:18px;
}
h1,h2,h3,h4,p{margin:0}
h1{
  font-size:clamp(42px,6vw,74px);
  line-height:1.05;
  letter-spacing:-0.03em;
  margin-bottom:18px;
}
h2{
  font-size:clamp(32px,4vw,52px);
  line-height:1.1;
  margin-bottom:14px;
}
p{
  color:var(--muted);
  line-height:1.75;
  font-size:16px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:15px 24px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--primary-2), var(--primary));
  color:#fff;
  font-weight:700;
  box-shadow:0 10px 22px rgba(67,107,58,.25);
  transition:.3s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 16px 28px rgba(67,107,58,.30)}
.btn-light{
  background:#fff;
  color:var(--primary);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn-small{padding:11px 18px;font-size:14px}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(12px);
  background:rgba(247, 246, 234, 0.82);
  border-bottom:1px solid rgba(210,220,190,.7);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:82px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-mark{
  width:48px;
  height:48px;
  border-radius:15px;
  background:linear-gradient(135deg, #87a859, #365e33);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:800;
  letter-spacing:.04em;
  box-shadow:var(--shadow);
}
.brand-text{display:grid}
.brand-text strong{font-size:20px}
.brand-text small{color:var(--muted);font-size:12px;margin-top:3px}
.main-nav{
  display:flex;
  gap:26px;
  align-items:center;
}
.main-nav a{
  color:#375137;
  font-size:15px;
  font-weight:600;
  position:relative;
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:var(--primary-2);
  transition:.3s ease;
}
.main-nav a:hover::after{width:100%}
.menu-toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  color:var(--primary);
  width:44px;
  height:44px;
  border-radius:12px;
  font-size:20px;
}

.hero{padding-top:52px}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:40px;
}
.hero-content p{max-width:620px}
.hero-actions{
  display:flex;
  gap:14px;
  margin:28px 0 28px;
  flex-wrap:wrap;
}
.hero-features{
  display:grid;
  grid-template-columns:repeat(3, minmax(120px, 1fr));
  gap:16px;
  max-width:620px;
}
.mini-card{
  background:rgba(255,255,255,.8);
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px 16px;
  box-shadow:var(--shadow);
}
.mini-card strong{
  display:block;
  font-size:23px;
  color:var(--primary);
  margin-bottom:6px;
}
.mini-card span{
  font-size:13px;
  color:var(--muted);
  font-weight:600;
}

.hero-visual{
  position:relative;
  min-height:500px;
  display:grid;
  place-items:center;
}
.hero-plate{
  position:relative;
  width:min(520px, 100%);
  border-radius:38px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(232,241,214,.68));
  border:1px solid rgba(214,225,196,0.8);
  padding:28px;
  box-shadow:0 28px 55px rgba(65, 88, 40, 0.14);
}
.floating-badge{
  position:absolute;
  padding:12px 18px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  color:var(--primary);
  font-weight:700;
}
.badge-left{left:-10px;bottom:72px}
.badge-right{right:-8px;top:62px}

.trust-strip{padding-top:20px}
.trust-items{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}
.trust-items > div{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  text-align:center;
  font-weight:700;
  color:#466045;
  box-shadow:var(--shadow);
}

.section-head{
  text-align:center;
  max-width:720px;
  margin:0 auto 40px;
}
.product-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:24px;
}
.product-card{
  display:grid;
  grid-template-columns:200px 1fr;
  gap:18px;
  align-items:center;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(218,228,199,.85);
  border-radius:32px;
  padding:20px;
  box-shadow:var(--shadow);
  transition:.3s ease;
}
.product-card:hover{transform:translateY(-6px)}
.product-art{
  background:linear-gradient(180deg, #eff5df, #f8faef);
  border-radius:26px;
  min-height:210px;
  display:grid;
  place-items:center;
  overflow:hidden;
}
.product-copy h3{font-size:32px;margin:10px 0 8px}
.tag{
  display:inline-flex;
  padding:8px 12px;
  background:#e8f0d3;
  color:#466a3d;
  font-size:12px;
  border-radius:999px;
  font-weight:800;
}
.text-link{
  display:inline-flex;
  margin-top:16px;
  color:var(--primary);
  font-weight:800;
}

.why-us{
  background:linear-gradient(180deg, rgba(236,243,222,.58), rgba(247,246,234,0));
}
.why-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
  align-items:start;
}
.feature-list{
  margin:22px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
}
.feature-list li{
  padding:16px 18px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  color:#446344;
  font-weight:700;
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.stat-card{
  min-height:180px;
  background:linear-gradient(180deg, #fefefe, #f2f6e6);
  border:1px solid var(--line);
  border-radius:28px;
  display:grid;
  place-items:center;
  text-align:center;
  box-shadow:var(--shadow);
  padding:20px;
}
.stat-card strong{
  display:block;
  font-size:38px;
  color:var(--primary);
  margin-bottom:8px;
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.category-card{
  text-align:left;
  background:rgba(255,255,255,.78);
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
  transition:.3s ease;
}
.category-card:hover{transform:translateY(-4px)}
.category-icon{
  width:68px;
  height:68px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:#eef5dc;
  font-size:28px;
  margin-bottom:18px;
}
.category-card h3{font-size:26px;margin-bottom:10px}

.cta-box{
  border-radius:36px;
  padding:34px;
  background:linear-gradient(135deg, #335a31, #567d45);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  box-shadow:0 24px 48px rgba(50, 89, 42, 0.24);
}
.cta-box p{color:rgba(255,255,255,.82);max-width:760px}
.cta-box .eyebrow{
  background:rgba(255,255,255,.15);
  color:#fff;
}
.cta-box .btn{
  background:#fff;
  color:var(--primary);
  box-shadow:none;
}

.site-footer{
  padding:24px 0 0;
  background:#eef3de;
  border-top:1px solid #dde5c9;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:24px;
  padding:26px 0 26px;
}
.footer-brand{margin-bottom:18px}
.footer-copy{max-width:420px}
.footer-links{
  list-style:none;
  padding:0;
  margin:14px 0 0;
  display:grid;
  gap:12px;
}
.footer-links a:hover{color:var(--primary-2)}
.footer-bottom{
  border-top:1px solid #d9e3c2;
  padding:16px 0 24px;
}
.footer-bottom p{font-size:14px}

.bg-orb{
  position:fixed;
  border-radius:50%;
  filter:blur(90px);
  opacity:.25;
  pointer-events:none;
  z-index:-1;
}
.orb-1{width:260px;height:260px;background:#d7e7a7;top:70px;left:-80px}
.orb-2{width:280px;height:280px;background:#f4df8b;top:360px;right:-80px}
.orb-3{width:220px;height:220px;background:#b8d693;bottom:90px;left:30%}

.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .8s ease, transform .8s ease;
}
.reveal.visible{
  opacity:1;
  transform:none;
}

@media (max-width: 1024px){
  .hero-grid,
  .why-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }
  .product-grid{
    grid-template-columns:1fr;
  }
  .category-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .trust-items{
    grid-template-columns:repeat(3,1fr);
  }
}
@media (max-width: 820px){
  .main-nav,
  .nav-wrap .btn-small{display:none}
  .menu-toggle{display:inline-grid;place-items:center}
  .nav-wrap{
    flex-wrap:wrap;
    padding:12px 0;
  }
  .main-nav.open{
    display:flex;
    width:100%;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    padding:16px 0 8px;
  }
  .hero-features{grid-template-columns:1fr}
  .hero-visual{min-height:auto}
  .hero-plate{width:100%}
  .product-card{
    grid-template-columns:1fr;
  }
}
@media (max-width: 640px){
  .section{padding:62px 0}
  .hero{padding-top:30px}
  .category-grid{
    grid-template-columns:1fr;
  }
  .trust-items{
    grid-template-columns:1fr 1fr;
  }
  .cta-box{
    flex-direction:column;
    align-items:flex-start;
  }
  .floating-badge{
    display:none;
  }
}
