/*==================================================
CTA
==================================================*/

.cta{

    padding:100px 20px;

    background:linear-gradient(135deg,#5b4cf0,#7c3aed);

}

.cta .container{

    max-width:1000px;

    margin:auto;

}

.cta-content{

    text-align:center;

    color:#fff;

}

.cta-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(255,255,255,.15);

    margin-bottom:25px;

    font-weight:600;

}

.cta h2{

    font-size:2.8rem;

    margin-bottom:25px;

    line-height:1.3;

}

.cta p{

    max-width:700px;

    margin:0 auto 40px;

    line-height:1.9;

    opacity:.95;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta .btn{

    padding:16px 35px;

    border-radius:40px;

}

.btn-outline{

    background:transparent;

    border:2px solid #fff;

    color:#fff;

}

.btn-outline:hover{

    background:#fff;

    color:#5b4cf0;

}

@media(max-width:768px){

.cta{

    padding:70px 20px;

}

.cta h2{

    font-size:2rem;

}

.cta-buttons{

    flex-direction:column;

}

.cta .btn{

    width:100%;

}

}