footer {
  background: #060e1a;
  color: var(--blue-muted);
  padding: 4rem 5% 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size:0.9rem; line-height:1.7; max-width:260px; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-col a,
.footer-col span {
  display: block;
  color: var(--blue-muted);
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom .logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--white);
}
.footer-bottom .logo-blue { color: var(--blue); }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
