/* FAQ 5 - MINIMAL */
.faq-5 {
  padding: 100px 5%;
  background: color-mix(in srgb, var(--gray-light) 40%, var(--white));
}
.faq-5 .container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-5 .header {
  margin-bottom: 60px;
}
.faq-5 .eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.faq-5 h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary);
}
.faq-5 .faq-item {
  position: relative;
  padding: 30px 24px 30px 28px;
  border-bottom: 1px solid var(--gray-light);
  border-radius: 4px;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
  animation: faq5FadeIn 0.6s ease backwards;
}
.faq-5 .faq-item:first-child {
  border-top: 1px solid var(--gray-light);
}
/* Marqueur d'accent qui grandit au survol */
.faq-5 .faq-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--secondary);
  border-radius: 3px;
  transform: translateY(-50%);
  transition: height 0.35s ease;
}
.faq-5 .faq-item:hover {
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  transform: translateX(6px);
  border-color: transparent;
}
.faq-5 .faq-item:hover::before {
  height: 62%;
}
/* Apparition en cascade */
.faq-5 .faq-item:nth-child(1) {
  animation-delay: 0.05s;
}
.faq-5 .faq-item:nth-child(2) {
  animation-delay: 0.12s;
}
.faq-5 .faq-item:nth-child(3) {
  animation-delay: 0.19s;
}
.faq-5 .faq-item:nth-child(4) {
  animation-delay: 0.26s;
}
.faq-5 .faq-item:nth-child(5) {
  animation-delay: 0.33s;
}
.faq-5 .faq-item:nth-child(6) {
  animation-delay: 0.4s;
}
.faq-5 .faq-item:nth-child(7) {
  animation-delay: 0.47s;
}
.faq-5 .faq-item:nth-child(8) {
  animation-delay: 0.54s;
}
.faq-5 .faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.faq-5 .faq-item p {
  color: var(--gray-dark);
  line-height: 1.7;
}

@keyframes faq5FadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-5 .faq-item,
  .faq-5 .faq-item::before {
    animation: none;
    transition: none;
  }
}

/* ── TITRES : couleur de survol explicite (CLAUDE.md §4.13) ──────────
   Le main.css des themes stylise les balises Hn, hover compris. Chaque
   titre reprend ici sa couleur de base pour neutraliser cet heritage. */
.faq-5 .faq-item h3:hover,
.faq-5 h2:hover {
  color: var(--primary);
}
