.tp-sti-footer{
  width:100%;
  margin-top:32px;
  padding:20px clamp(16px,4vw,40px);
  background:linear-gradient(135deg,#0c1528,#152746);
  color:#dbe7f8;
  border-top:1px solid rgba(255,255,255,.08);
}
.tp-sti-footer-inner{
  max-width:1440px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.tp-sti-footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.tp-sti-footer-logo{
  width:44px;
  height:44px;
  border-radius:13px;
  display:grid;
  place-items:center;
  color:white;
  font-weight:900;
  background:linear-gradient(135deg,#3476ff,#785cff);
  box-shadow:0 10px 26px rgba(49,111,242,.28);
}
.tp-sti-footer-brand div{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.tp-sti-footer-brand strong{
  color:white;
}
.tp-sti-footer-brand small{
  color:#92a5c1;
}
.tp-sti-footer-contact{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px 18px;
  flex-wrap:wrap;
}
.tp-sti-footer-contact a{
  color:#dbe7f8;
  text-decoration:none;
  min-height:40px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:7px 10px;
  border-radius:9px;
  transition:.18s ease;
}
.tp-sti-footer-contact a:hover{
  background:rgba(255,255,255,.08);
  color:white;
}
@media(max-width:720px){
  .tp-sti-footer{
    margin-top:20px;
    padding-bottom:96px;
  }
  .tp-sti-footer-inner{
    align-items:flex-start;
    flex-direction:column;
  }
  .tp-sti-footer-contact{
    align-items:stretch;
    flex-direction:column;
    width:100%;
  }
  .tp-sti-footer-contact a{
    width:100%;
    background:rgba(255,255,255,.05);
  }
}
