.snr-footer {
        background: #0d0d0d;
        border-top: 1px solid #1a1a1a;
        padding: 28px 60px 0;
        margin-top: auto;
        margin-bottom: 0;
        font-family: 'Figtree', 'Inter', sans-serif;
    }
    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 24px;
        border-bottom: 1px solid #1a1a1a;
    }
    .footer-brand .footer-logo {
        font-size: 24px;
        font-weight: 950;
        font-style: italic;
        letter-spacing: -1.5px;
        text-transform: uppercase;
        color: #fff;
    }
    .footer-brand .footer-logo span { color: var(--brand-primary); }
    .footer-brand .footer-tagline {
        font-size: 11px;
        font-weight: 900;
        font-style: italic;
        color: var(--brand-primary);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-top: 8px;
    }
    .footer-badges {
        display: flex;
        gap: 12px;
        align-items: center;
    }
    .footer-badge-img {
        height: 36px;
        width: auto;
        opacity: 0.85;
        transition: opacity .2s;
    }
    .footer-badge-img:hover { opacity: 1; }
    .footer-cols {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        padding: 30px 0;
        border-bottom: 1px solid #1a1a1a;
    }
    .footer-col-title {
        font-size: 11px;
        font-weight: 900;
        font-style: italic;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 20px;
    }
    .footer-col a {
        display: block;
        font-size: 13px;
        font-weight: 500;
        color: #888;
        text-decoration: none;
        margin-bottom: 12px;
        transition: color .2s;
        line-height: 1;
    }
    .footer-col a:hover { color: #fff; }
    .footer-col a.disabled {
        color: #444;
        pointer-events: none;
        cursor: default;
    }
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0 0;
    }
    .footer-socials { display: flex; gap: 18px; align-items: center; }
    .footer-social-link {
        color: #555;
        font-size: 18px;
        transition: color .2s;
        display: flex;
        align-items: center;
    }
    .footer-social-link:hover { color: #fff; }
    .footer-social-link svg { width: 20px; height: 20px; fill: currentColor; }
    .footer-legal {
        text-align: right;
    }
    .footer-legal .copy {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 3px;
        color: #444;
        text-transform: uppercase;
    }
    .footer-legal .sub {
        font-size: 10px;
        font-weight: 700;
        font-style: italic;
        letter-spacing: 2px;
        color: #333;
        text-transform: uppercase;
        margin-top: 4px;
    }
    @media (max-width: 900px) {
        .snr-footer { padding: 40px 24px 0; }
        .footer-top { flex-direction: column; gap: 24px; }
        .footer-cols { grid-template-columns: 1fr 1fr; gap: 30px; }
        .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
        .footer-legal { text-align: center; }
    }
    @media (max-width: 500px) {
        .footer-cols { grid-template-columns: 1fr; }
    }