/* ===== ПОДВАЛ САЙТА ===== */
.footer {
    background-color: #212429;
    padding: 35px 0;
    font-family: 'Roboto', Arial, sans-serif;
    width: 100%;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.footer__grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 65px;
}

.footer__copyright {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.85;
    margin: 0;
}

.footer__policy-link {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.85;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer__policy-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer__nav-link {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.85;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer__nav-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer__dealer-link {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.85;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer__dealer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer__disclaimer {
    font-size: 14px;
    line-height: 1.65;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.8;
    margin: 0;
    max-width: 1069px;
}

footer nav {
    display: flex;
    gap:50px;
}
/* Адаптивность */
@media screen and (max-width: 1199px) {
    .footer {
        padding: 35px 0 60px;
    }
    
    .footer__grid {
        
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .footer__copyright {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    
    .footer__policy-link {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .footer__nav-link {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        justify-self: start;
    }
    
    .footer__dealer-link {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        justify-self: start;
    }
}

@media screen and (max-width: 959px) {
    .footer {
        padding: 35px 0 70px;
    }
    
    .footer__grid {
        flex-direction: column;
        gap: 45px;
        margin-bottom: 70px;
    }
    
    .footer__copyright,
    .footer__policy-link,
    .footer__nav-link,
    .footer__dealer-link {
        grid-column: 1 / 2;
        grid-row: auto;
        justify-self: start;
    }
    
    .footer__copyright {
        grid-row: 1 / 2;
    }
    
    .footer__nav-link {
        grid-row: 2 / 3;
    }
    
    .footer__dealer-link {
        grid-row: 3 / 4;
    }
    
    .footer__policy-link {
        grid-row: 4 / 5;
    }
}

@media screen and (max-width: 639px) {
    .footer {
        padding: 35px 0 80px;
    }
    
    .footer__grid {
        margin-bottom: 70px;
    }
    
    .footer__disclaimer {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media screen and (max-width: 479px) {
    .footer {
        padding: 50px 0 80px;
    }
    
    .footer__grid {
        margin-bottom: 65px;
        flex-direction: column;
    }

    footer nav {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .footer__disclaimer {
        font-size: 14px;
        line-height: 1.7;
        max-width: 289px;
    }
}