/* =========================================
PREMIUM FOOTER
========================================= */

.footer-premium{

    position:relative;

    overflow:hidden;

    padding:100px 0 40px;

    background:
    linear-gradient(
        180deg,
        #020617 0%,
        #050b18 100%
    );
}

/* =========================================
BACKGROUND
========================================= */

.footer-grid{

    position:absolute;

    inset:0;

    opacity:.04;

    background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);

    background-size:72px 72px;
}

.footer-gradient{

    position:absolute;

    top:-300px;
    right:-200px;

    width:900px;
    height:900px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(0,140,255,0.14),
        transparent 70%
    );

    filter:blur(100px);
}

/* =========================================
CONTAINER
========================================= */

.footer-premium-container{

    position:relative;

    z-index:2;
}

/* =========================================
TOP
========================================= */

.footer-premium-top{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:90px;

    margin-bottom:90px;
}

/* =========================================
BRAND
========================================= */

.footer-mini-tag{

    display:inline-flex;

    margin-bottom:28px;

    color:#2d8cff;

    font-size:12px;

    letter-spacing:3px;

    font-weight:700;
}

.footer-brand-block h2{

    font-size:clamp(3rem,5vw,5.5rem);

    line-height:.95;

    letter-spacing:-4px;

    color:white;

    margin-bottom:28px;

    font-weight:800;
}

.footer-brand-block p{

    max-width:620px;

    color:rgba(255,255,255,0.62);

    font-size:18px;

    line-height:1.9;

    margin-bottom:36px;
}

/* =========================================
SOCIALS
========================================= */

.footer-socials{

    display:flex;

    gap:16px;
}

.footer-socials a{

    width:56px;
    height:56px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.08);

    color:white;

    transition:.35s ease;
}

.footer-socials a:hover{

    transform:
    translateY(-5px);

    border-color:
    rgba(0,140,255,0.22);

    background:
    rgba(0,140,255,0.10);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.35),
    0 0 30px rgba(0,140,255,0.10);
}

/* =========================================
LINKS GRID
========================================= */

.footer-links-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;
}

.footer-links-column span{

    display:block;

    margin-bottom:26px;

    color:#2d8cff;

    font-size:12px;

    letter-spacing:2px;

    font-weight:700;
}

.footer-links-column a{

    display:block;

    margin-bottom:18px;

    color:rgba(255,255,255,0.68);

    text-decoration:none;

    font-size:16px;

    transition:.3s ease;
}

.footer-links-column a:hover{

    color:white;

    transform:
    translateX(4px);
}

/* =========================================
MIDDLE
========================================= */

.footer-middle{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

    margin-bottom:70px;
}

.footer-middle-card{

    display:flex;

    align-items:center;

    gap:20px;

    padding:28px;

    border-radius:28px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.015)
    );

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);
}

.footer-middle-icon{

    min-width:60px;

    width:60px;
    height:60px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
        180deg,
        rgba(0,140,255,0.18),
        rgba(0,140,255,0.06)
    );

    color:#58a6ff;
}

.footer-middle-card strong{

    display:block;

    color:white;

    font-size:18px;

    margin-bottom:8px;
}

.footer-middle-card p{

    color:rgba(255,255,255,0.56);

    font-size:14px;

    line-height:1.7;
}

/* =========================================
BOTTOM
========================================= */

.footer-bottom-premium{

    padding-top:34px;

    border-top:
    1px solid rgba(255,255,255,0.08);

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    flex-wrap:wrap;
}

.footer-bottom-premium p{

    color:rgba(255,255,255,0.45);

    font-size:14px;
}

.footer-bottom-links{

    display:flex;

    gap:26px;
}

.footer-bottom-links a{

    color:rgba(255,255,255,0.48);

    text-decoration:none;

    font-size:14px;

    transition:.3s ease;
}

.footer-bottom-links a:hover{

    color:white;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1100px){

    .footer-premium-top{

        grid-template-columns:1fr;

        gap:70px;
    }

    .footer-middle{

        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .footer-premium{

        padding:100px 0 40px;
    }

    .footer-links-grid{

        grid-template-columns:1fr 1fr;

        gap:40px 20px;
    }

    .footer-brand-block h2{

        letter-spacing:-2px;
    }

}

@media(max-width:560px){

    .footer-links-grid{

        grid-template-columns:1fr;
    }

    .footer-bottom-premium{

        flex-direction:column;

        align-items:flex-start;
    }

}

.footer-premium{

    position:relative;
}

.footer-premium::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:1px;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.12),
        transparent
    );
}
.footer-socials a{

    position:relative;

    overflow:hidden;
}

.footer-socials a::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at top,
        rgba(0,140,255,0.18),
        transparent 70%
    );

    opacity:0;

    transition:.35s ease;
}

.footer-socials a:hover::before{

    opacity:1;
}

.footer-socials a svg{

    position:relative;

    z-index:2;

    width:22px;

    height:22px;

    stroke-width:2;
}

/* =========================================
FOOTER EXTRA AIR
========================================= */

.footer-premium .container{

    max-width:1500px;

    padding-left:70px;

    padding-right:70px;
}

/* LARGE DESKTOP */

@media(min-width:1600px){

    .footer-premium .container{

        padding-left:110px;

        padding-right:110px;
    }

}

/* TABLET */

@media(max-width:768px){

    .footer-premium .container{

        padding-left:24px;

        padding-right:24px;
    }

}