.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(135, 70, 235, 0) 16%,
    rgb(135, 70, 235) 110%
  );
}

.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.footer-union {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 1200px;
  opacity: 0.2;
  filter: invert(0.2);
}

.footer-inner {
  position: relative;
  z-index: 2;
  padding: 60px 32px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.footer-logo img {
  max-height: 52px;
  width: auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.footer-nav {
  margin-bottom: 0;
}

.footer-menu {
  display: flex;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-menu li a {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: white;
  transition: color 0.3s;
}

.footer-menu li a:hover {
  color: #ad78ff;
}

.footer-disclaimer {
  text-align: center;
}

.disclaimer-title {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: white;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.disclaimer-text {
  font-family: "Syne", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: white;
  margin: 0 0 12px;
  line-height: 1.79;
}

.footer-logos-row {
  display: flex;
  gap: 23px;
  align-items: center;
  justify-content: center;
}

.footer-logos-row img {
  height: 28px;
  width: auto;
}

.footer-copyright {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-align: center;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-inner {
    padding: 64px 32px;
    gap: 32px;
  }

  .footer-menu {
    gap: 24px;
    flex-wrap: wrap;
  }
}
