.site-footer {
  display: block;
  background: #07090d;
  color: #fff;
  border-top: 4px solid #0047ff;
  padding: 60px 40px 40px;
  font-family: Inter, Arial, sans-serif;
}

.site-footer-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer-logo {
  color: #fff;
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  text-decoration: none;
}

.site-footer-logo span { color: #ffd600; }

.site-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 24px;
}

.site-footer-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: #ffd600;
}

.site-footer-meta {
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.4;
  text-align: right;
}

@media (max-width: 900px) {
  .site-footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .site-footer-meta { text-align: center; }
}

@media (max-width: 600px) {
  .site-footer { padding: 48px 20px 32px; }
  .site-footer-links { gap: 0 18px; }
  .site-footer-links a { padding: 10px 0; }
}
