/* ── Footer ── */
.footer {
  padding: 4rem 0 2rem;
  background: #FFFFFF;
  border-top: 3px solid #0F3D4C;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: #475569;
  line-height: 1.6;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #E5E7EB;
}

.footer-bottom p {
  color: #475569;
  margin: 0;
}

.footer-legal-note {
  margin-top: 0.5rem !important;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #475569 !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .footer-logos {
    justify-content: center;
    gap: 0.7rem;
  }
}
