.faq-page {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 2rem 8rem;
}

/* Header */
.faq-header {
  margin-bottom: 4rem;
}

.faq-header h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.faq-sub {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
}

/* Catégorie */
.faq-category {
  margin-bottom: 3rem;
}

.faq-category-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

/* Item accordéon */
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:first-of-type {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

/* Animation hauteur avec CSS grid trick */
.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item[open] .faq-answer-wrap {
  grid-template-rows: 1fr;
}

.faq-answer {
  overflow: hidden;
}

.faq-answer > * {
  padding-bottom: 0.75rem;
}

.faq-answer > *:last-child {
  padding-bottom: 1.4rem;
}

.faq-answer p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.75);
}

.faq-answer ul {
  list-style: disc;
  padding-left: 1.4rem;
}

.faq-answer li {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 0.3rem;
}

/* Hover */
.faq-question:hover {
  color: rgba(0, 0, 0, 0.6);
}

.faq-item[open] .faq-question {
  color: rgba(0, 0, 0, 0.9);
}

/* CTA contact */
.faq-contact-cta {
  margin-top: 4rem;
  padding: 2.5rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.faq-contact-cta p {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
}

.faq-contact-link {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.85) !important;
  border-bottom: 2px solid rgba(0, 0, 0, 0.85);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.faq-contact-link:hover {
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .faq-page {
    padding: 3rem 1rem 5rem;
  }

  .faq-contact-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }
}
