/* STOPKA STRONY */
.site-footer {
    background: rgba(4, 7, 13, 0.95);
    border-top: 1px solid var(--border-glass);
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 320px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-white);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--accent-cyan); }

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 24px 0;
    border-top: 1px solid var(--border-glass);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-container { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-brand p { margin: 16px auto 0; }
    .logo-link { justify-content: center; }
}