.main-footer {
    background: #050505;
    color: #fff;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: sans-serif; /* Используйте ваш основной шрифт */
}

/* --- РЕКЛАМНЫЙ БЛОК --- */
.footer-promo {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 60px 40px;
    background: #111;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 252, 30, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.promo-bg-glow {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 252, 30, 0.1) 0%, transparent 70%);
    filter: blur(50px);
}

.promo-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.promo-text h2 {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.promo-text p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    line-height: 1.6;
    font-size: 18px;
}

/* Стили выделения текста */
.highlight-yellow {
    color: #D4FC1E;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(212, 252, 30, 0.3);
}

.highlight-white {
    color: #fff;
    font-weight: 700;
    border-bottom: 2px solid #D4FC1E;
    padding-bottom: 2px;
}

.btn-promo-main {
    display: block;
    background: #D4FC1E;
    color: #000;
    padding: 20px 40px;
    border-radius: 18px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 12px;
    text-align: center;
    white-space: nowrap;
}

.btn-promo-main:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 252, 30, 0.4);
}

.promo-subtext {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    text-align: center;
}

/* --- КОНТЕНТ ФУТЕРА --- */
.footer-content {
    padding-bottom: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-brand {
    flex: 1;
    min-width: 280px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 900;
    display: block;
    margin-bottom: 25px;
    color: #D4FC1E;
    letter-spacing: 1px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50%;
    font-size: 20px; /* Размер иконки */
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-link:hover {
    background: #D4FC1E; /* Ваш фирменный лимонный цвет */
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 252, 30, 0.3);
}

.footer-links-group {
    display: flex;
    gap: 80px;
    flex: 2;
    justify-content: flex-end;
}

.footer-column h4 {
    font-size: 13px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.footer-column a, .footer-column p {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 15px;
    transition: 0.3s;
}

.footer-column a:hover {
    color: #D4FC1E;
    transform: translateX(5px);
}

/* --- НИЖНЯЯ ПЛАШКА --- */
.footer-bottom {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom .footer-container {
    justify-content: space-between;
    align-items: center;
}

.bottom-links {
    display: flex;
    gap: 30px;
}

.bottom-links a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.bottom-links a:hover {
    color: #fff;
}

/* --- МОБИЛЬНАЯ ВЕРСИЯ --- */
@media (max-width: 992px) {
    .promo-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-links-group {
        justify-content: flex-start;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-links-group {
        flex-direction: column;
    }
    .footer-promo {
        margin: 0 15px 60px;
        padding: 40px 25px;
    }
    .promo-text p {
        font-size: 16px;
    }
    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}