/* Секция курсов */
.courses-section {
    padding: 80px 20px;
    background: #000;
    color: #fff;
}

.courses-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Сетка курсов */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Карточка курса */
.course-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 20px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.course-card:hover {
    border-color: #D4FC1E;
    transform: translateY(-5px);
    background: #111;
}

/* Иконка курса */
.course-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #D4FC1E;
    flex-shrink: 0;
}

/* Детали курса */
.course-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.course-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.course-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.4;
}

.course-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: #aaa;
}

.course-price {
    font-size: 20px;
    font-weight: 800;
    color: #D4FC1E;
    margin-top: 5px;
}

/* Кнопка в карточке */
.btn-course-cta {
    display: inline-block;
    background: #D4FC1E;
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    transition: 0.3s;
    margin-top: 10px;
    text-align: center;
}

.btn-course-cta:hover {
    box-shadow: 0 0 20px rgba(212, 252, 30, 0.4);
}

/* Статистика */
.courses-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #D4FC1E;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #aaa;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .course-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .course-details {
        align-items: center;
        text-align: center;
    }

    .courses-stats {
        flex-direction: column;
        gap: 30px;
    }
}





/* Стили для секции баннера */
.course-banner-section {
    padding: 30px 20px;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.course-banner {
    width: 100%;
    max-width: 1400px;
    background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
    border: 1px solid rgba(212, 252, 30, 0.1);
    border-radius: 16px;
    padding: 40px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 140px;
    position: relative;
    overflow: hidden; /* Важно для блика */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

/* Эффект свечения (блик), который вам нравится */
.course-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 252, 30, 0.1), transparent);
    animation: shimmer 4s infinite linear;
}

.course-banner:hover {
    border-color: rgba(212, 252, 30, 0.4);
    box-shadow: 0 8px 30px rgba(212, 252, 30, 0.15);
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    width: 100%;
    z-index: 1; /* Чтобы текст был над бликом */
}

.banner-title {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Оставил только пульсацию свечения текста */
    animation: glowPulse 2s infinite alternate;
}

.banner-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
    /* Убрал анимацию печатной машинки и каретку */
    width: 100%;
}

.banner-cta {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color, #D4FC1E);
    color: #000;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 252, 30, 0.2);
    /* Убрал пульсацию кнопки */
}

.banner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 252, 30, 0.4);
    filter: brightness(1.1);
}

/* ОСТАВЛЕННЫЕ АНИМАЦИИ */
@keyframes glowPulse {
    from { text-shadow: 0 0 5px rgba(212, 252, 30, 0.2); }
    to { text-shadow: 0 0 15px rgba(212, 252, 30, 0.5); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Адаптивность */
@media (max-width: 768px) {
    .course-banner {
        padding: 30px 20px;
    }
    .banner-title { font-size: 26px; }
    .banner-subtitle { font-size: 14px; }
}