.footer{

    position: relative;

    padding: 80px 0 30px;

    background: rgba(255,255,255,.02);

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

    overflow: hidden;

}

.footer::before{

    content: "";

    position: absolute;

    top: -180px;

    left: 50%;

    transform: translateX(-50%);

    width: 700px;

    height: 350px;

    background: radial-gradient(circle, rgba(59,130,246,.12), transparent 70%);

    pointer-events: none;

}

.footer-content{

    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 80px;

    margin-bottom: 60px;

}

.footer-brand{

    position: relative;

}

.footer-brand h2{

    font-size: 2rem;

    color: var(--white);

    margin-bottom: 20px;

}

.footer-brand p{

    max-width: 500px;

    color: var(--text-secondary);

    line-height: 1.9;

    margin-bottom: 30px;

}

.footer-social{

    display: flex;

    align-items: center;

    gap: 16px;

}

.footer-social a{

    width: 52px;

    height: 52px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    color: var(--text-secondary);

    font-size: 1.2rem;

    transition: .35s ease;

}

.footer-social a:hover{

    transform: translateY(-6px);

    background: var(--primary-color);

    border-color: var(--primary-color);

    color: var(--white);

}

.footer-links{

    display: grid;

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

    gap: 40px;

}

.footer-column h3{

    color: var(--white);

    margin-bottom: 24px;

    font-size: 1.15rem;

}

.footer-column ul{

    display: flex;

    flex-direction: column;

    gap: 16px;

}

.footer-column li{

    list-style: none;

}

.footer-column a{

    color: var(--text-secondary);

    transition: .3s ease;

}

.footer-column a:hover{

    color: var(--primary-color);

    padding-left: 8px;

}

.footer-bottom{

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding-top: 30px;

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

    flex-wrap: wrap;

}

.footer-bottom p{

    color: var(--text-secondary);

    font-size: .95rem;

}

.footer-bottom p:last-child{

    color: rgba(255,255,255,.6);

}

.footer{

    animation: footerFade 1s ease forwards;

    opacity: 0;

}

@keyframes footerFade{

    from{

        opacity: 0;

        transform: translateY(30px);

    }

    to{

        opacity: 1;

        transform: translateY(0);

    }

}