/**--------------------------------------------------------------
    FAQ — accordéon <details>/<summary> (accessible, sans JS)
    Section de la page d'accueil, thème sombre (aligné pricing/étapes).
--------------------------------------------------------------*/
.faq-list {
    max-width: 820px;
    margin-inline: auto;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md, 12px);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.faq-item[open],
.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.faq-item[open] {
    border-color: rgba(255, 201, 0, 0.5);
}

/* L'en-tête cliquable */
.faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    cursor: pointer;
    list-style: none;
    color: #fff;
    font-weight: 700;
}

/* Retire le marqueur natif (triangle) sur tous les navigateurs */
.faq-item__q::-webkit-details-marker {
    display: none;
}

/* Indicateur +/- en jaune */
.faq-item__q::after {
    content: "\002B";
    flex-shrink: 0;
    color: var(--fourth-color);
    font-weight: 700;
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__q::after {
    content: "\2212";
}

.faq-item__q:focus-visible {
    outline: 2px solid var(--fourth-color);
    outline-offset: -2px;
}

.faq-item__a {
    padding: 0 1.4rem 1.3rem;
    color: rgba(255, 255, 255, 0.8);
}
