:root{
  --brand:#00a74f;
  --blue:#0c2b6f;
  --blue-2:#122e7a;
  --ink:#0a0a0a;
  --muted:#5f6b76;
  --line:#e6e8eb;
  --ghost:#f6f7f8;

  --radius:10px;
  --radius-lg:16px;

  --shadow-sm:0 2px 10px rgba(0,0,0,0.05);
  --shadow-md:0 10px 28px rgba(0,0,0,0.14);
  --shadow-lg:0 18px 60px rgba(0,0,0,0.18);

  --wrap:1200px;
  --pad:20px;

  --header-h:70px;
  --divider-h:6px;

  --focus:0 0 0 3px rgba(12,43,111,.18);
}

*{ box-sizing:border-box }
html,body{ height:100% }
body{
  margin:0;
  background:#fff;
  color:var(--ink);
  font:16px/1.5 system-ui,-apple-system,Segoe UI,Roboto,Arial;
}
img{ max-width:100%; display:block }
a{ color:inherit; text-decoration:none }
button,input,select,textarea{ font:inherit }
:focus-visible{ outline:none; box-shadow:var(--focus); border-radius:8px }

.wrap{
  max-width:var(--wrap);
  margin:0 auto;
  padding:0 var(--pad);
}

.hidden{ display:none !important }
.center{ text-align:center }
.muted{ color:var(--muted) }
.line{ height:1px; background:var(--line) }

header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  background:linear-gradient(90deg, #ffffff 0%, #f8faff 100%);
  color:var(--blue);
  border-bottom:1px solid #dfe6ef;
  box-shadow:var(--shadow-sm);
}

.nav{
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:160px;
}

.brand img{
  height:100px;
  width:auto;
  object-fit:contain;
  filter:none;
}

.menu-toggle{
  display:none;
  flex-direction:column;
  gap:4px;
  cursor:pointer;
  padding:10px 10px;
  border-radius:10px;
}
.menu-toggle span{
  width:25px;
  height:3px;
  background:var(--blue);
  border-radius:2px;
  transition:.2s;
}

.links{
  display:flex;
  gap:14px;
  align-items:center;
}

.links a{
  padding:8px 12px;
  border-radius:8px;
  color:var(--blue);
  font-weight:600;
  transition:background .18s ease, color .18s ease;
}

.links a:hover{
  background:rgba(12,43,111,.08);
}

.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:8px;
  border:2px solid var(--blue);
  color:var(--blue);
  font-weight:800;
  white-space:nowrap;
  background:#fff;
  transition:.18s ease;
}

.btn:hover{
  background:var(--blue);
  color:#fff;
}

.btn.dark{
  border-color:var(--blue);
  background:var(--blue);
  color:#fff;
}

.btn.dark:hover{
  filter:brightness(1.05);
}

.btn.ghost{
  border-color:transparent;
  background:rgba(12,43,111,.08);
  color:var(--blue);
}

.btn.ghost:hover{
  background:rgba(12,43,111,.14);
}

.links .btn.dark[href^="tel:"]{ display:inline-block }

.top-divider{
  position:fixed;
  top:var(--header-h);
  left:0; right:0;
  z-index:999;
  height:var(--divider-h);
  background:linear-gradient(90deg, var(--blue) 0%, var(--blue-2) 50%, var(--blue) 100%);
  border-bottom:1px solid #0a1c4b22;
}

main{ margin-top:calc(var(--header-h) + var(--divider-h)) }

.hero{
  position:relative;
  isolation:isolate;
  background:#0b1b47;
  color:#fff;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:center/cover no-repeat;
  opacity:.82;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(12,43,111,.25), rgba(12,43,111,.35));
}

.hero-inner{
  position:relative;
  z-index:2;
  padding:120px 0 120px;
}

.hero h1{
  font-family:"Archivo Black", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  font-size:56px;
  line-height:1.05;
  margin:0 0 12px;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.hero p{
  max-width:60ch;
  color:#dfe7ff;
  margin:0;
}

.section{ padding:36px 0 }

.section h2{
  font-family:"Archivo Black", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  font-size:26px;
  margin:0 0 10px;
  text-align:center;
}

.services{
  background:#0d0d2a;
  position:relative;
  z-index:1;
  padding-top:20px;
  padding-bottom:20px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:10px;
}

.card{
  background:#0f1c3f;
  border:1px solid #081331;
  border-radius:8px;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
  padding:20px;
  display:grid;
  gap:10px;
  color:#fff;
  text-align:center;
}

.card h3{
  margin:2px 0 0;
  font-family:"Archivo Black", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  font-size:18px;
  letter-spacing:.2px;
}

.card p{
  margin:0;
  color:#cfd8ff;
}

.card img{
  height:60px;
  margin:0 auto 10px;
  filter:brightness(0) invert(1);
}

.card .read{
  margin-top:10px;
  border-top:1px solid #2d3a7a;
  padding-top:10px;
}

.read a{
  display:inline-block;
  padding:10px 12px;
  border-radius:6px;
  background:var(--blue);
  color:#fff;
  font-weight:800;
}

.read a:hover{
  filter:brightness(1.06);
}

.news{
  max-width:820px;
  margin:0 auto;
}

.news ul{
  list-style:none;
  padding:0;
  margin:8px 0;
  border:1px solid var(--line);
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
}

.news li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px;
  border-top:1px solid var(--line);
}

.news li:first-child{ border-top:0 }

.news a{
  color:var(--blue);
  font-weight:700;
}

.news a:hover{ text-decoration:underline }

.testi{
  background:#fafbfc;
  color:#000;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:36px 0;
}

.partners{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:40px;
  flex-wrap:wrap;
  margin-top:20px;
}

.partners img{
  height:60px;
  filter:none;
}

.footer-wave{
  display:block;
  width:100%;
  height:auto;
}

footer{
  background:var(--blue);
  color:#fff;
  text-align:center;
  padding:16px 0;
}

footer .footer-links{
  margin-bottom:10px;
}

footer .footer-links a{
  color:#fff;
  margin:0 10px;
  text-decoration:none;
  font-weight:600;
}

footer .footer-links a:hover{
  text-decoration:underline;
}

@media (max-width:1100px){
  .cards{ grid-template-columns:repeat(2,1fr) }
}

@media (max-width:768px){
  .menu-toggle{ display:flex }
  .links{
    position:absolute;
    top:var(--header-h);
    right:0;
    left:0;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    width:100%;
    border-top:1px solid #dfe6ef;
    display:none;
    box-shadow:var(--shadow-sm);
  }

  .links a,
  .links .btn{
    width:100%;
    padding:15px 20px;
    border-radius:0;
    border:none;
    text-align:left;
    color:var(--blue);
    background:transparent;
  }

  .links.show{ display:flex }

  .links .btn.dark[href^="tel:"]{
    background:var(--blue);
    color:#fff;
    border-color:var(--blue);
  }

  .brand img{ height:84px }
  .hero-inner{ padding:86px 0 86px }
  .hero h1{ font-size:40px }
}

@media (max-width:640px){
  .cards{ grid-template-columns:1fr }
  .wrap{ padding:0 16px }
}

@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; scroll-behavior:auto !important }
}
