.site-footer{
  --f-ink:#111;                 
  background:#111;
  color:#fff;
  width:100%;
}
.site-footer a{ color:#fff; text-decoration:none; }
.site-footer a:hover,
.site-footer a:focus{ color:#fff; opacity:.95; text-decoration:none; }
.footer-inner{
  padding:32px clamp(16px,3.5vw,48px) 20px;
  max-width:none;
}
.footer-main{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap:clamp(16px,2.4vw,28px);
  align-items:start;
  padding:18px;
  border-radius:16px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 10px 24px rgba(0,0,0,.28);
}
.f-col{ display:flex; flex-direction:column; gap:12px; }
.f-title{
  margin:0 0 6px 0;
  font-weight:900;
  font-size:20px;
  letter-spacing:.2px;
  color:#fff;
}
.f-h{
  margin:2px 0 8px;
  font-weight:800;
  font-size:17px;          
  color:#fff;              
}
.f-list{ list-style:none; margin:0; padding:0; display:grid; gap:8px; }
.f-item{ display:flex; gap:10px; align-items:flex-start; font-weight:700; font-size:14px; }
.f-item svg{ width:18px; height:18px; flex:0 0 18px; color:#fff; }
.f-actions,
.f-social{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:8px;
  align-items:center;
}
.footer-btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:40px; padding:0 16px; border-radius:999px;
  font-weight:800; font-size:14px; letter-spacing:.2px;
  background:#fff; color:var(--f-ink) !important;
  border:1px solid rgba(0,0,0,.10);
  text-decoration:none !important;
  transition:transform .06s ease, background .2s ease, box-shadow .2s ease;
  white-space:nowrap;            
  min-width:0;                   
}
.footer-btn:hover{ background:#f3f3f3; box-shadow:0 8px 24px rgba(0,0,0,.35); }
.footer-btn:active{ transform:translateY(1px); }
.f-actions .footer-btn,
.f-social .footer-btn{
  flex:1 1 calc(50% - 8px);
  min-width: calc(50% - 8px);
}
.f-links{ list-style:none; margin:0; padding:0; display:grid; gap:8px; }
.f-links a{ font-weight:700; font-size:14px; opacity:.96; }
.f-links a:hover{ opacity:1; }
.footer-sub{
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:12px;
  align-items:center;
  padding:16px 6px 0;
}
.sub-left{ font-size:14px; opacity:.9; }
.sub-links{ list-style:none; margin:0; padding:0; display:flex; gap:14px; }
.sub-links a{ font-size:14px; opacity:.9; }
.sub-links a:hover{ opacity:1; }
.sub-pay{ display:flex; gap:12px; align-items:center; }
.pay{ display:inline-flex; align-items:center; justify-content:center; }
.pay img{ height:24px; width:auto; display:block; }
@media (min-width: 961px) {
  
  .f-actions .footer-btn,
  .f-social .footer-btn {
    flex: 0 0 auto;            
    min-width: 140px;          
    padding: 0 14px;           
    height: 38px;              
    font-size: 14px;
    justify-content: center;   
  }
  .f-actions { justify-content: flex-start; }
  .f-social  { justify-content: flex-start; }
}
@media (max-width:1100px){
  .footer-main{ grid-template-columns: 1fr 1fr; }
}
@media (max-width:620px){
  .footer-inner{ padding:24px 16px 14px; }
  .footer-main{ grid-template-columns:1fr; padding:14px; }
  .footer-sub{ grid-template-columns:1fr; text-align:center; }
  .sub-links{ justify-content:center; flex-wrap:wrap; }
  .sub-pay{ justify-content:center; }
}