.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 44px;
  padding: 28px 16px 18px;
  color: #dbeafe;
  background:
    radial-gradient(circle at 15% 0%, rgba(14, 165, 233, 0.22), transparent 34%),
    linear-gradient(135deg, #061225 0%, #071b34 52%, #05101f 100%);
  border-top: 1px solid rgba(96, 165, 250, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.1), transparent);
}

.site-footer .footer-shell {
  position: relative;
  z-index: 1;
  width: min(94%, 1160px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr auto auto;
  align-items: center;
  gap: 28px;
}

.site-footer .footer-brand {
  max-width: 430px;
}

.site-footer .footer-logo {
  display: inline-flex;
  margin-bottom: 8px;
  color: #60a5fa;
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.site-footer .footer-brand p,
.site-footer .footer-bottom p {
  margin: 0;
  color: #9fb0c8;
  font-size: 14px;
  line-height: 1.5;
}

.site-footer .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-footer .footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(125, 211, 252, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: #e0f2fe;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
  box-shadow: none;
}

.site-footer .footer-links a:hover {
  color: #ffffff;
  border-color: rgba(96, 165, 250, 0.7);
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.22),
    rgba(6, 182, 212, 0.18)
  );

  transform: translateY(-2px);
  box-shadow:
    0 8px 18px rgba(37, 99, 235, 0.22),
    0 0 12px rgba(34, 211, 238, 0.12);

  backdrop-filter: blur(6px);
}

.site-footer .footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
}

.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(125, 211, 252, 0.28);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition:
  transform 0.25s ease,
  background 0.25s ease,
  border-color 0.25s ease,
  color 0.25s ease,
  box-shadow 0.25s ease;
}

.site-footer .footer-social svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.site-footer .footer-social a:hover {
  transform: translateY(-2px);
  border-color: #67e8f9;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  box-shadow: 0 12px 24px rgba(8, 145, 178, 0.28);
}

.site-footer .footer-bottom {
  position: relative;
  z-index: 1;
  width: min(94%, 1160px);
  margin: 20px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

@media (max-width: 820px) {
  .site-footer {
    padding-top: 24px;
  }

  .site-footer .footer-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 18px;
  }

  .site-footer .footer-brand {
    max-width: 620px;
  }

  .site-footer .footer-social {
    justify-content: center;
  }

  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .site-footer .footer-links {
    gap: 7px;
    padding: 0;
  }

  .site-footer .footer-links a {
    min-height: 34px;
    padding: 7px 9px;
    font-size: 13px;
  }

  .site-footer .footer-social a {
    width: 36px;
    height: 36px;
  }
}
