.footer {
    position: relative;

    background: #050505;

    border-top: 1px solid rgba(255,255,255,0.06);

    margin-top: 120px;

    overflow: hidden;
}

.footer::before {
    display: none;
}

.footer-container {
    position: relative;

    max-width: 1450px;

    margin: auto;

    padding:
        90px 30px
        35px;
}

.footer-top {
    display: flex;
    justify-content: space-between;

    gap: 100px;

    margin-bottom: 70px;
}

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 24px;
}

.footer-logo img {
    width: 52px;

    filter:
        drop-shadow(
            0 0 18px rgba(139,92,246,0.28)
        );
}

.footer-logo span {
    font-size: 28px;
    font-weight: 800;
}

.footer-brand p {
    color: var(--muted);

    line-height: 1.8;

    margin-bottom: 28px;
}

.footer-socials {
    display: flex;

    gap: 14px;
}

.footer-socials a {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        rgba(255,255,255,0.03);

    border:
        1px solid rgba(255,255,255,0.06);

    color: white;

    text-decoration: none;

    transition: 0.2s;
}

.footer-socials a:hover {
    transform: translateY(-3px);

    background:
        rgba(255,255,255,0.06);

    border:
        1px solid rgba(139,92,246,0.28);

    box-shadow:
        0 0 24px rgba(139,92,246,0.18);
}

.footer-links-wrapper {
    display: flex;

    gap: 90px;
}

.footer-links {
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.footer-links h3 {
    color: white;

    font-size: 16px;

    margin-bottom: 12px;
}

.footer-links a {
    color: var(--muted);

    text-decoration: none;

    transition: 0.2s;
}

.footer-links a:hover {
    color: white;

    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 35px;

    border-top:
        1px solid rgba(255,255,255,0.06);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: var(--muted);
}

.footer-bottom-links {
    display: flex;

    gap: 24px;
}

.footer-bottom-links a {
    color: var(--muted);

    text-decoration: none;

    transition: 0.2s;
}

.footer-bottom-links a:hover {
    color: white;
}

@media (max-width: 1000px) {

    .footer-top {
        flex-direction: column;
    }

    .footer-links-wrapper {
        flex-wrap: wrap;

        gap: 50px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

}