.faq {
    padding: 32px 0 80px;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--c-card);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color .2s ease, background .2s ease;
}

.faq-item.is-open {
    border-color: rgba(30, 228, 137, 0.4);
    background: var(--c-card-2);
}

.faq-item__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    text-align: left;
    color: var(--c-text);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.faq-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
    background: var(--c-cta);
    color: #042418;
}

.faq-item__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-item__panel p {
    font-family: var(--font-display);
    font-weight: 400;
    margin: 0;
    padding: 0 24px 22px;
    color: var(--c-muted);
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 600px) {
    .faq-item__btn {
        padding: 18px 16px;
        font-size: 14px;
    }
    .faq-item__panel p {
        padding: 0 16px 18px;
        font-size: 13px;
    }
}
