.cta-band{
    padding:0;
    background:linear-gradient(90deg,#1d59ea 0%,#6a32ff 100%);
    color:#fff;
}

.cta-band__layout{
    display:grid;
    grid-template-columns:1.2fr .95fr;
    gap:28px;
    align-items:center;
    padding:34px 0;
}

.cta-band__copy h2{
    color:#fff;
    font-size:clamp(1.5rem,2.3vw,1.95rem);
    line-height:1.12;
    margin-bottom:10px;
}

.cta-band__copy p{
    color:#edf3ff;
    max-width:560px;
    font-size:.95rem;
}

.cta-band__actions{
    display:flex;
    justify-content:flex-end;
    gap:16px;
    flex-wrap:wrap;
}

.btn-light,
.btn-ghost-light{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:56px;
    padding:0 26px;
    border-radius:999px;
    font-weight:700;
    transition:transform .25s cubic-bezier(.22,.61,.36,1),box-shadow .25s cubic-bezier(.22,.61,.36,1),background .25s ease,color .25s ease;
}

.btn-light{
    background:#fff;
    color:#2353de;
    box-shadow:0 14px 30px rgba(11,24,60,.18);
}

.btn-ghost-light{
    color:#fff;
    border:1px solid rgba(255,255,255,.38);
    background:rgba(255,255,255,.06);
}

.btn-light:hover,
.btn-ghost-light:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 38px rgba(11,24,60,.22);
}

@media(max-width:992px){
    .cta-band__layout{
        grid-template-columns:1fr;
    }

    .cta-band__actions{
        justify-content:flex-start;
    }
}
