.xot-footer {
    background: #111111;
    margin-top: 3rem;
}
.xot-footer__inner {
    max-width: var(--xot-max);
    margin: 0 auto;
    padding: var(--xot-section-y) var(--xot-pad);
}
.xot-footer__top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #1e1e1e;
}
.xot-footer__logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}
.xot-footer__logo span { color: #F0506C; }
.xot-footer__tagline {
    font-size: 0.8rem;
    color: rgba(255,255,255,.55);
    margin: 0 0 1.25rem;
    line-height: 1.5;
}
.xot-footer__social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.xot-footer__social a {
    color: rgba(255,255,255,.5);
    display: flex;
    align-items: center;
    transition: color 0.15s;
}
.xot-footer__social a:hover { color: #ffffff; }
/* Shared column styles */
.xot-footer__col {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.xot-footer__col-label {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,.6);
    margin-bottom: 0.75rem;
}
.xot-footer__col a {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    padding: 0.3rem 0;
    transition: color 0.15s;
    border-bottom: 1px solid #1a1a1a;
}
.xot-footer__col a:last-child { border-bottom: none; }
.xot-footer__col a:hover { color: #ffffff; }
/* Bottom bar */
.xot-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    font-size: 0.7rem;
    color: rgba(255,255,255,.6);
    gap: 1rem;
}
.xot-footer__bottom-legal {
    display: flex;
    gap: 1.25rem;
}
.xot-footer__bottom-legal a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.15s;
}
.xot-footer__bottom-legal a:hover { color: rgba(255,255,255,.35); }
@media (max-width: 900px) {
    .xot-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .xot-footer__brand {
        grid-column: 1 / -1;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #1e1e1e;
    }
}
@media (max-width: 600px) {
    .xot-footer {
        margin-top: 0;
        position: relative;
    }
    .xot-footer__inner {
        padding: 2.5rem var(--xot-pad) calc(1.5rem + env(safe-area-inset-bottom, 0px));
    }
    .xot-footer__top {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 0;
        border-bottom: none;
        text-align: center;
    }

    /* ── Brand ── */
    .xot-footer__brand {
        grid-column: 1;
        padding-bottom: 1.75rem;
        border-bottom: 1px solid rgba(255,255,255,.06);
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .xot-footer__logo {
        margin-bottom: 0.5rem;
    }
    .xot-footer__logo img {
        height: 28px !important;
    }
    .xot-footer__tagline {
        font-size: 0.72rem;
        color: rgba(255,255,255,.35);
        margin-bottom: 1.25rem;
        letter-spacing: 0.3px;
    }
    .xot-footer__social {
        gap: 0.5rem;
    }
    .xot-footer__social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,.55);
        transition: all .2s;
    }
    .xot-footer__social a svg { width: 15px; height: 15px; }
    .xot-footer__social a:hover {
        background: rgba(255,255,255,.12);
        border-color: rgba(255,255,255,.18);
        color: #fff;
    }

    /* ── Accordion ── */
    .xot-footer__col {
        border-bottom: 1px solid rgba(255,255,255,.06);
        padding: 0;
        overflow: hidden;
    }
    .xot-footer__col--legal {
        border-bottom: none;
    }
    .xot-footer__col-label {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.52rem;
        letter-spacing: 2.5px;
        color: rgba(255,255,255,.35);
        padding: 0.85rem 0;
        margin-bottom: 0;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    .xot-footer__col-label::after {
        content: '+';
        font-size: 0.85rem;
        font-weight: 300;
        color: rgba(255,255,255,.25);
        line-height: 1;
    }
    .xot-footer__col.xft-open .xot-footer__col-label::after {
        content: '−';
    }
    .xot-footer__col a {
        display: block;
        border-bottom: none;
        padding: 0;
        font-size: 0.78rem;
        font-weight: 600;
        color: rgba(255,255,255,.5);
        text-align: center;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height .3s ease, opacity .25s ease, padding .3s ease;
    }
    .xot-footer__col.xft-open a {
        max-height: 3rem;
        opacity: 1;
        padding: 0.4rem 0;
    }
    .xot-footer__col.xft-open a:last-child {
        padding-bottom: 0.85rem;
    }
    .xot-footer__col a:hover { color: #fff; }

    /* ── Bottom ── */
    .xot-footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
        padding-top: 1.25rem;
        font-size: 0.58rem;
        color: rgba(255,255,255,.2);
        letter-spacing: 0.5px;
    }
    .xot-footer__bottom-legal { display: none; }
}
