/* Стили для страницы академии */

/* Основные стили для академии */
.academy-page {
    font-family: 'Montserrat', sans-serif;
}

/* Первый экран */
.first-screen {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.first-screen_wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.first-screen_intro {
    text-align: center;
}

.first-screen_title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.red-gradient {
    background: linear-gradient(135deg, #f44c36 0%, #ff6b5b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.first-screen_subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 32px;
    line-height: 1.5;
}

.bold-500 {
    font-weight: 500;
}

/* Кнопка */
.button-red {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f44c36 0%, #ff6b5b 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 76, 54, 0.3);
}

.button-red_icon {
    width: 24px;
    height: 24px;
}

/* Декоративные круги */
.first-screen-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(244, 76, 54, 0.1) 0%, rgba(255, 107, 91, 0.05) 100%);
    animation: float 6s ease-in-out infinite;
}

.first-screen-circle.left-btm {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 10%;
    animation-delay: 0s;
}

.first-screen-circle.is-right-top {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.first-screen-circle.is-right-btm {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 20%;
    animation-delay: 4s;
}

.first-screen-circle:not(.left-btm):not(.is-right-top):not(.is-right-btm) {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 5%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Секции */
.section {
    padding: 80px 0;
}

.landing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.red-text {
    color: #f44c36;
}

/* Программы */
.programms {
    background: #f8f9fa;
}

.swiper-container {
    overflow: hidden;
    padding-bottom: 40px;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
}

.programms-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.programms-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.programms-item_top {
    padding: 32px;
    background: linear-gradient(135deg, #f44c36 0%, #ff6b5b 100%);
    color: white;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.programms-item_top.is-2 {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
}

.programms-item_top.is-3 {
    background: linear-gradient(135deg, #2196F3 0%, #42A5F5 100%);
}

.programms-item_top.is-4 {
    background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%);
}

.programms-item_top.is-5 {
    background: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%);
}

.programms-item_top.is-6 {
    background: linear-gradient(135deg, #607D8B 0%, #78909C 100%);
}

.programms-item_top.is-large {
    min-height: 250px;
}

.programms-item_top.is-books-img {
    background: linear-gradient(135deg, #E91E63 0%, #F06292 100%);
}

.programms-item_top.is-tech-img {
    background: linear-gradient(135deg, #3F51B5 0%, #5C6BC0 100%);
}

.programms-item_top.is-pazl-img {
    background: linear-gradient(135deg, #795548 0%, #8D6E63 100%);
}

.programms-item_top.is-tg-img {
    background: linear-gradient(135deg, #00BCD4 0%, #26C6DA 100%);
}

.programms-item_title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.bold-span {
    font-weight: 800;
}

.programms-item_subtitle {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

.programms-item_bottom {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.programms-item_label {
    font-size: 0.875rem;
    color: #f44c36;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.programms-item_label.is-white {
    color: white;
}

.programms-item_title2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
    color: #333;
}

.programms-item_text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.programms-item_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.programms-item_price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f44c36;
}

.programms-item_price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cross-text {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.programms-item_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f44c36;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.programms-item_btn:hover {
    background: #d63e2a;
}

.programms-item_btn-icon {
    width: 16px;
    height: 16px;
}

/* Бесплатные курсы */
.free {
    background: white;
}

.programms-item_intro {
    margin-bottom: 24px;
}

/* Преимущества академии */
.reviews {
    background: #f8f9fa;
}

.section-title.is-short {
    margin-bottom: 40px;
}

.academy-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.academy-item {
    text-align: center;
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.academy-item:hover {
    transform: translateY(-3px);
}

.academy-item_img-box {
    position: relative;
    margin-bottom: 24px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.academy-item_img-over {
    position: relative;
    z-index: 2;
}

.academy-item_img {
    max-width: 80px;
    height: auto;
}

.academy-item_img-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(244, 76, 54, 0.1) 0%, rgba(255, 107, 91, 0.05) 100%);
    border-radius: 50%;
}

.academy-item_text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.academy-item_text.is-short {
    font-size: 1rem;
}

/* Пагинация Swiper */
.swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #f44c36;
}

/* Адаптивность */
@media (max-width: 768px) {
    .first-screen_title {
        font-size: 2.5rem;
    }
    
    .first-screen_subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .programms-item_top {
        padding: 24px;
        min-height: 160px;
    }
    
    .programms-item_bottom {
        padding: 24px;
    }
    
    .programms-item_title {
        font-size: 1.25rem;
    }
    
    .programms-item_title2 {
        font-size: 1.1rem;
    }
    
    .academy-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .academy-item {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .first-screen_title {
        font-size: 2rem;
    }
    
    .first-screen_subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .programms-item_footer {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .programms-item_btn {
        justify-content: center;
    }
}




