/* ═══════════════════════════════════════════
   Bloc "Ce qu'en disent les IA"
   Inséré avant #ql-footer
   ═══════════════════════════════════════════ */

.ia-block {
  background: #2A3836;
  padding: 3.5rem 2rem 2.5rem;
  text-align: center;
}

/* Filet haut — séparation avec la section précédente */
.ia-rule--top {
  max-width: 60px;
  margin: 0 auto 2.5rem;
  background: rgba(202, 213, 211, 0.15);
}

/* ── Eyebrow ── */
.ia-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4A6B61;
  margin: 0 0 0.7rem;
}

/* ── Titre ── */
.ia-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin: 0 auto 1.8rem;
  max-width: 520px;
}

/* ── Bouton copier le prompt ── */
.ia-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(202, 213, 211, 0.85);
  background: rgba(202, 213, 211, 0.06);
  border: 1px solid rgba(202, 213, 211, 0.15);
  cursor: pointer;
  transition: all 0.25s;
  margin-bottom: 1.6rem;
}
.ia-copy-btn:hover {
  background: rgba(202, 213, 211, 0.12);
  border-color: rgba(202, 213, 211, 0.25);
  color: #fff;
}
.ia-copy-btn svg {
  width: 13px;
  height: 13px;
  opacity: 0.5;
}

/* ── Logos IA ── */
.ia-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1.6rem;
}

.ia-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  opacity: 0.3;
  transition: opacity 0.25s;
}
.ia-logo img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Cliquables (?q=) */
a.ia-logo {
  opacity: 0.4;
  text-decoration: none;
}
a.ia-logo:hover { opacity: 0.85; }

/* Non-cliquables */
span.ia-logo:hover { opacity: 0.5; }

/* Ajustements taille individuels */
.ia-logo--gemini  { width: 24px; height: 24px; }
.ia-logo--copilot { width: 20px; height: 20px; }

/* ── Disclaimer ── */
.ia-disclaimer {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  line-height: 1.55;
  color: rgba(202, 213, 211, 0.45);
  max-width: 440px;
  margin: 0 auto 2rem;
}

/* ── Filet ── */
.ia-rule {
  border: none;
  height: 1px;
  background: rgba(202, 213, 211, 0.08);
  max-width: 200px;
  margin: 0 auto 1.2rem;
}

/* ── Lien LLMs ── */
.ia-llm-link {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  margin: 0;
}
.ia-llm-link a {
  color: rgba(202, 213, 211, 0.3);
  text-decoration: none;
  border-bottom: 1px solid rgba(202, 213, 211, 0.1);
  transition: all 0.25s;
}
.ia-llm-link a:hover {
  color: rgba(202, 213, 211, 0.6);
  border-color: rgba(202, 213, 211, 0.3);
}

/* ── Toast ── */
.ia-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #4A6B61;
  color: #fff;
  padding: 0.55rem 1.3rem;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9999;
}
.ia-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════
   MOBILE ≤ 768px
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .ia-block { padding: 2.8rem 1.4rem 2rem; }
  .ia-logos  { gap: 1.1rem; }
  .ia-logo   { width: 19px; height: 19px; }
  .ia-logo--gemini  { width: 21px; height: 21px; }
  .ia-logo--copilot { width: 17px; height: 17px; }
}