.site-footer {
  background: #0a0f24;
  padding: 60px 0 40px;
  border-top: 1px solid rgba(139, 233, 253, 0.05);
}
.site-footer__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.site-footer__logo img {
  max-height: 44px;
  width: auto;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.footer-menu a {
  color: #d7dcec;
  font-size: 13px;
  transition: color 0.2s ease;
}
.footer-menu a:hover {
  color: #8be9fd;
}

.site-footer__disclaimer-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
}
.site-footer__disclaimer-text {
  color: #8892b0;
  font-size: 14px;
  line-height: 1.6;
  max-width: 760px;
  margin: 0;
}
.site-footer__logos {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.site-footer__logos img {
  max-height: 32px;
  width: auto;
  filter: grayscale(1) brightness(1.2);
  opacity: 0.9;
  transition:
    opacity 0.2s ease,
    filter 0.2s ease;
}
.site-footer__logos a:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}
.site-footer__copyright {
  color: #5e6b8a;
  font-size: 14px;
  margin-top: 6px;
}

@media (max-width: 600px) {
  .footer-menu {
    gap: 18px;
  }
  .site-footer {
    padding: 40px 0 28px;
  }
}
