:root{
  --green:#1f7a2f;
  --green2:#2aa345;
  --text:#1a1a1a;
  --muted:#5c5c5c;
  --card:#f2f2f2;
  --line:#e6e6e6;
  --radius:22px;
  --shadow:0 10px 25px rgba(0,0,0,.12);
  --max:420px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:#fff;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:12px;
}

/* TOP */
.top{
  position:sticky;
  top:0;
  z-index:30;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.top .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 12px;
}
.logo{
  font-weight:800;
  font-size:18px;
  letter-spacing:.2px;
}
.menuBtn{
  width:38px;height:38px;border-radius:50%;
  border:0;background:var(--green);
  display:grid;place-items:center;
  box-shadow:0 8px 18px rgba(31,122,47,.22);
  cursor:pointer;
}
.burger{width:16px;height:12px;position:relative}
.burger span{
  position:absolute;left:0;right:0;height:2px;background:#fff;border-radius:2px
}
.burger span:nth-child(1){top:0}
.burger span:nth-child(2){top:5px}
.burger span:nth-child(3){top:10px}

/* HERO */
.hero{
  margin-top:12px;
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,0) 45%), #d6d4ce;
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}
.heroInner{padding:18px 16px 14px}
.heroTitle{
  margin:0;
  font-size:20px;
  line-height:1.15;
  font-weight:900;
  text-transform:uppercase;
}
.heroSub{
  margin:10px 0 12px;
  font-size:13px;
  line-height:1.35;
  color:#233323;
  font-weight:600;
}
.cta{
  display:inline-block;width:100%;
  border:0;cursor:pointer;
  padding:12px 14px;border-radius:999px;
  background:linear-gradient(180deg, var(--green2), var(--green));
  color:#fff;font-weight:800;font-size:14px;
  box-shadow:0 10px 20px rgba(31,122,47,.25);
}
.cta:active{transform:translateY(1px)}
.heroImgWrap{padding:12px 10px 14px;display:flex;justify-content:center}
.heroImg{
  width:100%;max-width:360px;height:150px;
  object-fit:cover;border-radius:18px;
  border:1px solid rgba(255,255,255,.55);
  box-shadow:0 10px 22px rgba(0,0,0,.10);
  background:#e9e9e9;
}
.hit{
  position:absolute;left:16px;bottom:98px;
  background:var(--green);color:#fff;
  font-weight:900;font-size:12px;
  padding:8px 12px;border-radius:999px;
  box-shadow:0 10px 18px rgba(31,122,47,.22);
}

/* offer mini */
.offersRow{display:flex;gap:10px;padding:0 12px 14px}
.offerCard{
  flex:1;background:#fff;border:1px solid var(--line);
  border-radius:16px;padding:8px;text-align:center;
  box-shadow:0 10px 18px rgba(0,0,0,.06);
  cursor:pointer;user-select:none;
}
.offerImg{
  width:100%;height:64px;border-radius:12px;
  object-fit:cover;background:#f0f0f0;border:1px solid #ededed;
}
.offerLabel{margin-top:6px;font-size:12px;color:#333;font-weight:700}

/* BLOCK 2: fit */
.fit{
  margin-top:12px;border-radius:22px;border:1px solid var(--line);
  background:#fff;box-shadow:0 10px 18px rgba(0,0,0,.06);
  overflow:hidden;
}
.fitHead{
  padding:14px 14px 10px;text-align:center;
  font-weight:900;font-size:16px;
}
.fitGrid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:10px;padding:0 12px 14px;
}
.fitItem{
  border:1px solid var(--line);border-radius:18px;
  padding:12px 10px;background:#fff;
  box-shadow:0 8px 14px rgba(0,0,0,.05);
}
.fitIcon{
  width:40px;height:40px;border-radius:12px;
  background:var(--green);display:grid;place-items:center;
  box-shadow:0 10px 18px rgba(31,122,47,.18);
  margin-bottom:10px;
}
.fitIcon svg{width:22px;height:22px;fill:#fff}
.fitTitle{margin:0 0 6px;font-size:13px;font-weight:900;line-height:1.2}
.fitText{margin:0;font-size:12px;line-height:1.35;color:var(--muted);font-weight:600}

/* BLOCK 3: clients slider */
.clients{
  margin-top:14px;border-radius:22px;border:1px solid var(--line);
  background:#fff;box-shadow:0 10px 18px rgba(0,0,0,.06);
  overflow:hidden;
}
.clientsHead{
  padding:14px 14px 6px;text-align:center;
  font-size:18px;font-weight:900;
}
.clientsWrap{position:relative;padding:10px 44px 16px}
.clientsTrack{
  display:flex;gap:12px;overflow-x:auto;
  scroll-behavior:smooth;scrollbar-width:none;
}
.clientsTrack::-webkit-scrollbar{display:none}
.clientLogo{
  flex:0 0 46%;min-width:46%;
  border:1px solid var(--line);border-radius:16px;
  background:#fafafa;display:flex;align-items:center;justify-content:center;
  padding:16px;box-shadow:0 8px 14px rgba(0,0,0,.05);
}
.clientLogo img{
  max-width:100%;max-height:44px;object-fit:contain;
  filter:grayscale(100%);opacity:.85;
}
.clientArrow{
  position:absolute;top:50%;transform:translateY(-50%);
  width:36px;height:36px;border-radius:50%;
  border:0;background:var(--green);color:#fff;
  display:grid;place-items:center;
  box-shadow:0 10px 18px rgba(31,122,47,.25);
  cursor:pointer;
}
.clientArrow.left{left:8px}
.clientArrow.right{right:8px}
.clientArrow svg{width:18px;height:18px;fill:#fff}

/* BLOCK 4: catalog */
.catalogTitle{
  margin:16px 0 8px;text-align:center;
  font-size:18px;font-weight:900;
}
.catalog{display:grid;gap:12px}

.prodCard{
  border:2px solid rgba(31,122,47,.35);
  border-radius:26px;background:#fff;
  box-shadow:0 12px 22px rgba(0,0,0,.07);
  overflow:hidden;
}
.prodCard .inner{padding:14px 14px 10px;text-align:center}
.prodCard .t{
  margin:0;font-size:18px;font-weight:900;
  letter-spacing:.2px;text-transform:uppercase;
}
.prodCard .sub{
  margin:8px auto 10px;max-width:320px;
  font-size:12px;line-height:1.35;color:var(--muted);font-weight:600;
}
.prodCard .materials{
  margin:0 auto 10px;max-width:320px;
  font-size:12px;line-height:1.35;color:#2b2b2b;font-weight:700;
}
.prodCard .price{margin:10px 0 10px;font-size:22px;font-weight:950;color:var(--green)}
.prodCard .btnWide{
  width:100%;border:0;cursor:pointer;
  padding:13px 14px;border-radius:999px;
  background:linear-gradient(180deg, var(--green2), var(--green));
  color:#fff;font-weight:900;font-size:14px;
  box-shadow:0 12px 20px rgba(31,122,47,.22);
}
.prodCard .btnWide:active{transform:translateY(1px)}
.prodCard .imgRow{
  padding:10px 12px 14px;
  display:flex;gap:10px;justify-content:center;align-items:flex-end;flex-wrap:wrap;
}
.prodCard .imgBox{
  width:44%;min-width:140px;height:120px;
  border-radius:18px;background:#f2f2f2;border:1px solid #ededed;
  overflow:hidden;box-shadow:0 10px 16px rgba(0,0,0,.06);
}
.prodCard .imgBox.small{
  width:30%;min-width:96px;height:92px;border-radius:16px;
}
.prodCard .imgBox img{width:100%;height:100%;object-fit:cover;display:block}

/* FORM */
.formCard{
  margin-top:14px;border-radius:22px;border:1px solid var(--line);
  background:#fff;box-shadow:0 12px 22px rgba(0,0,0,.07);
  overflow:hidden;position:relative;
}
.formTop{
  padding:12px 14px 0;
  display:flex;align-items:flex-start;justify-content:space-between;gap:10px;
}
.formPreview{display:flex;align-items:center;gap:10px}
.formPreview .miniImg{
  width:64px;height:44px;border-radius:12px;
  background:#f2f2f2;border:1px solid #ededed;overflow:hidden;
  box-shadow:0 8px 14px rgba(0,0,0,.06);
}
.formPreview .miniImg img{width:100%;height:100%;object-fit:cover;display:block}
.formClose{
  width:32px;height:32px;border-radius:10px;border:0;
  background:transparent;cursor:pointer;font-size:22px;line-height:1;
  color:#111;opacity:.65;
}
.formClose:active{transform:translateY(1px)}
.formClose:hover{opacity:.9}
.formBody{padding:6px 14px 16px}
.formTitle{margin:6px 0 6px;text-align:center;font-weight:900;font-size:16px}
.formSub{
  margin:0 auto 12px;text-align:center;
  color:var(--muted);font-size:12px;line-height:1.35;
  max-width:320px;font-weight:600;
}
.fField{display:grid;gap:6px;margin-bottom:10px}
.fField input,.fField select{
  width:100%;padding:12px 12px;border-radius:12px;
  border:1px solid #e7e7e7;background:#fff;color:#111;
  outline:none;font-size:13px;
}
.fField input::placeholder{color:#b3b3b3}
.fField input:focus,.fField select:focus{
  border-color:rgba(31,122,47,.45);
  box-shadow:0 0 0 3px rgba(31,122,47,.10);
}
.formLabelSmall{font-size:12px;font-weight:800;color:#3b3b3b;margin-top:2px}
.fError{
  display:none;color:#ef4444;font-size:12px;font-weight:700;
  margin-top:-4px;margin-bottom:8px;
}
.formBtn{
  width:100%;border:0;cursor:pointer;
  padding:13px 14px;border-radius:999px;
  background:linear-gradient(180deg, var(--green2), var(--green));
  color:#fff;font-weight:900;font-size:14px;
  box-shadow:0 12px 20px rgba(31,122,47,.22);
}
.formBtn:active{transform:translateY(1px)}

.sp{height:10px}
