.cta-section{
    padding:100px 20px;
}

.cta-inner{
    max-width:1200px;
    margin:0 auto;
    background:#1A1A1A;
    border-radius:28px;
    padding:80px;
    position:relative;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr auto;
    gap:60px;
    align-items:center;
}

.cta-inner::before{
    content:'';
    position:absolute;
    top:-100px;
    left:-100px;
    width:400px;
    height:400px;
    background:rgba(47,93,80,.3);
    border-radius:50%;
    filter:blur(80px);
    pointer-events:none;
}

.cta-inner::after{
    content:'';
    position:absolute;
    bottom:-100px;
    right:200px;
    width:350px;
    height:350px;
    background:rgba(244,180,0,.15);
    border-radius:50%;
    filter:blur(80px);
    pointer-events:none;
}

.cta-label{
    font-size:12px;
    font-weight:600;
    color:#F4B400;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:16px;
    position:relative;
    z-index:1;
}

.cta-title{
    font-size:52px;
    font-weight:900;
    line-height:1.1;
    color:#ffffff;
    margin-bottom:20px;
    position:relative;
    z-index:1;
}

.cta-title .hl{
    color:#F4B400;
}

.cta-desc{
    font-size:16px;
    color:rgba(255,255,255,.55);
    line-height:1.8;
    max-width:520px;
    margin-bottom:32px;
    position:relative;
    z-index:1;
}

.cta-avatars{
    display:flex;
    align-items:center;
    gap:10px;
    position:relative;
    z-index:1;
}

.avatars-stack{
    display:flex;
}

.av{
    width:38px;
    height:38px;
    border-radius:50%;
    border:2px solid #1A1A1A;
    margin-left:-10px;
    background:#2F5D50;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    font-size:11px;
    font-weight:700;
}

.av:first-child{
    margin-left:0;
}

.av.yellow{
    background:#F4B400;
    color:#1A1A1A;
}

.av.count{
    background:rgba(255,255,255,.12);
    color:#ffffff;
    font-size:10px;
}

.av-text{
    font-size:13px;
    color:rgba(255,255,255,.6);
}

.cta-btns{
    display:flex;
    flex-direction:column;
    gap:12px;
    position:relative;
    z-index:1;
}

.btn-cta-primary{
    background:#F4B400;
    color:#1A1A1A;
    padding:16px 36px;
    border-radius:12px;
    font-size:15px;
    font-weight:700;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
    white-space:nowrap;
    box-shadow:0 8px 30px rgba(244,180,0,.3);
}

.btn-cta-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 40px rgba(244,180,0,.4);
}

.btn-cta-outline{
    background:transparent;
    color:rgba(255,255,255,.75);
    padding:14px 36px;
    border-radius:12px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.15);
    transition:.3s;
    white-space:nowrap;
}

.btn-cta-outline:hover{
    border-color:rgba(255,255,255,.4);
    color:#ffffff;
}

@media(max-width:991px){

    .cta-inner{
        grid-template-columns:1fr;
        padding:60px;
    }

    .cta-title{
        font-size:42px;
    }

    .cta-btns{
        width:100%;
    }

}

@media(max-width:767px){

    .cta-section{
        padding:70px 15px;
    }

    .cta-inner{
        padding:40px 25px;
        gap:40px;
    }

    .cta-title{
        font-size:32px;
    }

    .cta-avatars{
        flex-direction:column;
        align-items:flex-start;
    }

    .btn-cta-primary,
    .btn-cta-outline{
        width:100%;
    }

}