.site-footer {
  background: #020617;
  color: rgba(226, 232, 240, 0.85);
  position: relative;
  overflow: hidden;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.site-footer::before {
  top: -160px;
  left: -120px;
}

.site-footer::after {
  bottom: -200px;
  right: -60px;
}

.site-footer .footer-body {
  padding: 48px 20px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  align-items: flex-start;
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  width: 130px;
  height: auto;
  object-fit: contain;
}

.footer-logo-col p {
  margin: 0;
  color: rgba(226, 232, 240, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.footer-links-col strong,
.footer-social-col strong {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: rgba(226, 232, 240, 0.9);
}

.footer-links-col a {
  color: rgba(226, 232, 240, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-col a:hover {
  color: #93c5fd;
}

.footer-social-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: grid;
  place-items: center;
  color: rgba(226, 232, 240, 0.9);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
  color: #93c5fd;
}

.footer-contact {
  margin: 0;
  font-size: 13px;
  color: rgba(226, 232, 240, 0.7);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(226, 232, 240, 0.6);
}

@media (max-width: 600px) {
  .footer-bottom {
    justify-content: center;
  }
}
