:root{
  --primary-color:#8e44ad;
  --secondary-color:#9b59b6;
  --accent-color:#f39c12;
}

.site-footer{
  margin-top:auto;
  background: linear-gradient(180deg, #2d0e5b 0%, #3f1443 100%);
  color:#fff;
  padding: 26px 16px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.footer-wrap{
  max-width:1200px;
  margin:0 auto;
}

.footer-top{
  display:flex;
  gap:18px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}

.footer-brand{
  display:flex;
  gap:12px;
  align-items:center;
  min-width:240px;
}

.footer-logo img{
  width:52px;
  height:52px;
  border-radius:14px;
  object-fit:cover;
  box-shadow:0 12px 26px rgba(0,0,0,.22);
  display:block;
}

.footer-brand-text strong{
  display:block;
  font-weight:900;
  font-size:1.1rem;
  line-height:1.1;
}

.footer-brand-text span{
  display:block;
  opacity:.85;
  margin-top:4px;
  font-size:.98rem;
  line-height:1.2;
}

.footer-links{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.footer-links a{
  text-decoration:none;
  color:#fff;
  font-weight:900;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  transition:.18s ease;
  white-space:nowrap;
}

.footer-links a:hover{
  background:rgba(255,255,255,.12);
  transform: translateY(-1px);
}

.footer-cta{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-end;
  min-width:260px;
}

.footer-social{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.footer-social a{
  width:40px;
  height:40px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#fff;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  transition:.18s ease;
}

.footer-social a:hover{
  background:rgba(255,255,255,.12);
  transform: translateY(-1px);
}

.footer-bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.14);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  opacity:.92;
  font-size:.95rem;
}

.footer-legal{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.footer-legal a{
  text-decoration:none;
  color:#fff;
  font-weight:800;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  transition:.18s ease;
  white-space:nowrap;
}

.footer-legal a:hover{
  background:rgba(255,255,255,.12);
  transform: translateY(-1px);
}

@media (max-width:720px){
  .footer-links{ justify-content:flex-start; }
  .footer-cta{ align-items:flex-start; }
  .footer-social{ justify-content:flex-start; }
  .footer-bottom{ justify-content:flex-start; }
  .footer-legal{ justify-content:flex-start; }
}
