.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  margin-top: 0;
}
.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand {}
.footer-brand .logo { color: #fff; margin-bottom: 20px; }
.footer-brand .logo-mark { background: var(--accent-grad); }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 300px;
  color: rgba(255,255,255,0.5);
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: all 0.3s;
  display: inline-block;
}
.footer-col a:hover { color: #fff; transform: translateX(4px); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
