.footer {
    background: #2D74A8;
    color: #ffffff;
    padding: 90px 0 30px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.footer__logo {
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    
    width: auto;
    height: auto;
    padding: 0; 
    margin-bottom: 28px;
    
    background-color: transparent;
    border-radius: 0; 
    box-shadow: none;
    
    transition: transform 0.3s ease !important;
}

.footer__logo img {
    width: 230px;
    height: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 0 !important;
}

.footer .footer__logo:hover {
    background-color: transparent !important;
    transform: translateY(-3px) !important;
    box-shadow: none !important;
}

/* Адаптив для мобильных устройств */
@media (max-width: 1024px) {
    .footer__logo {
        margin-bottom: 20px;
    }
    
    .footer__logo img {
        width: 140px;
    }
}/* ========================================================================== */

.footer__about p {
    max-width: 260px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,.78);
}

.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__column h4 {
    margin-bottom: 26px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.footer__column a {
    color: rgba(255,255,255,.78);
    text-decoration: none;
    margin-bottom: 18px;
    transition: .3s;
    font-size: 14px;
    font-weight: 500;
}

.footer__column a:hover {
    color: #ffffff;
    transform: translateX(6px);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.footer__bottom span {
    color: rgba(255,255,255,.65);
}

.footer__status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.75);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4ADE80;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: .6; }
    100% { transform: scale(1); opacity: 1; }
}

.footer a, 
.footer__nav a, 
.footer__link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease; 
    display: inline-block;
    font-size: 14px;
}

.footer a:hover, 
.footer__nav a:hover, 
.footer__link:hover {
    color: #48bb78;
    transform: translateX(4px); 
}

/* Адаптив для мобильных устройств */
@media (max-width: 1024px) {
   .footer__logo {
        width: 210px;
        height: 100px;
        padding: 0 10px; 
        border-radius: 50%; 
        margin-bottom: 20px;
    }
    
    .footer__logo img {
        width: 160px;
    }
}