/* ── Footer Widget ──────────────────────────────────────────────────────────── */
.neweb-footer {
    border-top: 1px solid #e2e8f0;
    padding: 5rem 1.5rem;
}

[data-theme="dark"] .neweb-footer {
    border-top-color: #1e293b;
}

.neweb-footer__inner {
    max-width: 72rem;
    margin: 0 auto;
}

.neweb-footer__grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

.neweb-footer__brand {
    max-width: 20rem;
}

.neweb-footer__logo-light { display: block; }
.neweb-footer__logo-dark { display: none; }
[data-theme="dark"] .neweb-footer__logo-light { display: none; }
[data-theme="dark"] .neweb-footer__logo-dark { display: block; }

.neweb-footer__desc {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #64748b;
}

[data-theme="dark"] .neweb-footer__desc {
    color: #94a3b8;
}

.neweb-footer__group-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #94a3b8;
}

.neweb-footer__links {
    list-style: none;
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.neweb-footer__links a {
    font-size: 0.875rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.neweb-footer__links a:hover {
    color: #1e293b;
}

[data-theme="dark"] .neweb-footer__links a {
    color: #94a3b8;
}

[data-theme="dark"] .neweb-footer__links a:hover {
    color: #ffffff;
}

/* Bottom bar */
.neweb-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 1rem;
}

[data-theme="dark"] .neweb-footer__bottom {
    border-top-color: #1e293b;
}

.neweb-footer__copyright {
    font-size: 13px;
    color: #94a3b8;
}

.neweb-footer__social {
    display: flex;
    gap: 1.5rem;
}

.neweb-footer__social a {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.neweb-footer__social a:hover {
    color: #475569;
}

[data-theme="dark"] .neweb-footer__social a:hover {
    color: #e2e8f0;
}

@media (max-width: 768px) {
    .neweb-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    .neweb-footer__brand {
        grid-column: 1 / -1;
    }
    .neweb-footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
