.site-footer {
  position: relative;
  z-index: 5;
  margin: 42px auto 104px;
  width: min(1120px, calc(100% - 32px));
  padding: 0;
  color: #5f6f8a;
  font-size: 13px;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 16px 18px;
  border: 1px solid rgba(130, 172, 232, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(246,250,255,0.92));
  box-shadow: 0 18px 46px rgba(15, 76, 148, 0.10);
  backdrop-filter: blur(16px);
}

.site-footer__inner > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: #0f1f3d;
  font-weight: 800;
  letter-spacing: 0;
}

.site-footer__inner > span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0ea5ff, #5b57f4);
  box-shadow: 0 0 0 6px rgba(23, 110, 232, 0.10);
}

.site-footer__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #4f6381;
  text-decoration: none;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.site-footer a:hover {
  color: #176ee8;
  background: rgba(23, 110, 232, 0.08);
  transform: translateY(-1px);
}

.site-footer a:focus-visible {
  outline: 2px solid #3376dd;
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .site-footer {
    width: min(100% - 22px, 520px);
    margin: 34px auto 112px;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
  }

  .site-footer__inner > span {
    justify-content: center;
    min-width: 0;
    text-align: center;
  }

  .site-footer__links {
    justify-content: center;
    gap: 4px;
  }

  .site-footer a {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }
}
