	
/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*font-family: 'Inter', sans-serif;*/
	font-family: 'Helvetica',Arial,sans-serif
}

body {
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

div.required label:after {
    content: " *";
    color: red;
}



.header a{
	color:#333333 !important;
	text-decoration:none;
}

.logo img {
  max-width: 200px;
}

.connectButton{
	background-color: #45ef7e;
	border: 0px;
	padding: 12px;
	border-radius: 10px;
	color: #fff;
	width: 320px;
	text-align: left;
	font-weight: normal;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Переопределение стилей Bootstrap для конфликтов */
.btn-primary {
color: #ffffff;
    font-size: 14px;
    font-family: 'Helvetica',Arial,sans-serif;
    line-height: 1.55;
    font-weight: 300;
    border-radius: 10px;
    background-image: linear-gradient(0turn,rgba(67,233,123,1) 0%,rgba(69,240,127,1) 100%);
    border-color: transparent;
    border-style: solid;
    transition: background-color 0.5s ease-in-out,color 0.5s ease-in-out,border-color 0.5s ease-in-out;
}
}

.btn-primary:hover {
    background: rgb(57, 213, 113) !important;
    border-color: rgb(57, 213, 113) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 233, 123, 0.3) !important;
}

/* Наши кастомные кнопки */
.btn-login {
    background: transparent !important;
    color: #333333 !important;
    border: 1px solid #dee2e6 !important;
}

.btn-login:hover {
    background: rgba(0, 0, 0, 0.05) !important;
}

.btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 1.125rem !important;
}

/* Шапка */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: #000000;
    text-decoration: none;
}

.logo i {
    color: rgb(67, 233, 123);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #666666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #000000;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #333333;
    font-size: 24px;
    cursor: pointer;
}

/* Герой-баннер */
.hero {
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
}

.highlight {
    color: rgb(67, 233, 123);
}

/* Статистика в герое */
.hero-stats {
    margin-bottom: 50px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.1) 0%, rgba(67, 233, 123, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(67, 233, 123, 0.2);
    box-shadow: 0 10px 30px rgba(67, 233, 123, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(67, 233, 123, 0.2);
    border-color: rgba(67, 233, 123, 0.4);
}

.stat-icon {
    color: rgb(67, 233, 123);
}

.stat-number {
    color: rgb(67, 233, 123);
}

.stat-label {
    color: #333333;
    font-weight: 600;
}

/* Преимущества */
.advantages {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 50px;
}

.advantage-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: rgba(67, 233, 123, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: rgb(67, 233, 123);
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #000000;
}

.advantage-card p {
    color: #666666;
    font-size: 1rem;
}


.how-it-works {
    padding: 80px 0;
}



.arrow-line {
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        rgb(67, 233, 123),
        rgb(67, 233, 123) 10px,
        transparent 10px,
        transparent 20px
    );
}

.arrow-head {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-top: 2px solid rgb(67, 233, 123);
    border-right: 2px solid rgb(67, 233, 123);
}

/* Бегущая строка */
.marquee-section {
    padding: 40px 0;
    background: rgb(67, 233, 123);
    overflow: hidden;
    position: relative;
}

.marquee-container {
    position: relative;
    height: 180px;
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    position: absolute;
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
    animation: marquee 30s linear infinite;
}

.marquee-track-2 {
    top: 60px;
    animation: marquee-reverse 25s linear infinite;
}

.marquee-track-3 {
    top: 120px;
    animation: marquee 35s linear infinite;
}

.marquee-item {
    padding: 12px 30px;
    background: white;
    border-radius: 30px;
    font-weight: 700;
    color: #000000;
    white-space: nowrap;
    border: 3px solid #000000;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Возможности */


        /* Секция возможностей */
        .features-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(67, 233, 123, 0.15);
            border-color: rgb(67, 233, 123);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: rgb(67, 233, 123);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(67, 233, 123, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 36px;
            color: rgb(67, 233, 123);
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background: rgb(67, 233, 123);
            color: white;
            transform: rotate(5deg) scale(1.1);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #000000;
            line-height: 1.3;
        }

        .feature-card p {
            color: #666666;
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .feature-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 4rem;
            font-weight: 900;
            color: rgba(67, 233, 123, 0.05);
            line-height: 1;
            user-select: none;
        }

        /* Секция CTA */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(67, 233, 123, 0.15) 0%, rgba(67, 233, 123, 0.08) 100%);
        }

        .cta-card {
            background: white;
            border-radius: 30px;
            padding: 60px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
            border: 3px solid rgba(67, 233, 123, 0.3);
        }

        .cta-card h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 30px;
            color: #000000;
            line-height: 1.2;
        }

        .cta-card p {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #666666;
            margin-bottom: 40px;
        }

        /* Анимация */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .feature-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }
        .feature-card:nth-child(5) { animation-delay: 0.5s; }
        .feature-card:nth-child(6) { animation-delay: 0.6s; }
        .feature-card:nth-child(7) { animation-delay: 0.7s; }
        .feature-card:nth-child(8) { animation-delay: 0.8s; }
        .feature-card:nth-child(9) { animation-delay: 0.9s; }


/* Футер */
.footer {
    background: #1a1a1a;
    padding: 60px 0 30px;
    color: #ffffff;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-col a {
    display: block;
    color: #b8b8c9;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: rgb(67, 233, 123);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-col p {
    color: #b8b8c9;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 18px;
    color: #b8b8c9;
    transition: all 0.3s;
}

.social-links a:hover {
    background: rgb(67, 233, 123);
    color: #000000;
    transform: translateY(-3px);
}

.footer-bottom {

    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #666666;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b8b8c9;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: white;
}

/* Модальное окно Bootstrap */
.modal-left {
    background: rgba(67, 233, 123, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.modal-left h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #000000;
}

.modal-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.modal-logo i {
    font-size: 60px;
    color: rgb(67, 233, 123);
}

.modal-logo span {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
}

.modal-content {
    border-radius: 20px;
    overflow: hidden;
}

.btn-close {
    /*background: transparent !important;*/
    opacity: 0.7 !important;
}

.btn-close:hover {
    opacity: 1 !important;
}


/* Модальное окно Bootstrap - УВЕЛИЧЕНО */
#connectionModal .modal-dialog {
    max-width: 1000px; /* Увеличен максимальный размер */
    width: 90%;
}

#connectionModal .modal-content {
    border-radius: 30px;
    overflow: hidden;
    border: none;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

#connectionModal .modal-left {
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.15) 0%, rgba(67, 233, 123, 0.08) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    min-height: 600px; /* Минимальная высота увеличена */
}

#connectionModal .modal-left h3 {
    color: #000000;
    font-weight: 800;
    line-height: 1.2;
}

#connectionModal .modal-logo i {
    color: rgb(67, 233, 123);
    font-size: 80px;
}

#connectionModal .modal-logo span {
    color: #000000;
    font-weight: 900;
    letter-spacing: 1px;
}

#connectionModal .modal-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 600px; /* Минимальная высота увеличена */
    background: white;
}

#connectionModal .modal-right h4 {
    color: #333333;
}

#connectionModal .form-control-lg {
    border: 2px solid #dee2e6;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

#connectionModal .form-control-lg:focus {
    border-color: rgb(67, 233, 123);
    box-shadow: 0 0 0 0.25rem rgba(67, 233, 123, 0.25);
}

#connectionModal .form-label {
    color: #555555;
}

#connectionModal .btn-close {
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8 !important;
    transition: all 0.3s ease;
    z-index: 1051;
}

#connectionModal .btn-close:hover {
    background: rgba(0, 0, 0, 0.3) !important;
    opacity: 1 !important;
    transform: rotate(90deg);
}

#connectionModal .btn-close::before {
    content: "×";
    color: white;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
}

#connectionModal .btn-close:focus {
    box-shadow: none;
}

/* Адаптивность для модального окна */
@media (max-width: 1200px) {
    #connectionModal .modal-dialog {
        max-width: 900px;
    }
    
    #connectionModal .modal-left,
    #connectionModal .modal-right {
        min-height: 550px;
        padding: 40px !important;
    }
    
    #connectionModal .modal-left h3 {
        font-size: 2.5rem;
    }
    
    #connectionModal .modal-logo span {
        font-size: 2.5rem;
    }
    
    #connectionModal .modal-logo i {
        font-size: 60px;
    }
}

@media (max-width: 992px) {
    #connectionModal .modal-dialog {
        max-width: 95%;
    }
    
    #connectionModal .modal-body .row {
        flex-direction: column;
    }
    
    #connectionModal .modal-left,
    #connectionModal .modal-right {
        min-height: auto;
        padding: 40px 30px !important;
    }
    
    #connectionModal .modal-left {
        padding-bottom: 30px !important;
    }
    
    #connectionModal .modal-right {
        padding-top: 30px !important;
    }
}

@media (max-width: 768px) {
    #connectionModal .modal-left h3 {
        font-size: 2rem;
    }
    
    #connectionModal .modal-logo span {
        font-size: 2rem;
    }
    
    #connectionModal .modal-right h4 {
        font-size: 1.75rem;
    }
    
    #connectionModal .form-control-lg {
        padding: 15px !important;
        font-size: 1rem;
    }
    
    #connectionModal .btn-lg {
        padding: 15px !important;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    #connectionModal .modal-content {
        border-radius: 20px;
    }
    
    #connectionModal .modal-left,
    #connectionModal .modal-right {
        padding: 30px 20px !important;
    }
    
    #connectionModal .modal-left h3 {
        font-size: 1.75rem;
    }
    
    #connectionModal .modal-logo span {
        font-size: 1.75rem;
    }
    
    #connectionModal .modal-right h4 {
        font-size: 1.5rem;
    }
    
    #connectionModal .btn-close {
        width: 35px;
        height: 35px;
        margin: 15px !important;
    }
}




/* Футер - исправлены ссылки */
.footer-bottom .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom .footer-links a {
    color: #b8b8c9;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-bottom .footer-links a:hover {
    color: rgb(67, 233, 123);
}

/* Возможности - сделал заголовок видимым */
.features .section-header h2 {
    color: #000000 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.features .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgb(67, 233, 123);
    border-radius: 2px;
}

/* Преимущества - исправлен заголовок */
.advantages .section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.advantages .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgb(67, 233, 123);
    border-radius: 2px;
}

/* Как работает - исправлен заголовок */
.how-it-works .section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.how-it-works .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgb(67, 233, 123);
    border-radius: 2px;
}

/* Статистика */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(67, 233, 123, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 20%, rgba(67, 233, 123, 0.15) 0%, transparent 50%);
}

.stat-item-large {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-item-large:hover {
    transform: translateY(-15px);
    background: rgba(67, 233, 123, 0.1);
    border-color: rgba(67, 233, 123, 0.3);
    box-shadow: 0 20px 40px rgba(67, 233, 123, 0.2);
}

.stat-number-large {
    font-size: 4.5rem;
    font-weight: 900;
    color: rgb(67, 233, 123);
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(67, 233, 123, 0.5);
    line-height: 1;
}

.stat-label-large {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
    text-align: center;
}

.stat-icon-large {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.7;
}

/* Кейсы */
.cases-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.cases-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.cases-slider-container {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 20px 10px;
    scrollbar-width: none;
}

.cases-slider-container::-webkit-scrollbar {
    display: none;
}

.case-card {
    flex: 0 0 calc(33.333% - 20px);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    min-width: 350px;
}

.case-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.case-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-card:hover .case-overlay {
    opacity: 1;
}

.case-view-btn {
    background: rgb(67, 233, 123);
    color: #000000;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.case-view-btn:hover {
    background: rgb(57, 213, 113);
    transform: scale(1.05);
}

.case-info {
    padding: 25px;
}

.case-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000000;
}

.case-location {
    color: #666666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.case-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Слайдер контролы */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(67, 233, 123);
    color: #000000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgb(57, 213, 113);
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: rgb(67, 233, 123);
    transform: scale(1.3);
}

/* Партнёры */
.partners-section {
    padding: 100px 0;
    background: white;
}

.partners-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 50px;
    animation: partners-slide 30s linear infinite;
    padding: 40px 0;
}

.partner-logo {
    flex: 0 0 200px;
    height: 120px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgb(67, 233, 123);
}

.partner-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partners-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.partners-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: #000000;
    border: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partners-btn:hover {
    background: rgb(67, 233, 123);
    border-color: rgb(67, 233, 123);
    color: white;
    transform: scale(1.1);
}

@keyframes partners-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 4 - 50px * 3));
    }
}

/* Анимация цифр */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Секция событий */
.events-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.event-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image {
    transform: scale(1.05);
}

.event-badges {
	padding-top: 10px;
    padding-left: 25px;
	/*
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
	*/
}

.event-badge {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.age-badge {
    background: #ff6b6b;
    color: white;
}

.category-badge {
    background: rgb(67, 233, 123);
    color: #000000;
}

.event-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
}

.event-date-start {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.event-date-end {
    font-size: 0.9rem;
    opacity: 0.8;
}

.event-info {
    padding: 25px;
	padding-top:5px;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.3;
    height: 55px;
    overflow: hidden;
}

.event-location {
    color: #666666;
    font-size: 1rem;
    margin-bottom: 1px;
    display: flex;
    align-items: center;
	height: 25px;
    position: relative;
    display: block;
    overflow: hidden;
}

.event-meta {
    margin-bottom: 20px;
}

.event-time {
    color: #666666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
	margin-bottom:1px;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.event-price {
    display: flex;
    flex-direction: column;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgb(67, 233, 123);
    line-height: 1;
}

.price-old {
    font-size: 0.9rem;
    color: #999999;
    text-decoration: line-through;
}

.event-card .btn-outline-primary {
    border-radius: 10px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.event-card .btn-outline-primary:hover {
    background: rgb(67, 233, 123);
    color: #000000;
    border-color: rgb(67, 233, 123);
}

/* Бесплатные мероприятия */
.price-current[data-price="0"] {
    color: #4ecdc4;
    font-size: 1.3rem;
}


/* Подборки */



/* Подборки */
.collections-section {
    padding: 50px 0;
    background: #ffffff;
    overflow-x: hidden;
}





.collections-slider {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden; /* ВАЖНО: скрываем все, что за пределами */
}

.collections-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.collection-card {
    flex: 0 0 auto; /* Запрещаем сжатие */
    /* Ширина будет задаваться через JS */
}

.collection-image {
    position: relative;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}









/* Ширина карточек будет задаваться через JS для точности */

.collection-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.collection-link:hover {
    transform: translateY(-10px);
}


.collection-link:hover .collection-image img {
    transform: scale(1.1);
}

.collection-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.3;
}

.collection-info p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.collections-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.collections-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgb(67, 233, 123);
    color: #000000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.collections-btn:hover {
    background: rgb(57, 213, 113);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: rgb(67, 233, 123);
    border-radius: 10px;
}

.slider-dots .dot:hover {
    background: rgb(67, 233, 123);
    transform: scale(1.2);
}


/* Адаптивные настройки для разных экранов */
.collection-card {
    flex: 0 0 auto;
    /* Ширина будет задаваться через JS */
}

/* На мобильных точкам нужно больше места */
@media (max-width: 768px) {
    .slider-dots {
        display: flex;
        gap: 8px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dots .dot.active {
        width: 20px;
        background: rgb(67, 233, 123);
    }
}

/* Десктоп - точки стандартные */
@media (min-width: 769px) {
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    

}


/*
.collections-section {
    padding: 50px 0;
    background: #ffffff;
}

.collections-slider {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.collections-track {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 20px 10px;
    scrollbar-width: none;
}

.collections-track::-webkit-scrollbar {
    display: none;
}

.collection-card {
    flex: 0 0 calc(25% - 23px);
    min-width: 300px;
}

.collection-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.collection-link:hover {
    transform: translateY(-10px);
}

.collection-image {
    position: relative;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-link:hover .collection-image img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    text-align: right;
}

.collection-count {
    background: rgb(67, 233, 123);
    color: #000000;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.collection-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.3;
}

.collection-info p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.collections-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.collections-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgb(67, 233, 123);
    color: #000000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.collections-btn:hover {
    background: rgb(57, 213, 113);
    transform: scale(1.1);
}

.collections-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
*/





/* Категории */
.categories-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.category-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 130px;
    border: 2px solid transparent;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: rgb(67, 233, 123);
    box-shadow: 0 20px 40px rgba(67, 233, 123, 0.15);
}

.category-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.category-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: rgba(67, 233, 123, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}

.category-info {
    flex: 1;
}

.category-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.category-count {
    color: rgb(67, 233, 123);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0;
}

.category-arrow {
    color: #999999;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.category-card:hover .category-arrow {
    color: rgb(67, 233, 123);
    transform: translateX(5px);
}

/* Страница категории */
.category-header {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.1) 0%, rgba(67, 233, 123, 0.05) 100%);
}

.category-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(67, 233, 123);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: #666666;
    font-size: 1.1rem;
    font-weight: 500;
}

.category-icon {
    text-align: center;
}

.category-icon img {
    max-width: 200px;
}

.category-filters {
    padding: 40px 0;
    background: white;
}

.filter-bar {
    background: rgba(67, 233, 123, 0.05) !important;
    border: 1px solid rgba(67, 233, 123, 0.1);
}

.category-events {
    padding: 80px 0;
    background: white;
}

.category-events h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    position: relative;
    padding-bottom: 15px;
}

.category-events h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: rgb(67, 233, 123);
    border-radius: 2px;
}

.category-event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.category-event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-event-card .event-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.category-event-card .event-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgb(67, 233, 123);
    color: #000000;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.category-event-card .event-info {
    padding: 20px;
}

.category-event-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.3;
    height: 55px;
    overflow: hidden;
}

.category-event-card .event-meta {
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.category-event-card .event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.category-event-card .event-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: rgb(67, 233, 123);
}

.category-event-card .btn-outline-primary {
    border-radius: 8px;
    padding: 6px 15px;
    font-weight: 600;
}

.popular-artists {
    padding: 80px 0;
    background: #f8f9fa;
}

.popular-artists h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    position: relative;
    padding-bottom: 15px;
}

.popular-artists h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: rgb(67, 233, 123);
    border-radius: 2px;
}

.artist-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
}

.artist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.artist-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-card h5 {
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
}

.artist-card .text-muted {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.artist-card .badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Кнопка "Показать еще" */
#loadMoreCategories {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#loadMoreCategories:hover {
    background: rgb(67, 233, 123);
    color: #000000;
    border-color: rgb(67, 233, 123);
    transform: translateY(-3px);
}

/* Страница всех событий */

/* Заголовок */
.page-header .events-stats {
    text-align: center;
}

.stat-card {
    background: rgba(67, 233, 123, 0.1);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(67, 233, 123, 0.2);
}

.stat-card .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgb(67, 233, 123);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-card .stat-label {
    color: #333333;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Основная часть */
.events-page {
    padding: 60px 0;
}

/* Боковая панель с фильтрами */
.filters-sidebar {
    position: sticky;
    top: 100px;
}

.filters-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.filters-card h4 {
    color: #000000;
    font-weight: 700;
    font-size: 1.3rem;
}

.filters-card h5 {
    color: #333333;
    font-weight: 600;
    font-size: 1.1rem;
}

.filter-group {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.form-check {
    margin-bottom: 10px;
}

.form-check-input:checked {
    background-color: rgb(67, 233, 123);
    border-color: rgb(67, 233, 123);
}

.form-check-label {
    color: #444444;
    cursor: pointer;
}

.form-check-label .text-muted {
    font-size: 0.9rem;
}

.filters-card .btn {
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    background: rgba(67, 233, 123, 0.1);
    color: #333333;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgb(67, 233, 123);
    color: #000000;
    text-decoration: none;
}

/* Управление событиями */
.events-controls {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.show-results {
    font-size: 1.1rem;
    color: #444444;
}

.show-results strong {
    color: #000000;
}

.sorting label {
    color: #444444;
    font-weight: 500;
    line-height: 38px;
}

.sorting .form-select {
    border-radius: 10px;
    border: 2px solid #e5e5e5;
    padding: 8px 15px;
    font-weight: 500;
}

.sorting .form-select:focus {
    border-color: rgb(67, 233, 123);
    box-shadow: 0 0 0 0.25rem rgba(67, 233, 123, 0.25);
}

/* Список событий */
.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.event-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.event-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-item-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-item:hover .event-item-image img {
    transform: scale(1.05);
}

.event-item-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.event-item-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.event-item-badge.age {
    background: #ff6b6b;
    color: white;
}

.event-item-badge.category {
    background: rgb(67, 233, 123);
    color: #000000;
}

.event-item-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.event-item-info {
    padding: 20px;
}

.event-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    line-height: 1.3;
    height: 50px;
    overflow: hidden;
}

.event-item-meta {
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.event-item-meta i {
    width: 16px;
    color: rgb(67, 233, 123);
    margin-right: 8px;
}

.event-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e5e5;
}

.event-item-price {
    display: flex;
    flex-direction: column;
}

.event-item-price-current {
    font-size: 1.4rem;
    font-weight: 800;
    color: rgb(67, 233, 123);
    line-height: 1;
}

.event-item-price-old {
    font-size: 0.85rem;
    color: #999999;
    text-decoration: line-through;
}

.event-item .btn {
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 600;
}

/* Пагинация */
.pagination .page-link {
    color: #333333;
    border: 2px solid #e5e5e5;
    margin: 0 5px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: rgba(67, 233, 123, 0.1);
    border-color: rgb(67, 233, 123);
    color: #000000;
}

.pagination .page-item.active .page-link {
    background: rgb(67, 233, 123);
    border-color: rgb(67, 233, 123);
    color: #000000;
}

.pagination .page-item.disabled .page-link {
    color: #999999;
    border-color: #e5e5e5;
    background: #f8f9fa;
}

/* Кнопка загрузки */
#loadMoreEvents {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#loadMoreEvents:hover {
    background: rgb(67, 233, 123);
    color: #000000;
    border-color: rgb(67, 233, 123);
    transform: translateY(-3px);
}

/* Email подписка */
.email-subscription {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.15) 0%, rgba(67, 233, 123, 0.08) 100%);
}

.subscription-card {
    background: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(67, 233, 123, 0.3);
}

.subscription-card h2 {
    color: #000000;
    font-weight: 700;
}

.subscription-card p {
    color: #666666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.subscription-form .input-group {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.subscription-form .form-control {
    border-radius: 50px 0 0 50px;
    border: none;
    padding: 15px 25px;
    font-size: 1.1rem;
}

.subscription-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 15px 30px;
    font-weight: 600;
}

.subscription-form .form-check-input:checked {
    background-color: rgb(67, 233, 123);
    border-color: rgb(67, 233, 123);
}



/* Стили для внутренних страниц */

/* Хлебные крошки */
.breadcrumbs {
    padding: 20px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: rgb(67, 233, 123);
}

.breadcrumb-item.active {
    color: #000000;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #999999;
}

/* Заголовок страницы */
.page-header {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.05) 0%, rgba(67, 233, 123, 0.02) 100%);
}

.page-header h1 {
    background: linear-gradient(90deg, #000000, rgb(67, 233, 123));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.page-header-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.page-header-image img {
    transition: transform 0.5s ease;
}

.page-header-image:hover img {
    transform: scale(1.05);
}

/* Основной контент */
.page-content {
    padding: 80px 0;
}

.content-block {
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
    position: relative;
    padding-bottom: 15px;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: rgb(67, 233, 123);
    border-radius: 2px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 20px;
}

.content-block img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-block img:hover {
    transform: translateY(-5px);
}

/* Карточки ценностей */
.value-card {
    background: white;
    border-radius: 15px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgb(67, 233, 123);
    box-shadow: 0 15px 35px rgba(67, 233, 123, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(67, 233, 123, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(67, 233, 123);
}

.value-card h4 {
    color: #000000;
    font-weight: 600;
}

.value-card p {
    color: #666666;
    margin-bottom: 0;
}

/* Боковая панель */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.sidebar-card h4 {
    color: #000000;
    font-weight: 600;
    font-size: 1.3rem;
}

.sidebar-card h4 i {
    color: rgb(67, 233, 123);
}

.sidebar-card ul {
    padding-left: 0;
}

.sidebar-card ul li {
    color: #444444;
    margin-bottom: 10px;
    padding-left: 0;
}

.sidebar-card ul li i {
    color: rgb(67, 233, 123);
}

/* Достижения */
.achievement-item {
    text-align: center;
    padding: 15px;
    background: rgba(67, 233, 123, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: rgba(67, 233, 123, 0.1);
    transform: translateY(-3px);
}

.achievement-number {
    font-size: 2rem;
    font-weight: 800;
    color: rgb(67, 233, 123);
    margin-bottom: 5px;
}

.achievement-text {
    color: #666666;
    font-size: 0.9rem;
}

/* Контактная информация */
.contact-info p {
    color: #444444;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info p i {
    color: rgb(67, 233, 123);
    width: 20px;
}

/* CTA блок страницы */
.page-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.15) 0%, rgba(67, 233, 123, 0.08) 100%);
}

.page-cta h2 {
    color: #000000;
    margin-bottom: 30px;
}

.page-cta p {
    color: #444444;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* FAQ страница */
.search-faq .input-group {
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.search-faq .input-group-text {
    border-radius: 50px 0 0 50px;
    padding-left: 25px;
}

.search-faq .form-control {
    border-radius: 0;
    border: none;
    padding-left: 0;
}

.search-faq .btn {
    border-radius: 0 50px 50px 0;
    padding: 0.75rem 1.5rem;
}

/* Категории FAQ */
.faq-categories .btn {
    border-radius: 25px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.faq-categories .btn.active {
    background: rgb(67, 233, 123);
    color: #000000;
    border-color: rgb(67, 233, 123);
}

.faq-categories .btn:hover:not(.active) {
    background: rgba(67, 233, 123, 0.1);
    border-color: rgb(67, 233, 123);
}

/* Аккордеон FAQ */
.accordion-item {
    border: 1px solid #e5e5e5;
    border-radius: 10px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: #000000;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(67, 233, 123, 0.1);
    color: #000000;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgb(67, 233, 123);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2343e97b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.accordion-body {
    padding: 25px;
    background: white;
    color: #444444;
    line-height: 1.7;
}

.accordion-body h6 {
    color: #000000;
    font-weight: 600;
    margin-top: 15px;
}

.accordion-body ul, .accordion-body ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.accordion-body li {
    margin-bottom: 8px;
}

.accordion-body strong {
    color: #000000;
}

.table {
    margin: 20px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.table th {
    background: rgba(67, 233, 123, 0.1);
    color: #000000;
    font-weight: 600;
    border: none;
}

.table td {
    border-color: #f0f0f0;
}

/* Популярные вопросы */
.popular-question {
    color: #444444;
    text-decoration: none;
    padding: 10px 15px;
    background: rgba(67, 233, 123, 0.05);
    border-radius: 8px;
    margin-bottom: 10px;
    display: block;
    transition: all 0.3s ease;
}

.popular-question:hover {
    background: rgba(67, 233, 123, 0.1);
    color: #000000;
    transform: translateX(5px);
}

/* Документы */
.document-item {
    color: #444444;
    text-decoration: none;
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 10px;
    display: block;
    transition: all 0.3s ease;
}

.document-item:hover {
    background: rgba(67, 233, 123, 0.05);
    border-color: rgb(67, 233, 123);
    color: #000000;
}

/* Быстрая помощь */
.quick-help p {
    color: #444444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.quick-help i {
    color: rgb(67, 233, 123);
    width: 20px;
}

.quick-help hr {
    margin: 20px 0;
    border-color: #e5e5e5;
}

/* Дополнительная помощь */
.additional-help {
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.1) 0%, rgba(67, 233, 123, 0.05) 100%);
    border: 1px solid rgba(67, 233, 123, 0.2);
}

.additional-help h4 {
    color: #000000;
}

.additional-help .btn {
    border-radius: 10px;
}

/* Платформы приложений */
.app-platform {
    padding: 15px;
    background: rgba(67, 233, 123, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(67, 233, 123, 0.1);
}

.app-platform h6 {
    color: #000000;
    font-weight: 600;
}

.app-platform p {
    margin-bottom: 5px;
    color: #666666;
}

.app-platform small {
    color: #999999;
}

/* Адаптивность */
@media (max-width: 992px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-content {
        padding: 60px 0;
    }
    
    .content-block h2 {
        font-size: 2rem;
    }
    
    .sidebar {
        position: static;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 50px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header-image {
        margin-top: 30px;
    }
    
    .page-content {
        padding: 50px 0;
    }
    
    .content-block h2 {
        font-size: 1.8rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .faq-categories .btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    
    .page-cta {
        padding: 70px 0;
    }
    
    .page-cta h2 {
        font-size: 2rem;
    }
    
    .page-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .breadcrumbs {
        padding: 15px 0;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header .lead {
        font-size: 1.1rem;
    }
    
    .content-block h2 {
        font-size: 1.6rem;
    }
    
    .value-card {
        padding: 20px;
    }
    
    .accordion-body {
        padding: 20px;
    }
    
    .page-cta {
        padding: 50px 0;
    }
    
    .page-cta h2 {
        font-size: 1.8rem;
    }
    
    .page-cta p {
        font-size: 1rem;
    }
}





/* Адаптивность */
@media (max-width: 1200px) {
    .events-list {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .event-item-title {
        font-size: 1.2rem;
        height: 45px;
    }
}

@media (max-width: 992px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .stat-card .stat-number {
        font-size: 3rem;
    }
    
    .filters-sidebar {
        position: static;
        margin-bottom: 40px;
    }
    
    .events-list {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .email-subscription {
        padding: 60px 0;
    }
    
    .subscription-card {
        padding: 40px 30px !important;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header .lead {
        font-size: 1.2rem;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-card .stat-number {
        font-size: 2.5rem;
    }
    
    .events-controls {
        padding: 15px;
    }
    
    .show-results {
        font-size: 1rem;
    }
    
    .sorting {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sorting label {
        margin-bottom: 10px;
    }
    
    .events-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .event-item-title {
        height: auto;
    }
    
    .email-subscription {
        padding: 50px 0;
    }
    
    .subscription-card {
        padding: 30px 20px !important;
    }
    
    .subscription-card h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header .lead {
        font-size: 1.1rem;
    }
    
    .stat-card .stat-number {
        font-size: 2.2rem;
    }
    
    .events-page {
        padding: 40px 0;
    }
    
    .filters-card {
        padding: 20px;
    }
    
    .event-item-image {
        height: 180px;
    }
    
    .event-item-info {
        padding: 15px;
    }
    
    .event-item-price-current {
        font-size: 1.3rem;
    }
    
    .subscription-card h2 {
        font-size: 1.6rem;
    }
    
    .subscription-card p {
        font-size: 1rem;
    }
}






/* Адаптивность */
@media (max-width: 1200px) {
    .collection-card {
        flex: 0 0 calc(33.333% - 20px);
    }
    
    .category-image {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 992px) {
    .collections-section {
        padding: 80px 0;
    }
    
    .collection-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .collection-image {
        height: 220px;
    }
    
    .categories-section {
        padding: 80px 0;
    }
    
    .category-card {
        padding: 20px;
    }
    
    .category-content {
        gap: 15px;
    }
    
    .category-image {
        width: 60px;
        height: 60px;
    }
    
    .category-info h3 {
        font-size: 1.2rem;
    }
    
    .category-header {
        padding: 60px 0;
    }
    
    .category-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .category-events {
        padding: 60px 0;
    }
    
    .category-events h2 {
        font-size: 2rem;
    }
    
    .popular-artists {
        padding: 60px 0;
    }
    
    .popular-artists h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .collections-track {
        gap: 20px;
    }
    
    .collection-card {
        flex: 0 0 calc(100% - 20px);
        min-width: 100%;
    }
    
    .collection-image {
        height: 200px;
    }
    
    .collections-controls {
        gap: 20px;
    }
    
    .collections-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .category-stats {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .stat-item {
        text-align: left;
    }
    
    .category-event-card h3 {
        height: auto;
    }
    
    .artist-card {
        padding: 20px;
    }
    
    .artist-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .collections-section {
        padding: 60px 0;
    }
    
    .section-header .display-4 {
        font-size: 2.5rem;
    }
    
    .collection-info h3 {
        font-size: 1.2rem;
    }
    
    .categories-section {
        padding: 60px 0;
    }
    
    .category-card {
        padding: 15px;
        min-height: 110px;
    }
    
    .category-image {
        width: 50px;
        height: 50px;
    }
    
    .category-info h3 {
        font-size: 1.1rem;
    }
    
    .category-count {
        font-size: 0.9rem;
    }
    
    .category-header {
        padding: 40px 0;
    }
    
    .category-header h1 {
        font-size: 2.5rem;
    }
    
    .category-events {
        padding: 40px 0;
    }
    
    .category-events h2 {
        font-size: 1.8rem;
    }
    
    .popular-artists {
        padding: 40px 0;
    }
    
    .popular-artists h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .events-section {
        padding: 80px 0;
    }
    
    .event-title {
        font-size: 1.3rem;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .event-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .event-image {
        height: 200px;
    }
    
    .event-title {
        font-size: 1.2rem;
        height: auto;
    }
}

@media (max-width: 576px) {
    .events-section {
        padding: 60px 0;
    }
    
    .event-image {
        height: 180px;
    }
    
    .event-info {
        padding: 20px;
    }
    
    .price-current {
        font-size: 1.3rem;
    }
}


/* Адаптивность */
@media (max-width: 1200px) {
    .case-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 300px;
    }
    
    .stat-number-large {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .stats-section {
        padding: 80px 0;
    }
    
    .stat-item-large {
        min-height: 240px;
        padding: 30px 20px;
    }
    
    .stat-number-large {
        font-size: 3.5rem;
    }
    
    .stat-label-large {
        font-size: 1.2rem;
    }
    
    .cases-section {
        padding: 80px 0;
    }
    
    .partners-section {
        padding: 80px 0;
    }
    
    .partner-logo {
        flex: 0 0 180px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .case-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .stat-number-large {
        font-size: 3rem;
    }
    
    .stat-label-large {
        font-size: 1.1rem;
    }
    
    .stat-icon-large {
        font-size: 2.5rem;
    }
    
    .slider-controls {
        gap: 20px;
    }
    
    .partners-track {
        gap: 30px;
    }
    
    .partner-logo {
        flex: 0 0 150px;
        height: 90px;
    }
    
    .partners-controls {
        position: relative;
        top: auto;
        transform: none;
        margin-top: 30px;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stat-item-large {
        min-height: 200px;
        padding: 25px 15px;
    }
    
    .stat-number-large {
        font-size: 2.5rem;
    }
    
    .stat-label-large {
        font-size: 1rem;
    }
    
    .stat-icon-large {
        font-size: 2rem;
    }
    
    .cases-section {
        padding: 60px 0;
    }
    
    .partners-section {
        padding: 60px 0;
    }
    
    .partner-logo {
        flex: 0 0 120px;
        height: 80px;
    }
    
    .cases-slider-container {
        padding: 10px 5px;
        gap: 20px;
    }
}



/* Адаптивность для CTA секции */
@media (max-width: 1200px) {
    .cta-content {
        padding: 60px 40px;
    }
    
    .cta-content h2 {
        font-size: 3rem;
    }
    
    .cta-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content {
        padding: 50px 30px;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.2rem;
    }
    
    .btn-lg.fs-3 {
        font-size: 1.25rem !important;
        padding: 15px 30px !important;
    }
    
    .cta-feature {
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    .cta-content {
        padding: 40px 25px;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .footer-bottom .footer-links {
        justify-content: flex-start;
        gap: 15px;
    }
    
    .footer-bottom .row.align-items-center {
        align-items: flex-start !important;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content {
        padding: 35px 20px;
        border-radius: 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn-lg.fs-3 {
        font-size: 1.1rem !important;
        padding: 12px 25px !important;
    }
    
    .footer-bottom .footer-links {
        gap: 10px;
        font-size: 0.9rem;
    }
    
    .footer-bottom .footer-links a {
        padding: 5px 0;
    }
}

@media (max-width: 400px) {
    .footer-bottom .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .footer-bottom .row.align-items-center {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .footer-bottom .col-md-6 {
        width: 100%;
    }
    
    .footer-bottom .footer-links {
        justify-content: flex-start;
        margin-top: 10px;
    }
}


/* Адаптивность */
@media (max-width: 1400px) {
    .feature-card {
        min-height: 250px;
    }
}

@media (max-width: 1200px) {
    .workflow {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    
    .workflow-step {
        min-width: 200px;
    }
    
    .workflow-arrow {
        display: none;
    }
    
    .features .col-lg-2 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .features .col-lg-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .cta-content {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-links, .nav-actions {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .modal-body .row {
        flex-direction: column;
    }
    
    .modal-left {
        padding: 40px 20px !important;
    }
    
    .modal-right {
        padding: 40px 20px !important;
    }
    
    .workflow-step {
        min-width: 100%;
    }
    
    .features .col-lg-2 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .feature-card {
        min-height: 200px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
    }
    
    .stat-label {
        font-size: 1.25rem !important;
    }
    
    .marquee-item {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
}