 :root{
  --bg:#020405;
  --panel:#06090c;
  --line:#3b4045;
  --white:#f3f3f3;
  --text:#e5e5e5;
  --muted:#c9c9c9;
  --orange:#f47b00;
  --light:#f1f1f1;
  --darktext:#202124;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:#020405;
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.42;
}
a,a:visited{color:inherit}
.site{max-width:1364px;margin:0 auto;padding:8px 10px 0;background:#020405}

.top{
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#010203;
  padding:0 8px;
}
.brand{display:block;width:357px;height:76px;text-decoration:none;overflow:hidden}
.brand img{width:100%;height:100%;object-fit:contain;object-position:left center;display:block}
.tagline{
  margin:0;
  flex:1;
  text-align:right;
  padding-right:8px;
  font-size:30px;
  font-weight:400;
  color:#f1f1f1;
  white-space:nowrap;
}

.hero-row{
  display:grid;
  grid-template-columns:851px 1fr;
  gap:76px;
  align-items:start;
  padding:18px 8px 5px 12px;
}
.hero{
  width:851px;
  aspect-ratio:851/327;
  overflow:hidden;
  background:#111;
}
.hero img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.references{
  height:330px;
  border:1px solid var(--line);
  border-radius:22px;
  padding:17px 22px;
  background:#020405;
}
.references h2{
  margin:0 0 9px;
  color:#f1f1f1;
  font-size:21px;
}
.reference{
  display:grid;
  grid-template-columns:48px 1fr;
  gap:13px;
  align-items:center;
  min-height:67px;
}
.reference img{
  display:block;
  max-width:48px;
  max-height:48px;
  object-fit:contain;
}
.reference strong{
  display:block;
  color:#f1f1f1;
  font-size:15.5px;
  letter-spacing:.15px;
}
.reference span{
  display:block;
  color:#d0d0d0;
  font-size:14.5px;
}

.services{
  display:grid;
  grid-template-columns:1.05fr 1.15fr 1.25fr 1.28fr 1.2fr;
  height:91px;
  margin-top:0;
  background:#030507;
}
.service{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 8px 12px 10px;
  border-right:8px solid #010203;
}
.service:last-child{border-right:0}
.service img{
  flex:0 0 auto;
  width:43px;
  height:43px;
  object-fit:contain;
}
.service p{
  margin:0;
  color:#f0f0f0;
  font-size:16px;
  line-height:1.35;
}

.main-card{
  display:grid;
  grid-template-columns:minmax(0,1.58fr) 490px;
  gap:20px;
  margin:10px 7px 8px;
  padding:18px 18px 17px;
  background:#f2f2f2;
  color:var(--darktext);
  border-radius:9px;
}
.copy{
  font-size:16px;
}
.copy p{margin:5px 0 14px}
.copy strong{color:#d96300}
.copy ul{margin:5px 0 16px;padding-left:32px}
.copy li{margin:2px 0}
.copy a,.copy a:visited{
  color:#d96300;
  font-weight:700;
  text-decoration:underline;
}

.cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.product-card{
  position:relative;
  min-height:386px;
  background:#eeeeee;
  border:1px solid #d8d8d8;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 2px 9px rgba(0,0,0,.08);
}
.product-image{height:167px;overflow:hidden}
.product-image img{
  width:100%;height:100%;display:block;object-fit:cover;object-position:center;
}
.product-icon{
  position:absolute;
  top:121px;
  left:0;
  width:58px;
  height:58px;
  object-fit:contain;
}
.product-copy{padding:14px 16px}
.product-copy h3{margin:0 0 7px;font-size:19px}
.product-copy p{margin:0;font-size:19px;line-height:1.42}

.guarantees{
  display:grid;
  grid-template-columns:345px 1fr;
  gap:20px;
  margin:0 7px;
  min-height:57px;
  padding:6px 8px;
  background:#070a0d;
}
.guarantee{
  display:flex;
  align-items:center;
  min-height:45px;
  background:#020405;
}
.guarantee img{
  width:45px;height:45px;object-fit:contain;margin-right:8px;
}
.guarantee strong{
  display:block;
  color:#f2f2f2;
  font-size:12.5px;
  font-weight:400;
}
.guarantee span{
  display:block;
  color:#d5d5d5;
  font-size:12px;
}

footer{
  position:relative;
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  background:#020405;
  padding:8px 4px;
}
.copyright{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  color:#e5e5e5;
  font-size:12px;
  font-weight:700;
}
footer nav{display:flex;gap:30px}
footer nav a,footer nav a:visited{
  color:#d8d8d8;
  text-decoration:underline;
  font-size:12px;
}

@media(max-width:1200px){
  .tagline{font-size:24px;white-space:normal}
  .hero-row{grid-template-columns:minmax(0,1fr) 390px;gap:30px}
  .hero{width:100%;aspect-ratio:851/327}
  .services{height:auto;grid-template-columns:repeat(2,1fr)}
  .main-card{grid-template-columns:1fr}
  .cards{max-width:520px}
}
@media(max-width:760px){
  .site{padding:0}
  .top{height:auto;flex-direction:column;align-items:flex-start;padding:8px}
  .brand{width:min(100%,357px)}
  .tagline{text-align:left;padding:8px 0 0;font-size:20px}
  .hero-row{grid-template-columns:1fr;gap:14px;padding:10px}
  .references{height:auto}
  .services{grid-template-columns:1fr}
  .service{border-right:0;border-bottom:5px solid #010203}
  .main-card{margin:8px;grid-template-columns:1fr;padding:15px}
  .cards{grid-template-columns:1fr;max-width:none}
  .guarantees{grid-template-columns:1fr;margin:8px}
  footer{flex-direction:column;gap:12px}
  .copyright{position:static;transform:none;order:2;text-align:center}
  footer nav{flex-wrap:wrap;justify-content:center}
}
