:root{
  --bg:#07070a;
  --text:#f2f5fb;
  --muted:rgba(242,245,251,.72);
  --line:rgba(255,255,255,.10);
  --panel:rgba(255,255,255,.04);
  --panel2:rgba(255,255,255,.06);
  --red:#ff1e1e;
  --shadow:0 20px 60px rgba(0,0,0,.55);
  --radius:18px;
  --max:1140px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 12% -10%, rgba(255,30,30,.22), transparent 60%),
    radial-gradient(700px 420px at 88% 0%, rgba(255,30,30,.14), transparent 55%),
    radial-gradient(700px 420px at 70% 120%, rgba(255,255,255,.06), transparent 55%),
    var(--bg);
  line-height:1.55;
}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
a{color:inherit}
.muted{color:var(--muted)}
.link{color:var(--text); text-decoration:none; border-bottom:1px solid rgba(255,255,255,.25)}
.link:hover{border-bottom-color:var(--red)}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(7,7,10,.78);
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:12px 0}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand-logo{
  width:46px; height:46px; border-radius:14px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:var(--shadow);
  background:#0b0b10;
}
.brand-text b{display:block; font-weight:950; letter-spacing:.3px}
.brand-text small{display:block; color:var(--muted); font-weight:750}

.nav{display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.nav-link{
  text-decoration:none;
  color:var(--muted);
  font-weight:900;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
}
.nav-link:hover{color:var(--text); border-color:rgba(255,255,255,.14)}
.nav-link.is-active{color:var(--text); border-color:rgba(255,30,30,.35); background:rgba(255,30,30,.08)}
.nav-cta{
  text-decoration:none;
  font-weight:950;
  padding:10px 12px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--red),rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.12);
  white-space:nowrap;
}

.nav-toggle{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
}
.nav-toggle span{display:block; height:2px; width:20px; margin:5px auto; background:rgba(255,255,255,.88)}

@media (max-width: 900px){
  .nav-toggle{display:block}
  .nav{
    position:absolute; right:20px; top:70px;
    background:rgba(7,7,10,.96);
    border:1px solid rgba(255,255,255,.12);
    border-radius:18px;
    padding:12px;
    box-shadow:var(--shadow);
    display:none;
    width:min(92vw,360px);
  }
  .nav.open{display:flex; flex-direction:column; align-items:stretch}
  .nav-cta{text-align:center}
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  font-weight:950;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  transition:transform .15s ease, border-color .15s ease;
}
.btn:hover{transform:translateY(-1px); border-color:rgba(255,255,255,.20)}
.btn-primary{background:linear-gradient(135deg,var(--red),rgba(255,255,255,.06)); border-color:transparent}
.btn-ghost{background:rgba(255,255,255,.02)}
.btn-block{width:100%}

/* Hero Banner */
.hero-banner{
  position:relative;
  min-height: 520px;
  display:grid;
  align-items:center;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.hero-media{position:absolute; inset:0}
.hero-media img{
  width:100%; height:100%;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.05);
  transform:scale(1.02);
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.22) 100%),
    radial-gradient(700px 420px at 12% 30%, rgba(255,30,30,.22), transparent 60%);
}
.hero-content{position:relative; padding:34px 0}
.hero-panel{
  width:min(680px, 92vw);
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.40);
  box-shadow:var(--shadow);
  padding:18px 18px 16px;
}
.hero-kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.9px;
  font-size:12px;
  color:rgba(255,255,255,.78);
}
.pulse{
  width:10px; height:10px; border-radius:999px;
  background:var(--red);
  box-shadow:0 0 18px rgba(255,30,30,.65);
}
.hero-panel h1{
  margin:10px 0 8px;
  font-size:clamp(34px, 4.2vw, 56px);
  line-height:1.05;
  letter-spacing:-.6px;
  text-transform:uppercase;
}
.lead{margin:0 0 14px; color:var(--muted); font-size:clamp(15px, 1.6vw, 18px); max-width:64ch}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin:10px 0 10px}

.trust-strip{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
  margin-top:10px;
}
@media (max-width: 640px){ .trust-strip{grid-template-columns:1fr} }
.trust-item{
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.25);
}
.trust-item b{display:block; font-weight:950}
.trust-item span{color:var(--muted); font-weight:750; font-size:13px}

/* Sections */
.section{padding:26px 0}
.section-dark{
  background:rgba(0,0,0,.22);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section-head{margin-bottom:14px}
.section-head h2{margin:0 0 6px; text-transform:uppercase; letter-spacing:.6px}
.section-head p{margin:0; color:var(--muted); font-weight:750}

.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
@media (max-width: 980px){ .cards{grid-template-columns:1fr} }
.card{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  box-shadow:0 12px 32px rgba(0,0,0,.40);
  padding:16px;
}
.card h3{margin:0 0 10px; text-transform:uppercase; letter-spacing:.4px}
.card-accent{
  background:linear-gradient(180deg, rgba(255,30,30,.14), rgba(255,255,255,.02));
  border-color:rgba(255,30,30,.22);
}
.list{margin:0; padding-left:18px}
.list li{margin:8px 0; color:var(--muted); font-weight:750}
.link-arrow{display:inline-block; margin-top:10px; color:rgba(255,255,255,.92); text-decoration:none; font-weight:950}
.link-arrow:hover{color:var(--red)}

.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
@media (max-width:980px){ .grid-3{grid-template-columns:1fr} }
.feature{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.02);
  border-radius:var(--radius);
  padding:16px;
}
.icon-badge{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  background:rgba(255,30,30,.14);
  border:1px solid rgba(255,30,30,.28);
  font-weight:1000;
  margin-bottom:10px;
}

.cta-bar{
  margin-top:16px;
  display:flex; justify-content:space-between; align-items:center;
  gap:12px; flex-wrap:wrap;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.25);
}
.cta-bar b{display:block; font-weight:950}
.cta-bar span{color:var(--muted); font-weight:750}
.cta-bar-actions{display:flex; gap:10px; flex-wrap:wrap}

.contact-strip{display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap}
.contact-actions{display:flex; gap:10px; flex-wrap:wrap}

/* Page hero */
.page-hero{padding:26px 0 12px}
.page-hero h1{
  margin:0 0 8px;
  font-size:clamp(30px, 4vw, 44px);
  text-transform:uppercase;
  letter-spacing:-.4px;
}
.page-hero .lead{margin:0}

/* Services grids */
.service-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}
@media (max-width:980px){ .service-grid{grid-template-columns:1fr} }
.service-block{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  padding:16px;
}

/* Process */
.process{display:grid; grid-template-columns:repeat(4,1fr); gap:14px}
@media (max-width:980px){ .process{grid-template-columns:1fr 1fr} }
@media (max-width:560px){ .process{grid-template-columns:1fr} }
.step{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.02);
  border-radius:var(--radius);
  padding:16px;
}
.step-num{
  display:inline-grid; place-items:center;
  width:36px; height:36px;
  border-radius:14px;
  background:rgba(255,30,30,.14);
  border:1px solid rgba(255,30,30,.28);
  font-weight:1000;
  margin-bottom:10px;
}

/* Contact */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:14px}
@media (max-width:980px){ .contact-grid{grid-template-columns:1fr} }
.kv{display:flex; justify-content:space-between; gap:10px; padding:8px 0; border-bottom:1px solid rgba(255,255,255,.07)}
.k{color:var(--muted); font-weight:850}
.v{font-weight:850}
.form label{display:grid; gap:6px; margin:10px 0; font-weight:850}
.form input,.form textarea{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.28);
  color:var(--text);
  padding:12px 12px;
  font:inherit;
}
.form input:focus,.form textarea:focus{
  outline:none;
  border-color:rgba(255,30,30,.45);
  box-shadow:0 0 0 4px rgba(255,30,30,.10);
}
.map{border-radius:16px; overflow:hidden; border:1px solid rgba(255,255,255,.10)}
.map iframe{width:100%; height:360px; border:0}

.site-footer{border-top:1px solid rgba(255,255,255,.10); padding:18px 0 26px; margin-top:8px}
.footer-inner{display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap}
.footer-brand{display:flex; align-items:center; gap:12px}
.footer-logo{
  width:40px; height:40px; border-radius:14px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.12);
  background:#0b0b10;
}
