.site-footer {
    position: relative;
    margin: 0;
    padding: 2.25rem 1.5rem 2.5rem;
    background:
        linear-gradient(180deg, rgba(8, 13, 23, 0.96), rgba(6, 11, 20, 0.98));
    color: var(--text-color, #f5f7fb);
    border-top: 1px solid rgba(122, 225, 255, 0.14);
    box-shadow: 0 -18px 40px rgba(4, 9, 20, 0.26);
    overflow: hidden;
    z-index: 2;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top center, rgba(0, 212, 255, 0.08), transparent 34%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: auto, 52px 52px, 52px 52px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 95%);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

.footer-shell {
    position: relative;
    z-index: 1;
    width: min(1100px, 100%);
    margin: 0 auto;
    text-align: center;
    padding-top: 0.35rem;
}

.footer-brand {
    max-width: 620px;
    margin: 0 auto 1.5rem;
}

.footer-company {
    color: #f8fbff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-slogan {
    margin: 0.65rem 0 0;
    color: rgba(223, 232, 243, 0.74);
    font-size: 0.95rem;
    line-height: 1.65;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem 1.1rem;
    margin-top: 0.9rem;
}

.footer-contact a,
.footer-nav a {
    color: rgba(236, 242, 250, 0.86);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-contact a:hover,
.footer-nav a:hover {
    color: var(--accent, #7fe7ff);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-nav a {
    position: relative;
    font-size: 0.94rem;
    font-weight: 600;
}

.footer-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0.7);
    transform-origin: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-nav a:hover::after {
    opacity: 0.7;
    transform: scaleX(1);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    color: rgba(214, 225, 238, 0.62);
    font-size: 0.84rem;
    line-height: 1.6;
}

.footer-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 820px;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 1.9rem 1rem 2rem;
    }

    .footer-nav {
        gap: 0.75rem 1rem;
    }

    .footer-bottom {
        margin-top: 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-contact a,
    .footer-nav a,
    .footer-nav a::after {
        transition: none;
    }
}
