.site-footer{
  display:block; max-width:1180px; margin:16px auto 20px; background:var(--navy, #0f2149);
  color:#c3cce0; box-shadow:0 2px 8px rgba(15,33,73,0.06); overflow:hidden;
  font-family:"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}
.footer-top{
  padding:40px 20px 28px;
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:30px;
}
.footer-brand .logo-text{
  color:white; font-size:20px; font-weight:900; display:flex; align-items:center; gap:8px;
}
.footer-brand .logo-text svg{width:20px; height:20px; color:#16a34a;}
.footer-brand .logo-text .accent{color:#16a34a;}
.footer-brand .logo-tagline{color:#8b96b5; margin-bottom:14px; font-size:11.5px; margin-top:4px;}
.footer-desc{font-size:12.8px; line-height:1.7; color:#9aa5c2; margin-bottom:16px;}
.footer-social{display:flex; gap:8px;}
.footer-social a{
  width:32px; height:32px; border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,0.08); color:white; transition:background .15s, transform .15s;
}
.footer-social a:hover{background:#16a34a; transform:translateY(-2px);}
.footer-social a svg{width:15px; height:15px;}
.footer-col h4{font-size:14px; font-weight:700; color:white; margin-bottom:16px;}
.footer-col ul{list-style:none; padding:0; margin:0;}
.footer-col ul li{margin-bottom:10px;}
.footer-col ul li a{
  font-size:12.8px; color:#9aa5c2; display:flex; align-items:center; gap:7px;
  transition:color .15s; text-decoration:none;
}
.footer-col ul li a svg{width:13px; height:13px; flex-shrink:0; color:#16a34a;}
.footer-col ul li a:hover{color:white;}
.newsletter-box{background:rgba(255,255,255,0.06); border-radius:10px; padding:16px; margin-top:6px;}
.newsletter-box p{font-size:12px; color:#9aa5c2; margin-bottom:10px; line-height:1.6;}
.newsletter-form{display:flex; gap:6px;}
.newsletter-form input{
  flex:1; border:none; border-radius:6px; padding:9px 10px; font-size:12px;
  background:rgba(255,255,255,0.95);
}
.newsletter-form button{
  background:#16a34a; color:white; border:none; border-radius:6px;
  padding:9px 14px; font-size:12px; font-weight:700; cursor:pointer; flex-shrink:0;
}
.newsletter-form button:hover{background:#128a3e;}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.1);}
.footer-bottom-inner{
  padding:16px 20px;
  display:flex; justify-content:space-between; align-items:center;
  font-size:12px; color:#8b96b5; flex-wrap:wrap; gap:8px;
}
.footer-bottom-links{display:flex; gap:18px;}
.footer-bottom-links a{color:#8b96b5; transition:color .15s; text-decoration:none;}
.footer-bottom-links a:hover{color:white;}

@media (max-width: 768px){
  .site-footer{display:none;}
}