.site-footer {
    position: relative;
    background: #0b2a63;
    background-image: radial-gradient(circle at 88% 15%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 60%);
    overflow: hidden;
}
.site-footer-svgbg {
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
.site-footer__container {
    position: relative;
    padding: 56px 0 24px;
}

.site-footer__columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* Brand column */
.site-footer__brand {
    flex: 0 0 34%;
    max-width: 400px;
}

.site-footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.site-footer__logo-text {
    display: flex;
    flex-direction: column;
}

.site-footer__logo-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.site-footer__logo-tagline {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.65);
}

.site-footer__org {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    margin: 0 0 20px;
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.site-footer__contact-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.site-footer__contact-text {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.site-footer__contact-text strong {
    color: #fff;
    font-weight: 700;
}

/* Nav column */
.site-footer__nav {
    margin-top: 80px;
    flex: 0 0 20%;
}

.site-footer__nav-title,
.site-footer__connect-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
}

.site-footer__menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.site-footer__menu a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
}

.site-footer__menu a:hover {
    color: #fff;
}

/* Connect column */
.site-footer__connect {
    flex: 1;
    max-width: 380px;
    margin-top: 80px;
}

.site-footer__connect-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.site-footer__subscribe {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.site-footer__subscribe-input {
    flex: 1;
    min-width: 0;
    height: 48px;
    padding: 0 16px;
    border: none;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    color: #1a1a1a;
}

.site-footer__subscribe-input::placeholder {
    color: #8a8f9c;
    font-style: italic;
}

.site-footer__subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    height: 48px;
    padding: 0 20px;
    border-radius: 8px;
    background: #f6921e;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: background-color 0.2s ease;
}

.site-footer__subscribe-btn:hover {
    background: #e07f0f;
}

.site-footer__socials {
    display: flex;
    gap: 12px;
}

.site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f6921e;
    transition: background-color 0.2s ease;
}

.site-footer__social-link:hover {
    background: #e07f0f;
}

/* Bottom bar */
.site-footer__bottom {
    position: relative;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.site-footer__copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

/* Tablet */
@media (max-width: 1024px) {
    .site-footer__columns {
        flex-wrap: wrap;
        row-gap: 40px;
    }

    .site-footer__brand {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .site-footer__nav {
        flex: 1;
    }

    .site-footer__connect {
        flex: 1;
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .site-footer__container {
        padding: 40px 0 20px;
    }

    .site-footer__columns {
        flex-direction: column;
        gap: 32px;
        padding: 0 16px;
    }

    .site-footer__subscribe {
        flex-direction: column;
    }

    .site-footer__subscribe-btn {
        justify-content: center;
    }
    .site-footer__connect,
    .site-footer__nav {
        margin-top: 0;
    }
    .site-footer__subscribe-input {
        padding: 18px 16px;
    }
}
