        /*==================================================
    FOOTER
==================================================*/

.footer{

    position:relative;

    overflow:hidden;

    padding:180px 0 50px;

    background:#08090B;

    color:#fff;

}

.footer::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        rgba(255,255,255,.025) 1px,
        transparent 1px
    ),

    linear-gradient(
        90deg,
        rgba(255,255,255,.025) 1px,
        transparent 1px
    );

    background-size:48px 48px;

    opacity:.35;

    pointer-events:none;

}
/*==================================================
    AMBIENT
==================================================*/

.footer-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(140px);

    pointer-events:none;

}

.footer-glow-left{

    width:700px;

    height:700px;

    left:-250px;

    top:-150px;

    background:

    radial-gradient(
        circle,
        rgba(255,139,77,.12),
        transparent 70%
    );

}

.footer-glow-right{

    width:650px;

    height:650px;

    right:-180px;

    bottom:-200px;

    background:

    radial-gradient(
        circle,
        rgba(79,125,255,.12),
        transparent 70%
    );

}
/*==================================================
    CONTAINER
==================================================*/

.footer-container{

    width:min(1500px,92%);

    margin:auto;

    position:relative;

    z-index:2;

}
/*==================================================
    CTA
==================================================*/

.footer-cta{

    max-width:760px;

    margin:0 auto 120px;

    text-align:center;

}

.footer-tag{

    display:inline-flex;

    align-items:center;

    padding:10px 20px;

    border-radius:999px;

    border:1px solid rgba(255,255,255,.08);

    font-size:13px;

    letter-spacing:.25em;

    color:var(--orange);

}

.footer-cta h2{

    margin:30px 0;

    font-size:72px;

    line-height:.95;

    letter-spacing:-3px;

}

.footer-cta p{

    max-width:650px;

    margin:auto;

    color:#8A95A5;

    font-size:20px;

    line-height:1.9;

}
.footer-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:45px;

}

.footer-btn-primary{

    padding:18px 34px;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        var(--orange),
        #ff6d2d
    );

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.footer-btn-primary:hover{

    transform:translateY(-4px);

}

.footer-btn-secondary{

    padding:18px 34px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    text-decoration:none;

    transition:.35s;

}

.footer-btn-secondary:hover{

    background:rgba(255,255,255,.04);

}
/*==================================================
    GRID
==================================================*/

.footer-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.footer-card{

    background:#111214;

    border:1px solid rgba(255,255,255,.06);

    border-radius:24px;

    padding:34px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.footer-card::before{

    content:"";

    position:absolute;

    inset:8px;

    border:1px solid rgba(255,255,255,.04);

    border-radius:16px;

}

.footer-card:hover{

    transform:translateY(-6px);

    border-color:rgba(255,139,77,.18);

}
.footer-card h3{

    margin-bottom:24px;

    font-size:24px;

}
.footer-card ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-card li{

    margin-bottom:16px;

    color:#94A3B8;

}

.footer-card a{

    color:#94A3B8;

    text-decoration:none;

    transition:.3s;

}

.footer-card a:hover{

    color:white;

    padding-left:6px;

}
.footer-logo{

    height:42px;

    margin-bottom:28px;

}

.footer-card p{

    color:#94A3B8;

    line-height:1.9;

}
/*==================================================
    TECHNOLOGIES
==================================================*/

.footer-tech{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    justify-content:center;

    margin:90px 0;

}

.footer-tech span{

    padding:12px 18px;

    border-radius:999px;

    border:1px solid rgba(255,255,255,.06);

    background:#111214;

    color:#B8C3CF;

    transition:.35s;

}

.footer-tech span:hover{

    color:white;

    border-color:var(--orange);

    transform:translateY(-3px);

}
/*==================================================
    BOTTOM
==================================================*/

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.06);

    padding-top:35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#7F8794;

}

.footer-bottom span{

    margin-left:18px;

    color:var(--orange);

    letter-spacing:.15em;

    font-size:12px;

}

.footer-links{

    display:flex;

    gap:28px;

}

.footer-links a{

    color:#7F8794;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:white;

}
@media(max-width:1100px){

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .footer{

        padding:120px 0 40px;

    }

    .footer-cta h2{

        font-size:48px;

    }

    .footer-buttons{

        flex-direction:column;

    }

    .footer-grid{

        grid-template-columns:1fr;

    }

    .footer-bottom{

        flex-direction:column;

        gap:20px;

        text-align:center;

    }

}