.faq {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: border-color var(--t-fast);
}

.faq__item.open {
    border-color: rgba(249, 115, 22, 0.25);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    padding: var(--s-5) var(--s-6);
    cursor: pointer;
    font-size: var(--fz-base);
    font-weight: 600;
    color: var(--text-1);
    user-select: none;
    -webkit-user-select: none;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
}

.faq__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--t-fast), transform var(--t-normal);
}

.faq__item.open .faq__icon {
    background: rgba(249, 115, 22, 0.15);
    transform: rotate(45deg);
}

.faq__icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-2);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

.faq__item.open .faq__icon svg {
    stroke: var(--accent);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer-inner {
    padding: 0 var(--s-6) var(--s-5);
    font-size: var(--fz-base);
    color: var(--text-2);
    line-height: 1.8;
}
