.footer {
  background: #111827;
  color: #fff;
  padding: 48px 0 32px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
}
.footer__logo-icon {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  color: rgba(255,255,255,.6);
  font-weight: 600;
  font-size: .9rem;
  transition: color .15s;
}
.footer__links a:hover { color: #fff; }
.footer__copy {
  color: rgba(255,255,255,.35);
  font-size: .82rem;
  font-weight: 600;
}
