/* ── BSX Footer ─────────────────────────────────── */

.bsx-footer {
    font-family: var(--bsx-font);
    background: var(--bsx-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.bsx-footer *,
.bsx-footer *::before,
.bsx-footer *::after {
    box-sizing: border-box;
}

/* ── Inner container ────────────────────────────── */

.bsx-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 16px 32px;
}

/* ── Grid ───────────────────────────────────────── */

.bsx-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

.bsx-footer__col {
    min-width: 0;
}

/* ── Logo & Description ─────────────────────────── */

.bsx-footer__logo {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.bsx-footer__desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 0 16px;
}

/* ── App Badges ─────────────────────────────────── */

.bsx-footer__badges {
    display: flex;
    gap: 8px;
    align-items: center;
}

.bsx-footer__badges a {
    display: inline-flex;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.bsx-footer__badges a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.bsx-footer__badges img {
    height: 36px;
    width: auto;
}

/* ── Column Headings ────────────────────────────── */

.bsx-footer__heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 14px;
}

/* ── Links ──────────────────────────────────────── */

.bsx-footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bsx-footer__link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.bsx-footer__link:hover {
    color: #fff;
    padding-left: 4px;
}

/* ── Trust Seals ────────────────────────────────── */

.bsx-footer__seals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bsx-footer__seals img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bsx-footer__seals img:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* ── Bottom Bar ─────────────────────────────────── */

.bsx-footer__bottom {
    background: rgba(0, 0, 0, 0.15);
    padding: 16px;
}

.bsx-footer__bottom-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.bsx-footer__copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.bsx-footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
}

.bsx-footer__legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
}

.bsx-footer__legal a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Tablet (768px) ─────────────────────────────── */

@media (min-width: 768px) {
    .bsx-footer__inner {
        padding: 56px 24px 36px;
    }

    .bsx-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }

    .bsx-footer__bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ── Desktop (1024px) ───────────────────────────── */

@media (min-width: 1024px) {
    .bsx-footer__inner {
        padding: 64px 24px 40px;
    }

    .bsx-footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 32px;
    }
}
