.vector-cta-slot{
    position: relative;
    margin-top: 22px;
    min-height: 145px; /* reserve space so page does not jump */
}

.vector-cta{
    position: absolute;
    inset: 0;
    padding: 18px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eef4ff 0%, #f9fbff 100%);
    border: 1px solid #d9e5ff;
    box-shadow: 0 8px 18px rgba(46, 107, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    transition: opacity 0.7s ease, transform 0.7s ease;
    overflow: hidden;
}

.vector-cta.is-hidden{
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.vector-cta.is-visible{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.vector-cta-text h3{
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 800;
    color: #12305f;
}

.vector-cta-text p{
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #334155;
    max-width: 700px;
}

.vector-cta-action{
    display: flex;
    align-items: center;
}

.vector-cta-btn{
    display: inline-block;
    text-decoration: none;
    padding: 11px 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, #4a8cff 0%, #245fe6 100%);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #245fe6;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.35),
        0 6px 14px rgba(36, 95, 230, 0.18);
    transition: all 0.2s ease;
}

.vector-cta-btn:hover{
    color: #fff;
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.4),
        0 8px 16px rgba(36, 95, 230, 0.24);
}

@media (max-width: 768px){
    .vector-cta-slot{
        min-height: 185px;
    }

    .vector-cta{
        padding: 16px;
    }

    .vector-cta-text h3{
        font-size: 18px;
    }

    .vector-cta-text p{
        font-size: 14px;
    }
}

