.footer {
    margin-top: 40px;
    background: #05060b;
    color: #f9fafb;
    padding: 32px 0 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

[data-theme="dark"] .footer {
    background: #08090e;
    border-top-color: rgba(255, 255, 255, 0.06);
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand {
    max-width: 260px;
}

.footer-logo-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #111217;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
}

    .footer-logo-pill,
    .footer-logo-pill:visited,
    .footer-logo-pill:hover,
    .footer-logo-pill:active {
        color: white; 
    }

.footer-logo-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, var(--accent), #1e293b);
}

.footer-brand p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    font-size: 13px;
}

.footer-col-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-bottom: 8px;
}

.footer-link {
    display: block;
    color: #e5e7eb !important;
    margin-bottom: 4px;
    cursor: pointer;
}

    .footer-link:hover {
        color: #ffffff;
    }

.footer-bottom {
    max-width: var(--container);
    margin: 12px auto 0;
    padding: 0 20px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #6b7280;
    border-top: 1px solid rgba(55, 65, 81, 0.7);
    padding-top: 10px;
}

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}
