.footer-lite{
    margin-top: 28px;
    padding: 28px 0 16px;
    background: #1f2630;
    color: rgba(255,255,255,.82);
}

.footer-lite a{
    color: rgba(255,255,255,.72);
    text-decoration: none;
    transition: color .2s ease, transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.footer-lite a:hover,
.footer-lite a:focus,
.footer-lite a:active{
    color: #8ec5ff;
}

.footer-lite__main{
    display: grid;
    grid-template-columns: minmax(300px, 1.2fr) minmax(320px, 1.1fr) minmax(220px, .9fr);
    gap: 24px;
    align-items: stretch;
}

.footer-lite__brand,
.footer-lite__nav,
.footer-lite__contact{
    min-width: 0;
}

.footer-lite__title{
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.footer-lite__desc{
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,.68);
}

.footer-lite__feature-row{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.footer-lite__feature-card{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 10px;
    border-radius: 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.86);
    text-align: center;
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

.footer-lite__feature-card:hover,
.footer-lite__feature-card:focus,
.footer-lite__feature-card:active{
    color: #8ec5ff;
    background: rgba(142,197,255,.10);
    border-color: rgba(142,197,255,.32);
    transform: translateY(-1px);
}

.footer-lite__nav{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-content: start;
}

.footer-lite__group h4,
.footer-lite__contact h4{
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.footer-lite__group a{
    display: block;
    font-size: 14px;
    line-height: 1.9;
}

.footer-lite__group a + a{
    margin-top: 4px;
}

.footer-lite__contact-card{
    height: 100%;
    padding: 10px 18px;
    border-radius: 12px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 8px 22px rgba(0,0,0,.10);
}

.footer-lite__contact p{
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,.70);
}

.footer-lite__qrs{
    display: flex;
    gap: 10px;
    margin-top: 12px;
    align-items: center;
}

.footer-lite__qr-link{
    position: relative;
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: visible;
    background: rgba(255,255,255,.06);
}

.footer-lite__qr-thumb{
    display: block;
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
}

.footer-lite__qr-preview{
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translateX(-50%) translateY(6px);
    width: 148px;
    height: 148px;
    padding: 6px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(0,0,0,.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .18s ease;
    z-index: 20;
}

.footer-lite__qr-preview::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
}

.footer-lite__qr-preview img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.footer-lite__qr-link:hover .footer-lite__qr-preview{
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.footer-lite__bottom{
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: left;
}

.footer-lite__bottom p{
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,.55);
}

.footer-lite-mobile-ad{
    margin-top: 14px;
    padding: 0 12px;
}

.footer-lite-mobile-ad__img{
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.footer-lite-mobile{
    margin-top: 12px;
    padding: 0 2px 2px;
}

.footer-lite-mobile__inner{
    padding: 14px 12px;
    border-radius: 12px;
    background: #1f2630;
    text-align: center;
    color: rgba(255,255,255,.82);
}

.footer-lite-mobile__brand{
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.footer-lite-mobile__links{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    margin-top: 10px;
}

.footer-lite-mobile__links a{
    font-size: 13px;
    color: rgba(255,255,255,.72);
    text-decoration: none;
}

.footer-lite-mobile__copy{
    margin-top: 10px;
}

.footer-lite-mobile__copy p{
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255,255,255,.56);
}

@media (max-width: 1199.98px){
    .footer-lite__main{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-lite__nav{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-lite__feature-row{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px){
    .footer-lite{
        padding: 22px 0 14px;
    }

    .footer-lite__nav{
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-lite__feature-row{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-lite__qrs{
        justify-content: flex-start;
    }

    .footer-lite__qr-preview{
        display: none;
    }
}