    footer {
        position: relative;
        overflow: hidden;
        padding: 72px 0 28px;
        background:
            radial-gradient(circle at 10% 18%, rgba(52, 144, 255, .18), transparent 22rem),
            radial-gradient(circle at 86% 22%, rgba(137, 226, 78, .08), transparent 20rem),
            linear-gradient(180deg, #07111f 0%, #030913 100%);
        color: #ffffff;
    }

    footer::before,
    footer::after {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
    }

    footer::before {
        background-image:
            linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
        background-size: 74px 74px;
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 100%);
    }

    footer::after {
        background: linear-gradient(120deg, rgba(255, 255, 255, .04), transparent 36%, rgba(52, 144, 255, .06) 70%, transparent);
        mix-blend-mode: screen;
        opacity: .7;
    }

    .footer-shell {
        padding: 0 24px;
        position: relative;
        z-index: 1;
    }

    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        margin-bottom: 22px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .footer-brand-line {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .footer-image {
        width: 72px;
        height: 72px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(52, 144, 255, .22);
        border-radius: 20px;
        background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(52, 144, 255, .08));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
    }

    .footer-image img {
        width: 46px;
    }

    .footer-brand-copy {
        display: grid;
        gap: 6px;
    }

    .footer-brand-name {
        font-family: 'Unbounded', 'Montserrat', sans-serif;
        font-size: clamp(18px, 2.2vw, 26px);
        font-weight: 700;
        line-height: 1.15;
        text-transform: uppercase;
    }

    .logo-description {
        margin: 0;
        max-width: 520px;
        color: rgba(255, 255, 255, .66);
        font-size: 14px;
        font-weight: 600;
        line-height: 1.6;
    }

    .footer-cta-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
        padding: 0 22px;
        border: 1px solid rgba(52, 144, 255, .38);
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(52, 144, 255, .88), rgba(7, 95, 214, .96));
        box-shadow: 0 18px 42px rgba(52, 144, 255, .2);
        color: #ffffff;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
        text-decoration: none;
        transition: transform .24s ease, box-shadow .24s ease;
    }

    .footer-cta-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 24px 54px rgba(52, 144, 255, .28);
    }

    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 28px;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .footer-nav-group {
        display: grid;
        gap: 12px;
        min-width: 160px;
    }

    .footer-nav-title {
        color: rgba(255, 255, 255, .48);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .14em;
        text-transform: uppercase;
    }

    .footer-nav-list {
        display: grid;
        gap: 10px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .footer-nav-list a {
        color: rgba(255, 255, 255, .82);
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
        text-decoration: none;
        transition: color .24s ease;
    }

    .footer-nav-list a:hover {
        color: #89e24e;
    }

    .footer-content {
        display: grid;
        grid-template-columns: minmax(320px, .72fr) minmax(0, 1fr);
        gap: 18px;
        align-items: start;
    }

    .footer-simple-card {
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 24px;
        background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .04));
        box-shadow: 0 20px 64px rgba(0, 0, 0, .22);
        backdrop-filter: blur(18px);
    }

    .footer-info {
        padding: 24px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
    }

    .footer-label {
        color: rgba(255, 255, 255, .48);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .14em;
        text-transform: uppercase;
    }

    .footer-contact-list {
        display: grid;
        gap: 12px;
    }

    .footer-contact-row {
        display: grid;
        grid-template-columns: 18px 1fr;
        gap: 12px;
        align-items: start;
        color: rgba(255, 255, 255, .82);
        font-size: 15px;
        line-height: 1.55;
    }

    .footer-contact-row > :only-child {
        grid-column: 1 / -1;
    }

    .footer-contact-row > :is(a, span) {
        min-width: 0;
        overflow-wrap: normal;
        word-break: normal;
    }

    .footer-contact-row i {
        color: #3490ff;
        margin-top: 3px;
    }

    .footer-contact-row a {
        color: #ffffff;
        text-decoration: none;
    }

    .footer-contact-row a:hover {
        color: #89e24e;
    }

    .footer-socials {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 16px;
    }

    .footer-social-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-height: 40px;
        padding: 0 14px;
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 999px;
        background: rgba(255, 255, 255, .04);
        color: rgba(255, 255, 255, .82);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
        text-decoration: none;
        transition: transform .24s ease, border-color .24s ease, background .24s ease, color .24s ease;
    }

    .footer-social-link i {
        color: #3490ff;
        font-size: 14px;
    }

    .footer-social-link:hover {
        transform: translateY(-2px);
        border-color: rgba(137, 226, 78, .3);
        background: rgba(137, 226, 78, .08);
        color: #ffffff;
    }

    .footer-map {
        padding: 24px;
        display: grid;
        gap: 16px;
    }

    .footer_map_width {
        width: 100% !important;
        overflow: hidden;
        position: relative;
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 18px;
        background: rgba(3, 8, 18, .52);
    }

    .footer_map_width iframe {
        display: block;
        width: 100%;
        height: 260px;
        border: 0;
        filter: saturate(.9) contrast(1.05) brightness(.96);
    }

    .footer-location-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .footer-location-link {
        display: block;
        min-height: 0;
        padding: 14px 16px;
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 18px;
        background: rgba(5, 14, 28, .38);
        color: #ffffff;
        text-decoration: none;
        transition: transform .24s ease, border-color .24s ease, background .24s ease;
    }

    .footer-location-link:hover {
        transform: translateY(-2px);
        border-color: rgba(52, 144, 255, .24);
        background: rgba(52, 144, 255, .08);
    }

    .footer-location-city {
        display: block;
        margin-bottom: 10px;
        color: #89e24e;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .footer-location-address {
        display: block;
        color: rgba(255, 255, 255, .78);
        font-size: 13px;
        font-weight: 600;
        line-height: 1.6;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        margin-top: 24px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, .08);
        color: rgba(255, 255, 255, .48);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .footer-bottom a {
        color: rgba(255, 255, 255, .62);
        text-decoration: none;
    }

    .footer-bottom a:hover {
        color: #89e24e;
    }

    @media screen and (max-width: 1180px) {
        .footer-content {
            grid-template-columns: 1fr;
        }

        .footer-top {
            align-items: flex-start;
            flex-direction: column;
        }
    }

    @media screen and (max-width: 860px) {
        footer {
            padding-top: 56px;
        }

        .footer_map_width iframe {
            height: 240px;
        }

        .footer-location-grid,
        .footer-bottom {
            grid-template-columns: 1fr;
        }
    }

    @media screen and (max-width: 620px) {
        footer {
            padding-top: 44px;
        }

        .footer-shell {
            padding: 0 18px;
        }

        .footer-top {
            gap: 16px;
        }

        .footer-nav {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            display: grid;
            gap: 20px;
        }

        .footer-info,
        .footer-map {
            padding: 18px;
        }

        .footer-brand-line {
            /* flex-direction: column; */
            align-items: flex-start;
            gap: 14px;
        }

        .footer-image {
            min-width: 65px;
            width: 60px;
            height: 60px;
        }

        .footer-image img {
            width: 38px;
        }

        .footer-brand-name {
            font-size: 16px;
            max-width: 14ch;
        }

        .logo-description {
            font-size: 13px;
            line-height: 1.55;
        }

        .footer-contact-list {
            gap: 14px;
        }

        .footer-contact-row {
            grid-template-columns: 20px minmax(0, 1fr);
            gap: 10px;
        }

        .footer-socials {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
        }

        .footer-social-link {
            min-height: 54px;
            padding: 0 14px;
            /* justify-content: center; */
            border-radius: 18px;
            background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(52, 144, 255, .08));
            font-size: 11px;
            letter-spacing: .1em;
            text-align: center;
        }

        .footer-social-link i {
            width: 24px;
            height: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(52, 144, 255, .14);
            font-size: 13px;
        }

        .footer_map_width iframe {
            height: 220px;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    @media screen and (max-width: 480px) {
        .footer-socials {
            grid-template-columns: 1fr 1fr;
        }
    }