/* ───────────────────────────────────────────────
   Shared SEO footer — internal-link mesh across all
   pages so crawlers can reach every section. Loaded
   site-wide; self-contained, prefixed .seo-footer-.
   ─────────────────────────────────────────────── */

/* Sticky footer: stays at the bottom on short pages */
body.page-footer {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.seo-footer {
    margin-top: auto;
    flex-shrink: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 12, 22, 0.72);
    backdrop-filter: blur(12px) saturate(130%);
    color: #9aa7b2;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.seo-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 36px 24px 22px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 28px;
}

.seo-footer-col h3 {
    color: #eaf1ff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0 0 10px;
}

.seo-footer-col h4 {
    color: #d5dde4;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.55px;
    margin: 0 0 12px;
}

.seo-footer-col p {
    font-size: 0.84rem;
    line-height: 1.65;
    margin: 0;
    color: #6b7886;
}

.seo-footer-col a {
    display: block;
    color: #9aa7b2;
    text-decoration: none;
    font-size: 0.86rem;
    padding: 5px 0;
    transition: color 0.15s ease;
}

.seo-footer-col a:hover {
    color: #4d8dff;
}

.seo-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 24px;
    text-align: center;
    font-size: 0.76rem;
    color: #5a6672;
}

.seo-footer-bottom p {
    margin: 0;
    max-width: 760px;
    margin-inline: auto;
    line-height: 1.55;
}

.seo-footer-bottom a {
    color: #7a8794;
    text-decoration: none;
}

.seo-footer-bottom a:hover {
    color: #4d8dff;
}

@media (max-width: 720px) {
    .seo-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
        padding: 28px 18px 18px;
    }
}
