/* ── HERO ── */
.pdlr-faq-hero { min-height: 42vh; }
.pdlr-faq-hero-bg {
  background:
    linear-gradient(160deg, rgba(37,113,130,0.92) 0%, rgba(37,113,130,0.75) 60%, rgba(37,113,130,0.4) 100%),
    var(--pdlr-wave) center/cover no-repeat;
}

/* ── CONTENU ── */
.pdlr-faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.pdlr-faq-group { margin-bottom: 3rem; }

.pdlr-faq-group-title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

/* ── ACCORDION ── */
.pdlr-faq-item {
  border-bottom: 1px solid rgba(13,34,51,0.1);
}

.pdlr-faq-item:first-of-type { border-top: 1px solid rgba(13,34,51,0.1); }

.pdlr-faq-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
  user-select: none;
  transition: color 0.2s;
}

.pdlr-faq-question::-webkit-details-marker { display: none; }
.pdlr-faq-question::marker { display: none; }

.pdlr-faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s;
}

details[open] > .pdlr-faq-question { color: var(--teal); }
details[open] > .pdlr-faq-question::after {
  content: '−';
  transform: none;
}

.pdlr-faq-answer {
  padding: 0 1rem 1.25rem 0;
  animation: pdlrFadeUp 0.2s ease both;
}

.pdlr-faq-answer p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--slate);
  margin-bottom: 0.6rem;
}

.pdlr-faq-answer p:last-child { margin-bottom: 0; }

.pdlr-faq-answer a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(42,127,111,0.3);
}

.pdlr-faq-answer strong { font-weight: 600; color: var(--navy); }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .pdlr-faq-question { font-size: 0.88rem; }
}
