.os-footer {
    background: #0a0a0e;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 4rem;
}

.os-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
}

.os-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.os-footer-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
    display: block;
    margin-bottom: 0.8rem;
}

.os-footer-brand p {
    color: #5a5a6e;
    font-size: 0.9rem;
    line-height: 1.6;
}

.os-footer-links .os-footer-title {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8b8b9e;
    margin-bottom: 1rem;
}

.os-footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.os-footer-nav li {
    margin-bottom: 0.5rem;
}

.os-footer-nav a {
    color: #5a5a6e !important;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.os-footer-nav a:hover {
    color: #2579e8 !important;
}

.os-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #3a3a4e;
}

@media (max-width: 768px) {
    .os-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .os-footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .os-footer-inner {
        padding: 2rem 1rem 1.5rem;
    }
}
