/* ============ TOKENS ============ */
:root{
  --navy-dark:#0a1c45;
  --navy:#0d2a63;
  --navy-light:#13357a;
  --red:#e3241f;
  --red-dark:#c81d19;
  --gray-bg:#f4f6fa;
  --text-dark:#12204a;
  --text-muted:#5c6785;
  --white:#ffffff;
  --star:#ffb100;
  --radius:14px;
  --shadow:0 10px 30px rgba(13,42,99,0.08);
  --shadow-soft:0 4px 14px rgba(13,42,99,0.06);
}
*{margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:'Segoe UI',Arial,sans-serif;
  color:var(--text-dark);
  background:var(--white);
  line-height:1.5;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
.container{
  max-width:1180px;
  margin:0 auto;
  padding:0 20px;
}
h2.section-title{
  text-align:center;
  font-size:26px;
  color:var(--navy-dark);
  margin-bottom:8px;
}
p.section-sub{
  text-align:center;
  color:var(--text-muted);
  font-size:14.5px;
  margin-bottom:34px;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 22px;
  border-radius:8px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  border:none;
  cursor:pointer;
}
.btn-red{background:var(--red);color:var(--white);}
.btn-red:hover{background:var(--red-dark);}
.btn-outline{background:var(--white);color:var(--navy);border:1px solid #dfe3ee;}
.btn-green{background:#25d366;color:var(--white);}

/* ============ HEADER ============ */
.site-header{
  background:var(--white);
  border-bottom:1px solid #eef1f8;
  position:sticky;
  top:0;
  z-index:50;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 20px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  color:var(--navy-dark);
  font-size:15px;
  line-height:1.1;
  letter-spacing:.3px;
}
.logo .shield{
  width:34px;height:34px;
  border-radius:8px;
  background:var(--navy);
  color:var(--white);
  display:flex;align-items:center;justify-content:center;
  font-size:17px;
  flex-shrink:0;
}
.logo small{
  display:block;
  font-size:9.5px;
  font-weight:600;
  color:var(--red);
  letter-spacing:1px;
}
.nav-links{
  display:none;
  gap:26px;
  font-size:14px;
  font-weight:600;
  color:var(--text-dark);
}
.nav-links a.active{color:var(--red);}
.header-right{
  display:none;
  align-items:center;
  gap:16px;
}
.header-phone{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:var(--text-dark);
}
.header-phone .icon-badge{
  width:34px;height:34px;border-radius:50%;
  background:var(--gray-bg);
  display:flex;align-items:center;justify-content:center;
  color:var(--navy);
  font-size:15px;
}
.header-phone b{display:block;font-size:14px;color:var(--navy-dark);}
.header-phone span{font-size:11px;color:var(--text-muted);}

.mobile-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.icon-btn{
  width:38px;height:38px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  border:none;
  cursor:pointer;
  font-size:15px;
}
.icon-btn.burger{background:transparent;color:var(--navy-dark);font-size:20px;}
.icon-btn.call{background:var(--red);color:var(--white);}

@media(min-width:1000px){
  .header-inner{padding:16px 0;max-width:1180px;margin:0 auto;}
  .nav-links{display:flex;}
  .header-right{display:flex;}
  .mobile-actions{display:none;}
  .logo{font-size:16px;}
}

/* ============ MOBILE NAV (drawer) ============ */
.mobile-nav{
  display:none;
  position:fixed;
  inset:0 0 0 auto;
  width:min(300px,85vw);
  background:var(--white);
  z-index:60;
  padding:24px;
  flex-direction:column;
  box-shadow:-8px 0 24px rgba(13,42,99,0.12);
  overflow-y:auto;
}
.mobile-nav.open{display:flex;}
.mobile-nav a{
  display:block;
  padding:14px 4px;
  border-bottom:1px solid #eef1f8;
  color:var(--navy-dark);
  font-weight:600;
  font-size:14px;
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero{
  background:linear-gradient(180deg,var(--navy-dark) 0%,var(--navy) 100%);
  padding:34px 0;
  text-align:center;
}
.page-hero h1{
  color:var(--white);
  font-size:24px;
  margin-bottom:6px;
}
.page-hero .crumb{
  color:#9fb0dc;
  font-size:12.5px;
}
.page-hero .crumb span{color:var(--white);}
@media(min-width:1000px){
  .page-hero{padding:52px 0;}
  .page-hero h1{font-size:34px;}
}

/* ============ CTA STRIP ============ */
.cta-strip{
  background:var(--navy-dark);
  padding:32px 0;
}
.cta-strip .container{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:16px;
}
.cta-strip .left{display:flex;align-items:center;gap:16px;}
.cta-strip .icon-circle{
  width:54px;height:54px;border-radius:50%;
  background:var(--navy-light);
  display:flex;align-items:center;justify-content:center;
  color:var(--white);font-size:21px;
  flex-shrink:0;
}
.cta-strip h3{color:var(--white);font-size:18px;}
.cta-strip p{color:#b9c3e0;font-size:13px;max-width:320px;}
.cta-buttons{display:flex;gap:12px;flex-wrap:wrap;justify-content:center;}
@media(min-width:900px){
  .cta-strip .container{flex-direction:row;justify-content:space-between;text-align:left;}
  .cta-strip p{max-width:none;}
}

/* ============ FOOTER ============ */
.site-footer{
  background:var(--navy-dark);
  color:#c3cbe6;
  padding:44px 0 0;
  font-size:13px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:30px;
  padding-bottom:30px;
}
.footer-col h4{
  color:var(--white);
  font-size:14px;
  margin-bottom:14px;
}
.footer-col ul{list-style:none;}
.footer-col li{margin-bottom:9px;}
.footer-col a:hover{color:var(--white);}
.footer-about p{margin:12px 0 16px;color:#9fadd1;line-height:1.6;}
.social-row{display:flex;gap:10px;}
.social-row a{
  width:34px;height:34px;border-radius:50%;
  background:var(--navy-light);
  display:flex;align-items:center;justify-content:center;
  color:var(--white);font-size:14px;
}
.footer-contact li{display:flex;gap:10px;color:#c3cbe6;}
.license-box{
  display:flex;
  align-items:center;
  gap:12px;
  background:var(--navy-light);
  padding:14px;
  border-radius:10px;
  margin-top:6px;
}
.license-box .badge{
  width:38px;height:38px;border-radius:50%;
  background:#d4af37;
  display:flex;align-items:center;justify-content:center;
  font-size:16px;
  flex-shrink:0;
}
.license-box b{display:block;color:var(--white);font-size:12.5px;}
.license-box span{font-size:11px;color:#9fadd1;}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:16px 20px;
  text-align:center;
  font-size:12px;
  color:#8592bd;
}
@media(min-width:900px){
  .footer-grid{grid-template-columns:1.4fr 1fr 1fr 1fr 1fr;gap:24px;}
}
