/* ============================================
   Footer minimaliste IILMIQ Labs
   Layout 2-row stable, sans chevauchements
   ============================================ */

.site-footer {
  position: relative;
  z-index: 5;
  background: linear-gradient(180deg, rgba(2, 8, 23, 0.4) 0%, rgba(2, 8, 23, 0.9) 100%);
  border-top: 1px solid rgba(96, 165, 250, 0.1);
  padding: 32px 24px 28px;
  /* Padding right pour laisser de la place à la bulle IRIS (60px + 24px margin) */
  padding-right: clamp(24px, 5vw, 110px);
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  color: rgba(200, 220, 255, 0.55);
  font-size: 13px;
  margin-top: 80px;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}

/* ── Ligne 1 : brand + copyright ── */
.site-footer-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(200, 220, 255, 0.45);
}
.site-footer-left .footer-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: rgba(240, 246, 255, 0.85);
  letter-spacing: -0.01em;
}

/* ── Ligne 2 : liens légaux ── */
.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  justify-content: center;
}
.site-footer-links a,
.site-footer-links button {
  color: rgba(200, 220, 255, 0.55);
  text-decoration: none;
  font-size: 13px;
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.site-footer-links a:hover,
.site-footer-links button:hover {
  color: #93c5fd;
}

.site-footer-divider {
  color: rgba(255, 255, 255, 0.15);
  user-select: none;
}

/* ── Desktop : 2 lignes mais largeur libre ── */
@media (min-width: 760px) {
  .site-footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    gap: 12px 32px;
  }
  .site-footer-left,
  .site-footer-links {
    justify-content: flex-start;
  }
  .site-footer-links {
    justify-content: flex-end;
  }
}

/* ── Mobile très étroit : encore plus compact ── */
@media (max-width: 480px) {
  .site-footer {
    padding: 24px 18px;
    padding-right: 80px; /* place pour bulle IRIS */
    font-size: 12px;
  }
  .site-footer-links {
    gap: 6px 14px;
  }
  .site-footer-links a,
  .site-footer-links button {
    font-size: 12px;
  }
}
