.footer-menu-shell {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0;
    /* plain background — diagonal split + stripe pattern removed
    background:
        linear-gradient(132deg, rgba(37, 99, 235, 0.055) 0 36%, transparent 36%),
        repeating-linear-gradient(132deg, transparent 0 42px, rgba(37, 99, 235, 0.045) 43px 45px),
        #fff;
    */
    background: #fff;
}

.footer-menu-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    gap: 3rem;
    z-index: 1;
}

.footer-logo {
    display: block;
    width: 150px;
}

.footer-brand p {
    max-width: 230px;
    margin: 1.25rem 0 0;
    color: #52647a;
    line-height: 1.7;
}

.footer-menu-group h3 {
    margin: 0 0 1.35rem;
    color: #172b43;
    font-size: 1.05rem;
    font-weight: 700;
}

.footer-menu-group ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu-group a {
    color: #52647a;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-menu-group a:hover,
.footer-menu-group a:focus-visible {
    color: var(--color-primary);
}

@media (max-width: 991px) {
    .footer-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .footer-menu-shell {
        padding: 3rem 0;
    }

    .footer-menu-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .footer-brand {
        grid-column: auto;
    }
}

:where(.uc-dark) .footer-menu-shell {
    /* plain background — pattern removed
    background:
        linear-gradient(132deg, rgba(37, 99, 235, 0.12) 0 36%, transparent 36%),
        repeating-linear-gradient(132deg, transparent 0 42px, rgba(255, 255, 255, 0.035) 43px 45px),
        var(--color-gray-900);
    */
    background: var(--color-gray-900);
}

:where(.uc-dark) .footer-menu-group h3,
:where(.uc-dark) .footer-menu-group a,
:where(.uc-dark) .footer-brand p {
    color: #fff;
}
