/* NC Footer */
.nc-footer {
    padding: 48px 60px 32px;
    background: #0A0A0A;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.nc-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 24px;
}

.nc-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}

.nc-footer__brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #2563EB;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    flex-shrink: 0;
    opacity: 0.7;
}

.nc-footer__brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.nc-footer__brand img {
    display: none;
}

.nc-footer__links {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nc-footer__links a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.nc-footer__links a:hover {
    color: #2563EB;
}

.nc-footer__social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nc-footer__social a {
    color: rgba(255,255,255,0.4);
    transition: color 0.3s;
    display: flex;
}

.nc-footer__social a:hover {
    color: #ffffff;
}

.nc-footer__social svg {
    width: 18px;
    height: 18px;
}

.nc-footer__copy {
    width: 100%;
    text-align: center;
    color: rgba(255,255,255,0.25);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

@media (max-width: 768px) {
    .nc-footer {
        padding: 40px 24px 24px;
    }
    .nc-footer__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
