        /* Стили для модального окна с плавной анимацией */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(29, 27, 51, 0);
            backdrop-filter: blur(0px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 1rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease-in-out;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
            background: rgba(29, 27, 51, 0.8);
            backdrop-filter: blur(8px);
        }

        .modal {
            background: #262342;
            border-radius: 20px;
            padding: 2.5rem;
            max-width: 500px;
            width: 100%;
            position: relative;
            border: 1px solid transparent;
            background-clip: padding-box;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transform: scale(0.9);
            opacity: 0;
            transition: all 0.3s ease-in-out;
        }

        .modal-overlay.active .modal {
            transform: scale(1);
            opacity: 1;
        }

        .modal:before {
            content: "";
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            border-radius: 20px;
            z-index: -1;
        }

        .modal__close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: #c6c5d4;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .modal__close:hover {
            color: #f2f2f2;
            background: rgba(255, 255, 255, 0.1);
        }

        .modal__title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #09fbd3 0%, #fe53bb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
        }

        .modal__form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-label {
            font-size: 0.875rem;
            color: #c6c5d4;
        }

        .form-input {
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: #f2f2f2;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
			margin-bottom: 1.0rem;
        }

        .form-input:focus {
            outline: none;
            border-color: #09fbd3;
            box-shadow: 0 0 0 2px rgba(9, 251, 211, 0.2);
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-top: 0.5rem;
        }

        .form-checkbox input {
            margin-top: 0.25rem;
            flex-shrink: 0;
        }

        .form-checkbox label {
            font-size: 0.875rem;
            color: #c6c5d4;
            line-height: 1.4;
        }

        .form-checkbox a {
            color: #09fbd3;
            text-decoration: none;
        }

        .form-checkbox a:hover {
            text-decoration: underline;
        }

        .form-submit {
            padding: 1rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1.5rem;
			width: 100%;
        }

        .form-submit:hover {
           background: linear-gradient(135deg, #3e59d3 0%, #552b7f 100%);
        }

        .form-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .success-message {
            display: none;
            text-align: center;
            padding: 2rem 0;
        }

        .success-message.active {
            display: block;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            color: white;
        }

        .success-text {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .success-subtext {
            font-size: 0.875rem;
            color: var(--text-gray);
        }

        /* Адаптивность */
        @media (max-width: 480px) {
            .maintenance {
                padding: 1rem;
            }
            
            .maintenance__card {
                padding: 2rem 1.5rem;
            }
            
            .maintenance__title {
                font-size: 2rem;
            }
            
            .maintenance__subtitle {
                font-size: 1.25rem;
            }
            
            .maintenance__countdown-timer {
                gap: 0.5rem;
            }
            
            .maintenance__countdown-number {
                font-size: 1.5rem;
            }
            
            .modal {
                padding: 2rem 1.5rem;
            }
            
            .modal__title {
                font-size: 1.5rem;
            }
        }
		
		.tariffs__item {
    background: #262342;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #343155;
    display: flex;
    flex-direction: column;
    height: auto;
}

.tariffs__item-header {
    text-align: center;
    margin-bottom: 25px;
}

.tariffs__item-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.tariffs__item-icon svg {
    width: 28px;
    height: 28px;
}

.tariffs__item-title {
    color: #ffffff;
    font-size: 1.5em;
    font-weight: 700;
    margin: 0;
}

.tariffs__item-description {
    color: #a0a0b0;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.tariffs__features {
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 12px;
    transition: background-color 0.2s ease;
}

.feature:hover {
    background-color: #2f2b50;
}

.feature__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: 2px;
}

.feature__icon svg {
    width: 14px;
    height: 14px;
}

.feature__content {
    flex: 1;
}

.feature__content strong {
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.feature__content span {
    color: #a0a0b0;
    font-size: 0.9em;
    line-height: 1.4;
    display: block;
}

.tariffs__timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: #2f2b50;
    border-radius: 12px;
    margin-top: auto;
}

.timeline__icon {
    color: #667eea;
    display: flex;
    align-items: center;
}

.timeline__icon svg {
    width: 20px;
    height: 20px;
}

.timeline__text {
    color: #ffffff;
    font-size: 0.95em;
}



/* Адаптивность */
@media (max-width: 768px) {
    .tariffs__item {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .tariffs__item-title {
        font-size: 1.3em;
    }
    
    .feature {
        padding: 10px;
    }
}

/* Базовые стили для десктопа */
.menu__item {
	position: relative;
}

.menu__item--has-dropdown:hover .menu__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.menu__dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background: #262342;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	padding: 10px 0;
	min-width: 285px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
}

.menu__dropdown-link {
	display: block;
	padding: 8px 20px;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	transition: background-color 0.3s ease;
}

.menu__dropdown-link:hover {
	background-color: #16152d;
	color: #fff;
}

/* Стили для бургер-кнопки */
.header__burger {
	display: none;
	flex-direction: column;
	width: 24px;
	height: 18px;
	border: none;
	cursor: pointer;
	padding: 0;
	position: relative;
	z-index: 1001;
}

.header__burger span {
	display: block;
	height: 2px;
	width: 100%;
	background: #333;
	margin-bottom: 4px;
	transition: all 0.3s ease;
	transform-origin: center;
}

.header__burger span:last-child {
	margin-bottom: 0;
}

/* Активное состояние бургера */
.header__burger.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
	background: #fff;
}

.header__burger.active span:nth-child(2) {
	opacity: 0;
}

.header__burger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
	background: #fff;
}

/* Оверлей */
.header__overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 998;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.header__overlay.active {
	opacity: 1;
}

/* Мобильное меню */
@media (max-width: 768px) {
	.header__burger {
		display: flex;
	}
	
	.header__block {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100vh;
		background: rgba(38, 35, 66, 0.95);
		backdrop-filter: blur(10px);
		transition: left 0.3s ease;
		z-index: 999;
		padding: 80px 20px 40px;
		overflow-y: auto;
		display: flex;
		flex-direction: column;
		box-sizing: border-box;
	}
	
	.header__block.active {
		left: 0;
	}
	
	.header__overlay {
		/*display: block;*/
	}
	
	.header__overlay.active {
		opacity: 1;
	}
	
	/* Стили для меню в мобильной версии */
	.header__block-menu {
		flex-direction: column;
		margin-bottom: 30px;
		width: 100%;
		flex-shrink: 0;
	}
	
	.menu__item {
		margin-bottom: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		width: 100%;
	}
	
	.menu__item-link {
		display: block;
		padding: 16px 0;
		font-size: 16px;
		color: #fff;
		text-decoration: none;
		position: relative;
		width: 100%;
		background: rgba(0, 0, 0, 0.3);
		border-radius: 8px;
		margin-bottom: 8px;
		padding-left: 16px;
		padding-right: 16px;
		transition: all 0.3s ease;
		box-sizing: border-box;
	}
	
	.menu__item-link:hover {
		background: rgba(0, 0, 0, 0.5);
	}
	
	/* Выпадающие списки для мобильных */
	.menu__dropdown {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: transparent;
		padding: 0;
		display: none;
		border: none;
		width: 100%;
		margin-top: 8px;
		box-sizing: border-box;
	}
	
	.menu__item--has-dropdown.active .menu__dropdown {
		display: block;
	}
	
	.menu__dropdown-link {
		padding: 14px 0 14px 20px;
		font-size: 14px;
		color: rgba(255, 255, 255, 0.8);
		border: none;
		background: rgba(0, 0, 0, 0.2);
		border-radius: 6px;
		margin-bottom: 6px;
		width: 100%;
		transition: all 0.3s ease;
		box-sizing: border-box;
	}
	
	.menu__dropdown-link:hover {
		background: rgba(0, 0, 0, 0.4);
		color: #fff;
	}
	
	/* Стрелка для пунктов с выпадающим меню */
	.menu__item--has-dropdown .menu__item-link::after {
		content: '';
		position: absolute;
		right: 16px;
		top: 50%;
		transform: translateY(-50%);
		width: 0;
		height: 0;
		border-left: 5px solid transparent;
		border-right: 5px solid transparent;
		border-top: 5px solid #fff;
		transition: transform 0.3s ease;
	}
	
	.menu__item--has-dropdown.active .menu__item-link::after {
		transform: translateY(-50%) rotate(180deg);
	}
	
	/* Правый блок в мобильной версии */
	/*.header__block-right {
		margin-top: auto;
		padding-top: 30px;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		width: 100%;
		flex-shrink: 0;
	}*/
	
	.header__block-button {
		display: block;
		text-align: center;
		padding: 16px;
		background: rgba(0, 123, 255, 0.8);
		color: white;
		text-decoration: none;
		border-radius: 8px;
		margin-bottom: 24px;
		font-weight: 600;
		font-size: 16px;
		transition: all 0.3s ease;
		width: 100%;
		box-sizing: border-box;
	}
	
	.header__block-button:hover {
		background: rgba(0, 123, 255, 1);
	}
	
	.header__block-contacts {
		margin-bottom: 24px;
		display: flex;
		flex-direction: column;
		gap: 12px;
	}
	
	.header__block-contacts-item {
		display: block;
		padding: 12px 16px;
		color: #fff;
		text-decoration: none;
		background: rgba(255, 255, 255, 0.1);
		border-radius: 8px;
		transition: all 0.3s ease;
		text-align: center;
		box-sizing: border-box;
	}
	
	.header__block-contacts-item:hover {
		background: rgba(255, 255, 255, 0.2);
	}
	
	.header__block-socials {
		text-align: center;
	}
	
	.header__block-socials-link {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 48px;
		height: 48px;
		background: rgba(255, 255, 255, 0.1);
		border-radius: 50%;
		color: #fff;
		transition: all 0.3s ease;
	}
	
	.header__block-socials-link:hover {
		background: rgba(255, 255, 255, 0.2);
		transform: scale(1.1);
	}
	
	.header__block-socials-link svg {
		width: 24px;
		height: 24px;
	}
}

/* Десктоп версия */
@media (min-width: 769px) {
	.header__block {
		display: flex !important;
		align-items: center;
	}
	
	.header__overlay {
		display: none !important;
	}
}

    /* Блок с радио-волнами */
    .radio-waves {
        position: relative;
        width: 100%;
        height: 500px;
        background: linear-gradient(135deg, #1d1b33 0%, #16152d 100%);
        border-radius: 20px;
        overflow: hidden;
        margin: 2rem 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Контейнер для волн */
    .waves-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 0 2rem;
    }

    /* Общие стили для волн */
    .wave {
        position: relative;
        width: 4px;
        height: 80%;
        background: transparent;
        border-radius: 4px;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
    }

    /* Волна с градиентом */
    .wave::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, 
            transparent 0%, 
            currentColor 50%, 
            transparent 100%);
        border-radius: 4px;
        opacity: 0.8;
    }

    /* Анимация движения вверх-вниз */
    @keyframes waveUpDown {
        0%, 100% {
            transform: translateY(0%) scaleY(1);
            opacity: 0.7;
        }
        25% {
            transform: translateY(-25%) scaleY(1.3);
            opacity: 1;
        }
        50% {
            transform: translateY(0%) scaleY(1);
            opacity: 0.7;
        }
        75% {
            transform: translateY(25%) scaleY(0.7);
            opacity: 0.5;
        }
    }

    /* Эффект свечения */
    .wave::after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 100%;
        background: radial-gradient(
            ellipse at center,
            currentColor 0%,
            transparent 70%
        );
        opacity: 0.3;
        filter: blur(10px);
        z-index: -1;
    }

    /* Эффект пересечения волн */
    @keyframes pulseGlow {
        0% {
            opacity: 0.3;
        }
        100% {
            opacity: 0.7;
        }
    }

    /* Контент поверх волн */
    .waves-content {
        position: relative;
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        text-align: center;
        padding: 2rem;
    }

    .waves-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #fff 0%, #09fbd3 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .waves-subtitle {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.8);
        max-width: 600px;
    }

    /* Адаптивность */
    @media (max-width: 768px) {
        .radio-waves {
            height: 400px;
        }
        
        .waves-container {
            padding: 0 1rem;
        }
        
        .wave {
            width: 3px;
        }
        
        .waves-title {
            font-size: 2rem;
        }
        
        .waves-subtitle {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .radio-waves {
            height: 300px;
        }
        
        .waves-container {
            padding: 0 0.5rem;
        }
        
        .wave {
            width: 2px;
        }
        
        .waves-title {
            font-size: 1.5rem;
        }
    }

    /* Демонстрационные блоки */
    .demo-section {
        margin-top: 4rem;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
    }

    .demo-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #09fbd3;
    }

    .controls {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }

    .control-btn {
        padding: 0.5rem 1rem;
        background: linear-gradient(135deg, #3f66ff 0%, #09fbd3 100%);
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

    .control-btn:hover {
        transform: translateY(-2px);
    }

    /* НОВЫЕ СТИЛИ ДЛЯ ИНДИКАТОРОВ ЧАСТОТЫ */
    .frequency-indicators {
        position: absolute;
        bottom: 20px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 2rem;
        z-index: 5;
    }

    .frequency {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        font-weight: 500;
    }

    /* Адаптивность для индикаторов */
    @media (max-width: 768px) {
        .frequency-indicators {
            padding: 0 1rem;
        }
        
        .frequency {
            font-size: 0.8rem;
        }
    }

    @media (max-width: 480px) {
        .frequency-indicators {
            padding: 0 0.5rem;
        }
        
        .frequency {
            font-size: 0.7rem;
        }
    }
	
	/* Стили для сообщений об ошибках */
.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: none;
    font-weight: normal;
}

.error-message.active {
    display: block;
}

/* Стили для полей с ошибками */
.form-input.error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

/* Стили для успешного сообщения */
.success-message {
    display: none;
    text-align: center;
    padding: 20px;
}

.success-message.active {
    display: block;
}

.success-icon {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.success-text {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: bold;
}

.success-subtext {
    color: #ffffff;
    font-size: 14px;
}

/* Стили для состояния загрузки */
.form-submit:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Стили для placeholder в поле телефона */
.form-input::placeholder {
    color: #999;
    opacity: 1;
}

/* Запрет выделения для иконки успеха */
.success-icon {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Дополнительные стили для чекбокса с ошибкой */
.form-checkbox {
    position: relative;
}

#privacyError {
    margin-top: 5px;
}

/* Стили для body когда модальное окно открыто */
body.modal-open {
    overflow: hidden;
}


/* Основные стили из вашего CSS */
        :root {
            --primary-color: #3f66ff;
            --secondary-color: #77afee;
            --accent-cyan: #09fbd3;
            --accent-pink: #fe53bb;
            --dark-bg: #1d1b33;
            --card-bg: #262342;
            --text-light: #f2f2f2;
            --text-gray: #c6c5d4;
        }


        /* Основной контент */


        .card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 3rem;
            position: relative;
            border: 1px solid transparent;
            background-clip: padding-box;
            margin-bottom: 2rem;
        }

        .card:before {
            content: "";
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            border-radius: 20px;
            z-index: -1;
        }

        .card-title {
            font-size: 1.8rem;
			font-weight: 400;
			margin-bottom: 1.5rem;
            
        }

        .card-subtitle {
            font-size: 1.25rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        /* Текстовые элементы */
        .static p {
            margin-bottom: 16px;
            color: var(--text-light);
        }

        .static {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-gray);
        }

       .static h1, h2, h3, h4, h5, h6 {
            margin-bottom: 1rem;
            font-weight: 500;
            line-height: 1.3;
        }

       .static h1 {
            font-size: 2rem;
            
        }

       .static h2 {
            font-size: 2rem;
            color: var(--text-light);
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
        }

       .static h3 {
            font-size: 1.5rem;
            color: var(--text-light);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

       .static h4 {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }

        /* Изображения */
        .static a>img{
            margin: 2rem 2rem 2rem 0rem;
            border-radius: 15px;
            overflow: hidden;
        }

        .static img {
            /*width: 100%;*/
            height: auto;
            display: block;
            /*transition: transform 0.5s ease;*/
        }



        .image-caption {
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            font-size: 0.875rem;
            color: var(--text-gray);
            text-align: center;
        }

        /* Цитаты */
        .quote {
            margin: 2rem 0;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-left: 4px solid var(--accent-cyan);
            border-radius: 0 10px 10px 0;
            position: relative;
        }

        .quote:before {
            content: "";
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 16px;
            color: var(--accent-cyan);
            opacity: 0.3;
        }

        .quote p {
            font-size: 16px;
            font-style: italic;
            color: var(--text-light);
            margin-bottom: 1rem;
        }



        /* Списки */
       .static ul, ol {
            margin: 1.5rem 0;
            padding-left: 2rem;
            color: var(--text-light);
        }

       .static ul li, ol li {
            margin-bottom: 0.75rem;
            line-height: 1.6;
        }

       .static ul li {
            list-style-type: none;
            position: relative;
        }

       .static ul li:before {
            content: "•";
            position: absolute;
            left: -1.5rem;
            color: var(--accent-cyan);
            font-size: 1.5rem;
            line-height: 1;
        }

       .static ol {
            counter-reset: item;
        }

       .static ol li {
            counter-increment: item;
            position: relative;
        }

       .static ol li:before {
            content: counter(item) ".";
            position: absolute;
            left: -1.5rem;
            color: var(--accent-cyan);
            font-weight: 600;
        }

        /* Таблицы */
      .static  table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

      .static  th, td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

      .static  th {
            background: rgba(255, 255, 255, 0.05);
            color: var(--accent-cyan);
            font-weight: 600;
        }

       .static tr:last-child td {
            border-bottom: none;
        }

      .static  tr:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        

        @media (max-width: 768px) {
            
            
          .static  h1 {
                font-size: 2rem;
            }
            
          .static  h2 {
                font-size: 1.75rem;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .card {
                padding: 1.5rem 1rem;
            }
            
            .card-title {
                font-size: 1.75rem;
            }
            
            .card-subtitle {
                font-size: 1.125rem;
            }
        }
		
		/* Стили для кастомного селекта языков */
.language-selector {
    position: relative;
    display: inline-block;
    min-width: 80px;
}

.language-selector__current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    font-size: 0.9rem;
    font-family: "Fira Sans", sans-serif;
    position: relative;
    border: none;
    width: 100%;
    text-align: left;
}

.language-selector__current:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

.language-selector__current:after {
    content: "▼";
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    position: relative;
    display: inline-block;
    margin-left: 4px;
    line-height: 1;
}

.language-selector:hover .language-selector__current:after {
    transform: rotate(180deg);
}

.language-selector__current:not(.active) {
    display: none;
}

.language-selector__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #262342;
    border-radius: 6px;
    margin-top: 0.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 100px;
}

.language-selector:hover .language-selector__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Стили для кнопок в выпадающем списке */
.language-selector__option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: "Fira Sans", sans-serif;
}

.language-selector__option:first-child {
    border-radius: 5px 5px 0 0;
}

.language-selector__option:last-child {
    border-radius: 0 0 5px 5px;
}

.language-selector__option:hover {
    background: #16152d;
    color: #ffffff;
}

.language-selector__option.active {
    background: rgba(81, 152, 236, 0.3);
    color: #5198ec;
}

/* Стили для флагов */
.language-selector__flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.language-selector__flag.ru {
    background-image: url('../images/ru.svg');
}

.language-selector__flag.en {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30"><path fill="%2301286F" d="M0 0h60v30H0z"/><path stroke="%23fff" stroke-width="6" d="M0 0l60 30m0-30L0 30"/><path stroke="%23D02F44" stroke-width="4" d="M0 0l60 30m0-30L0 30"/><path stroke="%23fff" stroke-width="10" d="M30 0v30M0 15h60"/><path stroke="%23D02F44" stroke-width="6" d="M30 0v30M0 15h60"/></svg>');
}

/* Для мобильных устройств - показываем нативный селект */
@media screen and (max-width: 991.98px) {
    .language-selector__current {
        display: none;
    }
    
    .language-selector__dropdown {
        display: none;
    }
    
    .language-selector__native {
        position: relative;
        opacity: 1;
        pointer-events: all;
        width: 100%;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 6px;
        color: #fff;
        padding: 0.5rem 2rem 0.5rem 1rem;
        font-size: 0.9rem;
        background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.75rem center;
        background-size: 12px 8px;
    }
}

/* Интеграция в header */
.header__block-right .language-selector {
    margin-left: 1rem;
}

@media screen and (max-width: 991.98px) {
    .header__block-right .language-selector {
        margin-left: 0;
        width: 100px;
    }
}

/* Альтернативный минималистичный вариант */
.language-selector.minimal .language-selector__current {
    border: none;
    background: transparent;
    padding: 0.5rem;
}

.language-selector.minimal .language-selector__current:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.language-selector.minimal .language-selector__dropdown {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(29, 27, 51, 0.95);
    backdrop-filter: blur(10px);
}