.site-footer {
  background: linear-gradient(180deg, #071633 0%, #0d2d5c 100%);
  color: #f9fbff;
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
}
.footer-brand p {
  max-width: 420px;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin: 0;
}
.social-list {
  display: flex;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
}
.social-list li {
  list-style: none;
}
.social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: transform 0.2s ease, background 0.2s ease;
}
.social-list a:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.soc-fb { background: #1877f2; }
.soc-ig { background: #e4405f; }
.soc-yt { background: #ff0000; }
.soc-ln { background: #0a66c2; }
nav h4,
.footer-contact h4,
.footer-links h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-links,
.footer-contact p {
  color: rgba(255,255,255,0.79);
}
.footer-links a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
}
.footer-links a:hover {
  color: #ffffff;
}
.footer-links li,
.footer-contact p {
  margin-bottom: 0.8rem;
}
.footer-contact a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
}
.footer-payments {
  margin-top: 1rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 1.25rem;
  color: rgba(255,255,255,0.66);
  text-align: center;
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .site-footer {
    padding: 2.5rem 0 1.5rem;
  }
  .footer-brand p {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    gap: 1rem;
  }
  .social-list {
    gap: 0.5rem;
  }
  .social-list a {
    width: 42px;
    height: 42px;
  }
}
