.section-footer {
    position: relative;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Blauer Blur-Glow */
.section-footer::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #226DFB14, transparent 70%);
    filter: blur(40px);
    left: 50%;
    bottom: -200px;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

/* Graues Viereck-Pattern mit Mask */
.footer-dots {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(178, 180, 187, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(178, 180, 187, 0.08) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(ellipse 900px 350px at 50% 75%, black 0%, transparent 65%);
    mask-image: radial-gradient(ellipse 900px 350px at 50% 75%, black 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}
/* Pattern-Kreis der Maus folgt */
.footer-mouse-dots {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(178, 180, 187, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(178, 180, 187, 0.1) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(circle 120px at var(--mx, -200px) var(--my, -200px), black 0%, transparent 100%);
    mask-image: radial-gradient(circle 120px at var(--mx, -200px) var(--my, -200px), black 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}
.footer-mouse-dots::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #226DFB25, transparent 70%);
    filter: blur(40px);
    left: var(--mx, -200px);
    top: var(--my, -200px);
    transform: translate(-50%, -50%);
    pointer-events: none;
    will-change: left, top;
}
.footer-mouse-dots.active {
    opacity: 1;
}

.sec-footer {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
.foot-box {
    height: auto;
    display: flex;
    justify-content: flex-start;
    justify-items: center;
    align-items: flex-start;
    flex-direction: column;
}
.footer-logo {
    width: 200px;
    transform: translateX(-22px) translateY(-22px);
    transition: .3s all linear;
}
.footer-logo:hover{
    transform: translateX(-22px) translateY(-22px) scale(1.15) rotate(-3deg);
    cursor: pointer;
}
.foot-box-header {
    color: var(--white);
}
.foot-box-linkbox {
    margin-top: 24px;
    width: 100%;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
}
.foot-box-link {
    color: var(--font-color-text);
    transition: .3s all linear;
}
.foot-box-link:hover{
    cursor: pointer;
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3), 0 0 30px rgba(34, 109, 251, 0.4);
}
.foot-social-con {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    justify-items: center;
    align-items: center;
    gap: 16px;
}
.foot-social-icon {
    width: 40px;
}
.foot-social-text {
    color: var(--font-color-text);
}

/* ── Footer Mobile ── */
@media (max-width: 950px) {
    .sec-footer {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .foot-box {
        align-items: center;
        text-align: center;
    }

    .foot-box-linkbox {
        align-items: center;
    }

    .footer-logo {
        transform: translateY(-10px);
    }
    .footer-logo:hover {
        transform: translateY(-10px) scale(1.15) rotate(-3deg);
    }

    .foot-social-con {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}