/*==========================================================
CTA
==========================================================*/

.cta-section{

    position:relative;

    overflow:hidden;

    padding:140px 0;

    display:flex;

    justify-content:center;

    background:
    radial-gradient(circle at center,
    rgba(59,130,246,.10),
    transparent 70%);

}

.cta-container{

    width:min(850px,90%);

    margin:0 auto;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

}

.cta-section .section-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 24px;

    margin-bottom:30px;

    border-radius:999px;

    border:1px solid rgba(255,122,0,.35);

    background:rgba(255,122,0,.05);

    color:#ff7a00;

    font-size:.82rem;

    font-weight:700;

    letter-spacing:2px;

}

.cta-section h2{

    margin:0;

    display:flex;

    flex-direction:column;

    align-items:center;

    line-height:1.05;

    font-weight:800;

}

.cta-section h2 span:first-child{

    color:#fff;

    font-size:clamp(3.4rem,5vw,5rem);

}

.cta-section h2 span:last-child{

    color:#3b82f6;

    font-size:clamp(3.4rem,5vw,5rem);

}

.cta-section p{

    max-width:640px;

    margin-top:35px;

    color:#9fb3d1;

    font-size:1.12rem;

    line-height:1.8;

}

.cta-actions{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

    margin-top:55px;

}

.cta-actions .btn{

    min-width:210px;

    padding:18px 32px;

    border-radius:14px;

    font-weight:700;

    transition:.35s;

}

.cta-actions .btn-primary{

    background:#ff7a00;

    color:#fff;

    box-shadow:0 15px 35px rgba(255,122,0,.30);

}

.cta-actions .btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 22px 45px rgba(255,122,0,.45);

}

.cta-actions .btn-secondary{

    color:#fff;

    border:1px solid rgba(255,255,255,.10);

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(14px);

}

.cta-actions .btn-secondary:hover{

    background:rgba(59,130,246,.08);

    border-color:#3b82f6;

    transform:translateY(-4px);

}

.cta-trust{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:40px;

    margin-top:70px;

}

.cta-trust div{

    display:flex;

    align-items:center;

    gap:10px;

    color:#d7e6ff;

    font-weight:600;

}

.cta-trust i{

    color:#3b82f6;

}



/*==========================================================
FOOTER
==========================================================*/

.footer{

    padding:90px 0 35px;

    border-top:1px solid rgba(255,255,255,.06);

    background:#0b1527;

}

.footer-container{

    width:min(1320px,92%);

    margin:0 auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr 1.3fr;

    gap:60px;

    align-items:flex-start;

}

.footer-about{

    display:flex;

    flex-direction:column;

}

.footer-logo{

    width:220px;

    margin-bottom:25px;

}

.footer-about p{

    color:#9fb3d1;

    line-height:1.8;

    margin-bottom:30px;

    max-width:340px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:48px;
    height:48px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    color:#fff;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;

}

.footer-social a:hover{

    background:#3b82f6;

    transform:translateY(-4px);

}

.footer-column h4{

    color:#fff;

    margin-bottom:24px;

    font-size:1.05rem;

}

.footer-column a,
.footer-column p{

    display:block;

    margin-bottom:14px;

    color:#9fb3d1;

    text-decoration:none;

    line-height:1.7;

    transition:.3s;

}

.footer-column a:hover{

    color:#3b82f6;

    padding-left:6px;

}

.footer-bottom{

    width:min(1320px,92%);

    margin:70px auto 0;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;
    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-copy{

    color:#7f95b7;

}

.footer-links{

    display:flex;

    gap:30px;

}

.footer-links a{

    color:#9fb3d1;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#3b82f6;

}

.footer-badge{

    padding:10px 18px;

    border-radius:999px;

    border:1px solid rgba(255,122,0,.35);

    background:rgba(255,122,0,.05);

    color:#ff7a00;

    font-size:.85rem;

    font-weight:700;

    letter-spacing:1px;

}



/*==========================================================
RESPONSIVE
==========================================================*/

@media (max-width:1100px){

    .footer-container{

        grid-template-columns:repeat(2,1fr);

        gap:40px;

    }

}

@media (max-width:768px){

    .cta-section{

        padding:90px 0;

    }

    .cta-section h2{

        font-size:3rem;

    }

    .cta-actions{

        flex-direction:column;

    }

    .cta-actions .btn{

        width:100%;
        max-width:320px;

    }

    .cta-trust{

        flex-direction:column;

        gap:18px;

    }

    .footer-container{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-about{

        align-items:center;

    }

    .footer-social{

        justify-content:center;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

}

