.faq {
    padding: var(--section-padding) 0;
    position: relative;
}

.faq__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faq__item {
    border-radius: var(--radius-lg);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.faq__item:hover {
    background: rgba(255,255,255,0.025);
    border-color: rgba(255,255,255,0.06);
}

.faq__item.active {
    border-color: rgba(0, 229, 176, 0.1);
    background: rgba(0, 229, 176, 0.02);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2),
                0 0 0 1px rgba(0, 229, 176, 0.04);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    transition: color var(--duration-normal);
    letter-spacing: -0.01em;
}

.faq__question:hover {
    color: var(--accent);
}

.faq__icon {
    flex-shrink: 0;
    transition: transform 0.5s var(--ease-out-expo);
    opacity: 0.4;
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
    opacity: 1;
    stroke: var(--accent);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo);
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding: 0 28px 24px;
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.75;
}
