.cta-custom {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
    background-image: url('/./assets/images/character/image-5.png');
    background-size: cover;
    background-position: center right;
}

/* Desktop overlay: left to right */
.cta-custom::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(235, 245, 255, 0.98) 0%,
        rgba(235, 245, 255, 0.92) 38%,
        rgba(235, 245, 255, 0.65) 58%,
        rgba(235, 245, 255, 0.15) 78%,
        rgba(235, 245, 255, 0) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 2;
}

/* Mobile: top gradient, image visible at bottom */
@media (max-width: 991px) {
    .cta-custom {
        min-height: 430px;
        background-size: cover;
        background-position: center bottom;
    }

    .cta-custom::before {
        background: linear-gradient(
            180deg,
            rgba(235, 245, 255, 1) 0%,
            rgba(235, 245, 255, 0.98) 28%,
            rgba(235, 245, 255, 0.86) 48%,
            rgba(235, 245, 255, 0.45) 68%,
            rgba(235, 245, 255, 0.08) 86%,
            rgba(235, 245, 255, 0) 100%
        );
    }

    .cta-content {
        text-align: center;
        padding: 48px 24px 220px !important;
    }
}

@media (max-width: 575px) {
    .cta-custom {
        min-height: 410px;
        background-size: cover;
        background-position: center bottom;
    }

    .cta-content {
        padding: 44px 22px 210px !important;
    }

    .cta-content h3 {
        font-size: 36px;
        line-height: 1.15;
    }
}