/* Публичный «промо»-футер: тёмная сетка, акценты как на макете */
.site-footer-root {
    margin-top: 4rem;
}

.site-footer-pro {
    position: relative;
    color: var(--text-secondary, #c5d0e0);
    background:
        radial-gradient(ellipse 80% 60% at 10% 0%, color-mix(in srgb, var(--primary-color, #00aeef) 12%, transparent), transparent 55%),
        radial-gradient(ellipse 70% 50% at 95% 20%, color-mix(in srgb, var(--accent-color, #e63946) 8%, transparent), transparent 50%),
        linear-gradient(180deg, #070a0f 0%, #0a0e14 45%, #080b10 100%);
    border-top: 1px solid color-mix(in srgb, var(--primary-color, #00aeef) 18%, #2a3440);
    padding: 2.75rem 0 1.5rem;
    overflow: hidden;
}

.site-footer-pro--compact {
    padding: 1.75rem 0 1.15rem;
}

.site-footer-pro--compact .sf-heading {
    margin-bottom: 0.65rem;
}

.site-footer-pro--compact .sf-brand-tag {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}

.site-footer-pro--compact .sf-brand-row {
    margin-bottom: 0.35rem;
}

.site-footer-pro--compact .sf-brand-name {
    font-size: 1.15rem;
}

.site-footer-pro--compact .sf-bottom {
    margin-top: 1.35rem;
    padding-top: 0.85rem;
}

.site-footer-pro--compact .sf-link-list li + li {
    margin-top: 0.32rem;
}

.site-footer-pro--compact .sf-link-list a {
    font-size: 0.88rem;
}

.site-footer-pro--compact .sf-social-card {
    padding: 0.5rem 0.7rem;
    margin-bottom: 0.45rem;
    font-size: 0.9rem;
}

.site-footer-pro a {
    color: inherit;
    text-decoration: none;
}

.site-footer-pro a:hover {
    color: var(--text-primary, #eef2f8);
}

.site-footer-pro .sf-heading {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--primary-color, #5cd4ff) 82%, #b8c5d6);
    margin-bottom: 1rem;
}

.site-footer-pro .sf-brand-name {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary, #f4f7fb);
    line-height: 1.2;
}

.site-footer-pro .sf-brand-tag {
    font-size: 0.9rem;
    line-height: 1.55;
    color: color-mix(in srgb, var(--text-secondary, #c5d0e0) 92%, transparent);
    margin-top: 0.65rem;
    max-width: 22rem;
}

.site-footer-pro .sf-brand-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.site-footer-pro .sf-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: contain;
    background: color-mix(in srgb, var(--surface, #15202c) 70%, transparent);
    border: 1px solid color-mix(in srgb, var(--border, #3a5a78) 70%, transparent);
    padding: 4px;
}

.site-footer-pro .sf-icon-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.1rem;
}

.site-footer-pro .sf-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary, #fff);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.site-footer-pro .sf-icon-btn:hover {
    background: color-mix(in srgb, var(--primary-color, #00aeef) 18%, rgba(255, 255, 255, 0.06));
    border-color: color-mix(in srgb, var(--primary-color, #00aeef) 35%, transparent);
    transform: translateY(-1px);
}

.site-footer-pro .sf-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer-pro .sf-link-list li + li {
    margin-top: 0.45rem;
}

.site-footer-pro .sf-link-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.92rem;
    color: color-mix(in srgb, var(--text-secondary, #c5d0e0) 95%, transparent);
}

.site-footer-pro .sf-link-list a .sf-chev {
    color: color-mix(in srgb, var(--primary-color, #00aeef) 75%, #7aa7c4);
    font-size: 0.65rem;
}

.site-footer-pro .sf-link-list a:hover .sf-chev {
    color: var(--secondary-color, #5cd4ff);
}

.site-footer-pro .sf-social-card {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--border, #3a5a78) 85%, transparent);
    background: color-mix(in srgb, var(--surface, #15202c) 55%, transparent);
    margin-bottom: 0.55rem;
    font-weight: 600;
    color: var(--text-primary, #eef2f8);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-footer-pro .sf-social-card:hover {
    border-color: color-mix(in srgb, var(--primary-color, #00aeef) 35%, var(--border, #3a5a78));
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--primary-color, #00aeef) 12%, transparent);
}

.site-footer-pro .sf-social-card i {
    font-size: 1.25rem;
}

.site-footer-pro .sf-bottom {
    margin-top: 2.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
}

.site-footer-pro .sf-copy {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--text-muted, #8fa3b8) 95%, transparent);
    text-align: center;
}

.site-footer-pro .sf-to-top {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary, #fff);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.site-footer-pro .sf-to-top:hover {
    background: color-mix(in srgb, var(--primary-color, #00aeef) 22%, rgba(255, 255, 255, 0.06));
    border-color: color-mix(in srgb, var(--primary-color, #00aeef) 40%, transparent);
}

@media (max-width: 991.98px) {
    .site-footer-pro .sf-to-top {
        position: fixed;
        right: 1rem;
        bottom: 5.5rem;
        top: auto;
        transform: none;
        z-index: 1020;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    }
    .site-footer-pro .sf-bottom {
        padding-right: 0;
    }
}

/* Статистика / блоки над футером — чуть отделить от промо-фона */
.site-footer-root > .container {
    position: relative;
    z-index: 1;
}

.legal-static-page .legal-static-card {
    border-radius: 16px;
}

.legal-static-page .legal-static-body {
    line-height: 1.65;
}

.legal-static-page .legal-static-body h2 {
    margin-top: 1.5rem;
}

.legal-static-page .legal-static-body ul {
    padding-left: 1.25rem;
    margin: 0.5rem 0 1rem;
}

.legal-static-page .legal-static-body ul li + li {
    margin-top: 0.35rem;
}

.legal-static-page .legal-static-body a {
    color: var(--primary-color);
}

.legal-static-page .legal-static-body a:hover {
    color: var(--secondary-color);
}
