/* ── FAQ Section — Figma pixel-perfect ───────────────────── */
.faq-section {
    padding: 100px 0;
    background: #030410;
}

/* Header */
.faq-section__header { text-align: center; margin-bottom: 60px; }

/* Title — Figma 64px Bold */
.faq-section__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
}
/* Subtitle — 20px Regular #d9d9d9 */
.faq-section__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #d9d9d9;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto;
}

/* FAQ list */
.faq-list { max-width: 964px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.12); }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.12); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 28px 0;
    gap: 24px;
}
.faq-question-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.45;
    flex: 1;
}
.faq-icon {
    width: 28px; height: 28px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: transform .3s ease;
}
.faq-icon svg { width: 18px; height: 18px; }
.faq-item.open .faq-icon { transform: rotate(180deg); }

/* Answer */
.faq-answer { padding: 0 0 28px; }
.faq-answer, .faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #919191;
    line-height: 1.7;
}

@media(max-width:768px) {
    .faq-section { padding: 64px 0; }
    .faq-section__title { font-size: clamp(36px, 8vw, 48px); }
    .faq-question-text { font-size: 17px; }
}
