.suffaq,
.suffaq * { box-sizing: border-box; }

.suffaq {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 42px 20px;
    background: #fbfcff;
    color: #07143f;
    font-family: Inter, Arial, sans-serif;
}

.suffaq::before,
.suffaq::after {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease;
}

.suffaq.is-decorated::before {
    opacity: .55;
    width: 230px;
    height: 520px;
    left: -105px;
    bottom: -90px;
    border: 1px solid rgba(61, 109, 255, .22);
    border-radius: 50%;
    box-shadow: 28px 0 0 -1px rgba(61,109,255,.12), 56px 0 0 -2px rgba(61,109,255,.08), 84px 0 0 -3px rgba(61,109,255,.06);
}

.suffaq.is-decorated::after {
    opacity: .55;
    width: 260px;
    height: 260px;
    right: -110px;
    top: -145px;
    border: 1px solid rgba(61, 109, 255, .22);
    border-radius: 50%;
    box-shadow: -25px 20px 0 -1px rgba(61,109,255,.11), -50px 40px 0 -2px rgba(61,109,255,.07);
}

.suffaq__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.suffaq__header {
    display: grid;
    grid-template-columns: minmax(0, 30%) minmax(0, 70%);
    gap: 28px;
    align-items: center;
    margin-bottom: 22px;
}

.suffaq__header.no-visual {
    grid-template-columns: 1fr;
}

.suffaq__visual {
    min-width: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.suffaq__visual img {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
}

.suffaq__intro-block {
    min-width: 0;
    text-align: center;
    padding-right: 3%;
}

.suffaq__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 0 18px;
    color: #1260f5;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.suffaq__eyebrow > span {
    width: 28px;
    height: 2px;
    border-radius: 20px;
    background: currentColor;
}

.suffaq__heading {
    margin: 0;
    color: #07143f;
    font-family: Manrope, Inter, Arial, sans-serif;
    font-size: clamp(38px, 4vw, 62px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.suffaq__highlight { color: #1d62f5; }

.suffaq__intro {
    max-width: 800px;
    margin: 24px auto 0;
    color: #28365f;
    font-size: 20px;
    line-height: 1.65;
}

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

.suffaq__item {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e3e9f9;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(37, 72, 146, .08);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.suffaq__item:hover {
    border-color: #cdd9ff;
    box-shadow: 0 13px 30px rgba(37, 72, 146, .11);
}

.suffaq__button {
    width: 100%;
    border: 0;
    margin: 0;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 44px;
    gap: 18px;
    align-items: center;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.suffaq__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eff4ff;
    color: #1260f5;
    font-size: 28px;
}

.suffaq__icon i { color: inherit !important; font-size: 1em !important; line-height: 1 !important; }
.suffaq__icon svg { width: 1em; height: 1em; fill: currentColor !important; color: inherit !important; }

.suffaq__question {
    min-width: 0;
    color: #ffffff !important;
    font-family: Manrope, Inter, Arial, sans-serif;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.3;
}

.suffaq__toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    background: #eff4ff;
    color: #1260f5;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
}

.suffaq__minus { display: none; transform: translateY(-2px); }
.suffaq__item.is-open .suffaq__plus { display: none; }
.suffaq__item.is-open .suffaq__minus { display: inline; }
.suffaq__item.is-open .suffaq__toggle { background: #1260f5; color: #fff; }

.suffaq__answer-wrap[hidden] { display: none !important; }

.suffaq__answer {
    padding: 0 88px 22px 146px;
    color: #28365f;
    font-size: 18px;
    line-height: 1.7;
}

.suffaq__answer p { margin: 0 0 10px; }
.suffaq__answer p:last-child { margin-bottom: 0; }

@media (max-width: 1024px) {
    .suffaq__header {
        grid-template-columns: 32% 68% !important;
        gap: 18px !important;
    }
    .suffaq__heading { font-size: clamp(34px, 5vw, 48px); }
    .suffaq__intro { margin-top: 16px; font-size: 17px; }
    .suffaq__question { font-size: 20px; }
    .suffaq__answer { padding-left: 122px; font-size: 16px; }
}

@media (max-width: 767px) {
    .suffaq { padding: 30px 14px !important; }
    .suffaq__header {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-bottom: 18px;
    }
    .suffaq__visual img { width: min(340px, 100%) !important; max-height: 270px !important; }
    .suffaq__intro-block { padding-right: 0; }
    .suffaq__eyebrow { margin-bottom: 10px; gap: 9px; font-size: 12px; }
    .suffaq__eyebrow > span { width: 18px; }
    .suffaq__heading { font-size: clamp(30px, 9vw, 40px); line-height: 1.1; }
    .suffaq__intro { margin-top: 12px; font-size: 15px; line-height: 1.55; }
    .suffaq__list { gap: 9px; }
    .suffaq__button {
        padding: 13px 12px !important;
        grid-template-columns: 48px minmax(0, 1fr) 34px;
        gap: 10px;
    }
    .suffaq__icon { width: 48px !important; height: 48px !important; font-size: 21px !important; }
    .suffaq__question { font-size: 16px; line-height: 1.35; }
    .suffaq__toggle { width: 34px; height: 34px; font-size: 27px; }
    .suffaq__answer { padding: 0 54px 14px 70px; font-size: 14px; line-height: 1.55; }
}

@media (max-width: 430px) {
    .suffaq__button { grid-template-columns: 42px minmax(0,1fr) 30px; gap: 8px; }
    .suffaq__icon { width: 42px !important; height: 42px !important; font-size: 18px !important; }
    .suffaq__toggle { width: 30px; height: 30px; font-size: 24px; }
    .suffaq__question { font-size: 15px; }
    .suffaq__answer { padding: 0 42px 13px 62px; }
}
