:root{
  --bg:#07080b;
  --bg2:#0b0d12;
  --card:#0f121a;
  --muted:#a7afc2;
  --text:#eef1f8;
  --red:#e10b19;
  --red2:#ff2a2a;
  --line:rgba(255,255,255,.10);
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --radius:22px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(900px 500px at 10% 5%, rgba(225,11,25,.25), transparent 60%),
    radial-gradient(700px 420px at 95% 10%, rgba(255,42,42,.16), transparent 55%),
    radial-gradient(800px 600px at 50% 120%, rgba(0,170,255,.10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  overflow-x:hidden;
}
a{color:inherit}
.container{width:min(1200px, 92vw); margin:0 auto}
.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(7,8,11,.68);
  backdrop-filter: blur(14px);
  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:260px;
}
.brand img{height:44px; width:auto; display:block; filter: drop-shadow(0 12px 30px rgba(0,0,0,.35))}
.brand .name{line-height:1.05}
.brand .name b{display:block; font-size:15px; letter-spacing:.08em}
.brand .name span{display:block; font-size:12px; color:var(--muted)}
.menu{
  display:flex; align-items:center; gap:14px; flex-wrap:wrap; justify-content:flex-end;
}
.menu a{
  text-decoration:none;
  font-size:13px;
  color:var(--muted);
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
  transition:.2s ease;
}
.menu a:hover{color:var(--text); border-color:var(--line); background:rgba(255,255,255,.04)}
.cta{
  display:flex; gap:10px; align-items:center;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  text-decoration:none;
  padding:11px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-weight:650;
  letter-spacing:.02em;
  transition:.18s ease;
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.06)}
.btn.primary{
  border-color:rgba(225,11,25,.55);
  background: linear-gradient(90deg, rgba(225,11,25,.95), rgba(255,42,42,.9));
  box-shadow: 0 16px 45px rgba(225,11,25,.24);
}
.btn.primary:hover{filter:saturate(1.08) brightness(1.02)}
.btn svg{width:18px; height:18px; flex:0 0 auto}

.hero{
  padding:34px 0 18px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:20px;
  align-items:stretch;
}
.heroCard{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.heroMedia{
  position:relative;
  height: 380px;
}
.heroMedia img{
  width:100%; height:100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.04);
  transform: scale(1.01);
}
.heroMedia:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(7,8,11,.84) 0%, rgba(7,8,11,.25) 45%, rgba(7,8,11,.78) 100%);
}
.heroContent{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:22px 22px 18px;
}
.badges{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:10px}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
}
.badge .dot{width:8px; height:8px; border-radius:50%; background: var(--red)}
.h1{
  font-size: clamp(26px, 3vw, 44px);
  margin:0 0 6px;
  letter-spacing:-.02em;
}
.sub{
  margin:0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height:1.55;
}
.heroActions{
  display:flex; gap:10px; flex-wrap:wrap;
}
.sideCard{
  padding:18px;
  display:flex; flex-direction:column; gap:14px;
}
.kpiRow{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.kpi{
  padding:14px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.kpi b{display:block; font-size:18px}
.kpi span{display:block; font-size:12px; color:var(--muted); margin-top:6px}
.chips{
  display:flex; gap:10px; flex-wrap:wrap;
}
.chip{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding:10px 12px;
  border-radius:999px;
  font-size:12px;
  color:var(--muted);
}
.chip strong{color:var(--text); font-weight:700}
.card{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.section{padding:44px 0 10px}
.section h2{
  margin:0 0 10px;
  font-size:24px;
  letter-spacing:-.02em;
}
.section p.lead{margin:0 0 18px; color:var(--muted); line-height:1.65}
.split{
  display:grid; grid-template-columns: 1.05fr .95fr; gap:18px;
}
.serviceGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.service{
  padding:16px;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  min-height:120px;
  position:relative;
  overflow:hidden;
}
.service:before{
  content:"";
  position:absolute; inset:-60px auto auto -60px;
  width:160px; height:160px;
  background: radial-gradient(circle, rgba(225,11,25,.35), transparent 60%);
  filter: blur(2px);
}
.service h3{margin:0 0 8px; font-size:15px}
.service p{margin:0; color:var(--muted); font-size:13px; line-height:1.55}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.gItem{
  grid-column: span 4;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  position:relative;
  cursor:pointer;
}
.gItem img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  aspect-ratio: 4 / 3;
  transition: transform .25s ease, filter .25s ease;
  filter:saturate(1.03) contrast(1.03);
}
.gItem:hover img{transform: scale(1.04)}
.gItem .cap{
  position:absolute; left:0; right:0; bottom:0;
  padding:10px 12px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.62));
  color:#fff;
  font-size:12px;
  letter-spacing:.02em;
}
.lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,.86);
  display:none;
  align-items:center; justify-content:center;
  z-index:1000;
  padding:24px;
}
.lightbox.active{display:flex}
.lightboxInner{
  width:min(1100px, 96vw);
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(12,14,20,.92);
  box-shadow: 0 40px 120px rgba(0,0,0,.65);
  position:relative;
}
.lightboxImg{width:100%; height:min(72vh, 720px); object-fit:contain; background:#000}
.lightboxBar{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:12px 14px;
  border-top:1px solid rgba(255,255,255,.10);
  color:var(--muted);
  font-size:12px;
}
.iconBtn{
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  color:#fff;
  border-radius:999px;
  padding:10px 12px;
  cursor:pointer;
  transition:.18s ease;
}
.iconBtn:hover{transform: translateY(-1px); background: rgba(255,255,255,.07)}
.iconBtn svg{width:18px; height:18px}

.embed{
  position:relative;
  padding-top:56.25%;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.embed iframe{position:absolute; inset:0; width:100%; height:100%; border:0}

.contactGrid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:16px;
}
.info{
  padding:18px;
}
.info .row{
  display:flex; gap:12px; align-items:flex-start;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.info .row:last-child{border-bottom:0}
.info .row svg{width:18px; height:18px; margin-top:2px; color:rgba(255,255,255,.85)}
.info .row b{display:block; margin-bottom:3px}
.info .row span{display:block; color:var(--muted); font-size:13px; line-height:1.55}
form{
  padding:18px;
}
label{display:block; font-size:12px; color:var(--muted); margin:10px 0 6px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus{border-color: rgba(225,11,25,.65); box-shadow: 0 0 0 4px rgba(225,11,25,.14)}

.footer{
  padding:26px 0 40px;
  color:var(--muted);
  font-size:12px;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:30px;
}
.footer .fgrid{
  display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.smallNote{opacity:.9}

.float{
  position:fixed; right:18px; bottom:18px; z-index:999;
  display:flex; flex-direction:column; gap:10px;
}
.fab{
  width:54px; height:54px;
  border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(10,12,18,.65);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  transition:.18s ease;
}
.fab:hover{transform: translateY(-2px); background: rgba(255,255,255,.07)}
.fab.primary{
  background: linear-gradient(180deg, rgba(37,211,102,.95), rgba(19,160,72,.92));
  border-color: rgba(255,255,255,.18);
}
.fab.primary:hover{filter:saturate(1.06)}
.fab svg{width:22px; height:22px; color:#fff}

.reveal{opacity:0; transform: translateY(12px); transition: .7s ease}
.reveal.show{opacity:1; transform: translateY(0)}

@media (max-width: 980px){
  .heroGrid{grid-template-columns: 1fr; }
  .heroMedia{height: 340px}
  .split{grid-template-columns: 1fr}
  .serviceGrid{grid-template-columns: repeat(2, 1fr)}
  .gallery .gItem{grid-column: span 6}
  .contactGrid{grid-template-columns: 1fr}
  .brand{min-width:auto}
}
@media (max-width: 560px){
  .menu{display:none}
  .heroMedia{height: 330px}
  .kpiRow{grid-template-columns: 1fr 1fr}
  .serviceGrid{grid-template-columns: 1fr}
  .gallery .gItem{grid-column: span 12}
  .btn{width:100%}
  .cta{width:100%}
  .topbar .nav{flex-wrap:wrap}
}