/* ============================================================
   CTA SECTION — cta.css
   "Get Started" bar matching  production reference
   ============================================================ */
.cta-container {
    /* max-width: 1260px; */
    margin: 0px auto;
    padding: 0px 60px;
}
.cta-line-box {
    background: linear-gradient(180deg, #082046 0%, #14429f 100%);
    min-height: 196px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 196px;
    gap: 30px;
    position: relative;
    z-index: 2;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* --- Left: Title + Text --- */
.cta-left {
    flex: 1;
}

.cta-title {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.cta-title span {
    display: inline-block;
}

.cta-text {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 480px;
}

/* --- Right: Buttons + decorative image --- */
.cta-right {
    display: flex;
    align-items: center;
    gap: 17px;
    position: relative;
    height: 196px;
    justify-content: center;
}

/* Buttons */
.cta-btn {
    border-radius: 100px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    padding: 10px 28px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.cta-btn--primary {
    background: #fff;
    color: #082046;
    box-shadow: 0 5px 24px rgba(0, 0, 0, 0.1);
    font-size: 18px;
}

.cta-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cta-btn--demo {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.cta-btn--demo:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Decorative background image */
.cta-bg-img {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    user-select: none;
}

.cta-bg-img--desktop {
    display: block;
    right: -20px;
    bottom: -35px;
    height: 100%;
    object-fit: contain;
    opacity: 0.4;
    mix-blend-mode: soft-light;
}

.cta-bg-img--mobile {
    display: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 767px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 0;
        gap: 20px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-text {
        font-size: 14px;
        margin: 0 auto;
    }

    .cta-right {
        flex-direction: column;
        gap: 16px;
        height: auto;
        width: 100%;
        padding-bottom: 20px;
    }

    .cta-btn {
        min-width: 240px;
        font-size: 16px;
        padding: 12px 28px;
    }

    .cta-bg-img--desktop {
        display: none;
    }

    .cta-bg-img--mobile {
        display: block;
        position: relative;
        width: 100%;
        max-height: 120px;
        object-fit: cover;
        opacity: 0.3;
        margin-top: -10px;
    }
}