/* STREAMING_CHUNK:Styling the wrapper and grid... */
.fw-ab67f9e7-wrapper {
    background: linear-gradient(to bottom right, #0a1128, #1a1136);
    border-top: 1px solid #312e81;
    padding: 80px 0 40px 0;
    color: #cbd5e1;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@media (max-width: 767px) {
    .fw-ab67f9e7-wrapper {
        padding: 60px 0 32px 0;
    }
}

.fw-ab67f9e7-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.fw-ab67f9e7-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 64px;
}

@media (max-width: 1024px) {
    .fw-ab67f9e7-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 48px;
    }
}

@media (max-width: 767px) {
    .fw-ab67f9e7-grid { 
        grid-template-columns: 1fr; 
        gap: 40px;
    }
}

/* STREAMING_CHUNK:Styling logos and intro... */
.fw-intro-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: #94a3b8;
    margin-bottom: 24px;
    line-height: 1.5;
}

.fw-logos-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.fw-logo-link {
    display: inline-block;
}

.fw-logo {
    max-width: 150px;
    max-height: 48px;
    width: auto;
    filter: brightness(0) invert(100%);
    opacity: 0.9;
    display: block;
    transition: opacity 0.3s;
}

.fw-logo:hover {
    opacity: 1;
}

/* STREAMING_CHUNK:Styling social icons... */
.fw-socials {
    display: flex;
    gap: 12px;
}

.fw-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    border-radius: 8px;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.fw-social-link svg {
    width: 20px !important;
    height: 20px !important;
}

.fw-social-link:hover {
    color: #fff;
    transform: translateY(-2px);
}
.fw-s1:hover { background: #4f46e5; border-color: transparent; }
.fw-s2:hover { background: #e11d48; border-color: transparent; }

/* STREAMING_CHUNK:Styling headings and menus... */
.fw-heading {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    margin-top: 0;
}

.fw-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fw-list li {
    margin-bottom: 12px;
}

.fw-list a {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.fw-list a:hover {
    color: #fff;
}

/* STREAMING_CHUNK:Styling contact list... */
.fw-contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #cbd5e1;
    margin-bottom: 16px;
    line-height: 1.4;
}

.fw-contact-list a {
    color: #cbd5e1;
}

.fw-icon {
    color: #a5b4fc;
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}

.fw-icon svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0;
}

.fw-contact-text {
    font-size: 14px;
    font-weight: 500;
}

.fw-contact-text strong {
    color: #e2e8f0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
    display: block;
}

/* STREAMING_CHUNK:Styling bottom bar... */
.fw-bottom {
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid rgba(49, 46, 129, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1024px) {
    .fw-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.fw-copy {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
    line-height: 1.6;
}

.fw-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.fw-bottom-links li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fw-bottom-links li:not(:last-child):after {
    content: "|";
    color: rgba(49, 46, 129, 0.5);
}

.fw-bottom-links a {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.fw-bottom-links a:hover {
    color: #fff;
}