:root{
  --navy:#07182e;
  --navy2:#0c294d;
  --gold:#f7bd25;
  --gold2:#e7a914;
  --text:#101318;
  --muted:#667085;
  --light:#f7f9fc;
  --white:#fff;
  --line:#e6e9ef;
  --shadow:0 12px 35px rgba(7,24,46,.10);
  --radius:16px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.65;
}
.container{width:min(1180px,92%);margin:auto}
.header{
  height:78px;
  background:#090d13;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 4px 18px rgba(0,0,0,.15);
}
.nav{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
  min-width:205px;
}
.brand-shield{
  width:42px;height:50px;
  display:grid;place-items:center;
  color:var(--gold);
}
.brand-shield svg{width:42px;height:50px}
.brand strong{font-size:27px;letter-spacing:-1.3px;line-height:1}
.brand small{
  display:block;
  color:var(--gold);
  font-size:7px;
  letter-spacing:3px;
  font-weight:700;
  margin-top:5px;
}
.menu{display:flex;align-items:center;gap:43px}
.menu a{
  color:#fff;text-decoration:none;font-size:15px;font-weight:500;
  transition:.2s;
}
.menu a:hover,.menu a.active{color:var(--gold)}
.nav-actions{display:flex;gap:12px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  text-decoration:none;border-radius:30px;padding:14px 24px;
  font-weight:700;font-size:14px;transition:.25s;
}
.btn-gold{background:var(--gold);color:#111}
.btn-gold:hover{background:#ffd04c;transform:translateY(-2px)}
.btn-outline{
  border:1px solid var(--gold);color:var(--gold);background:transparent;
}
.mobile-toggle{display:none;color:#fff;font-size:28px;cursor:pointer}

.hero{
  min-height:560px;
  position:relative;
  display:flex;align-items:center;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(5,22,43,.98) 0%,rgba(5,22,43,.92) 42%,rgba(5,22,43,.38) 72%,rgba(5,22,43,.55) 100%),
    url("../images/hero-2.webp") center/cover no-repeat;
}
.hero:after{
  content:"";position:absolute;left:0;right:0;bottom:-1px;height:45px;
  background:#fff;
  clip-path:polygon(0 55%,45% 20%,100% 65%,100% 100%,0 100%);
}
.hero-content{position:relative;z-index:2;color:#fff;max-width:690px;padding:85px 0 100px}
.eyebrow{
  color:var(--gold);font-size:14px;text-transform:uppercase;
  letter-spacing:2px;font-weight:800;margin-bottom:12px;
}
.hero h1{font-size:58px;line-height:1.06;color:#fff; letter-spacing:-2px;margin-bottom:12px}
.hero h1 span{color:var(--gold)}
.hero h2{font-size:27px; color:#fff; line-height:1.25;font-weight:500;margin-bottom:22px}
.hero p{font-size:17px;max-width:650px;color:#e5ebf4;margin-bottom:28px}
.hero-buttons{display:flex;gap:13px;flex-wrap:wrap}

.section{padding:90px 0}
.section-light{background:var(--light)}
.section-title{text-align:center;max-width:850px;margin:0 auto 48px}
.section-title .line{
  width:70px;height:4px;background:var(--gold);border-radius:10px;margin:0 auto 17px;
}
.section-title h2{font-size:39px;line-height:1.15;margin-bottom:14px}
.section-title h2 span{color:var(--gold)}
.section-title p{color:var(--muted);font-size:16px}

.intro-grid{
  display:grid;grid-template-columns:1.05fr .95fr;gap:65px;align-items:center;
}
.intro-copy .line{width:70px;height:4px;background:var(--gold);margin-bottom:20px;border-radius:5px}
.intro-copy h2{font-size:38px;line-height:1.18;margin-bottom:16px}
.intro-copy p{color:var(--muted);margin-bottom:17px}
.highlight{color:#d89b00;font-weight:700}
.trust-box{
  background:linear-gradient(145deg,#07182e,#12345d);
  color:#fff;border-radius:18px;padding:35px;
  box-shadow:var(--shadow);
}
.trust-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0}
.trust-item{text-align:center; padding:18px 12px; color:#fff!important; border-right:1px solid rgba(255,255,255,.16)}
.trust-item:nth-child(3n){border-right:0}
.trust-item:nth-child(-n+3){border-bottom:1px solid rgba(255,255,255,.16)}
.icon{
  width:55px;height:55px;border:1px solid rgba(247,189,37,.7);
  border-radius:50%;display:grid;place-items:center;margin:0 auto 12px;
  color:var(--gold);font-size:23px;font-weight:700;
}
.trust-item h3{font-size:14px;line-height:1.25 color:#fff;}

.help-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:0 65px;
  position:relative;
}
.help-grid:before{
  content:"";position:absolute;left:50%;top:0;bottom:0;width:1px;background:var(--line);
}
.help-item{
  display:flex;gap:16px;padding:17px 0;
}
.help-item .mini-icon{
  flex:0 0 44px;width:44px;height:44px;border-radius:50%;
  background:var(--navy);color:var(--gold);
  display:grid;place-items:center;font-weight:700;font-size:17px;
}
.help-item p{font-size:15px;color:#4f5d70;line-height:1.5;padding-top:3px}

.reason-grid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:16px;
}
.reason-card{
  background:#fff;border:1px solid var(--line);border-radius:15px;
  overflow:hidden;box-shadow:0 7px 22px rgba(7,24,46,.06);
  transition:.25s;
}
.reason-card:hover{transform:translateY(-7px);box-shadow:var(--shadow)}
.reason-image{
  height:155px;
  background:center/cover no-repeat;
  position:relative;
}
.reason-image:after{
  content:"";position:absolute;inset:0;background:linear-gradient(transparent,rgba(0,0,0,.18));
}
.reason-icon{
  width:55px;height:55px;background:var(--navy);border:4px solid #fff;
  border-radius:50%;position:absolute;left:50%;bottom:-28px;
  transform:translateX(-50%);z-index:2;display:grid;place-items:center;
  color:var(--gold);font-weight:800;font-size:20px;
}
.reason-body{padding:43px 18px 23px;text-align:center}
.reason-body h3{font-size:17px;line-height:1.25;margin-bottom:14px}
.reason-body p{font-size:13px;color:var(--muted);line-height:1.65}

.location-grid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:28px 22px;
}
.location-item{display:flex;align-items:center;gap:12px}
.location-icon{font-size:25px;color:var(--gold);width:35px;text-align:center}
.location-item span{font-size:13px;font-weight:600;line-height:1.35}

.cta{
  color:#fff;
  background:
    linear-gradient(90deg,rgba(5,22,43,.98) 0%,rgba(5,22,43,.93) 48%,rgba(5,22,43,.5) 100%),
    url("images/security-guard-footer.jpg") center/cover no-repeat;
}
.cta-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:50px;align-items:center}
.cta h2{font-size:42px;line-height:1.15;margin-bottom:16px}
.cta h2 span{color:var(--gold)}
.cta p{color:#d8e0ea;margin-bottom:13px}
.contact-box{
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);
  padding:30px;border-radius:16px;backdrop-filter:blur(5px)
}
.contact-row{display:flex;gap:14px;margin-bottom:18px}
.contact-row:last-child{margin-bottom:0}
.contact-row .cicon{color:var(--gold);font-size:21px;width:28px}
.contact-row strong{display:block;color:var(--gold);font-size:13px}
.contact-row span{font-size:14px;color:#fff}

.footer{background:#050d18;color:#aeb8c7;padding:22px 0;text-align:center;font-size:13px}
.whatsapp{
  position:fixed;right:22px;bottom:22px;width:62px;height:62px;border-radius:50%;
  background:#128c4b;color:#fff;display:grid;place-items:center;font-size:28px;
  text-decoration:none;box-shadow:0 8px 25px rgba(0,0,0,.25);z-index:1100;
}
.top{
  position:fixed;right:22px;bottom:94px;width:55px;height:55px;border-radius:50%;
  background:#fff;color:var(--gold2);display:grid;place-items:center;
  text-decoration:none;box-shadow:0 5px 18px rgba(0,0,0,.16);z-index:1100;font-size:22px;
}

@media(max-width:1050px){
  .menu{gap:22px}.nav-actions .btn{padding:12px 16px;font-size:12px}
  .hero h1{font-size:49px}
  .reason-grid{grid-template-columns:repeat(3,1fr)}
  .location-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:800px){
  .header,.nav{height:70px}
  .mobile-toggle{display:block}
  .menu,.nav-actions{display:none}
  .mobile-menu{
    display:none;position:absolute;top:70px;left:0;right:0;background:#090d13;padding:20px;
  }
  .mobile-menu.open{display:block}
  .mobile-menu a{display:block;color:#fff;text-decoration:none;padding:13px;border-bottom:1px solid #222}
  .hero{min-height:620px}
  .hero-content{padding:70px 0 100px}
  .hero h1{font-size:42px}.hero h2{font-size:23px}
  .intro-grid,.cta-grid{grid-template-columns:1fr}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .trust-item:nth-child(3n){border-right:1px solid rgba(255,255,255,.16)}
  .trust-item:nth-child(2n){border-right:0}
  .help-grid{grid-template-columns:1fr}
  .help-grid:before{display:none}
  .reason-grid{grid-template-columns:repeat(2,1fr)}
  .location-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:520px){
  .brand strong{font-size:22px}.brand{min-width:auto}
  .hero h1{font-size:36px}.hero h2{font-size:20px}
  .hero p{font-size:15px}
  .section{padding:65px 0}
  .section-title h2,.intro-copy h2,.cta h2{font-size:30px}
  .trust-grid{grid-template-columns:1fr 1fr}
  .reason-grid,.location-grid{grid-template-columns:1fr}
  .reason-image{height:180px}
}