/* ══════════════════════════════════════════════
   STELNEO — FAQ
   Aligné sur la feuille principale
══════════════════════════════════════════════ */

/* ── 1. HEADER ────────────────────────────── */
.faq-header {
  background: var(--bleu);
  padding: 140px var(--page-pad) var(--section-pad);
}

.faq-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: 1px;
  color: var(--beige);
  margin: 18px 0 20px;
}
.faq-title .accent { color: var(--jaune); }

.faq-subtitle {
  max-width: 560px;
  font-size: var(--text-lead);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(244, 238, 223, 0.68);
}

/* ── 2. CONTENU ───────────────────────────── */
.faq-page-content {
  background: var(--beige);
  padding: var(--section-pad) var(--page-pad);
}

.faq-block {
  margin-bottom: 80px;
}
.faq-block:last-of-type { margin-bottom: 0; }

.faq-block-label {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 47, 75, 0.12);
}

.faq-block-num {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  color: var(--jaune);
}

.faq-block-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
  letter-spacing: 0.4px;
  color: var(--bleu);
}

.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 860px;
}

.faq-item { border-bottom: 1px solid rgba(0, 47, 75, 0.10); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--bleu);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--bleu-clair); }

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(0, 47, 75, 0.20);
  border-radius: 50%;
  font-size: 17px;
  font-style: normal;
  color: var(--bleu);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--jaune);
  border-color: var(--jaune);
  color: var(--bleu);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  max-width: 700px;
  padding: 0 0 22px;
  font-size: var(--text-body);
  font-weight: 300;
  line-height: 1.8;
  color: var(--gris);
}

/* CTA */
.faq-cta {
  margin-top: 88px;
  background: var(--bleu);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 64px);
  text-align: center;
}

.faq-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--beige);
  margin-bottom: 12px;
}

.faq-cta p {
  font-size: var(--text-lead);
  font-weight: 300;
  color: rgba(244, 238, 223, 0.68);
  margin-bottom: 36px;
}

.faq-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 3. RESPONSIVE ────────────────────────── */
@media (max-width: 900px) {
  .faq-header {
    padding-top: 110px;
    padding-bottom: 88px;
  }
}

@media (max-width: 640px) {
  .faq-header {
    padding: 96px var(--page-pad) 52px;
  }

  .faq-title {
    font-size: clamp(44px, 12vw, 60px);
  }

  .faq-page-content {
    padding: 72px var(--page-pad) 80px;
  }

  .faq-block {
    margin-bottom: 56px;
  }

  .faq-cta {
    padding: 40px 24px;
  }

  .faq-cta-btns {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }

  .faq-cta-btns .btn-primary,
  .faq-cta-btns .btn-outline-dark { text-align: center; }
}

@media (max-width: 400px) {
  .faq-title { font-size: 38px; }
  .faq-block-num { font-size: 32px; }
  .faq-block-title { font-size: 24px; }
}
