.site-footer {
  background: linear-gradient(to bottom, #1c1c24, #14141b);
  color: #c9c9d1;
  padding: 48px 24px 32px;
  margin-top: 64px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
}
.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-column a {
  display: block;
  font-size: 14px;
  color: #b3b3bd;
  text-decoration: none;
  margin: 6px 0;
  transition: color 0.15s ease;
}
.footer-column a:hover {
  color: #ffffff;
}
.footer-legal {
  max-width: 1200px;
  margin: 32px auto 0;
  font-size: 12px;
  color: #8f8f99;
  line-height: 1.6;
}
.footer-legal p {
  margin: 8px 0;
}
