/* ════════════════════════════════════════════════════════════════════════
   FUTUROBOTS GLOBAL FOOTER
════════════════════════════════════════════════════════════════════════ */

/* Hide Astra's default footer site-wide */
#colophon.site-footer,
.site-footer {
    display: none !important;
}

/* ── Variables (same as main stylesheet) ──────────────────────────────── */
.fbm-footer {
    --fbm-primary: #0066FF;
    --fbm-footer-bg: #0a0f1e;
    --fbm-footer-border: rgba(255,255,255,.08);
    --fbm-footer-text: #94a3b8;
    --fbm-footer-heading: #ffffff;
    --fbm-footer-link: #cbd5e1;
    --fbm-footer-link-hover: #ffffff;
    font-family: var(--ast-body-font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}

/* ── Shared inner container ───────────────────────────────────────────── */
.fbm-footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Main section ─────────────────────────────────────────────────────── */
.fbm-footer-main {
    background: var(--fbm-footer-bg);
    padding: 72px 0 64px;
    border-top: 1px solid var(--fbm-footer-border);
}

.fbm-footer-main .fbm-footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: start;
}

/* ── Brand column ─────────────────────────────────────────────────────── */
.fbm-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fbm-footer-logo {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none !important;
    line-height: 1;
    transition: opacity .2s;
}
.fbm-footer-logo:hover { opacity: .85; }
.fbm-footer-logo span { color: var(--fbm-primary); }

.fbm-footer-tagline {
    font-size: 15px;
    color: var(--fbm-footer-text);
    line-height: 1.8;
    margin: 0;
    max-width: 420px;
}

.fbm-footer-note {
    font-size: 12px;
    color: rgba(148,163,184,.6);
    line-height: 1.6;
    margin: 0;
    max-width: 380px;
    padding-top: 4px;
    border-top: 1px solid var(--fbm-footer-border);
}

/* ── Navigation ───────────────────────────────────────────────────────── */
.fbm-footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.fbm-footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fbm-footer-nav-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 4px;
}

.fbm-footer-nav-col a {
    font-size: 14px;
    color: var(--fbm-footer-link);
    text-decoration: none !important;
    transition: color .18s;
    line-height: 1.4;
}
.fbm-footer-nav-col a:hover { color: var(--fbm-footer-link-hover); }

/* ── Bottom bar ───────────────────────────────────────────────────────── */
.fbm-footer-bottom {
    background: #060b14;
    padding: 18px 0;
}

.fbm-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.fbm-footer-copy {
    font-size: 13px;
    color: rgba(148,163,184,.7);
}

.fbm-footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fbm-footer-legal a {
    font-size: 13px;
    color: rgba(148,163,184,.7);
    text-decoration: none !important;
    transition: color .18s;
}
.fbm-footer-legal a:hover { color: #ffffff; }

.fbm-footer-legal-sep {
    color: rgba(148,163,184,.35);
    font-size: 12px;
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 860px) {
    .fbm-footer-main .fbm-footer-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .fbm-footer-main { padding: 56px 0 48px; }
    .fbm-footer-tagline { max-width: 100%; }
    .fbm-footer-note { max-width: 100%; }
}

@media (max-width: 560px) {
    .fbm-footer-nav { grid-template-columns: 1fr 1fr; gap: 28px; }
    .fbm-footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
    .fbm-footer-logo { font-size: 1.4rem; }
}

@media (max-width: 360px) {
    .fbm-footer-nav { grid-template-columns: 1fr; }
}
