:root{
  --bg:#0b0b0d;
  --panel:#121218;
  --panel2:#0f0f14;
  --text:#f4f4f6;
  --muted:#b7b7c2;
  --brand:#e10600;
  --stroke:rgba(255,255,255,.10);
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 500px at 20% -10%, rgba(225,6,0,.25), transparent 60%),
              radial-gradient(800px 400px at 90% 10%, rgba(255,255,255,.06), transparent 60%),
              var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92%); margin:0 auto}

.topbar{
  background:#070708;
  border-bottom:1px solid var(--stroke);
  font-size:14px;
}
.topbar-inner{
  display:flex; gap:14px; justify-content:space-between; padding:10px 0; flex-wrap:wrap;
}
.topbar a{color:var(--muted)}
.topbar-left span{color:var(--muted)}

.header{
  position:sticky; top:0; z-index:50;
  background:rgba(11,11,13,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--stroke);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{display:flex; align-items:center; gap:12px}
.brand-logo{width:44px; height:44px; border-radius:10px; object-fit:contain; background:#000; padding:6px; border:1px solid var(--stroke)}
.brand-title{font-weight:800; letter-spacing:.08em; font-size:14px}
.brand-subtitle{color:var(--muted); font-size:12px; margin-top:2px}

.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--muted); font-weight:600; font-size:14px}
.nav a:hover{color:var(--text)}

.menu-btn{
  display:none;
  background:transparent; border:1px solid var(--stroke);
  color:var(--text); border-radius:12px;
  padding:10px 12px; font-size:16px;
}

.hero{
  padding:54px 0 26px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap:22px;
  align-items:stretch;
}
.hero h1{
  font-size: clamp(30px, 4vw, 46px);
  line-height:1.05;
  margin:0 0 10px;
}
.hero p{color:var(--muted); font-size:16px; line-height:1.6; margin:0 0 18px}

.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:16px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-weight:700;
  box-shadow: none;
}
.btn:hover{border-color:rgba(255,255,255,.18)}
.btn.primary{
  background: linear-gradient(180deg, rgba(225,6,0,.95), rgba(225,6,0,.75));
  border-color: rgba(225,6,0,.40);
}
.btn.full{width:100%}

.trust{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}
.trust-item{
  font-size:13px; color:var(--muted);
  border:1px solid var(--stroke);
  border-radius:999px;
  padding:8px 10px;
  background:rgba(255,255,255,.03);
}

.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.hero-card-title{font-weight:900; letter-spacing:.04em; margin:0 0 6px}
.muted{color:var(--muted)}
.tiny{font-size:12px}

.form{display:grid; gap:12px; margin-top:12px}
label{display:grid; gap:6px; font-size:13px; color:var(--muted)}
input, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
input:focus, select:focus{border-color:rgba(225,6,0,.5)}

.section{padding:44px 0}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
  border-top:1px solid var(--stroke);
  border-bottom:1px solid var(--stroke);
}
.section-title{
  margin:0 0 14px;
  font-size:24px;
  letter-spacing:.02em;
}
.grid{
  display:grid;
  gap:14px;
}
.brands{grid-template-columns: repeat(5, 1fr)}
.products{grid-template-columns: repeat(3, 1fr)}
.mv{grid-template-columns: repeat(2, 1fr)}
.card{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  border-radius: var(--radius);
  box-shadow: none;
  padding:14px;
}
.card.pad{padding:18px}
.card h3, .card h4{margin:0 0 8px}
.card p{margin:0; color:var(--muted); line-height:1.6}

.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.info-box{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:18px;
}
.info-row{
  display:flex; justify-content:space-between; gap:12px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.info-row:last-child{border-bottom:none}
.info-row span{color:var(--muted)}
.bullets{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.bullets div{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  border-radius:999px;
  padding:8px 10px;
  color:var(--muted);
  font-size:13px;
}

.center{display:flex; justify-content:center; margin-top:18px}
.contact-list{display:grid; gap:10px; color:var(--muted); line-height:1.6}
.cta-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

.map{min-height:240px}
.map-placeholder{
  padding:18px;
  display:grid; gap:8px;
}
.map-title{font-weight:800}

.footer{
  border-top:1px solid var(--stroke);
  padding:18px 0;
  background:#070708;
}
.footer-inner{
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  color:var(--muted);
  font-size:14px;
}
.footer-links{display:flex; gap:12px}

@media (max-width: 900px){
  .hero-inner, .split{grid-template-columns:1fr}
  .brands{grid-template-columns: repeat(2, 1fr)}
  .products{grid-template-columns:1fr}
  .mv{grid-template-columns:1fr}
  .nav{display:none; position:absolute; right:4%; top:64px; flex-direction:column; background:rgba(11,11,13,.95); border:1px solid var(--stroke); border-radius:16px; padding:12px; width:min(240px, 92vw)}
  .nav.open{display:flex}
  .menu-btn{display:inline-flex}
}
