.manfaq {
    width: 100%;
    padding: 56px 0;
}

.manfaq__inner {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 0 16px;
}

.manfaq__title {
    margin: 0 0 28px;
    text-align: center;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.15;
    font-weight: 600;
}

.manfaq__list {
    display: grid;
    gap: 12px;
}

.manfaq__item {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.manfaq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    border: 0;
    background: transparent;
    text-align: left;
    font: inherit;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    cursor: pointer;
}

.manfaq__question:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -4px;
}

.manfaq__icon {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

.manfaq__icon::before,
.manfaq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}

.manfaq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.manfaq__item.is-open .manfaq__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.manfaq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.manfaq__item.is-open .manfaq__answer {
    max-height: 1000px;
}

.manfaq__answer-content {
    padding: 0 22px 22px;
    font-size: 16px;
    line-height: 1.7;
}

.manfaq__cta {
    margin-top: 28px;
    padding: 26px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.04);
    text-align: center;
}

.manfaq__cta-text {
    margin: 0 auto 18px;
    max-width: 760px;
    font-size: 17px;
    line-height: 1.6;
}

.manfaq__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.manfaq__cta-button:hover,
.manfaq__cta-button:focus {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .manfaq {
        padding: 40px 0;
    }

    .manfaq__question {
        padding: 17px 18px;
        font-size: 16px;
    }

    .manfaq__answer-content {
        padding: 0 18px 18px;
    }
}
