/**
 * SEOGUM — tüm public sayfalarda ortak alt şerit footer
 */
.site-footer {
    background: #0a0f1a;
    color: #94a3b8;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.site-footer .container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer__copy {
    color: #94a3b8;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
}

.site-footer__nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.site-footer__nav a:hover {
    color: #fff;
}

.site-footer--strip {
    position: relative;
    z-index: 2;
}

@media (max-width: 640px) {
    .site-footer .container {
        flex-direction: column;
        text-align: center;
    }

    .site-footer__nav {
        justify-content: center;
    }
}
