/* ── Site footer ─────────────────────────────────────────────── */

.site-footer {
  background: var(--primary);
  color: white;
  padding: 4rem 4rem 2rem;
  font-family: "Manrope", sans-serif;
}

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

.site-footer .footer-brand { max-width: 300px; }

.site-footer .footer-logo {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.site-footer .footer-logo span { color: var(--accent); }

.site-footer .footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.site-footer .footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-links li {
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.5;
}

.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer .footer-links a:hover { color: var(--accent); }

.site-footer .footer-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.site-footer .footer-partners img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.site-footer .footer-partners img:hover { opacity: 1; }

.site-footer .footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}

.site-footer .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.site-footer .footer-social a:hover {
  background: #154d8a;
  color: #fff;
  transform: translateY(-2px);
}

.site-footer .footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.site-footer .footer-bottom a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s;
}

.site-footer .footer-bottom a:hover { color: var(--accent); }

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .site-footer .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .site-footer              { padding: 3rem 1.5rem 2rem; }

  .site-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .site-footer .footer-brand { max-width: 100%; }
  .site-footer .footer-logo  { font-size: 1.8rem; }
  .site-footer .footer-partners { gap: 2rem; }
}
