:root{
  --bg:#ffffff;
  --surface:#f6f7f8;
  --text:#1f2328;
  --muted:#616a73;
  --line:#e4e7eb;
  --accent:#111111;
  --shadow:0 10px 30px rgba(0,0,0,.06);
  --radius:18px;
  --max:1120px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
.container{max-width:var(--max);margin:0 auto;padding:0 20px}
.header{
  position:sticky;top:0;z-index:20;
  background:rgba(255,255,255,.85);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex;align-items:center;gap:12px;min-width:220px;
}
.brand img{height:150px;width:auto;display:block}
.navlinks{display:flex;gap:18px;align-items:center}
.navlinks a{
  font-weight:600;
  font-size:14px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
}
.navlinks a.active,.navlinks a:hover{color:var(--text);background:var(--surface)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:14px;
  font-weight:700;font-size:14px;
  border:1px solid var(--line);
  background:#fff;
}
.btn.primary{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}
.btn.small{padding:10px 12px;border-radius:12px;font-weight:700}
.hero{
  padding:46px 0 10px;
}
.heroGrid{
  display:grid;grid-template-columns: 1.05fr .95fr;
  gap:26px;align-items:stretch;
}
.heroCard{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow);
  background:linear-gradient(180deg,#ffffff, #fbfbfc);
}
.kicker{font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--muted);font-weight:800}
.h1{font-size:44px;line-height:1.08;margin:10px 0 10px}
.lead{color:var(--muted);font-size:16px;margin:0 0 18px}
.heroActions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.heroArt{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--surface);
  box-shadow:var(--shadow);
}
.heroArt img{width:100%;height:100%;object-fit:cover;display:block}
.section{padding:26px 0}
.sectionTitle{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;margin-bottom:14px}
.sectionTitle h2{margin:0;font-size:22px}
.sectionTitle p{margin:0;color:var(--muted);font-size:14px}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  background:#fff;
  box-shadow:0 10px 22px rgba(0,0,0,.04);
}
.card h3{margin:0 0 8px;font-size:16px}
.card p{margin:0;color:var(--muted);font-size:14px}
.pills{display:flex;gap:8px;flex-wrap:wrap;margin-top:14px}
.pill{font-size:12px;border:1px solid var(--line);color:var(--muted);padding:7px 10px;border-radius:999px;background:#fff}
.category{
  display:flex;gap:14px;align-items:center;
}
.category .iconBox{
  width:44px;height:44px;border-radius:14px;
  border:1px solid var(--line);
  background:var(--surface);
  display:flex;align-items:center;justify-content:center;
  font-weight:900;color:var(--muted);
}
.productsGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.productCard{overflow:hidden;padding:0}
.productCard .imgWrap{background:var(--surface);border-bottom:1px solid var(--line)}
.productCard img{width:100%;height:210px;object-fit:cover;display:block}
.productCard .body{padding:16px}
.metaRow{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0 0}
.tag{font-size:12px;padding:6px 10px;border-radius:999px;border:1px solid var(--line);color:var(--muted);background:#fff}
.hr{height:1px;background:var(--line);margin:14px 0}
.ctaBand{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:linear-gradient(180deg,#ffffff,#f7f7f8);
  padding:18px;
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  box-shadow:var(--shadow);
}
.footer{
  margin-top:34px;
  border-top:1px solid var(--line);
  padding:22px 0 30px;
  color:var(--muted);
  font-size:13px;
}
.footerGrid{display:grid;grid-template-columns:1.2fr .8fr;gap:16px}
.footer b{color:var(--text)}
.small{font-size:13px;color:var(--muted)}
.form{
  display:grid;grid-template-columns:1fr 1fr;gap:12px;
}
.form .full{grid-column:1 / -1}
input,select,textarea{
  width:100%;
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius:14px;
  font:inherit;
  background:#fff;
}
textarea{min-height:120px;resize:vertical}
.note{font-size:12px;color:var(--muted);margin-top:8px}
@media (max-width: 940px){
  .heroGrid{grid-template-columns:1fr}
  .grid3,.productsGrid{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .h1{font-size:36px}
  .navlinks{display:none}
  .brand img{height:75px}
}

.heroStack{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.heroImage{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--surface);
  box-shadow:var(--shadow);
}
.heroImage img{width:100%;height:auto;display:block}
.heroText{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow);
  background:linear-gradient(180deg,#ffffff, #fbfbfc);
}
