.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(20, 28, 58, 0.1);
  background: rgba(255, 255, 255, 0.62);
  color: #53607a;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.footer-inner {
  width: min(100% - 40px, 1500px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  color: #071433;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.footer-copy {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
}

.footer-nav a {
  color: #53607a;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--primary);
}