/* Intro */
.faq-intro {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin: 0 0 40px;
}
.faq-intro .faq-accent { color: var(--orange); font-weight: 600; }

/* Sections thématiques */
.faq-section { margin-bottom: 44px; }

.faq-section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-section-title i { color: var(--orange); font-size: 20px; }
.faq-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Accordion */
.faq-list { margin-top: 0; }
.faq-item {
  background: var(--card);
  border: 1px solid #ececec;
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #1d1d1d;
  cursor: pointer;
  list-style: none;
  user-select: none;
  margin: 0;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item[open] > .faq-q::after { transform: rotate(180deg); }
.faq-item[open] > .faq-q { color: var(--orange); }
.faq-a {
  padding: 0 20px 18px;
  font-size: 14px;
  color: #444;
  line-height: 1.75;
  border-top: 1px solid #f0f0f0;
  margin: 0 20px;
}
.faq-a a { color: var(--orange); text-decoration: underline; }
.faq-a a:hover { color: var(--orange-deep); }

/* CTA de bas de page */
.faq-cta {
  background: var(--card);
  border: 1px solid #ececec;
  border-left: 4px solid var(--orange);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.faq-cta p {
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1d;
  margin: 0;
}
.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--orange);
  color: #1d1d1d;
  padding: 12px 24px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-family: inherit;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}
.faq-cta-btn:hover { background: #f4ae44; transform: translateY(-1px); }
.faq-cta-btn i { font-size: 12px; }

@media (max-width: 580px) {
  .faq-q { padding: 14px 16px; font-size: 14px; }
  .faq-a { padding: 0 16px 16px; margin: 0 16px; }
  .faq-section-title { font-size: 20px; }
  .faq-cta { flex-direction: column; align-items: flex-start; padding: 20px; }
}
