* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, sans-serif; color: #111; }
a { text-decoration: none; color: inherit; }
.wrap { width: 92%; max-width: 1240px; margin: auto; }
.top { background: #090909; color: #fff; text-align: center; padding: 9px; font-size: 11px; }
.head { position: sticky; top: 0; z-index: 9; background: #fff; border-bottom: 1px solid #ddd; }
.nav { height: 80px; display: flex; align-items: center; gap: 25px; }
.logo img { width: 160px; height: 58px; object-fit: contain; }
.links { display: flex; gap: 24px; margin-left: auto; font-size: 12px; font-weight: bold; text-transform: uppercase; }
.links a:hover { color: #91bd18; }
.icons { display: flex; gap: 12px; cursor: pointer; font-size: 20px; }
.menu { display: none; }
.hero { min-height: 590px; background: linear-gradient(110deg, #070707, #222, #46551f); color: #fff; display: flex; align-items: center; }
.hero h1 { font-size: clamp(43px, 7vw, 78px); line-height: .96; max-width: 850px; margin: 15px 0; }
.hero p { max-width: 650px; color: #ddd; line-height: 1.8; }
.ey { font-size: 10px; letter-spacing: 3px; color: #b8d758; font-weight: bold; }
.btn { display: inline-block; padding: 14px 22px; margin: 8px 7px 0 0; font-size: 11px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }
.black { background: #080808; color: #fff; }
.lime { background: #91bd18; color: #fff; }
.white { background: #fff; }
.sec { padding: 80px 0; }
.soft { background: #f5f5f2; }
.dark { background: #090909; color: #fff; }
.head2 { display: flex; justify-content: space-between; align-items: end; margin-bottom: 35px; }
.head2 h2 { font-size: clamp(32px, 5vw, 55px); line-height: 1; margin: 8px 0; }
.muted { color: #707070; font-size: 13px; line-height: 1.8; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; }
.feat { padding: 25px; border-right: 1px solid #ddd; }
.feat:last-child { border: 0; }
.feat b { color: #91bd18; font-size: 11px; }
.feat h3 { font-size: 14px; }
.feat p { font-size: 11px; color: #777; line-height: 1.6; }
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.card { background: #f1f1ee; }
.ph { height: 290px; display: grid; place-items: center; background: linear-gradient(145deg, #eee, #d5d5d0); font-size: 10px; letter-spacing: 2px; color: #999; }
.info { background: #fff; padding: 14px; }
.info h3 { font-size: 13px; margin: 0 0 5px; }
.info p { font-size: 10px; color: #777; margin: 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.visual { height: 430px; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: #333; }
.step { background: #090909; color: #fff; padding: 25px; min-height: 180px; }
.step b { color: #b8d758; }
.step h3 { font-size: 14px; }
.step p { font-size: 11px; color: #aaa; line-height: 1.6; }
.form { border: 1px solid #ddd; padding: 28px; background: #fff; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
label { font-size: 10px; font-weight: bold; text-transform: uppercase; display: block; margin-bottom: 14px; }
input, select, textarea { width: 100%; padding: 13px; border: 1px solid #ccc; margin-top: 6px; }
footer { background: #090909; color: #aaa; padding: 55px 0 20px; }
.foot { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
.foot img { width: 155px; background: #fff; padding: 3px; }
.foot p, .foot a { font-size: 11px; line-height: 2; }
.bottom { border-top: 1px solid #333; margin-top: 35px; padding-top: 18px; font-size: 9px; display: flex; justify-content: space-between; }

@media (max-width: 900px) {
  .links { display: none; }
  .links.open { display: flex; position: absolute; top: 80px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px 5%; gap: 15px; }
  .menu { display: block; margin-left: auto; border: 0; background: none; font-size: 24px; }
  .grid4, .products { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .foot { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .grid4, .products, .steps, .row, .foot { grid-template-columns: 1fr; }
  .split { display: block; }
  .visual { margin-bottom: 30px; }
  .head2 { display: block; }
  .sec { padding: 60px 0; }
  .bottom { display: block; line-height: 2; }
}