
    .main-footer {
        background: #121212; /* Темный графит */
        color: #fff;
        padding: 80px 20px 30px;
        margin-top: 100px;
        border-radius: 60px 60px 0 0; /* Красивое скругление сверху */
    }

    .footer-container {
        max-width: 1440px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 60px;
    }

    /* Лого и описание */
    .footer-logo {
        font-size: 24px;
        font-weight: 900;
        margin-bottom: 25px;
        letter-spacing: -1px;
    }
    .footer-logo span { color: var(--accent); }
    
    .footer-brand p {
        color: #888;
        line-height: 1.6;
        font-size: 15px;
        margin-bottom: 30px;
        max-width: 300px;
    }

    .footer-social { display: flex; gap: 15px; }
    .social-link {
        width: 40px;
        height: 40px;
        border: 1px solid #333;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        transition: 0.3s;
    }
    .social-link:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); }

    /* Навигация */
    .footer-nav h4, .footer-contacts h4 {
        font-size: 18px;
        margin-bottom: 25px;
        font-weight: 700;
    }
    
    .footer-nav ul { list-style: none; padding: 0; }
    .footer-nav li { margin-bottom: 12px; }
    .footer-nav a {
        color: #888;
        text-decoration: none;
        transition: 0.3s;
        font-size: 15px;
    }
    .footer-nav a:hover { color: var(--accent); padding-left: 5px; }

    /* Контакты */
    .contact-item { margin-bottom: 20px; }
    .contact-item span {
        display: block;
        font-size: 11px;
        color: #555;
        text-transform: uppercase;
        font-weight: 800;
        margin-bottom: 5px;
    }
    .contact-item p, .phone-link {
        font-size: 15px;
        color: #fff;
        text-decoration: none;
        margin: 0;
    }
    .phone-link { font-weight: 700; font-size: 18px; }

    .footer-btn {
        background: transparent;
        border: 1px solid var(--accent);
        color: var(--accent);
        padding: 12px 25px;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 700;
        margin-top: 10px;
        transition: 0.3s;
    }
    .footer-btn:hover { background: var(--accent); color: var(--dark); }

    /* Низ */
    .footer-bottom {
        max-width: 1440px;
        margin: 60px auto 0;
        padding-top: 30px;
        border-top: 1px solid #222;
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        color: #555;
    }
    .footer-policy a { color: #555; text-decoration: none; }

    /* МОБИЛЬНАЯ ВЕРСИЯ */
    @media (max-width: 1024px) {
        .main-footer { padding: 60px 20px 30px; border-radius: 40px 40px 0 0; }
        .footer-container { 
            grid-template-columns: 1fr; 
            gap: 40px;
            text-align: left; /* Оставляем текст слева по твоему запросу */
        }
        .footer-brand p { max-width: 100%; }
        .footer-bottom { flex-direction: column; gap: 15px; }
    }

