.gx-footer {
    background: #0F172A;
    color: #94A3B8;
    padding: clamp(2rem, 5vw, 4rem) 0 1.5rem;
    margin-top: clamp(3rem, 6vw, 5rem);
    border-top: 1px solid #1E293B;
}
.gx-footer-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}
.gx-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    margin-bottom: 2.5rem;
}
.gx-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: #F1F5F9;
}
.gx-footer-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #64748B;
}
.gx-footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #CBD5E1;
    margin-bottom: 1rem;
}
.gx-footer-links {
    list-style: none;
    padding: 0;
}
.gx-footer-links li { margin-bottom: 0.625rem; }
.gx-footer-links a {
    color: #64748B;
    font-size: 0.875rem;
    transition: color 0.15s;
}
.gx-footer-links a:hover { color: #A5B4FC; }
.gx-footer-divider {
    border: none;
    border-top: 1px solid #1E293B;
    margin: 0 0 1.5rem;
}
.gx-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
    color: #475569;
}
.gx-footer-disclaimer {
    font-size: 0.6875rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #0B1120;
    border-radius: 0.5rem;
    border: 1px solid #1E293B;
}
@media (max-width: 768px) {
    .gx-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .gx-footer-grid { grid-template-columns: 1fr; }
}

