:root{
  --bg:#ffffff;
  --surface:#f6f7f8;
  --text:#111827;
  --muted:#6b7280;
  --brand:#1e7f6e;
  --brand2:#16a34a;
  --border: rgba(17,24,39,.10);
  --shadow: 0 10px 30px rgba(17,24,39,.08);
  --radius: 20px;
  --max: 1120px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 600px at 50% -100px, rgba(30,127,110,.10), transparent 65%), var(--bg);
  line-height:1.65;
}
a{color:inherit;text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
header{
  position:sticky; top:0; z-index:10;
  background: rgba(255,255,255,.78);
  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}
.brand img{height:30px; width:auto}
.menu{
  display:flex; gap:6px; align-items:center;
  font-weight:700; color:#111;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.menu a{
  padding:10px 12px;
  border-radius:12px;
  color:#111;
  white-space:nowrap;
}
.menu a:hover{background:rgba(17,24,39,.06)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  background: #fff;
  box-shadow: 0 6px 16px rgba(17,24,39,.06);
  font-weight:800;
}
.btn.primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:white;
  border-color: transparent;
}
.btn:hover{filter:brightness(1.01)}
.hero{padding:70px 0 30px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:34px;
  align-items:center;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  background: rgba(30,127,110,.10);
  border:1px solid rgba(30,127,110,.18);
  border-radius: 999px;
  color: var(--brand);
  font-weight:900;
  font-size: 13px;
}
h1{
  margin:14px 0 10px;
  font-size: clamp(32px, 4vw, 54px);
  line-height:1.12;
  letter-spacing:-.02em;
}
p.lead{margin:0 0 22px; color:var(--muted); font-size: 17px}
.card{
  background: rgba(255,255,255,.86);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card.pad{padding:20px}
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.product{grid-column: span 6; display:flex; flex-direction:column}
.thumb{
  aspect-ratio: 16 / 10;
  background: var(--surface);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  padding: 10px;
}
.thumb img{
  width:100%; height:100%;
  object-fit:contain;
}
.product .body{padding:18px 18px 20px}
.product h3{margin:0 0 6px; font-size:20px}
.product p{margin:0 0 14px; color:var(--muted); font-size:14.5px}
.row{display:flex; flex-wrap:wrap; gap:10px}
.section{padding:34px 0}
.section h2{margin:0 0 14px; font-size:24px; letter-spacing:-.01em}
.note{color:var(--muted); font-size:13.5px}
.footer{padding:46px 0 70px; color:var(--muted)}
.footer .cols{display:grid; grid-template-columns: 1.2fr .8fr; gap:18px}
.pills{display:flex; flex-wrap:wrap; gap:10px}
.pill{
  padding:9px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.7);
  font-weight:800;
  font-size:13px;
}
.gallery{display:grid; grid-template-columns: 1fr; gap:14px}
.gallery img{
  width:100%;
  height:auto;
  border-radius: 18px;
  border:1px solid var(--border);
  box-shadow: 0 10px 30px rgba(17,24,39,.06);
}
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:14px;
}
.two-col .card{overflow:hidden}
.two-col img{width:100%; height:260px; object-fit:cover}
.small{font-size:13px; color:var(--muted)}
hr.soft{border:0; border-top:1px solid var(--border); margin:18px 0}
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .product{grid-column: span 12}
  .footer .cols{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .two-col img{height:auto}
}