
    .footerOuter.siteFooterShell {
        margin-top: 0;
        padding: 56px 0 38px;
        background:
            radial-gradient(circle at top right, rgba(43, 68, 130, 0.22), transparent 28%),
            linear-gradient(180deg, #0f1722 0%, #0b121b 100%);
        border-top: 1px solid rgba(110, 137, 192, 0.12);
    }

    .siteFooterMobileCompact {
        display: none;
    }

    .siteFooterGrid {
        display: grid;
        grid-template-columns: minmax(0, 1.6fr) minmax(300px, 420px);
        gap: 48px;
        align-items: start;
        padding-inline: 40px;
    }

    .siteFooterColumns {
        display: grid;
        grid-template-columns: repeat(5, minmax(110px, 1fr));
        gap: 26px;
    }

    .siteFooterTitle {
        margin: 0 0 18px;
        color: #7d879c;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.03em;
    }

    .siteFooterNav {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .siteFooterLink,
    .siteFooterAction {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        padding: 0;
        border: 0;
        background: transparent;
        color: #f5f7ff;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.2;
        text-decoration: none;
        text-align: left;
        opacity: 0.92;
        transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
        cursor: pointer;
    }

    .siteFooterLink:hover,
    .siteFooterAction:hover {
        color: #ffd155;
        opacity: 1;
        transform: translateX(3px);
    }

    .siteFooterUtility {
        display: flex;
        flex-direction: column;
        gap: 28px;
        align-items: flex-end;
    }

    .siteFooterSocialHeader {
        display: none;
    }

    .siteFooterSocialHeader .siteFooterTitle {
        text-align: left;
    }

    .siteFooterSocialRow {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 12px;
    }

    .siteFooterSocialBtn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 62px;
        height: 62px;
        border-radius: 16px;
        border: 1px solid rgba(130, 151, 191, 0.08);
        background: var(--footer-social-accent, #161f2b);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .siteFooterSocialBtn:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 209, 85, 0.42);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    }

    .siteFooterSocialBtn svg {
        width: 30px;
        height: 30px;
        fill: #f8fbff;
    }

    .siteFooterLanguageBox {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        width: 100%;
        min-height: 62px;
        padding: 0 22px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(120, 142, 181, 0.12);
        color: #f5f7ff;
    }

    .siteFooterLanguagePickerOuter {
        position: relative;
        width: 100%;
    }

    .siteFooterLanguagePickerOuter::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 100%;
        height: 14px;
    }

    .siteFooterLanguagePickerOuter .siteFooterLanguageBox {
        position: relative;
        width: 100%;
        min-height: 0;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .siteFooterLanguageButton {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        width: 100%;
        min-height: 62px;
        padding: 0 22px;
        border: 1px solid rgba(120, 142, 181, 0.12);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.035);
        color: #f5f7ff;
        text-align: left;
        cursor: pointer;
        transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    }

    .siteFooterLanguagePickerOuter:hover .siteFooterLanguageButton,
    .siteFooterLanguagePickerOuter:focus-within .siteFooterLanguageButton {
        border-color: rgba(255, 209, 85, 0.24);
        background: rgba(255, 255, 255, 0.05);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
    }

    .siteFooterLanguageButton .siteFooterChevron {
        margin-top: 2px;
        transition: transform 0.18s ease, border-color 0.18s ease;
    }

    .siteFooterLanguagePickerOuter:hover .siteFooterChevron,
    .siteFooterLanguagePickerOuter:focus-within .siteFooterChevron {
        transform: rotate(225deg);
        border-color: rgba(255, 209, 85, 0.9);
    }

    .siteFooterLanguageDropdown {
        position: absolute;
        left: 0;
        right: 0;
        bottom: calc(100% + 6px);
        display: grid;
        gap: 8px;
        padding: 10px;
        border-radius: 18px;
        border: 1px solid rgba(118, 146, 255, 0.14);
        background: linear-gradient(180deg, rgba(20, 28, 45, 0.985) 0%, rgba(15, 23, 36, 0.99) 100%);
        box-shadow: 0 26px 48px rgba(0, 0, 0, 0.34);
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        pointer-events: none;
        transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
        z-index: 30;
    }

    .siteFooterLanguagePickerOuter:hover .siteFooterLanguageDropdown,
    .siteFooterLanguagePickerOuter:focus-within .siteFooterLanguageDropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .siteFooterLanguageSearchShell {
        position: relative;
    }

    .siteFooterLanguageSearchShell i {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(191, 203, 231, 0.66);
        pointer-events: none;
    }

    .siteFooterLanguageSearchInput {
        width: 100%;
        min-height: 44px;
        padding: 0 14px 0 40px;
        border: 1px solid rgba(120, 142, 181, 0.12);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
        color: #f7f9ff;
        font-size: 14px;
        font-weight: 600;
    }

    .siteFooterLanguageSearchInput::placeholder {
        color: rgba(163, 176, 205, 0.7);
    }

    .siteFooterLanguageOptions {
        display: grid;
        gap: 6px;
        max-height: 250px;
        overflow-y: auto;
        padding-right: 2px;
    }

    .siteFooterLanguageOptions a {
        display: grid;
        grid-template-columns: 24px minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        min-height: 46px;
        padding: 0 12px;
        border-radius: 12px;
        color: #f5f7ff;
        text-decoration: none;
        background: rgba(255, 255, 255, 0.025);
        transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
    }

    .siteFooterLanguageOptions a:hover,
    .siteFooterLanguageOptions a.is-active {
        background: rgba(255, 209, 85, 0.08);
        color: #ffffff;
        transform: translateY(-1px);
    }

    .siteFooterLanguageOptions a img {
        width: 24px;
        height: 18px;
        border-radius: 4px;
        object-fit: cover;
    }

    .siteFooterLanguageOptions a span {
        min-width: 0;
        font-size: 14px;
        font-weight: 700;
    }

    .siteFooterLanguageOptions a small {
        min-width: 38px;
        min-height: 24px;
        padding: 0 8px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.06);
        color: rgba(225, 232, 250, 0.86);
        font-size: 11px;
        font-weight: 700;
    }

    .siteFooterLanguageEmpty {
        display: none;
        min-height: 36px;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
        color: rgba(163, 176, 205, 0.76);
        font-size: 13px;
        font-weight: 600;
    }

    .siteFooterLanguageEmpty:not([hidden]) {
        display: flex;
    }

    .siteFooterLanguageMeta {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

    .siteFooterLanguageMeta img {
        width: 24px;
        height: 18px;
        border-radius: 4px;
        object-fit: cover;
        flex: 0 0 auto;
    }

    .siteFooterLanguageMeta span {
        display: block;
        color: #8690a5;
        font-size: 14px;
        font-weight: 700;
    }

    .siteFooterLanguageMeta strong {
        display: block;
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.1;
    }

    .siteFooterChevron {
        width: 11px;
        height: 11px;
        border-right: 2px solid rgba(255, 255, 255, 0.75);
        border-bottom: 2px solid rgba(255, 255, 255, 0.75);
        transform: rotate(45deg);
        margin-top: -4px;
        flex: 0 0 auto;
    }

    .siteFooterBadges {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 16px;
        width: 100%;
        padding-top: 12px;
    }

    .siteFooterBadge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        color: #8d96aa;
        font-size: 18px;
        font-weight: 600;
        line-height: 1;
        text-decoration: none;
        min-height: 58px;
    }

    .siteFooterBadgeMark {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 999px;
        border: 2px solid currentColor;
        font-size: 22px;
        font-weight: 900;
    }

    .siteFooterBadgeAge {
        flex: 0 0 auto;
    }

    .siteFooterBadgeResponsible {
        min-width: 190px;
        justify-content: flex-start;
    }

    .siteFooterBadgeCopy {
        display: inline-flex;
        flex-direction: column;
        gap: 2px;
        line-height: 1.05;
    }

    .siteFooterBadgeLogoLink {
        overflow: hidden;
        border-radius: 14px;
        background: rgba(246, 248, 251, 0.96);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
    }

    .siteFooterBadgeLogo {
        display: block;
        width: 192px;
        height: auto;
        max-width: 100%;
    }

    .siteFooterProvider {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        width: fit-content;
        max-width: calc(100% - 80px);
        min-height: 42px;
        margin: 28px 40px 0;
        padding: 7px 12px 7px 8px;
        border: 1px solid rgba(191, 205, 238, 0.13);
        border-radius: 999px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
            rgba(12, 18, 30, 0.84);
        color: rgba(229, 237, 255, 0.82);
        text-decoration: none;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .siteFooterProvider:hover,
    .siteFooterProvider:focus-visible {
        text-decoration: none;
        outline: none;
    }

    .siteFooterProviderLogo {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 104px;
        min-height: 32px;
        padding: 4px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 8px 18px rgba(12, 20, 34, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.82);
    }

    .siteFooterProviderLogo img {
        display: block;
        width: 104px;
        height: auto;
    }

    .siteFooterProviderCopy {
        min-width: 0;
        color: currentColor;
        font-size: 12px;
        font-weight: 750;
        letter-spacing: 0.01em;
        line-height: 1.25;
    }

    .siteFooterProvider i {
        flex: 0 0 auto;
        color: rgba(255, 209, 85, 0.92);
        font-size: 12px;
    }

    .siteFooterLegal {
        margin-top: 34px;
        padding-inline: 40px;
        padding-top: 18px;
        border-top: 1px solid rgba(120, 142, 181, 0.1);
        color: #6d788d;
        font-size: 13px;
        line-height: 1.6;
    }

    @media (max-width: 1280px) {
        .siteFooterColumns {
            grid-template-columns: repeat(3, minmax(140px, 1fr));
        }
    }

    @media (max-width: 1024px) {
        .footerOuter.siteFooterShell {
            padding: 44px 0 30px;
        }

        .siteFooterGrid {
            grid-template-columns: 1fr;
            gap: 36px;
            padding-inline: 24px;
        }

        .siteFooterLegal {
            padding-inline: 24px;
        }

        .siteFooterProvider {
            margin-inline: 24px;
            max-width: calc(100% - 48px);
        }

        .siteFooterUtility {
            align-items: stretch;
        }

        .siteFooterSocialRow,
        .siteFooterBadges {
            justify-content: flex-start;
        }
    }

    @media (max-width: 720px) {
        .siteFooterColumns {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 28px 20px;
        }

        .siteFooterSocialBtn {
            width: 54px;
            height: 54px;
            border-radius: 14px;
        }

        .siteFooterSocialBtn svg {
            width: 26px;
            height: 26px;
        }

        .siteFooterBadge {
            font-size: 15px;
            min-height: 50px;
        }

        .siteFooterBadgeLogo {
            width: 174px;
        }
    }

    @media (max-width: 520px) {
        .footerOuter.siteFooterShell {
            margin-top: 0;
            padding: 18px 0 calc(86px + env(safe-area-inset-bottom, 0px));
            background:
                radial-gradient(circle at 12% 0%, rgba(80, 112, 255, 0.14), transparent 34%),
                linear-gradient(180deg, #0b111e 0%, #080d16 100%);
        }

        .siteFooterMobileCompact {
            display: grid;
            gap: 12px;
            padding: 0 14px;
        }

        .siteFooterMobileTop {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            min-height: 42px;
            padding: 0 2px;
        }

        .siteFooterMobileTop strong {
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            color: #f5f8ff;
            font-size: 15px;
            font-weight: 900;
            letter-spacing: 0;
        }

        .siteFooterMobileTop span {
            flex: 0 0 auto;
            color: rgba(216, 226, 248, 0.62);
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
        }

        .siteFooterMobileQuickLinks {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 8px;
        }

        .siteFooterMobileQuickLinks a {
            display: grid;
            justify-items: center;
            align-content: center;
            gap: 6px;
            min-height: 64px;
            padding: 8px 4px;
            border: 1px solid rgba(154, 175, 224, 0.12);
            border-radius: 18px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
                rgba(13, 20, 37, 0.82);
            color: rgba(239, 244, 255, 0.86);
            text-align: center;
            text-decoration: none;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
        }

        .siteFooterMobileQuickLinks a:hover,
        .siteFooterMobileQuickLinks a:focus-visible {
            color: #ffffff;
            text-decoration: none;
            border-color: rgba(255, 209, 85, 0.24);
        }

        .siteFooterMobileQuickLinks i {
            color: #f6d466;
            font-size: 16px;
        }

        .siteFooterMobileQuickLinks span {
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            font-size: 10px;
            font-weight: 800;
            line-height: 1.1;
        }

        .siteFooterMobileDetails {
            border: 1px solid rgba(154, 175, 224, 0.12);
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.04);
            overflow: hidden;
        }

        .siteFooterMobileDetails summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 48px;
            padding: 0 14px;
            color: #f4f7ff;
            font-size: 12px;
            font-weight: 900;
            cursor: pointer;
            list-style: none;
        }

        .siteFooterMobileDetails summary::-webkit-details-marker {
            display: none;
        }

        .siteFooterMobileDetails summary i {
            color: rgba(221, 230, 250, 0.72);
            font-size: 11px;
            transition: transform 0.16s ease;
        }

        .siteFooterMobileDetails[open] summary i {
            transform: rotate(180deg);
        }

        .siteFooterMobileLegalLinks {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding: 0 12px 12px;
        }

        .siteFooterMobileLegalLinks a {
            display: inline-flex;
            align-items: center;
            min-height: 32px;
            padding: 0 11px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            color: rgba(228, 237, 255, 0.74);
            font-size: 11px;
            font-weight: 750;
            text-decoration: none;
        }

        .siteFooterColumns {
            display: none;
        }

        .siteFooterGrid {
            display: block;
            padding-inline: 14px;
            margin-top: 12px;
        }

        .siteFooterUtility {
            gap: 12px;
        }

        .siteFooterLanguageBox {
            padding: 14px 18px;
            min-height: 0;
        }

        .siteFooterLanguageButton {
            min-height: 56px;
            padding: 0 18px;
        }

        .siteFooterLanguageDropdown {
            bottom: calc(100% + 8px);
        }

        .siteFooterBadges {
            justify-content: flex-start;
            gap: 10px;
            padding-top: 2px;
        }

        .siteFooterBadge {
            gap: 8px;
            font-size: 11px;
            min-height: 40px;
        }

        .siteFooterBadgeMark {
            width: 34px;
            height: 34px;
            font-size: 15px;
            border-width: 1px;
        }

        .siteFooterBadgeResponsible {
            min-width: 112px;
        }

        .siteFooterBadgeLogo {
            width: 148px;
        }

        .siteFooterLegal {
            margin-top: 12px;
            padding: 10px 14px 0;
            font-size: 11px;
            line-height: 1.45;
            text-align: center;
        }

        .siteFooterProvider {
            display: flex;
            width: auto;
            max-width: none;
            margin: 14px 14px 0;
            border-radius: 18px;
        }

        .siteFooterProviderLogo {
            min-width: 96px;
            padding-inline: 9px;
        }

        .siteFooterProviderLogo img {
            width: 96px;
        }

        .siteFooterProviderCopy {
            font-size: 11px;
        }
    }
