@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root{
  --red:#C41A1A;
  --red-hover:#AD1515;
  --red-light:#F8EEEE;
  --navy:#0B1F3A;
  --navy-hover:#0d2647;
  --black:#0F0F0F;
  --grey-800:#2C2C2C;
  --grey-600:#5C5C5C;
  --grey-500:#767676;
  --grey-400:#9A9A9A;
  --grey-200:#E0E0E0;
  --grey-100:#F0F0F0;
  --grey-50:#F8F8F8;
  --white:#FFFFFF;
  --f:'Inter',sans-serif;
  --max:1200px;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:var(--f);background:var(--white);color:var(--black);overflow-x:hidden;-webkit-font-smoothing:antialiased;font-size:15px;line-height:1.6;}

/* ── BUTTONS ── */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:6px;padding:9px 20px;border-radius:3px;font-family:var(--f);font-weight:600;font-size:13px;letter-spacing:.01em;text-decoration:none;cursor:pointer;border:none;transition:all .15s;}
.btn-red{background:var(--red);color:#fff;} .btn-red:hover{background:var(--red-hover);}
.btn-navy{background:var(--navy);color:#fff;} .btn-navy:hover{background:var(--navy-hover);}
.btn-outline{background:transparent;color:var(--grey-800);border:1px solid var(--grey-200);} .btn-outline:hover{border-color:var(--grey-600);color:var(--black);}
.btn-outline-red{background:transparent;color:var(--red);border:1px solid var(--red);} .btn-outline-red:hover{background:var(--red-light);}
.btn-white{background:#fff;color:var(--navy);font-weight:700;} .btn-white:hover{background:var(--grey-100);}
.btn-lg{padding:13px 28px;font-size:14px;}
.btn-sm{padding:7px 16px;font-size:12px;}

/* ── NAV ── */
nav{position:fixed;top:0;left:0;right:0;z-index:100;background:var(--white);border-bottom:1px solid var(--grey-200);}
.nav-top{background:var(--navy);padding:7px 6%;display:flex;align-items:center;justify-content:flex-end;gap:2rem;}
.nav-top a{font-size:11px;font-weight:500;color:rgba(255,255,255,.5);text-decoration:none;letter-spacing:.04em;transition:color .2s;}
.nav-top a:hover{color:#fff;}
.nav-emergency{color:#fff!important;font-weight:700!important;font-size:12px!important;}
.nav-main{display:flex;align-items:center;justify-content:space-between;padding:0 6%;height:60px;max-width:calc(var(--max) + 12%);margin:0 auto;}
.logo{display:flex;align-items:center;gap:10px;text-decoration:none;}
.logo-text{display:flex;flex-direction:column;line-height:1;}
.logo-sos{font-weight:800;font-size:17px;color:var(--black);letter-spacing:2px;}
.logo-sub{font-weight:600;font-size:8px;color:var(--grey-400);letter-spacing:4px;text-transform:uppercase;border-top:1.5px solid var(--red);padding-top:2px;margin-top:2px;}
.nav-links{display:flex;gap:0;list-style:none;}
.nav-links li a{display:block;padding:0 16px;height:60px;line-height:60px;font-size:13px;font-weight:500;color:var(--grey-600);text-decoration:none;letter-spacing:.01em;border-bottom:2px solid transparent;transition:all .2s;}
.nav-links li a:hover,.nav-links li a.active{color:var(--black);border-bottom-color:var(--red);}
.nav-cta{display:flex;align-items:center;gap:.75rem;}

/* ── PAGE HEADER ── */
.page-header{background:var(--navy);padding:80px 6% 60px;margin-top:96px;}
.page-header-inner{max-width:var(--max);margin:0 auto;}
.breadcrumb{display:flex;align-items:center;gap:8px;margin-bottom:1rem;}
.breadcrumb a{font-size:12px;color:rgba(255,255,255,.4);text-decoration:none;transition:color .2s;}
.breadcrumb a:hover{color:rgba(255,255,255,.8);}
.breadcrumb span{font-size:12px;color:rgba(255,255,255,.25);}
.page-header h1{font-size:clamp(28px,3.5vw,44px);font-weight:800;color:#fff;letter-spacing:-1.5px;line-height:1.1;margin-bottom:.75rem;}
.page-header p{font-size:15px;color:rgba(255,255,255,.5);max-width:520px;line-height:1.7;}

/* ── SECTION BASICS ── */
.container{max-width:var(--max);margin:0 auto;padding:0 6%;}
.sec-label{font-size:10px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--red);margin-bottom:.4rem;}
.sec-title{font-size:clamp(24px,2.5vw,34px);font-weight:800;line-height:1.15;letter-spacing:-1px;color:var(--black);margin-bottom:.75rem;}
.sec-title-white{color:#fff;}
.sec-sub{font-size:15px;font-weight:400;line-height:1.75;color:var(--grey-600);max-width:480px;margin-bottom:2.5rem;}

/* ── FOOTER ── */
footer{background:var(--white);border-top:1px solid var(--grey-200);}
.footer-emergency{background:var(--red-light);border-bottom:1px solid rgba(196,26,26,.12);padding:14px 6%;display:flex;align-items:center;gap:1rem;flex-wrap:wrap;}
.footer-emergency p{font-size:12px;font-weight:600;color:var(--red);text-transform:uppercase;letter-spacing:.06em;flex:1;}
.footer-emergency a{font-size:16px;font-weight:800;color:var(--red);text-decoration:none;}
.footer-main{padding:48px 6% 0;max-width:calc(var(--max) + 12%);margin:0 auto;}
.footer-top{display:flex;flex-wrap:wrap;justify-content:space-between;gap:3rem;padding-bottom:2.5rem;margin-bottom:0;border-bottom:1px solid var(--grey-200);}
.footer-brand{max-width:240px;}
.footer-logo{display:flex;align-items:center;gap:10px;margin-bottom:1rem;text-decoration:none;}
.footer-sos{font-size:16px;font-weight:800;color:var(--black);letter-spacing:2px;}
.footer-rsub{font-size:8px;font-weight:600;color:var(--grey-400);letter-spacing:4px;text-transform:uppercase;border-top:1.5px solid var(--red);padding-top:2px;}
.footer-brand p{font-size:12px;color:var(--grey-400);line-height:1.7;}
.footer-col h5{font-size:11px;font-weight:700;color:var(--black);text-transform:uppercase;letter-spacing:.08em;margin-bottom:.9rem;}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:.45rem;}
.footer-col ul a{font-size:13px;color:var(--grey-400);text-decoration:none;transition:color .2s;}
.footer-col ul a:hover{color:var(--black);}
.footer-bottom{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:1rem;padding:20px 6%;border-top:1px solid var(--grey-200);}
.footer-bottom p{font-size:11px;color:var(--grey-400);}
.footer-bottom a{color:var(--grey-400);text-decoration:none;transition:color .2s;}
.footer-bottom a:hover{color:var(--red);}
.pulse{width:6px;height:6px;border-radius:50%;background:var(--red);animation:pulse 2s infinite;flex-shrink:0;display:inline-block;}
@keyframes pulse{0%,100%{opacity:1;}50%{opacity:.35;}}

/* ── UTILITIES ── */
.divider{width:40px;height:2px;background:var(--red);margin-bottom:1.5rem;}
.tag{display:inline-flex;align-items:center;background:var(--red-light);border-left:2px solid var(--red);padding:4px 10px;font-size:11px;font-weight:600;color:var(--red);letter-spacing:.06em;text-transform:uppercase;}
.card-grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;background:var(--grey-200);border:1px solid var(--grey-200);border-radius:4px;overflow:hidden;}
.card-grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--grey-200);border:1px solid var(--grey-200);border-radius:4px;overflow:hidden;}
.card-grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--grey-200);border:1px solid var(--grey-200);border-radius:4px;overflow:hidden;}
.base-card{background:var(--white);padding:1.75rem;transition:background .15s;}
.base-card:hover{background:var(--grey-50);}
.two-col{display:flex;flex-wrap:wrap;gap:5rem;align-items:flex-start;}
.two-col-left{flex:1 1 360px;}
.two-col-right{flex:1 1 360px;}

@media(max-width:900px){
  .nav-top{display:none;}
  .nav-links{display:none;}
  .page-header{margin-top:60px;}
  .card-grid-3{grid-template-columns:repeat(2,1fr);}
  .card-grid-4{grid-template-columns:repeat(2,1fr);}
  .two-col{gap:2.5rem;}
}
@media(max-width:600px){
  .card-grid-2,.card-grid-3,.card-grid-4{grid-template-columns:1fr;}
}
