/* ============================================================
   Scoped styles for the Footer pattern.
   ALL rules are prefixed with .is-style-footer-sitewide
   ============================================================ */

.is-style-footer-sitewide {
    background-color: #071820;
    color: #ffffff;
    padding: 40px 40px 30px 40px;
    font-family: 'Satoshi', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.is-style-footer-sitewide .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Badges Bar */
.is-style-footer-sitewide .footer-badges-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.is-style-footer-sitewide .footer-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.is-style-footer-sitewide .footer-badge-icon {
    color: #00CCFF;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.is-style-footer-sitewide .footer-badge-text {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.is-style-footer-sitewide .footer-top-row {
    display: grid;
    grid-template-columns: 1.2fr 2.8fr;
    gap: 60px;
    margin-bottom: 60px;
}

.is-style-footer-sitewide .footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.is-style-footer-sitewide .footer-logo-img {
    height: 43px;
    width: auto;
    display: block;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.is-style-footer-sitewide .footer-brand-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.is-style-footer-sitewide .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.is-style-footer-sitewide .footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.is-style-footer-sitewide .footer-col-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 6px;
}

.is-style-footer-sitewide .footer-links-col a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.is-style-footer-sitewide .footer-links-col a:hover {
    color: #00CCFF;
}

/* Disclaimer row */
.is-style-footer-sitewide .footer-disclaimer-row {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
}

.is-style-footer-sitewide .footer-disclaimer-text {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.is-style-footer-sitewide .footer-disclaimer-text + .footer-disclaimer-text {
    margin-top: 12px;
}

/* Bottom row */
.is-style-footer-sitewide .footer-bottom-row {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.is-style-footer-sitewide .footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.is-style-footer-sitewide .footer-bottom-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .is-style-footer-sitewide .footer-badges-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 30px;
    }
    .is-style-footer-sitewide .footer-top-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .is-style-footer-sitewide {
        padding: 50px 20px 30px 20px;
    }
    .is-style-footer-sitewide .footer-badges-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
        margin-bottom: 30px;
        padding-bottom: 24px;
    }
    .is-style-footer-sitewide .footer-badge-text {
        font-size: 13px;
    }
    .is-style-footer-sitewide .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    .is-style-footer-sitewide .footer-bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .is-style-footer-sitewide .footer-badges-bar {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
