
/* ===== INTRO===== */
.intro {max-width: 900px;margin:60px auto}
.text-intro     
	{font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
	text-align: center;}
.text-intro b, .text-intro  strong {color: var(--red-dark)}
.text-intro ul>li {text-align:left}

/* ===== ABOUT SECTION MAIN ===== */
body.page-main .about {
    padding: 100px 0;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
        url('../img/city.webp') center/contain;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 600px;
}

body.page-main .about .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.page-main .about .intro {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    max-width: 700px;
    border-top: 4px solid var(--primary-red);
    text-align: center;
    margin: 0 auto 30px;
}

body.page-main .about h2 {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
}

body.page-main .about_subtitle {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.4;
}

body.page-main .text-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
    text-align: center;
}

body.page-main .text-intro strong {
    color: var(--text-dark);
    font-weight: 700;
}

body.page-main .about .btn--primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--red-dark));
    padding: 15px 30px;
    font-size: 1.1rem;
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0;
    box-shadow: var(--shadow);
}

body.page-main .about .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

/* Адаптивность */
@media (max-width: 768px) {
    body.page-main .about {
        padding: 60px 0;
        min-height: 500px;
        background-attachment: scroll; /* Убираем фиксированный фон на мобильных */
    }
    
    body.page-main .about .intro {
        padding: 30px 20px;
        border-top: none;
        border-left: 4px solid var(--primary-red);
        margin: 0 15px 25px;
    }
    
    body.page-main .about h2 {
        font-size: 2rem;
    }
    
    body.page-main .about_subtitle {
        font-size: 1.3rem;
    }
    
    body.page-main .text-intro {
        font-size: 1rem;
        text-align: left;
    }
    
    body.page-main .about .btn--primary {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body.page-main .about {
        padding: 40px 0;
        min-height: 400px;
    }
    
    body.page-main .about .intro {
        padding: 25px 15px;
    }
    
    body.page-main .about h2 {
        font-size: 1.8rem;
    }
    
    body.page-main .about_subtitle {
        font-size: 1.1rem;
    }
    
    body.page-main .text-intro {
        font-size: 0.95rem;
    }
    
    body.page-main .about .btn--primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
/* ===== FEATURES SECTION MAIN ===== */
body.page-main .features {
    padding: 80px 0;
    background: var(--gray-bg);
}

body.page-main .features_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

body.page-main .feature-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

body.page-main .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(169, 11, 32, 0.15);
    border-color: rgba(169, 11, 32, 0.3);
}

body.page-main .feature-card_header {
    position: relative;
    height: 260px;
    overflow: hidden;
}

body.page-main .feature-card_bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

body.page-main .feature-card_gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(169, 11, 32, 0.3) 0%, rgba(169, 11, 32, 0.1) 100%);
    transition: all 0.3s ease;
}

body.page-main .feature-card:hover .feature-card_gradient {
    opacity: 0;
}

body.page-main .feature-card:hover .feature-card_bg {
    transform: scale(1.05);
}

body.page-main .feature-card_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
    display: none;
}

body.page-main .feature-card:hover .feature-card_icon {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

body.page-main .feature-card_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body.page-main .feature-card_body {
    padding: 30px 25px;
    text-align: center;
}

body.page-main .feature-card_title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 15px;
}

body.page-main .feature-card_text {
    font-size: 1rem;
    line-height: 1.3;
    color: #666;
    margin-bottom: 25px;
}
/* Адаптивность */
@media (max-width: 768px) {
body.page-main .features_grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}}
/* ===== EXHIBITORS SECTION ===== */
.exhibitors {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}


/* Слайдер во всю ширину */
.exhibitors-slider {
    margin: 60px 0;
    position: relative;
}

/* Дорожки слайдера */
.slider-track {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 25px 0;
    width: max-content;
}

.slider-track-1 {
    animation: slide-left 40s linear infinite;
}

.slider-track-2 {
    animation: slide-right 35s linear infinite;
}

.slider-track-3 {
    animation: slide-left 30s linear infinite;
}

.slider-track-4 {
    animation: slide-right 25s linear infinite;
}

/* Элементы слайдера */
.slider-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.slider-item:hover {
    background: #eeeeee;
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.slider-item img {
    height: 35px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(0.3);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.slider-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Разделитель между рядами */
.row-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    position: relative;
}

.row-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    transform: translateY(-50%);
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary-red);
    position: relative;
    z-index: 2;
}



/* Анимации */
@keyframes slide-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 25px)); }
}

@keyframes slide-right {
    0% { transform: translateX(calc(-50% - 25px)); }
    100% { transform: translateX(0); }
}

/* Кнопки */
.exhibitors-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .exhibitors {
        padding: 50px 0;
    }
    
    .slider-track {
        gap: 30px;
        padding: 20px 0;
    }
    
    .slider-item {
        padding: 12px 20px;
    }
    
    .slider-item img {
        height: 25px;
        max-width: 80px;
    }
    
    .exhibitors-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .row-divider::before {
        left: 10%;
        right: 10%;
    }
}

@media (max-width: 480px) {
    .slider-track {
        gap: 20px;
    }
    
    .slider-item {
        padding: 10px 15px;
    }
    
    .slider-item img {
        height: 20px;
        max-width: 60px;
    }
}
/* ===== EXPOSITION SECTION ===== */
.exposition {
    padding: 80px 0;
    background: var(--gray-bg);
}
.exposition h2 {color: var(--primary-red); text-align:center; margin-bottom:60px}
.exposition_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.exposition_gallery {
    position: relative;
    height: 600px;
}

/* БАЗОВЫЕ СТИЛИ С АНИМАЦИЯМИ */
.exposition_image {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(30px);
    border: 2px solid var(--gray-border);
}

.exposition_image:hover {
    border: 2px solid var(--primary-red);
}

.exposition_image.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* АНИМАЦИИ ДЛЯ КАЖДОЙ ПОЗИЦИИ */
.exposition_image.pos-1 {
    width: 300px;
    height: 400px;
    left: 0;
    top: 0;
    z-index: 3;
    transition-delay: 0.1s;
    transform: translateX(-50px) translateY(0);
}

.exposition_image.pos-1.active {
    transform: translateX(0) translateY(0);
}

.exposition_image.pos-2 {
    width: 200px;
    height: 230px;
    left: 320px;
    top: 80px;
    z-index: 2;
    transition-delay: 0.3s;
    transform: translateX(50px) translateY(-30px);
}

.exposition_image.pos-2.active {
    transform: translateX(0) translateY(0);
}

.exposition_image.pos-3 {
    width: 315px;
    height: 200px;
    left: 100px;
    top: 330px;
    z-index: 10;
    transition-delay: 0.5s;
    transform: translateX(30px) translateY(50px);
}

.exposition_image.pos-3.active {
    transform: translateX(0) translateY(0);
}

.exposition_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.exposition_image:hover img {
    transform: scale(1.05);
}

.exposition_categories {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.exposition_category {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: none;
    position: relative;
    border-radius: var(--border-radius);
}

.exposition_category:hover,
.exposition_category.active {
    color: var(--primary-red);
    transform: translateX(5px);
}

.category_arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.exposition_category:hover .category_arrow,
.exposition_category.active .category_arrow {
    opacity: 1;
    transform: translateX(0);
}

.category_arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.exposition_category:hover .category_arrow img,
.exposition_category.active .category_arrow img {
    transform: scale(1.1);
}

.category_title {
    font-size: 1.1rem;
    font-weight: 600;
    color: inherit;
    transition: color 0.3s ease;
    text-align: left;
    line-height: 1.3;
}

.exposition_category.active {
    color: var(--primary-red);
    transform: translateX(5px);
    background: none;
    border-top: 2px dotted var(--primary-red);
    border-bottom: 2px dotted var(--primary-red);
}

/* Мобильная галерея для экспозиции */
.exposition_mobile-gallery {
    display: none;
    padding: 15px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 10px 0;
}

.mobile-gallery-grid {
    display: grid;
    grid-template-areas: 
        "photo1 photo2"
        "photo3 photo3";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
}

.mobile-grid-top:nth-child(1) { grid-area: photo1; }
.mobile-grid-top:nth-child(2) { grid-area: photo2; }
.mobile-grid-bottom { grid-area: photo3; }

.exposition_mobile-gallery .exposition_image {
    position: relative !important;
    opacity: 1 !important;
    transform: none !important;
    width: 100% !important;
    height: 150px !important;
    margin: 0 !important;
    border-radius: 8px;
    overflow: hidden;
}

.exposition_mobile-gallery .exposition_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Адаптивность */
@media (max-width: 968px) {
    .exposition_content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .exposition_gallery {
        height: 600px;
        order: 2;
    }
    
    .exposition_categories {
        order: 1;
    }
}

/* Мобильная галерея для экспозиции */
.exposition_mobile-gallery {
    display: none;
    padding: 15px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 10px 0;
}

.mobile-gallery-grid {
    display: grid;
    grid-template-areas: 
        "photo1 photo2"
        "photo3 photo3";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
}

.mobile-grid-top:nth-child(1) { grid-area: photo1; }
.mobile-grid-top:nth-child(2) { grid-area: photo2; }
.mobile-grid-bottom { grid-area: photo3; }

.exposition_mobile-gallery .exposition_image {
    position: relative !important;
    opacity: 1 !important;
    transform: none !important;
    width: 100% !important;
    height: 150px !important;
    margin: 0 !important;
    border-radius: 8px;
    overflow: hidden;
}

.exposition_mobile-gallery .exposition_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Адаптивность */
@media (max-width: 968px) {
    .exposition_gallery {
        display: none !important;
    }
    
    .exposition_mobile-gallery {
        display: block;
    }
    
    .exposition_content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .exposition_mobile-gallery {
        padding: 10px;
    }
    
    .exposition_mobile-gallery .exposition_image {
        height: 120px !important;
    }
    
    .mobile-gallery-grid {
        gap: 8px;
    }
}
/* ===== GOALS LEVELS STYLE ===== */
.goals-levels {
    display: flex;
    flex-direction: column;
    gap: 15px;
    counter-reset: level;
    position: relative;
    margin-bottom: 50px;
}

.level-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 35px 40px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 2px solid transparent;
    box-shadow: var(--shadow);
}

.level-item::before {
    counter-increment: level;
    content: counter(level);
    font-size: 5rem;
    font-weight: 900;
    color: var(--red-light);
    opacity: 0.2;
    position: absolute;
    right: 40px;
    transition: all 0.4s ease;
    line-height: 1;
}

.level-item:hover {
    transform: translateX(25px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-red);
}

.level-item:hover::before {
    opacity: 0.6;
    transform: scale(1.1);
    color: var(--primary-red);
}

.level-icon {
    width: 70px;
    height: 70px;
    background: var(--red-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.level-item:hover .level-icon {
    background: var(--primary-red);
    transform: rotate(10deg) scale(1.1);
}

.level-icon i {
    font-size: 28px;
    color: var(--primary-red);
    transition: all 0.4s ease;
}

.level-item:hover .level-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.level-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.level-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0 !important;
    transition: all 0.4s ease;
}

.level-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    transition: all 0.4s ease;
}

.level-item:hover .level-title {
    color: var(--primary-red);
}

.level-item:hover .level-desc {
    color: var(--text-dark);
}
.goals-actions {
    text-align: center;
    margin: 50px auto;
    padding: 0 20px;
    width: 100%;
}
/* Адаптивность для уровней */
@media (max-width: 768px) {
    .level-item {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        text-align: center;
    }
    
    .level-item:hover {
        transform: translateX(15px);
    }
    
    .level-item::before {
        font-size: 3.5rem;
        right: 20px;
        top: 20px;
    }
    
    .level-icon {
        width: 60px;
        height: 60px;
    }
    
    .level-icon i {
        font-size: 24px;
    }
}
/* ===== NEWS SECTION ===== */
.news {
    padding: 80px 0;
    background: var(--gray-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.news_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Более специфично для ноутбуков */
@media (min-width: 1024px) and (max-width: 1366px) {

    .news_grid {}
}

.news-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
	border: 1px solid transparent;
}

.news-card_link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
    flex-grow: 1;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(169, 11, 32, 0.15);
    border-color: rgba(169, 11, 32, 0.4);
}

.news-card_image {
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card_image img {
    transform: scale(1.05);
}

.news-card_content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card_date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: block;
}

.news-card_title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.news-card_excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news_more {
    text-align: center;
    margin-top: 40px;
}

.news_more .btn {
    text-decoration: none;
    display: inline-block;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .news {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .news_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-card_image {
        height: 180px;
    }
    
    .news-card_content {
        padding: 20px;
    }
    
    .news-card_title {
        font-size: 1.2rem;
    }
}

/* Мобильная версия */
@media (max-width: 768px) {
    .news {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .news_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-card_image {
        height: 180px;
    }
    
    .news-card_content {
        padding: 20px;
    }
    
    .news-card_title {
        font-size: 1.2rem;
    }
}

/* ===== SUBSCRIBE SECTION ===== */
.subscribe {
    padding: 60px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.subscribe_title {
    margin-bottom: 20px;
    color: var(--white);
	font-size: 1.6rem;
}

.subscribe_form {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    gap: 10px;
}

.subscribe_input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Open Sans', sans-serif;
}

/* Мобильная версия для подписки */
@media (max-width: 768px) {
    .subscribe {
        padding: 40px 0;
    }
    
    .subscribe_title {
        font-size: 1.3rem;
        margin-bottom: 15px;
        padding: 0 20px;
    }
    
    .subscribe_form {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .subscribe_input {
        padding: 14px 16px;
        font-size: 16px; /* Убираем zoom на iOS */
    }
    
    .btn--secondary {
        width: 100%;
        padding: 14px 16px;
		font-size: 16px;
}
   
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    .subscribe_title {
        font-size: 1.1rem;
    }
    
    .subscribe_form {
        gap: 12px;
    }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

    .hero_slider {
        width: 100%;
        height: 300px;
    }
    

    .features_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card_header {
        height: 200px;
    }
    
    .about {
        background-size: auto 200px;
        padding-bottom: 200px;
        min-height: auto;
    }
    
    .about_content {
        margin-left: 0;
        padding-right: 0;
        text-align: center;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .news-card_title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .header_actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero_title {
        font-size: 2.2rem;
    }
    
    .hero_actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .header_logo img {
        height: 35px;
    }
    
    .slider_info {
        font-size: 2rem;
        padding: 8px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .exhibitors_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .news_grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

/* Адаптивность заголовков */
@media (max-width: 768px) {
    
    .section-header {
        margin-bottom: 40px;
    }
}



/* ===== МОБИЛЬНАЯ ВЕРСИЯ - ИСПРАВЛЕННАЯ ===== */
@media (max-width: 968px) {
    /* Хедер - приоритетные стили */
    .header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    

    .header_grid {
        align-items: center;
        gap: 15px;
        height: 70px;
        padding: 10px 0;
        max-width: 360px;
        min-width: 30px;
    
    }
 .language-switcher span {
    cursor: pointer;
    padding: 1px 5px;
}
    .header_logo {
        grid-column: 1;
        display: block !important;
    }
    
    .header_logo img {
        height: 50px !important;
        width: auto !important;
        display: block !important;
    }
    
   .menu-toggle {
        display: block !important;
        grid-column: 4;
        font-size: 32px !important;
        color: var(--primary-red) !important;
        background: none !important;
        border: none !important;
        cursor: pointer;
        padding: 0 !important;
        margin: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
		
    }
    
    .header_actions {
        display: flex !important;
        grid-column: 3;
        justify-content: flex-end;
        align-items: center;
        gap: 15px;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
    }
    
    .header_actions .btn--small {
        display: none !important;
    }
    
    .language-switcher {
        display: flex !important;
        font-size: 16px;
        color: var(--text-dark);
        font-weight: 600;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Навигация - скрыта по умолчанию */
    .nav_link {
        padding: 15px 20px !important;
        border-bottom: 1px solid var(--gray-border);
        justify-content: space-between;
        font-size: 14px !important;
        width: 100% !important;
    }
    
    .dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: var(--gray-bg);
        display: none;
        border-radius: 0;
    }
    
    .nav_item.active .dropdown {
        display: block;
    }

    /* Хиро-секция */
    .hero {
        margin-top: 70px !important;
        height: 93vh !important;
        min-height: 500px;
        background: none !important;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero_slider {
        width: 100% !important;
        height: 100% !important;
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .slider_gradient-overlay {
        display: none !important;
    }
    
    .slider_dark-overlay {
        background: rgba(0, 0, 0, 0.3) !important;
    }
    
    .slider_slide {
        background-size: cover !important;
        background-position: center !important;
    }
    
    .slider_info {
        position: absolute !important;
        bottom: 60px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        font-size: 18px !important;
        padding: 15px 20px !important;
        text-align: center;
        border-radius: 0 !important;
        background: var(--primary-red-transparent) !important;
        z-index: 5;
    }
    .slider_info::before, .slider_info::after {
    content: url('');

}


    .hero_content {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        text-align: center;
        z-index: 10;
        margin-left: 0 !important;
        padding: 0 !important;
    }
    
    .hero_badge {
        font-size: 14px !important;
        margin-bottom: 15px !important;
        background: rgba(255, 255, 255, 0.3) !important;
        display: inline-block !important;
    }
    
    .hero_title {
        font-size: 32px !important;
        color: white !important;
        margin-bottom: 15px !important;
        line-height: 1.2 !important;
    }
    
    .hero_subtitle {
        font-size: 16px !important;
        color: white !important;
        margin-bottom: 25px !important;
        line-height: 1.4 !important;
        opacity: 0.9 !important;
    }
    
    .hero_actions {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .hero_actions .btn {
        width: 100% !important;
        max-width: 280px !important;
        padding: 12px 20px !important;
		background: rgba(255, 255, 255, 0.3) !important;
		
		
    }
}

/* Убедимся, что предыдущие медиа-запросы не переопределяют наши стили */
@media (max-width: 1024px) {
    .header_actions,
    .menu-toggle,
    .language-switcher {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 1200px) {
    .header_actions,
    .menu-toggle,
    .language-switcher {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/*INNER*/


/* Общие стили для заголовков секций */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--primary-red);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Вступительный блок */
.intro-section {
    margin-bottom: 60px;
}

.lead-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 30px;
    line-height: 1.4;
    text-align: center;
}

.text-content {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-dark);
}

.text-content p {
    margin-bottom: 20px;
}

.text-content strong {
    color: var(--primary-red);
}

/* Сетка возможностей */
/* Opportunities Section */
.opportunities-section {
    padding: 80px 0;
    background: var(--gray-bg);
}

.opportunities-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-red);

}

.opportunities-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.opportunity-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-border);
}

.opportunity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.opportunity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto;
    background: linear-gradient(135deg, var(--primary-red), #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.opportunity-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.opportunities-cta {
    text-align: center;
}

/* Адаптивность */
@media (max-width: 768px) {
    .opportunities-section {
        padding: 60px 0;
    }
    
    .opportunities-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .opportunity-item {
        padding: 30px 25px;
    }
    
    .opportunity-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.benefit-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 400px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefit-item--reverse {
    direction: rtl;
}

.benefit-item--reverse > * {
    direction: ltr;
}

.benefit-content {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.benefit-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.benefit-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

.benefit-arrow {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-arrow {
    transform: translateX(5px);
}

.benefit-image {
    position: relative;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.benefit-item:hover .benefit-image img {
    transform: scale(1.05);
}

/* Адаптивность */
@media (max-width: 968px) {
    .benefit-item {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .benefit-content {
        padding: 40px 30px;
    }
    
    .benefit-title {
        font-size: 24px;
    }
    
    .benefit-item--reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 60px 0;
    }
    
    .benefits-grid {
        gap: 40px;
    }
    
    .benefit-content {
        padding: 30px 20px;
    }
    
    .benefit-title {
        font-size: 22px;
    }
    
    .benefit-arrow {
        bottom: 30px;
        right: 30px;
    }
}

/* Блок форматов продвижения */
.formats-section {
    padding: 60px 0;
    background: var(--gray-bg);
    
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.format-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.format-icon {
    font-size: 32px;
    color: var(--primary-red);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.format-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.format-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .opportunities-content,
    .formats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .opportunity-item,
    .format-card {
        padding: 25px;
    }
    
    .opportunity-icon,
    .format-icon {
        font-size: 28px;
    }
    
    .difference-item {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
    
    .difference-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .opportunity-icon,
    .format-icon {
        font-size: 24px;
    }
    
    .section-header h2,
    .opportunities-section h2 {
        font-size: 28px;
    }
    
    .opportunity-item p {
        padding-left: 0;
    }
}
/* Сетка форматов */
.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.format-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--shadow-hover);
}

.format-card:hover {
    box-shadow: var(--shadow-hover);
}

.format-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.format-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.format-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}
 /* Documents Section */
        .documents-section {
            padding: 60px 0;
			 background: var(--gray-bg);
        }

        .documents-title {
            font-size: 32px;
            font-weight: 600;
            color: var(--text-dark);
            text-align: center;
            margin-bottom: 40px;
        }

        .documents-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .document-item {
            display: flex;
            align-items: flex-start;
            padding: 20px;
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-decoration: none;
            color: var(--text-dark);
            transition: all 0.3s ease;
            border: 1px solid var(--gray-border);
           /* height: 100%;*/
        }

        .document-item:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-red);
			color:  var(--red-dark)
        }

        .document-item i {
            font-size: 25px;
            font-weight: 100 !important;
            margin-right: 15px;
            display: inline-block;
            height: 40px;
            width: 40px;
            line-height: 40px;
            background: var(--primary-red);
            text-align: center;
            color: #ffffff;
            border-radius: 50%;
            transition: all 0.35s ease-in-out;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .document-item:hover i {
            background: var(--red-dark);
            transform: scale(1.1);
			
        }

        .document-content {
            flex: 1;
        }

        .document-text {
            font-size: 14px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 5px;
            display: block;
        }

        .document-size {
            font-size: 12px;
            color: var(--text-light);
            font-weight: 400;
        }

        /* Адаптивность */
        @media (max-width: 1024px) {
            .documents-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .documents-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .document-item {
                padding: 18px;
            }
            
            .document-item i {
                width: 36px;
                height: 36px;
                line-height: 36px;
                font-size: 18px;
                margin-right: 12px;
            }
            
            .document-text {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .documents-section {
                padding: 40px 0;
            }
            
            .documents-title {
                font-size: 28px;
                margin-bottom: 30px;
            }
        }
		
		
@media (max-width: 768px) {
	
   .page-hero {padding: 80px 0 2px 0;height: auto;}
   
.section-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 10px;
    padding: 0;
    border: 0;
	text-transform: uppercase;}
	
.section-nav a.active {
    background: transparent;
    color: var(--white);
    border-color: transparent;
	font-weight: bolder;
}

   .section-nav a::after {
        content: " >>";
        opacity: 0.7;
        }
}	
		
		
/*ABOUT*/
/* Основной контент */
.main-content {
    padding: 60px 0;
}

/* Введение */
.about-intro {
    margin-bottom: 60px;
}


.thematics-list {
    columns: 2;
    column-gap: 3rem;
    margin: 2rem 0;
}

.thematics-list ul {
    margin: 0;
    padding-left: 1.5rem;
}

.thematics-list li {
    margin-bottom: 0.5rem;
    break-inside: avoid;
}

@media (max-width: 992px) {
    .thematics-list {
        columns: 1;
    }
}


.scale-section, .thematics-section {padding:60px 0; background-color:var(--gray-bg)}

/* Аудитория */
.audience-section {
    padding:60px 0; 
}

.audience-section h2, .thematics-section h2, .scale-section h2, .date-location-section h2 {
    font-size: 32px;
    font-weight: 600;
    /*color: var(--text-dark);*/
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.audience-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden; /* Важно! */
}

.audience-card::before {
    content: '';
    position: absolute;
    bottom: 0; /* Вместо top: 0 */
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}


.audience-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.audience-icon {
    font-size: 40px;
    margin-bottom: 15px;
}
.audience-icon i {width: 80px;  height: 80px;margin: 0 auto 25px auto;   background: linear-gradient(135deg, var(--primary-red), #dc2626);   border-radius: 50%;   display: flex;align-items: center;justify-content: center;color: white;   font-size: 32px;}
.audience-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Особенности */
.features-section {
    margin-bottom: 60px;
}

.features-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-red);
    box-shadow: var(--shadow);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    padding-left: 39px; /* Выравнивание с номером */
}

/* Адаптивность */
@media (max-width: 768px) {
    .main-content {
        padding: 40px 0;
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 25px;
    }
    
    .audience-section h2,
    .features-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .feature-item p {
        padding-left: 0;
    }
}

/* Q/A Секция */
.qa-section {
    margin-bottom: 60px;
}

.qa-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.qa-list {
    max-width: 900px;
    margin: 0 auto;
}

.qa-item {
    margin-bottom: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-red);
    overflow: hidden;
}

.qa-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: var(--gray-bg);
    border-left: 4px solid var(--primary-red);
}

.qa-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.qa-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.qa-answer {
    padding: 25px 30px;
}

.qa-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Контакты */
.contacts-section {
    margin-bottom: 60px;
}

.contacts-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.contacts-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

.contact-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-red);
    display: block;
    margin-bottom: 15px;
}

.contact-responsibility {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-style: italic;
}

.contact-phone,
.contact-email {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.contact-phone:hover,
.contact-email:hover {
    color: var(--primary-red);
}
/* Стили для иконок в Q/A секции */
.qa-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: var(--primary-red);
    flex-shrink: 0;
}

.qa-icon i {
    font-size: inherit;
    color: inherit;
}

/* Адаптивность для иконок */
@media (max-width: 768px) {
    .qa-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .qa-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}
/* Адаптивность */
@media (max-width: 768px) {
    .qa-question {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .qa-answer {
        padding: 20px;
    }
    
    .contacts-list {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        padding: 25px;
    }
}

/*лестница успеха*/
/* Введение */
.intro-section {
    margin-bottom: 60px;
}


/* Лестница успеха */
.success-ladder {
    margin: 60px 0;
}

/* Улучшенный прогресс-бар */
.progress-track-wrapper {
    position: relative;
    max-width: 1280px;
    margin: 0 auto 30px;
    padding: 0 40px;
}

.progress-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.progress-line {
    position: absolute;
    top: 25px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: var(--gray-border);
    z-index: 1;
}

.progress-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.progress-stage:hover {
    transform: translateY(-5px);
}

.stage-marker {
    position: relative;
    margin-bottom: 10px;
}

.stage-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gray-border);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stage-arrow {
    position: absolute;
    bottom: -20px;
    left: -13%;
    transform: translateX(-14%);
    width: 56px;
    height: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
    rotate: 180deg;
}

.progress-stage.active .stage-arrow {
    opacity: 1;
}

.progress-stage.active .stage-circle {
    background: var(--primary-red);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(169, 11, 32, 0.3);
}

.stage-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    transition: color 0.3s ease;
}

.progress-stage.active .stage-label {
    color: var(--primary-red);
        margin-top: 10px;

}

/* Подсказка */
.progress-help {
    text-align: center;
    margin-bottom: 40px;
}

.help-text {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    padding: 8px 16px;
    background: var(--gray-bg);
    border-radius: 20px;
    display: inline-block;
}

/* Группы шагов */
.step-group {
    display: none;
    animation: slideInUp 0.5s ease;
}

.step-group.active {
    display: block;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stage-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Шаги */
.step-item {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    overflow: hidden;
    
}
.step-item:nth-child(odd) {border-left: 4px solid var(--gray-border);}
.step-item:nth-child(even) {border-right: 4px solid var(--gray-border);}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: var(--gray-bg);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-header h3 {

    color: var(--text-dark);
    margin: 0;
}

.step-content {
    padding: 0 0 30px 30px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Элементы контента */
.goals-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    flex-direction:column
}

.goal-tag {
    background: var(--red-light);
    color: var(--primary-red);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 500;
}

.budget-list {
    columns: 2;
    gap: 20px;
    margin-top: 15px;
}

.budget-list li:before {display:none}

.budget-list li {
    margin-bottom: 8px;
    color: var(--text-light);
    break-inside: avoid;
}

.design-tips {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--gray-bg);
    border-radius: var(--border-radius);
}

.tip-icon {
    font-size: 20px;
}

.ad-options h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 16px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.option-item {
    background: var(--gray-bg);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 14px;
}

.invitation-tools {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.tool-item {
    padding: 12px 15px;
    background: var(--gray-bg);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-red);
}

.staff-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.check-item {
    padding: 8px 0;
    font-size: 14px;
}

.followup-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--gray-bg);
    border-radius: var(--border-radius);
}

.action-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.metric-item {
    text-align: center;
    padding: 15px;
    background: var(--gray-bg);
    border-radius: var(--border-radius);
}

.metric-value {
    font-size: 24px;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}



/* Адаптивность */
@media (max-width: 768px) {
    .main-content {
        padding: 40px 0;
    }
    
    .progress-track-wrapper {
        padding: 0 20px;
    }
    
    .progress-line {
        left: 20px;
        right: 20px;
    }
    
    .stage-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .stage-arrow {
        width: 25px;
        height: 16px;
        top: -12px;
    }
    
    .stage-label {
        font-size: 12px;
    }
    
    .progress-help {
        margin-bottom: 30px;
    }
    
    .help-text {
        font-size: 12px;
    }
    
    .budget-list {
        columns: 1;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .action-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .step-header {
        padding: 20px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {

    .option-item {
    text-align: left;

}
    .progress-track {
        flex-direction: column;
        gap: 30px;
    }
    
    .progress-line {
        display: none;
    }
    
    .stage-marker {
        margin-bottom: 5px;
    }
    
    .stage-title {
        font-size: 24px;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .staff-checklist {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Основные стили для иконок */
.stage-circle i {
    font-size: 20px;
}

.step-number i {
    font-size: 24px;
}

/* Общие стили для иконок */
.goal-tag i,
.budget-list li i,
.tip-item i,
.option-item i,
.tool-item i,
.check-item i,
.action-item i {
    margin-right: 8px;
    color: var(--primary-red);
    width: 25px;
    text-align: center;
}

/* Специфичные стили для budget-list */
.budget-list {
    list-style: none;
    padding-left: 0;
}

.budget-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.4;
}

.budget-list li i {
    font-size: 16px;
    margin-right: 12px;
    width: 20px;
    flex-shrink: 0;
}

/* Стили для design-tips */
.design-tips {
    margin-top: 16px;
}

.tip-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
}

.tip-item i {
    font-size: 16px;
    margin-right: 12px;
    width: 20px;
    flex-shrink: 0;
}

/* Стили для tool-item и action-item */
.tool-item,
.action-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.tool-text,
.action-text {
    font-size: 16px;
    line-height: 1.4;
}

.tool-item i,
.action-item i {
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Стили для метрик */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.metric-item i {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-red);
    display: block;
}

.metric-label {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}

/* Убираем лишние отступы и маркеры */
.step-content ul,
.step-content ol {
    margin-top: 8px;
    margin-bottom: 16px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .stage-circle i {
        font-size: 16px;
    }
    
    .step-number i {
        font-size: 20px;
    }
    
    .budget-list li,
    .tip-item,
    .tool-text,
    .action-text,
    .metric-label {
        font-size: 15px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .metric-item {
        padding: 16px;
    }
    
    .metric-item i {
        font-size: 20px;
        margin-bottom: 8px;
    }
}

/* Стили для карточек подготовки персонала */
.staff-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.staff-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    border-top: 4px solid var(--primary-red);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 32px;
    color: var(--primary-red);
    margin-bottom: 15px;
    text-align: center;
}

.staff-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.staff-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.staff-card li {
    padding: 8px 0;
    color: var(--text-light);
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}

.staff-card li:last-child {
    border-bottom: none;
}

.staff-card li:before {
    content: "•";
    color: var(--primary-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .staff-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .staff-card {
        padding: 20px;
    }
    
    .card-icon {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .staff-card h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .staff-card li {
        padding: 6px 0;
        padding-left: 18px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .staff-card {
        padding: 15px;
    }
    
    .card-icon {
        font-size: 24px;
    }
}

/* Шаги участия */
.partisipation-content .container h2.steps-title  { color: var(--text-dark);} 
.participation-steps {
    padding: 60px 0;
    background: var(--white);
}

.steps-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.step-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* ИЗМЕНЕНО: завершенный шаг - красный */
.step-card.completed {
    border-top: 4px solid var(--primary-red);
}

/* ИЗМЕНЕНО: активный шаг - зеленый */
.step-card.active {
    border-top: 4px solid #28a745;
    transform: scale(1.05);
}

.step-card.active:hover {
    transform: scale(1.05) translateY(-5px);
}

.step-card.upcoming {
    border-top: 4px solid var(--gray-border);
    opacity: 0.8;
}

.participation-steps { & .step-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}
}

/* ИЗМЕНЕНО: номер завершенного шага - красный */
.step-card.completed .step-number {
    background: var(--primary-red);
}

/* ИЗМЕНЕНО: номер активного шага - зеленый */
.step-card.active .step-number {
    background: #28a745;
}

.step-card.upcoming .step-number {
    background: var(--text-light);
}

.step-status {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    margin-top: 7px;
}

/* ИЗМЕНЕНО: статус завершенного шага - красный */
.step-status.completed {
    background: var(--red-light);
    color: var(--primary-red);
}

/* ИЗМЕНЕНО: статус активного шага - зеленый */
.step-status.active {
    background: #d4edda;
    color: #155724;
}

.step-status.upcoming {
    background: var(--gray-bg);
    color: var(--text-light);
}

.step-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-period {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--primary-red);
    margin-bottom: 8px;
}

.step-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

.steps-cta {
    text-align: center;
    padding: 30px;
    margin: 0 auto;
}

.steps-cta p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Адаптивность */
/* Мобильная версия */
@media (max-width: 768px) {
    .participation-steps {
        padding: 40px 0;
    }
    
    .steps-title {
        font-size: 24px;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .step-card {
        padding: 20px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        border-top: none !important;
        border-left: 4px solid transparent;
    }
    
    /* ИЗМЕНЕНО: для мобильных - завершенный красный */
    .step-card.completed {
        border-left-color: var(--primary-red);
    }
    
    /* ИЗМЕНЕНО: для мобильных - активный зеленый */
    .step-card.active {
        border-left-color: #28a745;
        transform: none;
        margin: 5px 0;
    }
    
    .step-card.active:hover {
        transform: translateY(-3px);
    }
    
    .step-card.upcoming {
        border-left-color: var(--gray-border);
    }
    
    .step-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .step-status {
        align-self: flex-start;
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .step-name {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .step-period {
        font-size: 10px;
        margin-bottom: 6px;
    }
    
    .step-description {
        font-size: 13px;
        line-height: 1.3;
    }
    
    .steps-cta {
        padding: 25px 20px;
    }
    
    .steps-cta p {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .participation-steps {
        padding: 30px 0;
    }
    
    .steps-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .steps-grid {
        gap: 15px;
        padding: 0 15px;
    }
    
    .step-card {
        padding: 18px;
        border-left-width: 3px;
        border-top-width: 0;
    }
    
    .step-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .step-name {
        font-size: 15px;
    }
    
    .step-description {
        font-size: 12px;
    }
    
    .steps-cta {
        padding: 20px 15px;
    }
    
    .steps-cta p {
        font-size: 15px;
    }
}

/* Очень маленькие экраны */
@media (max-width: 360px) {
    .steps-grid {
        padding: 0 10px;
    }
    
    .step-card {
        padding: 15px;
        border-left-width: 3px;
    }
    
    .step-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .step-name {
        font-size: 14px;
    }
    
    .step-period {
        font-size: 9px;
    }
    
    .step-description {
        font-size: 11px;
    }
}

/* Стили location-info */
.location-info {
    margin: 10px 0 60px 0;
    display: flex;
}

.location-info-item {
    min-width: 50%;
    max-width: 50%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.location-info-bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: no-repeat center;
    background-size: cover;
    transition: transform 0.3s ease;
}

.location-info-item:hover .location-info-bg {
    transform: scale(1.05);
}

.location-info-content {
    border-radius: var(--border-radius);
    backdrop-filter: blur(8px);
    padding: 30px 40px;
    text-align: center;
    color: var(--white);
    max-width: 480px;
    position: relative;
    box-shadow: var(--shadow-red);
}

.location-info-dates .location-info-content {
    background: rgba(169, 11, 32, 0.65);
}

.location-info-place .location-info-content {
    background: rgba(169, 11, 32, 0.65);
}

.location-info-icon {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: var(--text-shadow);
}

.location-info-icon i {
    color: var(--white);
}

.location-info-item h3 {
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: 200;
    color: var(--white);
    text-shadow: var(--text-shadow);
}

.location-info-title {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 600;
    text-shadow: var(--text-shadow);
}

.location-info-schedule {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.location-info-subtitle {
    font-size: 16px;
    font-weight: 500;
    text-shadow: var(--text-shadow);
}

.location-info-time {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: var(--text-shadow);
}

.location-info-address {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    text-shadow: var(--text-shadow);
}

.location-info-details {
    font-size: 14px;
    opacity: 0.9;
    text-shadow: var(--text-shadow);
    line-height: 1.4;
}



/* Адаптивность */
@media (max-width: 1219px) {
    .location-info {
        display: block !important;
    }
    
    .location-info-item {
        min-width: 0;
        max-width: none;
        /*margin-bottom: 30px;*/
    }
    
    .location-info-item:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .location-info-item {
        min-height: 300px;
        
    }
    
    .location-info-content {
        padding: 25px 20px;
        max-width: 320px;
        margin: 40px auto;
    }
    
    .location-info-icon {
        font-size: 36px;
    }
    
    .location-info-item h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .location-info-title {
        font-size: 18px;
    }
}

/* Остальные стили остаются без изменений */
.transport-section {
    margin-bottom: 60px;
}

.transport-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 15px;
}

.transport-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 40px;
}

.transport-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.transport-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.transport-icon {
    font-size: 32px;
    color: var(--primary-red);
    flex-shrink: 0;
}

.transport-content h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
    margin-top: 0px !important;
}

.transport-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.transport-details {margin-top: 5px;padding-left:30px; border-top:1px dotted var(--primary-red)}
    .transport-details li:first-child {margin-top:16px !important}
.map-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.map-placeholder {
    height: 400px;
    background: var(--gray-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.map-placeholder p {
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .transport-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .transport-card {
        padding: 25px;
        flex-direction: column;
        gap: 15px;
    }
    .transport-icon {margin:0 auto}
    .transport-content h3 {text-align:center}
}


/* Стили для деловой программы */
.program-notice {
    background: var(--red-light);
    border: 1px solid var(--primary-red);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.program-notice p {
    margin: 0;
    color: var(--text-dark);
    font-size: 16px;
}

/* Табы дней */
.program-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--gray-border);
}

.program-tab {
    padding: 20px 30px;
    background: var(--white);
    border: 2px solid transparent;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -2px;
    text-align: center;
    flex: 1;
	border-bottom: 2px solid var(--gray-border);
}

.program-tab:hover {
    background: var(--gray-bg);
}

.program-tab.active {
    background: var(--white);
    border-color: var(--gray-border);
    border-bottom: 2px solid var(--white);
}

.tab-date {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.tab-theme {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.3;
}

/* Контент дней */
.program-content {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.program-day {
    display: none;
}

.program-day.active {
    display: block;
}

.day-theme {
    padding: 30px;
    background: var(--primary-red);
    color: var(--white);
}

.day-theme h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px 0;
	color:var(--white);
}

.day-theme p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

/* Временная сетка */
.program-timeline {
    display: flex;
    min-height: 1600px;
    position: relative;
}

/* Временная шкала */
.time-scale {
    width: 80px;
    background: var(--gray-bg);
    padding: 20px 0;
    flex-shrink: 0;
    position: relative;
}

.time-marker {
    height: 50px; /* 15 минут = 50px */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 1px solid var(--gray-border);
    position: relative;
}

.time-marker:last-child {
    border-bottom: none;
}

/* Линии времени */
.time-marker::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    width: calc(100vw - 80px);
    height: 1px;
    background: var(--gray-border);
    z-index: 1;
}

/* Контейнер залов */
.halls-container {
    flex: 1;
    display: flex;
}

.hall-column {
    flex: 1;
    border-right: 1px solid var(--gray-border);
	border-top: 1px solid var(--gray-border);
    position: relative;
}

.hall-column:last-child {
    border-right: none;
}

.hall-header {
    background: var(--primary-red);
    color: var(--white);
    padding: 15px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.hall-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.events-column {
    position: relative;
    height: 1600px; /* 50px * 32 маркера времени */
    padding: 0 10px;
}

/* Карточки событий */
.event-card {
    position: absolute;
    left: 10px;
    right: 10px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-left: 3px solid var(--primary-red);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 5px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 60px;
    overflow: hidden;
	z-index:10000
}

.event-card:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-red);
    transform: translateY(-2px);
}

/* Для точечных событий */
.event-card.event-card-point {
    background: var(--red-light);
    border-left: 3px solid var(--primary-red);
    min-height: 50px;
}

.event-time {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.event-format {
    display: inline-block;
    background: var(--red-light);
    color: var(--primary-red);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.event-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .program-timeline {
        flex-direction: column;
        min-height: auto;
    }
    
    .time-scale {
        width: 100%;
        height: auto;
        display: flex;
        padding: 15px;
        overflow-x: auto;
        gap: 15px;
    }
    
    .time-marker {
        height: auto;
        border-bottom: none;
        flex-shrink: 0;
        padding: 8px 12px;
        background: var(--white);
        border: 1px solid var(--gray-border);
        border-radius: 4px;
    }
    
    .time-marker::after {
        display: none;
    }
    
    .halls-container {
        flex-direction: column;
    }
    
    .hall-column {
        border-right: none;
        border-bottom: 1px solid var(--gray-border);
    }
    
    .events-column {
        height: auto;
        min-height: 200px;
        padding: 20px;
    }
    
    .event-card {
        position: static;
        margin-bottom: 15px;
        height: auto !important;
    }
}

@media (max-width: 768px) {
    .program-tabs {
        flex-direction: column;
    }
    
    .program-tab {
        border-radius: var(--border-radius);
        margin-bottom: 5px;
    }
    
    .program-tab.active {
        border-bottom: 2px solid var(--gray-border);
    }
    
    .day-theme {
        padding: 20px;
    }
    
    .day-theme h2 {
        font-size: 20px;
    }
    
    .hall-header {
        padding: 12px 15px;
    }
    
    .event-title {
        font-size: 13px;
        -webkit-line-clamp: 4;
    }
}

/* Стили для страницы спикеров */
.page-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Сетка спикеров */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.speaker-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.speaker-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;
}

.speaker-card:hover .speaker-photo img {
    transform: scale(1.05);
}

.speaker-info {
    padding: 25px 20px;
    border-top: 2px dotted var(--primary-red);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.speaker-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.speaker-position {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .speakers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 карточки в ряд на планшетах */
        gap: 20px;
    }
    
    .speaker-photo {
        height: 280px;
    }
}

@media (max-width: 768px) {

    .speakers-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 карточки в ряд на мобильных */
        gap: 15px;
        max-width: none; /* Убираем ограничение по ширине */
        margin-left: 0;
        margin-right: 0;
    }
    
    .speaker-photo {
        height: 220px; /* Уменьшаем высоту фото для мобильных */
    }
    
    .speaker-info {
        padding: 15px 12px;
        border-top: 1px dotted var(--primary-red); /* Более тонкая граница на мобильных */
    }
    
    .speaker-name {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .speaker-position {
        font-size: 12px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr); /* Сохраняем 2 колонки */
        gap: 12px;
    }
    
    .speaker-photo {
        height: 180px; /* Еще меньше высота для очень маленьких экранов */
    }
    
    .speaker-info {
        padding: 12px 10px;
    }
    
    .speaker-name {
        font-size: 14px;
    }
    
    .speaker-position {
        font-size: 11px;
    }
}

/* Для очень маленьких экранов - переходим на 1 колонку */
@media (max-width: 360px) {
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .speaker-photo {
        height: 250px; /* Возвращаем нормальную высоту для одной колонки */
    }
    
    .speaker-info {
        padding: 20px 15px;
        border-top: 2px dotted var(--primary-red);
    }
    
    .speaker-name {
        font-size: 16px;
    }
    
    .speaker-position {
        font-size: 13px;
    }
}

/*===GUIDE====*/
        .guide-section {
            margin-bottom: 0;
            padding: 60px 0;
            position: relative;
        }

        .section-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .guide-section h2 {
            color: var(--text-dark);
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }

        .guide-section h3 {
            font-size: 22px;
            font-weight: 600;
            color: var(--primary-red);
            margin: 30px 0 15px 0;
            border-left: 3px solid var(--primary-red);
            padding-left: 15px;
        }

        .guide-section h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            margin: 20px 0 10px 0;
        }

        .guide-section p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .benefits-list,
        .features-list,
        .shipping-list {
            list-style: none;
            padding: 0;
            margin: 25px 0;
        }

        .benefits-list li,
        .features-list li,
        .shipping-list li {
            position: relative;
            padding: 12px 0 12px 35px;
            margin-bottom: 8px;
            line-height: 1.6;
            font-size: 15px;
        }

        .benefits-list li::before,
        .features-list li::before,
        .shipping-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 12px;
            width: 24px;
            height: 24px;
            background: var(--primary-red);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
        }

        .contest-item {
            background: white;
            padding: 25px;
            margin: 20px 0;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            border-left: 4px solid var(--primary-red);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .guide-section:nth-child(even) .contest-item {
            background: #f8f9fa;
        }

        .contest-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.12);
        }

        .section-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--primary-red);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            font-weight: 700;
            font-size: 18px;
            margin-right: 15px;
        }

        .highlight-box {
            background: linear-gradient(135deg, #fff5f5, #fff0f0);
            border: 1px solid #ffeaea;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            border-left: 4px solid var(--primary-red);
        }

        @media (max-width: 768px) {
            .guide-section {
                padding: 40px 0;
            }

            .guide-section h2 {
                font-size: 26px;
            }

            .section-content {
                padding: 0 15px;
            }

            .contest-item {
                padding: 20px;
            }
            
            
            
        }
