/* ───────────────────────────────────────────────
   Shared SEO footer — internal-link mesh across all
   pages so crawlers can reach every section. Loaded
   site-wide; self-contained, prefixed .seo-footer-.
   ─────────────────────────────────────────────── */
.seo-footer {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.25);
    color: #a0a0c0;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}
.seo-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px 24px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 28px;
}
.seo-footer-col h3 {
    color: #4ecdc4;
    font-size: 1.05rem;
    margin: 0 0 10px;
}
.seo-footer-col h4 {
    color: #e8e8f8;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0 0 12px;
}
.seo-footer-col p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    color: #8a8ab0;
}
.seo-footer-col a {
    display: block;
    color: #a0a0c0;
    text-decoration: none;
    font-size: 0.88rem;
    padding: 4px 0;
    transition: color 0.15s ease;
}
.seo-footer-col a:hover { color: #4ecdc4; }
.seo-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 24px;
    text-align: center;
    font-size: 0.78rem;
    color: #606080;
}
.seo-footer-bottom p { margin: 0; max-width: 760px; margin-inline: auto; line-height: 1.5; }
.seo-footer-bottom a { color: #8a8ab0; }
@media (max-width: 720px) {
    .seo-footer-inner { grid-template-columns: 1fr 1fr; gap: 22px; }
}
