.soc-faq {
    padding: 60px 0 100px;
    background: #fff;
}

.soc-faq__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.soc-faq__head .soc-section-label {
    margin: 0 auto;
}

.soc-faq__title {
    color: #6F22A6;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
}

.soc-faq__desc {
    color: #5C5879;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

.soc-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.soc-faq__item {
    background: #F6F4F9;
    border-radius: 14px;
    padding: 18px 22px;
    text-align: left;
    color: #1B1730;
    transition: background 0.25s ease, color 0.25s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 0;
    width: 100%;
    overflow: hidden;
}

.soc-faq__item.is-open {
    background: #6F22A6;
    color: #fff;
}

.soc-faq__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.soc-faq__q {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    text-align: left;
}

.soc-faq__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(111, 34, 166, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}

.soc-faq__item.is-open .soc-faq__icon {
    background: rgba(255, 255, 255, 0.18);
}

.soc-faq__icon-bar {
    position: absolute;
    background: #6F22A6;
    width: 12px;
    height: 2px;
    transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.soc-faq__icon-bar--v {
    transform: rotate(90deg);
}

.soc-faq__item.is-open .soc-faq__icon-bar {
    background: #fff;
}

.soc-faq__item.is-open .soc-faq__icon-bar--v {
    transform: rotate(0deg);
    opacity: 0;
}

.soc-faq__a {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.soc-faq__item.is-open .soc-faq__a {
    max-height: 400px;
    opacity: 1;
    margin-top: 12px;
}

@media (max-width: 900px) {
    .soc-faq {
        padding: 40px 0 80px;
    }
    .soc-faq__title {
        font-size: 36px;
    }
    .soc-faq__grid {
        grid-template-columns: 1fr;
    }
}
