
:root{
  --black:#101010;
  --ink:#171717;
  --muted:#5d6470;
  --white:#ffffff;
  --soft:#f6f4ef;
  --line:#e6e0d4;
  --mustard:#d4a017;
  --mustard-dark:#9b730e;
  --red:#8b1f20;
  --navy:#172033;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.65;
}
img{max-width:100%;display:block}
a{text-decoration:none}
.container{width:min(1180px,92%);margin:auto}
.topbar{
  background:var(--black);
  color:#fff;
  font-size:14px;
  border-bottom:3px solid var(--mustard);
}
.topbar .container{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:10px 0;
  flex-wrap:wrap;
}
.topbar b{color:var(--mustard)}
.header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:50;
  box-shadow:0 2px 18px rgba(0,0,0,.08);
}
.header .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:13px 0;
  gap:20px;
}
.brand{display:flex;align-items:center;gap:14px}
.brand img{height:68px;width:auto}
.brand-title{font-weight:900;font-size:22px;letter-spacing:.3px;color:#111;line-height:1.1}
.brand-sub{font-size:12px;color:var(--muted);font-weight:700;letter-spacing:.8px;text-transform:uppercase}
.nav{display:flex;gap:24px;align-items:center}
.nav a{color:#111;font-weight:800;font-size:14px;text-transform:uppercase;letter-spacing:.4px}
.nav a:hover{color:var(--mustard-dark)}
.nav .quote{
  background:var(--mustard);
  color:#111;
  padding:12px 18px;
  border-radius:4px;
  box-shadow:0 4px 0 var(--mustard-dark);
}
.hero{
  min-height:680px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.58), rgba(0,0,0,.20)),
    url("images/hero-security.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  color:#fff;
  position:relative;
}
.hero-card{
  max-width:720px;
  padding:70px 0;
}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  background:rgba(212,160,23,.15);
  border:1px solid rgba(212,160,23,.55);
  color:#ffd36a;
  padding:8px 14px;
  border-radius:50px;
  font-size:13px;
  font-weight:900;
  letter-spacing:.9px;
  text-transform:uppercase;
}
.hero h1{
  margin:22px 0 18px;
  font-size:clamp(40px,6vw,72px);
  line-height:1.02;
  font-weight:950;
  letter-spacing:-1.8px;
}
.hero h1 span{color:var(--mustard)}
.hero p{
  font-size:20px;
  color:#f2f2f2;
  max-width:640px;
  margin:0 0 28px;
  font-weight:600;
}
.actions{display:flex;gap:14px;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:4px;
  font-weight:900;
  letter-spacing:.3px;
}
.btn-primary{background:var(--mustard);color:#111;box-shadow:0 4px 0 var(--mustard-dark)}
.btn-dark{background:#fff;color:#111}
.trust-strip{
  background:var(--red);
  color:#fff;
}
.trust-strip .container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.trust-item{
  padding:20px;
  border-right:1px solid rgba(255,255,255,.25);
  font-weight:900;
  text-align:center;
}
.trust-item span{display:block;font-size:13px;opacity:.88;font-weight:700}
.section{padding:76px 0}
.section.alt{background:var(--soft)}
.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 42px;
}
.label{
  color:var(--red);
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:1.6px;
  font-size:13px;
}
h2{
  font-size:clamp(30px,4vw,46px);
  line-height:1.12;
  margin:10px 0 12px;
  font-weight:950;
  letter-spacing:-.8px;
}
.section-head p{color:var(--muted);font-size:18px;font-weight:600}
.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.service-card{
  background:#fff;
  border:1px solid var(--line);
  padding:28px 24px;
  border-radius:12px;
  min-height:245px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  position:relative;
  overflow:hidden;
}
.service-card:before{
  content:"";
  position:absolute;
  top:0;left:0;right:0;height:5px;
  background:var(--mustard);
}
.icon{
  width:52px;height:52px;
  border:2px solid var(--red);
  color:var(--red);
  display:flex;align-items:center;justify-content:center;
  font-size:24px;
  border-radius:8px;
  margin-bottom:18px;
  font-weight:900;
}
.service-card h3{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.2;
  font-weight:950;
}
.service-card p{margin:0;color:var(--muted);font-weight:600}
.split{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:center;
}
.photo-frame{
  border:12px solid #fff;
  box-shadow:0 20px 45px rgba(0,0,0,.18);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}
.photo-frame img{height:520px;width:100%;object-fit:cover}
.checks{display:grid;gap:14px;margin-top:26px}
.check{
  display:flex;
  gap:14px;
  padding:15px 16px;
  background:#fff;
  border-left:5px solid var(--mustard);
  border-radius:8px;
  font-weight:850;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
}
.check b{color:var(--red)}
.industries{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.industry{
  background:#fff;
  padding:18px;
  border:1px solid var(--line);
  border-radius:10px;
  font-weight:900;
}
.industry:before{content:"◆";color:var(--mustard);margin-right:10px}
.gallery{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:16px;
}
.gallery img{
  height:270px;
  width:100%;
  object-fit:cover;
  border-radius:12px;
  filter:saturate(1.03) contrast(1.03);
}
.gallery img:first-child{
  grid-row:span 2;
  height:556px;
}
.cta{
  background:linear-gradient(135deg,#111,#1b2234);
  color:#fff;
  padding:60px 0;
}
.cta-box{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  align-items:center;
  gap:28px;
}
.cta h2{margin:0 0 12px}
.cta p{font-size:18px;color:#e8e8e8;margin:0}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}
.contact-card{
  background:#fff;
  border-radius:14px;
  padding:30px;
  border:1px solid var(--line);
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}
.contact-card h3{margin-top:0;font-size:25px}
.contact-line{
  padding:14px 0;
  border-bottom:1px solid var(--line);
  font-weight:800;
}
.form input,.form textarea,.form select{
  width:100%;
  padding:14px;
  border:1px solid #d8d8d8;
  margin-bottom:12px;
  font-size:15px;
  border-radius:6px;
}
.form button{
  border:0;
  width:100%;
  cursor:pointer;
}
.footer{
  background:#0d0d0d;
  color:#fff;
  padding:48px 0 18px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:35px;
  margin-bottom:28px;
}
.footer h3,.footer h4{margin-top:0;color:#fff}
.footer p,.footer a{color:#cfcfcf;font-weight:600}
.footer a{display:block;margin:8px 0}
.copy{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:18px;
  text-align:center;
  color:#aaa;
}
.wa{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  background:#25d366;
  color:#fff;
  height:58px;width:58px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:28px;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}
.page-hero{
  background:linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.45)), url("images/deployment-1.jpg") center/cover no-repeat;
  color:#fff;
  padding:95px 0;
}
.page-hero h1{font-size:52px;margin:0 0 10px}
.page-hero p{font-size:19px;max-width:700px}
@media(max-width:900px){
  .header .container{flex-direction:column;align-items:flex-start}
  .nav{flex-wrap:wrap;gap:14px}
  .hero{min-height:620px}
  .trust-strip .container,.grid-4,.split,.industries,.cta-box,.contact-grid,.footer-grid{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .gallery img:first-child{height:300px;grid-row:auto}
  .photo-frame img{height:360px}
}
