.app-footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 3rem 0 1.4rem;
}

.app-footer-grid {
    margin-bottom: 2rem;
}

.app-footer-brand-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.85rem;
}

.app-footer-brand-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.app-footer-brand-text {
    color: #0f172a;
    margin: 0;
}

.app-footer-brand-copy {
    color: #64748b;
}

.app-footer-heading {
    color: #0f172a;
    margin-bottom: 0.8rem;
}

.app-footer-links,
.app-footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.app-footer-link {
    color: #64748b;
    text-decoration: none;
    transition: color 180ms ease;
}

.app-footer-link:hover {
    color: #4f46e5;
}

.app-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    color: #64748b;
}

.app-footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #64748b;
}

.app-footer-bottom-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

@media (max-width: 959px) {
    .app-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
