.gg-footer {
    background: var(--gg-primary);
    color: rgba(255,255,255,0.7);
    padding: 40px 0 24px;
    margin-top: 48px;
}

.gg-footer-inner {
    max-width: var(--gg-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.gg-footer-brand {
    flex: 0 0 280px;
}

.gg-footer-brand h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.gg-footer-brand p {
    font-size: 0.85rem;
    line-height: 1.5;
}

.gg-footer-links {
    display: flex;
    gap: 48px;
}

.gg-footer-links h4 {
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.gg-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gg-footer-links li {
    margin-bottom: 6px;
}

.gg-footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.15s;
}

.gg-footer-links a:hover {
    color: #fff;
}

.gg-footer-bottom {
    max-width: var(--gg-max-width);
    margin: 24px auto 0;
    padding: 16px 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .gg-footer-inner {
        flex-direction: column;
    }

    .gg-footer-brand {
        flex: none;
    }

    .gg-footer-links {
        flex-direction: column;
        gap: 24px;
    }
}
