/* ========== VISITORS PAGE STYLES ========== */

/* ДЕСКТОПНЫЙ БАННЕР */
.participants-banner {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.participants-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
}

.participants-banner-container {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 40px;
    width: 100%;
}

.participants-banner-content {
    max-width: 1000px;
    margin-left: auto;
    text-align: right;
}

/* Заголовок */
.participants-banner-title {
    margin-bottom: 30px;
}

.title-blue {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 45px;
    color: #003BFF;
    text-transform: uppercase;
    line-height: 1.2;
}

.title-white {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 45px;
    color: #FFFFFF;
    text-transform: uppercase;
    line-height: 1.2;
}

.title-green {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 45px;
    color: #00D7D0;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Статистика */
.participants-stats {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid #003BFF;
    border-radius: 10px;
    padding: 10px 10px;
    width: auto;
}

.stat-item {
    text-align: center;
}

.stat-number-visiotors {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: #00D7D0;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    position: relative;
    top: -6px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
}

/* Мобильная статистика - скрываем */
.participants-mobile-stats {
    display: none;
}

/* Описание */
.participants-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
    max-width: 700px;
    margin-left: auto;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Кнопки */
.participants-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.btn-ticket {
    background-color: #00D7D0;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #0B204F;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ticket:hover {
    background-color: #00bfb9;
    transform: translateY(-2px);
}

.btn-booth {
    background-color: #003BFF;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-booth:hover {
    background-color: #0029b3;
    transform: translateY(-2px);
}

/* ========== МОБИЛЬНЫЙ БАННЕР ========== */
.participants-mobile-banner {
    display: none;
    background-image: url('../img/participants/banner-mobile.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    padding: 20px 20px;
}

.participants-mobile-container {
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.participants-mobile-title {
    margin-bottom: 30px;
}

.participants-mobile-title .title-blue,
.participants-mobile-title .title-green,
.participants-mobile-title .title-white {
    text-align: left;
    font-size: 20px;
    display: block;
}

.participants-mobile-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid #003BFF;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
}

.participants-mobile-stats .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.participants-mobile-stats .stat-number {
    font-size: 24px;
}

.participants-mobile-stats .stat-label {
    font-size: 14px;
}

.participants-mobile-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    color: #FFFFFF;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: left;
}

.participants-mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-bottom: 20px;
}

.btn-ticket-mobile,
.btn-booth-mobile {
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
}

.btn-ticket-mobile {
    background-color: #00D7D0;
    color: #0B204F;
}

.btn-booth-mobile {
    background-color: #003BFF;
    color: #FFFFFF;
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 1024px) {
    .participants-banner-content {
        max-width: 550px;
    }

    .title-blue,
    .title-white {
        font-size: 42px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .participants-banner {
        display: none;
    }

    .participants-mobile-banner {
        display: block;
    }

    .participants-mobile-stats {
        display: none;
    }
}

/* ========== VISITORS STATS SECTION ========== */
.participants-stats-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 40px;
    background-color: #0B204F;
}

.participants-stats-container {
    width: 100%;
}

/* Заголовок с зелеными линиями */
.participants-stats-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.participants-stats-line {
    width: 80px;
    height: 3px;
    background: #00D7D0;
    border-radius: 0;
}

.participants-stats-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    text-transform: uppercase;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
}

/* Сетка 5 карточек в ряд */
.participants-stats-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Общие стили карточки */
.participants-stat-card {
    flex: 1;
    min-width: 180px;
    height: 200px;
    padding: 10px 10px;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.participants-stat-card:hover {
    transform: translateY(-5px);
}

.participants-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 12px;
}

.participants-stat-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.3;
    color: #FFFFFF;
}

/* Иконка внизу */
.participants-stat-icon {
    margin-top: 15px;
}

.participants-stat-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.participants-radel-icon img {
    width: 100px;
    height: 60px;
    object-fit: contain;
}

.participants-ais-icon img {
    width: 180px;
    height: 60px;

}

/* Зеленая карточка */
.participants-stat-card-green {
    background: rgba(0, 215, 208, 0.15);
    border: 1px solid #00D7D0;
}

.participants-stat-card-green .participants-stat-number {
    color: #FFFFFF;

}

/* Синяя карточка */
.participants-stat-card-blue {
    background: rgba(1, 60, 255, 0.15);
    border: 1px solid #003BFF;
}

.participants-stat-card-blue .participants-stat-number {
    color: #FFFFFF;

}

/* ========== МОБИЛЬНЫЙ БАННЕР ========== */
.participants-mobile-banner {
    display: none;
    background-image: url('../img/participants/banner-mobile.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 40px 20px;
}

.participants-mobile-container {
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.participants-mobile-title {
    margin-bottom: 30px;
}

.participants-mobile-title .title-blue,
.participants-mobile-title .title-white {
    font-size: 32px;
    display: block;
}

.participants-mobile-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.participants-mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-bottom: 30px;
}

.btn-ticket-mobile,
.btn-booth-mobile {
    padding: 14px 20px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
}

.btn-ticket-mobile {
    background-color: #00D7D0;
    color: #0B204F;
}

.btn-booth-mobile {
    background-color: #003BFF;
    color: #FFFFFF;
}

.participants-stats-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.5;
    align-items: center;
    text-transform: uppercase;
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 1024px) {
    .participants-banner-content {
        max-width: 550px;
    }

    .participants-banner-title .title-blue,
    .participants-banner-title .title-white {
        font-size: 42px;
    }

    .participants-stats-section {
        padding: 50px 30px;
    }

    .participants-stats-title {
        font-size: 28px;
    }

    .participants-stats-line {
        width: 50px;
    }

    .participants-stat-card {
        min-width: 160px;
        height: 180px;
        padding: 20px 10px;
    }

    .participants-stat-number {
        font-size: 38px;
    }

    .participants-stat-text {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .participants-banner {
        display: none;
    }

    .participants-mobile-banner {
        display: block;
    }

    .participants-stats-section {
        padding: 40px 20px;
    }

    .participants-stats-header {
        gap: 10px;
        margin-bottom: 35px;
    }

    .participants-stats-title {
        font-size: 22px;
    }

    .participants-stats-line {
        width: 40px;
        height: 2px;
    }

    .participants-stats-grid {
        gap: 16px;
    }

    .participants-stat-card {
        min-width: calc(50% - 16px);
        height: 160px;
        padding: 20px 15px;
    }

    .participants-stat-number {
        font-size: 32px;
    }

    .participants-stat-text {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .participants-stats-section {
        padding: 30px 15px;
    }

    .participants-stats-title {
        font-size: 18px;
    }

    .participants-stats-line {
        width: 30px;
    }

    .participants-stats-grid {
        gap: 12px;
    }

    .participants-stat-card {
        min-width: calc(100% - 12px);
        height: 140px;
        padding: 18px 12px;
    }

    .participants-stat-number {
        font-size: 28px;
    }

    .participants-stat-text {
        font-size: 9px;
    }

    .participants-mobile-title .title-blue,
    .participants-mobile-title .title-white {
        font-size: 24px;
    }
}

/* ========== CORPORATIONS SECTION ========== */
.corporations-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 40px;
    background: linear-gradient(97deg, #003BFF 0%, #0E2D7E 55%, #01185B 100%);
}

.corporations-container {
    width: 100%;
}

/* Заголовок */
.corporations-header {
    margin-bottom: 50px;
}

.corporations-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 54px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: left;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.corporations-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    color: #FFFFFF;
    text-align: left;
    margin: 0;
}

/* Сетка 5x3 */
.corporations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 50px;
}

/* Карточка логотипа */
.corporation-card {
    background: #FFFFFF;
    border-radius: 1px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: all 0.3s ease;
}

.corporation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.corporation-card img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    justify-content: center;
}

/* Нижний текст */
.corporations-footer {
    display: flex;
    justify-content: center;
    text-align: center;
}

.corporations-note {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
    max-width: 800px;
    margin: 0;
    text-transform: uppercase;
}

/* ========== АДАПТИВНОСТЬ ========== */

/* Планшет (до 1024px) */
@media (max-width: 1024px) {
    .corporations-section {
        padding: 60px 30px;
    }

    .corporations-title {
        font-size: 42px;
    }

    .corporations-subtitle {
        font-size: 18px;
    }

    .corporations-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .corporation-card {
        height: 90px;
        padding: 15px;
    }

    .corporation-card img {
        max-height: 50px;
    }

    .corporations-note {
        font-size: 14px;
    }
}

/* Мобилка (до 768px) */
@media (max-width: 768px) {
    .corporations-section {
        padding: 40px 20px;
    }

    .corporations-title {
        font-size: 32px;
    }

    .corporations-subtitle {
        font-size: 16px;
    }

    .corporations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .corporation-card {
        height: 80px;
        padding: 12px;
    }

    .corporation-card img {
        max-height: 40px;
    }
}

/* Маленькие телефоны (до 480px) */
@media (max-width: 480px) {
    .corporations-section {
        padding: 30px 15px;
    }

    .corporations-title {
        font-size: 24px;
    }

    .corporations-subtitle {
        font-size: 14px;
    }

    .corporations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .corporation-card {
        height: 70px;
        padding: 10px;
    }

    .corporation-card img {
        max-height: 35px;
    }

    .corporations-note {
        font-size: 12px;
        padding: 0 10px;
    }
}

/* ========== WHY SECTION ========== */
.why-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 40px;
    background-color: #0E2C7D;
    margin-top: 20px;
}

.why-container {
    width: 100%;
}

.why-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 54px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: left;
    margin: 0 0 50px 0;
    line-height: 1.2;
}

/* Сетка 2x2 на ПК */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Карточка */
.why-card {
    background: #DCFFFE;
    border-radius: 20px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Заголовок карточки */
.why-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.why-icon {
    flex-shrink: 0;
}

.why-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.why-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 36px;
    text-transform: uppercase;
    color: #003BFF;
    margin: 0;
    line-height: 1.2;
}

/* Описание */
.why-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #051A2D;
    margin-bottom: 25px;
    flex: 1;
}

/* Кнопка */
.why-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    background-color: #003BFF;
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    margin-left: auto;
}

.why-card-btn:hover {
    background-color: #0029b3;
    transform: translateX(5px);
}

.btn-arrow {
    display: flex;
    align-items: center;
}

.btn-arrow img {
    width: 16px;
    height: 16px;
}

/* ========== АДАПТИВНОСТЬ ========== */

/* Планшет (до 1024px) */
@media (max-width: 1024px) {
    .why-section {
        padding: 30px 30px;
    }

    .why-title {
        font-size: 42px;
    }

    .why-card-title {
        font-size: 28px;
    }

    .why-card-desc {
        font-size: 14px;
    }

    .why-card-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Мобилка (до 768px) - в строку (вертикально) */
@media (max-width: 768px) {
    .why-section {
        padding: 20px 20px;
    }

    .why-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .why-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .why-card {
        padding: 24px 20px;
    }

    .why-card-header {
        gap: 12px;
    }

    .why-icon img {
        width: 70px;
        height: 70px;
    }

    .why-card-title {
        font-size: 24px;
    }

    .why-card-desc {
        font-size: 14px;
    }

    .why-card-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Маленькие телефоны (до 480px) */
@media (max-width: 480px) {
    .why-section {
        padding: 15px 15px;
    }

    .why-title {
        font-size: 24px;
    }

    .why-card-header {
        flex-direction: column;
        text-align: center;
    }

    .why-card-title {
        font-size: 20px;
        text-align: center;
    }

    .why-card-desc {
        font-size: 12px;
        text-align: center;
    }

    .why-card-btn {
        font-size: 12px;
        padding: 8px 16px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-arrow img {
        width: 12px;
        height: 12px;
    }
}

/* ========== FORMATS SECTION ========== */
.formats-section {
    max-width: 1440px;
    margin: 0 auto;
    margin-top: 20px;
    padding: 40px 40px;
    background: linear-gradient(97deg, #00D7D0 0%, #0A5B94 55%, #043271 100%);
}

.formats-container {
    width: 100%;
}

/* Заголовок */
.formats-header {
    margin-bottom: 50px;
}

.formats-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 54px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: left;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.formats-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    color: #FFFFFF;
    text-align: left;
    margin: 0;
}

/* Аккордеон */
.formats-accordion {
    margin-bottom: 50px;
    background: #0B204F;
    border-radius: 2px;
    padding: 20px;
}

/* Блоки аккордеона */
.format-item {
    background: transparent;
    border: 1px solid #00D7D0;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.format-item.active {
    background: rgba(0, 215, 208, 0.4);
}

.format-item:last-child {
    margin-bottom: 0;
}

.format-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.format-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.format-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.format-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
    text-transform: uppercase;
}

/* Стрелка */
.format-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.format-arrow img {
    width: 24px;
    height: 35px;
    display: block;
}

/* При открытии блока */
.format-item.active .format-icon {
    filter: brightness(0) invert(1);
}

.format-item.active .format-arrow {
    transform: rotate(-90deg);
    filter: brightness(0) invert(1);
}

/* Контент */
.format-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
}

.format-item.active .format-content {
    max-height: 300px;
    padding: 0 24px 20px 24px;
}

.format-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 10px;
}

.format-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.format-list-item img {
    width: 40px;
    height: 40px;
    margin-top: -10px;
}

.format-list-item span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: #FFFFFF;
}

/* Нижний блок */
.formats-footer {
    background-color: transparent;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.footer-question {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #00D7D0;
    margin: 0 0 15px 0;
}

.footer-chat-btn {
    background-color: #003BFF;
    border: none;
    padding: 14px 62px;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-chat-btn:hover {
    background-color: #0029b3;
    transform: translateX(5px);
}

.btn-arrow-right {
    font-size: 18px;
}

/* ========== АДАПТИВНОСТЬ ========== */

/* Планшет */
@media (max-width: 1024px) {
    .formats-section {
        padding: 60px 30px;
    }

    .formats-title {
        font-size: 42px;
    }

    .formats-subtitle {
        font-size: 18px;
    }

    .format-title {
        font-size: 18px;
    }

    .format-list-item span {
        font-size: 16px;
    }
}

/* Мобилка */
@media (max-width: 768px) {
    .formats-section {
        padding: 40px 20px;
    }

    .formats-title {
        font-size: 32px;
    }

    .formats-subtitle {
        font-size: 16px;
    }

    .format-header {
        padding: 16px 20px;
    }

    .format-left {
        gap: 10px;
    }

    .format-icon {
        width: 54px;
        height: 54px;
    }

    .format-title {
        font-size: 14px;
    }

    .format-arrow img {
        width: 20px;
        height: 20px;
    }

    .format-list-item {
        gap: 10px;
    }

    .format-list-item img {
        width: 16px;
        height: 16px;
    }

    .format-list-item span {
        font-size: 14px;
    }

    .footer-question {
        font-size: 20px;
    }

    .footer-chat-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Маленькие телефоны */
@media (max-width: 480px) {
    .formats-section {
        padding: 30px 15px;
    }

    .formats-title {
        font-size: 24px;
    }

    .formats-subtitle {
        font-size: 14px;
    }

    .format-title {
        font-size: 12px;
    }

    .format-list-item span {
        font-size: 12px;
    }

    .footer-question {
        font-size: 18px;
    }

    .footer-chat-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* ========== ELEMENTS SHOW SECTION ========== */
.elements-show-section {
    max-width: 1440px;
    margin: 0 auto;
    margin-top: 20px;
    padding: 40px 40px;
    background-color: #003BFF;
}

.elements-show-container {
    width: 100%;
}

/* Заголовок */
.elements-show-header {
    margin-bottom: 50px;
}

.elements-show-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 54px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: left;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.elements-show-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.4;
    color: #FFFFFF;
    text-align: left;
    margin: 0;
}

/* Сетка 2x2 */
.elements-show-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    overflow: visible;
    /* добавить */
}

/* Карточка */
.element-show-card {
    position: relative;
    background-color: #00319D;
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    transition: all 0.3s ease;
}

/* Фоновый PNG */
.element-show-card::before {
    content: '';
    position: absolute;
    top: -13%;
    left: -20%;
    right: 0;
    bottom: 0;
    width: 140%;
    height: 120%;
    background-image: url('../img/participants/card-bg-pattern.png');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: #00D7D0;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    text-align: left;
}

.card-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: #FFFFFF;
    margin: 0;
    max-width: 80%;
}

/* Картинка - по центру */
.card-image {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
    z-index: 1;
}

.card-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
}

/* Нижний текст */
.elements-show-footer {
    text-align: center;
    padding: 20px 0;
}

.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 auto;
    line-height: 1.3;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

/* ========== АДАПТИВНОСТЬ ========== */

/* Планшет */
@media (max-width: 1024px) {
    .elements-show-section {
        padding: 60px 30px;
    }

    .elements-show-title {
        font-size: 42px;
    }

    .elements-show-subtitle {
        font-size: 18px;
    }

    .card-title {
        font-size: 24px;
    }

    .card-desc {
        font-size: 16px;
        max-width: 70%;
    }

    .footer-text {
        font-size: 26px;
    }
}

/* Мобилка */
@media (max-width: 768px) {
    .elements-show-section {
        padding: 40px 20px;
    }

    .elements-show-title {
        font-size: 32px;
    }

    .elements-show-subtitle {
        font-size: 16px;
    }

    .elements-show-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .element-show-card {
        min-height: auto;
        padding-bottom: 20px;
    }

    .card-title {
        font-size: 24px;
    }

    .card-desc {
        font-size: 14px;
        max-width: 100%;
    }

    /* Фото на мобилке - нормальный размер */
    .card-image {
        position: relative;
        width: 100%;
        margin-top: 20px;
        padding-top: 0;
    }

    .card-image img {
        max-width: 80%;
        max-height: 180px;
    }

    .footer-text {
        font-size: 18px;
    }
}

/* Маленькие телефоны */
@media (max-width: 480px) {
    .elements-show-section {
        padding: 30px 15px;
    }

    .elements-show-title {
        font-size: 22px;
    }

    .elements-show-subtitle {
        font-size: 14px;
    }

    .element-show-card {
        padding: 18px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-desc {
        font-size: 12px;
    }

    .card-image img {
        max-width: 90%;
        max-height: 140px;
    }

    .footer-text {
        font-size: 14px;
    }
}

/* ========== participants ECOSYSTEM SECTION ========== */
.participants-ecosystem-section {
    max-width: 1440px;
    margin: 20px auto 0 auto;
    padding: 40px 40px;
    background: linear-gradient(97deg, #00D7D0 0%, #0A5B94 55%, #043271 100%);
    overflow-x: clip;
}

.participants-ecosystem-container {
    width: 100%;
}

/* Заголовок - СЛЕВА */
.participants-ecosystem-header {
    text-align: left;
    margin-bottom: 20px;
}

.participants-ecosystem-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 54px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

/* Подзаголовок - СЛЕВА */
.participants-ecosystem-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.4;
    color: #FFFFFF;
    text-align: left;
    max-width: 600px;
    margin: 0 0 50px 0;
}

/* Обертка для SVG и списка - ПО ЦЕНТРУ */
.participants-exhibitions-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

/* Место для SVG */
.participants-exhibitions-svg {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.participants-exhibitions-svg img {
    width: auto;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

/* Список выставок */
.participants-exhibitions-list {
    width: 500px;
    flex-shrink: 0;
}

/* Элемент списка */
.participants-exhibition-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.participants-exhibition-item:last-child {
    margin-bottom: 0;
}

.participants-exhibition-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    min-width: 50px;
}

.participants-exhibition-content {
    flex: 1;
}

.participants-exhibition-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.participants-exhibition-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #00D7D0;
}

.participants-exhibition-number-large {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 54px;
    color: #00D7D0;
    display: inline-block;
    margin-right: 8px;
    line-height: 1;
}

/* Обводки */
.participants-exhibition-item:nth-child(1) {
    border: 2px solid #00D7D0;
    background: rgba(0, 215, 208, 0.05);
}

.participants-exhibition-item:nth-child(1) .participants-exhibition-number {
    color: #00D7D0;
}

.participants-exhibition-item:nth-child(2) {
    border: 2px solid #013CFF;
    background: rgba(1, 60, 255, 0.05);
}

.participants-exhibition-item:nth-child(2) .participants-exhibition-number {
    color: #013CFF;
}

.participants-exhibition-item:nth-child(3) {
    border: 2px solid #0B204F;
    background: rgba(11, 32, 79, 0.05);
}

.participants-exhibition-item:nth-child(3) .participants-exhibition-number {
    color: #0B204F;
}

/* Описание - ПО ЦЕНТРУ */
.participants-ecosystem-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
    color: #00D7D0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.participants-ecosystem-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* ========== АДАПТИВНОСТЬ ========== */

/* Планшет */
@media (max-width: 1024px) {
    .participants-ecosystem-section {
        padding: 30px 30px;
    }

    .participants-ecosystem-title {
        font-size: 48px;
    }

    .participants-ecosystem-subtitle {
        font-size: 18px;
    }

    .participants-exhibitions-wrapper {
        gap: 30px;
    }

    .participants-exhibitions-list {
        width: 450px;
    }

    .participants-exhibition-name {
        font-size: 20px;
    }

    .participants-exhibition-desc {
        font-size: 14px;
    }

    .participants-exhibition-number {
        font-size: 28px;
        min-width: 45px;
    }

    .participants-ecosystem-description {
        font-size: 16px;
    }
}

/* Мобилка */
@media (max-width: 768px) {
    .participants-ecosystem-section {
        padding: 40px 20px;
    }

    .participants-ecosystem-title {
        font-size: 32px;
    }

    .participants-ecosystem-subtitle {
        font-size: 16px;
    }

    .participants-exhibitions-wrapper {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .participants-exhibitions-svg {
        display: none;
    }

    .participants-exhibitions-list {
        width: 100%;
    }

    .participants-exhibition-item {
        padding: 15px 20px;
        gap: 12px;
    }

    .participants-exhibition-number {
        font-size: 24px;
        min-width: 40px;
    }

    .participants-exhibition-name {
        font-size: 16px;
    }

    .participants-exhibition-desc {
        font-size: 12px;
    }

    .participants-ecosystem-description {
        font-size: 14px;
    }
}

/* Маленькие телефоны */
@media (max-width: 480px) {
    .participants-ecosystem-section {
        padding: 30px 15px;
    }

    .participants-ecosystem-title {
        font-size: 24px;
    }

    .participants-ecosystem-subtitle {
        font-size: 14px;
    }

    .participants-exhibition-item {
        padding: 12px 15px;
    }

    .participants-exhibition-number {
        font-size: 20px;
        min-width: 35px;
    }

    .participants-exhibition-name {
        font-size: 14px;
    }

    .participants-exhibition-desc {
        font-size: 10px;
    }

    .participants-ecosystem-description {
        font-size: 12px;
    }
}

/* ========== participants NUMBERS SECTION ========== */
.participants-numbers-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 40px;
    background-color: #0B204F;
}

.participants-numbers-container {
    width: 100%;
}

/* Заголовок */
.participants-numbers-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.participants-numbers-line {
    width: 80px;
    height: 3px;
    background: #00D7D0;
    border-radius: 0;
}

.participants-numbers-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    text-transform: uppercase;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
}

/* Сетка 3 карточки */
.participants-numbers-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Карточка */
.participants-number-card {
    flex: 1;
    min-width: 280px;
    padding: 30px 24px;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.participants-number-card:hover {
    transform: translateY(-5px);
}

/* Зеленая карточка */
.participants-number-card-green {
    background: rgba(0, 215, 208, 0.15);
    border: 1px solid #00D7D0;
}

/* Крупное число */
.participants-number-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 54px;
    color: #00D7D0;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Текст описания в карточке */
.participants-number-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #FFFFFF;
    text-transform: uppercase;
}


/* ========== АДАПТИВНОСТЬ ========== */

/* Планшет */
@media (max-width: 1024px) {
    .participants-numbers-section {
        padding: 50px 30px;
    }

    .participants-numbers-title {
        font-size: 28px;
    }

    .participants-numbers-line {
        width: 50px;
    }

    .participants-number-value {
        font-size: 42px;
    }

    .participants-number-text {
        font-size: 14px;
    }
}

/* Мобилка */
@media (max-width: 768px) {
    .participants-numbers-section {
        padding: 40px 20px;
    }

    .participants-numbers-header {
        gap: 10px;
        margin-bottom: 35px;
    }

    .participants-numbers-title {
        font-size: 22px;
    }

    .participants-numbers-line {
        width: 40px;
        height: 2px;
    }

    .participants-numbers-grid {
        flex-direction: column;
        gap: 16px;
    }

    .participants-number-card {
        min-width: auto;
        padding: 20px 16px;
    }

    .participants-number-value {
        font-size: 36px;
    }

    .participants-number-text {
        font-size: 14px;
    }

    .participants-numbers-description {
        font-size: 12px;
    }
}

/* Маленькие телефоны */
@media (max-width: 480px) {
    .participants-numbers-section {
        padding: 30px 15px;
    }

    .participants-numbers-title {
        font-size: 18px;
    }

    .participants-numbers-line {
        width: 30px;
    }

    .participants-number-value {
        font-size: 28px;
    }

    .participants-number-text {
        font-size: 12px;
    }
}

/* ========== PARTNER SECTION ========== */
.partner-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 40px;
    background: linear-gradient(97deg, #003BFF 0%, #0E2D7E 55%, #01185B 100%);
}

.partner-container {
    width: 100%;
}

/* Заголовок */
.partner-header {
    margin-bottom: 50px;
}

.partner-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 54px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: left;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.partner-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    color: #FFFFFF;
    text-align: left;
    margin: 0;
}

/* Сетка 3 карточки */
.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

/* Карточка */
.sponsor-card {
    background: linear-gradient(135deg, #165986 0%, #0D2356 100%);
    border: 1px solid #00D7D0;
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.sponsor-card:hover {
    background: linear-gradient(135deg, #003BFF 0%, #0D2356 100%);
    transform: translateY(-5px);
}

/* Бейдж */
.sponsor-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #00D7D0;
    border: 1px solid #00D7D0;
    border-radius: 30px;
    padding: 6px 16px;
    margin-bottom: 24px;
    background: transparent;
}

/* Иконка */
.sponsor-icon {
    margin-bottom: 20px;
}

.sponsor-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Заголовок карточки */
.sponsor-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 36px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

/* Описание */
.sponsor-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #FFFFFF;
    margin-bottom: 24px;
}

/* Разделитель - обычное состояние */
.sponsor-divider {
    height: 2px;
    background: linear-gradient(90deg, #FFFFFF 0%, #00D7D0 48%, #00D7D0 100%);
    margin-bottom: 24px;
    transition: background 0.3s ease;
}

/* Разделитель при наведении на карточку */
.sponsor-card:hover .sponsor-divider {
    background: linear-gradient(90deg, #FFFFFF 0%, #2C5DFF 48%, #003BFF 100%);
}

/* Кнопка подробнее */
.sponsor-details-btn {
    background: transparent;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #00D7D0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sponsor-details-btn::after {
    content: '→';
    transition: transform 0.3s ease;
}

.sponsor-details-btn:hover {
    color: #FFFFFF;
    gap: 12px;
}

.sponsor-details-btn:hover::after {
    transform: translateX(4px);
}

/* Нижняя кнопка */
.partner-footer {
    text-align: center;
}

.partner-footer-btn {
    background-color: #003BFF;
    border: none;
    padding: 16px 48px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-footer-btn:hover {
    background-color: #00D7D0;
    color: #0B204F;
    transform: translateY(-2px);
}

/* ========== АДАПТИВНОСТЬ ========== */

/* Планшет */
@media (max-width: 1024px) {
    .partner-section {
        padding: 30px 30px;
    }

    .partner-title {
        font-size: 42px;
    }

    .partner-subtitle {
        font-size: 18px;
    }

    .sponsor-grid {
        gap: 20px;
    }

    .sponsor-card-title {
        font-size: 28px;
    }

    .sponsor-card-desc {
        font-size: 14px;
    }
}

/* Мобилка */
@media (max-width: 768px) {
    .partner-section {
        padding: 20px 20px;
    }

    .partner-title {
        font-size: 32px;
    }

    .partner-subtitle {
        font-size: 16px;
    }

    .sponsor-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .sponsor-card {
        padding: 24px 20px;
    }

    .sponsor-card-title {
        font-size: 28px;
    }

    .sponsor-card-desc {
        font-size: 14px;
    }

    .partner-footer-btn {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
    }
}

/* Маленькие телефоны */
@media (max-width: 480px) {
    .partner-section {
        padding: 15px 15px;
    }

    .partner-title {
        font-size: 24px;
    }

    .partner-subtitle {
        font-size: 14px;
    }

    .sponsor-card-title {
        font-size: 24px;
    }

    .sponsor-badge {
        font-size: 10px;
        padding: 4px 12px;
    }

    .sponsor-icon img {
        width: 45px;
        height: 45px;
    }

    .sponsor-details-btn {
        font-size: 14px;
    }

    .partner-footer-btn {
        padding: 12px 20px;
        font-size: 12px;
    }
}

/* ========== SPEAKER SECTION ========== */
.speaker-section {
    max-width: 1440px;
    margin: 0 auto;
    margin-top: 20px;
    padding: 40px 40px;
    background: linear-gradient(97deg, rgba(255, 255, 255, 0.05) 0%, rgba(15, 38, 76, 0.62) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
}

.speaker-container {
    width: 100%;
}

.speaker-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.speaker-content {
    flex: 1;
    max-width: 700px;
}

/* Заголовок */
.speaker-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 54px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: left;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.speaker-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    color: #FFFFFF;
    text-align: left;
    margin: 0 0 40px 0;
}

/* Темы для заявок - сетка 2x2 */
.speaker-topics {
    margin-bottom: 40px;
}

.speaker-topics-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: #00D7D0;
    margin: 0 0 20px 0;
}

.speaker-topics-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.speaker-topics-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #00D7D0;
    border: 1px solid #00D7D0;
    border-radius: 8px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.speaker-topics-list li:hover {
    background: rgba(0, 215, 208, 0.1);
    transform: translateX(5px);
}

.speaker-topics-list li img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.speaker-topics-list li span {
    line-height: 1.3;
}

/* Блок с прозрачностью */
.speaker-contact-block {
    background: rgba(255, 255, 255, 0.025);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(5px);
}

.speaker-contact-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 25px;
}

/* Форма */
.speaker-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.speaker-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    outline: none;
    transition: all 0.3s ease;
}

.speaker-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.speaker-input:focus {
    border-color: #FFFFFF;
}

/* Нижняя часть формы */
.speaker-form-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
}

.speaker-checkbox {
    flex-shrink: 0;
}

.speaker-submit-btn {
    flex-shrink: 0;
}

/* Чекбокс */
.speaker-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.speaker-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: #00D7D0;
    cursor: pointer;
}

.speaker-checkbox span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
}

.speaker-checkbox span a {
    color: #00D7D0;
    text-decoration: none;
}

.speaker-checkbox span a:hover {
    text-decoration: underline;
}

/* Кнопка */
.speaker-submit-btn {
    background-color: #00D7D0;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: #051A2D;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.speaker-submit-btn:hover {
    background-color: #00D7D0;
    color: #0B204F;
    transform: translateY(-2px);
}

/* Круг справа */
.speaker-circle {
    flex-shrink: 0;
    width: 550px;
    height: 550px;
}

.speaker-circle-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #16F8C5 0%, #013CFF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-circle-bg img {
    position: relative;
    left: -100px;
    top: 4px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ========== АДАПТИВНОСТЬ ========== */

/* Планшет */
@media (max-width: 1024px) {
    .speaker-section {
        padding: 60px 30px;
    }

    .speaker-title {
        font-size: 42px;
    }

    .speaker-subtitle {
        font-size: 18px;
    }

    .speaker-circle {
        width: 350px;
        height: 350px;
    }

    .speaker-topics-title {
        font-size: 20px;
    }
}

/* Мобилка */
@media (max-width: 768px) {
    .speaker-section {
        padding: 40px 20px;
    }

    .speaker-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .speaker-content {
        max-width: 100%;
    }

    .speaker-title {
        font-size: 32px;
    }

    .speaker-subtitle {
        font-size: 16px;
    }

    .speaker-topics-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }

    .speaker-topics-list li {
        font-size: 14px;
        padding: 10px 16px;
    }

    .speaker-topics-list li img {
        width: 18px;
        height: 18px;
    }

    .speaker-contact-block {
        padding: 20px;
    }

    .speaker-contact-text {
        font-size: 16px;
    }

    .speaker-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .speaker-submit-btn {
        width: 100%;
    }

    .speaker-circle {
        display: none;
    }
}

/* Маленькие телефоны */
@media (max-width: 480px) {
    .speaker-section {
        padding: 30px 15px;
    }

    .speaker-title {
        font-size: 24px;
    }

    .speaker-subtitle {
        font-size: 14px;
    }

    .speaker-topics-title {
        font-size: 18px;
    }

    .speaker-topics-list li {
        font-size: 12px;
        padding: 8px 14px;
    }

    .speaker-topics-list li img {
        width: 16px;
        height: 16px;
    }

    .speaker-contact-block {
        padding: 15px;
    }

    .speaker-contact-text {
        font-size: 14px;
    }

    .speaker-input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .speaker-checkbox span {
        font-size: 12px;
    }

    .speaker-submit-btn {
        padding: 12px 20px;
        font-size: 12px;
    }

    .speaker-circle {
        display: none;
    }
}

/* ========== BOOKING SECTION ========== */
.booking-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 40px;
    margin-top: 20px;
    background-color: #0B1A31;
}

.booking-container {
    width: 100%;
}

.booking-wrapper {
    margin: 0 auto;
}

/* Заголовок */
.booking-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 54px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: left;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.booking-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: left;
    margin: 0 0 40px 0;
    opacity: 0.8;
    width: 100%;
    max-width: 700px
}

/* Форма */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-field label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
}

.booking-field input,
.booking-field select,
.booking-field-full textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    outline: none;
    transition: all 0.3s ease;
}

.booking-field input::placeholder,
.booking-field select,
.booking-field-full textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field-full textarea:focus {
    border-color: #00D7D0;
    background: rgba(255, 255, 255, 0.1);
}

.booking-field select option {
    background: #0B1A31;
    color: #FFFFFF;
}

.booking-field-full {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-field-full label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
}

.booking-field-full textarea {
    resize: vertical;
    min-height: 100px;
}

/* Нижняя часть */
.booking-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.booking-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.booking-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: #00D7D0;
    cursor: pointer;
}

.booking-checkbox span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
}

.booking-checkbox span a {
    color: #00D7D0;
    text-decoration: none;
}

.booking-checkbox span a:hover {
    text-decoration: underline;
}

.booking-submit-btn {
    background-color: #00D7D0;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #0B204F;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-submit-btn:hover {
    background-color: #003BFF;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Звездочка для обязательных полей */
.required-star {
    color: #00D7D0;
    font-size: 16px;
}

/* Текст об обязательных полях */
.booking-required-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: -10px 0 0 0;
}

/* Кнопки выбора площади */
.booking-area-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.area-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.area-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00D7D0;
}

.area-btn.active {
    background: #00D7D0;
    border-color: #00D7D0;
    color: #0B1A31;
}

/* Остальные стили как были */
.booking-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-field label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
}

.booking-field input,
.booking-field select,
.booking-field-full textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    outline: none;
    transition: all 0.3s ease;
}

.booking-field input::placeholder,
.booking-field-full textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field-full textarea:focus {
    border-color: #00D7D0;
    background: rgba(255, 255, 255, 0.1);
}

/* ========== АДАПТИВНОСТЬ ========== */

/* Планшет */
@media (max-width: 1024px) {
    .booking-section {
        padding: 60px 30px;
    }

    .booking-title {
        font-size: 42px;
    }
}

/* Мобилка */
@media (max-width: 768px) {
    .booking-section {
        padding: 40px 20px;
    }

    .booking-title {
        font-size: 32px;
    }

    .booking-subtitle {
        font-size: 16px;
    }

    .booking-row {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .booking-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-submit-btn {
        width: 100%;
        text-align: center;
    }
}

/* Маленькие телефоны */
@media (max-width: 480px) {
    .booking-section {
        padding: 30px 15px;
    }

    .booking-title {
        font-size: 24px;
    }

    .booking-field input,
    .booking-field select,
    .booking-field-full textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .booking-checkbox span {
        font-size: 12px;
    }

    .booking-submit-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 40px;
    margin-top: 20px;
    background: linear-gradient(97deg, #003BFF 0%, #0B204F 100%);
}

.contact-container {
    width: 100%;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 54px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: left;
    margin: 0 0 50px 0;
    line-height: 1.2;
}

/* Сетка 2 колонки */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Карточка */
.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #00D7D0;
    background: rgba(255, 255, 255, 0.08);
}

/* Внутренняя структура карточки */
.contact-card-inner {
    display: flex;
    gap: 20px;
}

/* Круг с фото */
.contact-circle {
    width: 200px;
    height: 200px;
    background: #00D7D0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.contact-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Информация */
.contact-info {
    flex: 1;
}

.contact-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: #00D7D0;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.contact-person {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #FFFFFF;
}

.contact-position {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #16F8C5;
    margin-bottom: 10px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    min-width: 55px;
}

.contact-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-value:hover {
    color: #00D7D0;
}

/* ========== АДАПТИВНОСТЬ ========== */

/* Планшет */
@media (max-width: 1024px) {
    .contact-section {
        padding: 60px 30px;
    }

    .contact-title {
        font-size: 42px;
    }

    .contact-circle {
        width: 80px;
        height: 80px;
    }

    .contact-card-title {
        font-size: 18px;
    }

    .contact-name {
        font-size: 18px;
    }
}

/* Мобилка */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 20px;
    }

    .contact-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .contact-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-card-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-circle {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .contact-card-title {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }
}

/* Маленькие телефоны */
@media (max-width: 480px) {
    .contact-section {
        padding: 30px 15px;
    }

    .contact-title {
        font-size: 24px;
    }

    .contact-circle {
        width: 70px;
        height: 70px;
    }

    .contact-card-title {
        font-size: 16px;
    }

    .contact-name {
        font-size: 16px;
    }

    .contact-label,
    .contact-value {
        font-size: 12px;
    }
}