/* ── FAQ Page ─────────────────────────────────────────────── */

.faq-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}

/* Hero */
.faq-page__hero {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-page__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold, #c4a24e);
    margin: 0 0 0.5rem;
    letter-spacing: 0.05em;
}

.faq-page__subtitle {
    color: var(--text-muted, #7a7870);
    font-size: 1.1rem;
    margin: 0;
}

/* Section */
.faq-section {
    margin-bottom: 2.5rem;
}

.faq-section__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary, #e0ddd5);
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color, #2a2a35);
}

/* Accordion Item */
.faq-item {
    background: var(--bg-panel, #13151a);
    border: 1px solid var(--border-color, #252830);
    border-radius: 6px;
    margin-bottom: 0.5rem;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item[open] {
    border-color: var(--gold, #c4a24e);
}

.faq-item__question {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary, #e0ddd5);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    transition: color 0.2s ease;
}

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

.faq-item__question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-muted, #7a7870);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.2s ease, color 0.2s ease;
}

.faq-item[open] > .faq-item__question::after {
    content: '−';
    color: var(--gold, #c4a24e);
}

.faq-item[open] > .faq-item__question {
    color: var(--gold, #c4a24e);
}

.faq-item__question:hover {
    color: var(--gold, #c4a24e);
}

/* Answer */
.faq-item__answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-secondary, #b0ada5);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item__answer p {
    margin: 0 0 0.75rem;
}

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

.faq-item__answer ul,
.faq-item__answer ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.faq-item__answer li {
    margin-bottom: 0.4rem;
}

.faq-item__answer a {
    color: var(--gold, #c4a24e);
    text-decoration: none;
}

.faq-item__answer a:hover {
    text-decoration: underline;
}

.faq-item__answer strong {
    color: var(--text-primary, #e0ddd5);
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 768px) {
    .faq-page {
        padding: 1.5rem 0.75rem 3rem;
    }

    .faq-page__title {
        font-size: 2rem;
    }

    .faq-item__question {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }

    .faq-item__answer {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
}
