/* Orgamix Agro — Static Site Styles (Safe Public Version) */
:root{
  --font-body: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-head: 'Lora', Georgia, 'Times New Roman', serif;
  --brand-green:#1f6b3b;
  --brand-green-dark:#14522c;
  --bg:#f8faf7;
  --card:#ffffff;
  --text:#1f2937;
  --muted:#6b7280;
  --border:#e5e7eb;
  --maxw:1100px;
  --radius:10px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: var(--font-body);
  line-height:1.65;
  color:var(--text);
  background:var(--bg);
}
a{color:inherit}
.container{width:min(var(--maxw), 92%); margin:0 auto}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background:#fff;
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:12px 0;
}
.brand{
  display:flex; align-items:center; gap:12px; text-decoration:none;
}
.brand img{height:46px; width:auto; display:block}
.brand .brand-text{display:flex; flex-direction:column; line-height:1.1}
.brand .brand-text strong{font-size:16px}
.brand .brand-text span{font-size:12px; color:var(--muted)}

/* Nav */
.nav-toggle{display:none}
.nav ul{display:flex; gap:10px; list-style:none; flex-wrap:wrap; justify-content:flex-end}
.nav a{
  text-decoration:none; padding:8px 10px; border-radius:8px; font-weight:650; font-size:14px;
  color:#111827;
}
.nav a:hover{background:rgba(31,107,59,.08); color:var(--brand-green)}
.nav a.active{background:rgba(31,107,59,.12); color:var(--brand-green)}

/* Hero */
.hero{
  padding:56px 0 26px;
  background:
    radial-gradient(1200px 400px at 10% 0%, rgba(31,107,59,.12), transparent 60%),
    radial-gradient(900px 400px at 90% 0%, rgba(31,107,59,.06), transparent 60%);
}
.hero-grid{
  display:grid; grid-template-columns:1.3fr .7fr; gap:26px; align-items:center;
}
.kicker{color:var(--brand-green); font-weight:700; letter-spacing:.2px}
.hero h1{font-size:40px; line-height:1.15; margin:10px 0 12px}
.hero p{color:var(--muted); font-size:16px; max-width:62ch}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:10px; border:1px solid var(--border);
  text-decoration:none; font-weight:700; font-size:14px; background:#fff;
}
.btn.primary{background:var(--brand-green); border-color:var(--brand-green); color:#fff}
.btn.primary:hover{background:var(--brand-green-dark); border-color:var(--brand-green-dark)}
.btn:hover{border-color:#cbd5e1}

.hero-card{
  background:var(--card); border:1px solid var(--border); border-radius:var(--radius);
  padding:18px;
  box-shadow:0 10px 18px rgba(0,0,0,.04);
}
.hero-card h3{font-size:16px; margin-bottom:10px}
.badges{display:grid; gap:10px}
.badge{
  display:flex; gap:10px; align-items:flex-start;
  padding:10px; border:1px solid var(--border); border-radius:12px; background:#fff;
}
.badge strong{display:block; font-size:13px}
.badge span{display:block; font-size:12px; color:var(--muted)}
.dot{width:12px; height:12px; border-radius:99px; margin-top:3px; background:var(--brand-green);}

/* Sections */
.section{padding:56px 0}
.section h2{font-size:26px; margin-bottom:14px}
.section p.lead{color:var(--muted); margin-bottom:18px; max-width:75ch}
.grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.10);
}
.card h3{font-size:16px; margin-bottom:8px}
.card p{color:var(--muted); font-size:14px}
.list{margin-top:10px; padding-left:18px; color:var(--muted); font-size:14px}
.list li{margin:6px 0}

/* Product blocks */
.product{display:grid; grid-template-columns:1fr; gap:10px}
.product .meta{display:flex; gap:10px; flex-wrap:wrap; color:var(--muted); font-size:13px}
.tag{display:inline-flex; padding:4px 10px; border-radius:999px; border:1px solid var(--border); background:#fff;}

/* Split */
.split{display:grid; grid-template-columns:1fr 1fr; gap:18px; align-items:start}
.notice{
  border-left:4px solid rgba(31,107,59,.6);
  background:rgba(31,107,59,.06);
  padding:12px 14px; border-radius:12px; color:#0f3d22;
}

/* Footer */
.site-footer{
  border-top:1px solid var(--border);
  background:#fff;
  padding:22px 0;
  margin-top:18px;
}
.footer-grid{
  display:grid; grid-template-columns:1.3fr .7fr; gap:18px; align-items:start;
}
.footer-grid p{color:var(--muted); font-size:13px}
.footer-links{display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end}
.footer-links a{font-size:13px; color:var(--muted); text-decoration:none}
.footer-links a:hover{color:var(--brand-green); text-decoration:underline}
.small{font-size:12px; color:var(--muted)}

/* Responsive */
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
}
@media (max-width: 720px){
  .nav-toggle{display:inline-flex}
  .nav ul{display:none; flex-direction:column; align-items:stretch; padding:10px 0}
  .nav.open ul{display:flex}
  .brand .brand-text span{display:none}
  .hero h1{font-size:32px}
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}


/* Typography */
h1, h2, h3{font-family: var(--font-head); letter-spacing:.2px}
