.site-footer {
    box-sizing: border-box;
    background: #061019;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3.5rem 2rem 2rem;
    color: var(--text-gray, #8899aa);
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
    box-sizing: inherit;
}

.site-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) repeat(3, minmax(0, 1fr));
    gap: 3rem;
    margin-bottom: 2.75rem;
}

.site-footer-heading {
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white, #ffffff);
}

.site-footer-brand {
    display: inline-block;
    margin-bottom: 1.25rem;
    font-size: 1.45rem;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(135deg, #00e5a0, #00b8d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-footer-brand:hover {
    opacity: 0.95;
}

.site-footer-col p {
    margin: 0 0 0.85rem;
    color: var(--text-gray, #8899aa);
    font-size: 0.9rem;
    line-height: 1.75;
}

.site-footer-address {
    margin-top: 1.25rem;
    max-width: 24rem;
    font-size: 0.84rem;
}

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

.site-footer-links li {
    margin-bottom: 0.85rem;
}

.site-footer-link {
    color: var(--text-gray, #8899aa);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.site-footer-link:hover {
    color: var(--accent, #00e5a0);
}

.site-footer-contact strong {
    color: var(--text-white, #ffffff);
}

.site-footer-contact a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-footer-contact a:hover {
    color: var(--accent, #00e5a0);
}

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}

.site-footer-bottom p {
    margin: 0;
    color: var(--text-gray, #8899aa);
    font-size: 0.82rem;
}

.site-footer-badges {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.site-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #a8b9cb;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-footer-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 229, 160, 0.24);
    color: var(--text-white, #ffffff);
}

.site-footer-badge-mark {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 20px;
}

.site-footer-badge-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 1.25rem 1.75rem;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .site-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer-badges {
        justify-content: flex-start;
    }
}
