@charset "utf-8";
/* CSS Document */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #20978a;
            --secondary-color: #00859d;
            --accent-color: #d92c29;
            --highlight-color: #f2bf0c;
            --border-color: rgba(255, 255, 255, 0.1);
            --service-bg: rgba(32, 151, 138, 0.15);
            --animation-duration: 0.4s;
            --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --discount-color: #27ae60;
            --text-color: #ffffff;
            --bg-dark: #0a0a14;
            --card-bg: rgba(10, 10, 20, 0.8);
        }

        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            background: var(--bg-dark);
            color: var(--text-color);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        /* Неоновый фон */
        .shapes-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            perspective: 1000px;
        }

        .shape {
            position: absolute;
            opacity: 0.85;
            animation: float 15s infinite ease-in-out;
            filter: blur(1px);
            transform-style: preserve-3d;
        }

        .shape-1 {
            top: 5%;
            left: 5%;
            width: 450px;
            height: 450px;
            background: linear-gradient(135deg, #1a1a2e 0%, #0a0a14 70%);
            clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.5),
                       inset 0 0 30px rgba(0, 255, 255, 0.15);
            animation-delay: 0s;
            z-index: 4;
        }

        .shape-2 {
            top: 50%;
            right: 5%;
            width: 500px;
            height: 500px;
            background: linear-gradient(225deg, #16213e 0%, #0a0a14 70%);
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%, 0 30%);
            box-shadow: 0 0 35px rgba(255, 0, 255, 0.5),
                       inset 0 0 30px rgba(255, 0, 255, 0.15);
            animation-delay: -5s;
            z-index: 3;
        }

        .shape-3 {
            bottom: 10%;
            left: 15%;
            width: 400px;
            height: 400px;
            background: linear-gradient(45deg, #1e1e2e 0%, #0a0a14 70%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%, 0 70%);
            box-shadow: 0 0 28px rgba(0, 200, 255, 0.5),
                       inset 0 0 25px rgba(0, 200, 255, 0.15);
            animation-delay: -10s;
            z-index: 2;
        }

        .shape-4 {
            top: 15%;
            right: 20%;
            width: 380px;
            height: 380px;
            background: linear-gradient(315deg, #1c1c28 0%, #0a0a14 70%);
            clip-path: polygon(0 30%, 30% 0, 100% 0, 100% 100%, 0 100%);
            box-shadow: 0 0 32px rgba(255, 50, 50, 0.5),
                       inset 0 0 28px rgba(255, 50, 50, 0.15);
            animation-delay: -7s;
            z-index: 5;
        }

        .shape-5 {
            top: 30%;
            left: 25%;
            width: 420px;
            height: 420px;
            background: linear-gradient(170deg, #1c1c3e 0%, #0a0a24 70%);
            clip-path: polygon(0 40%, 40% 0, 100% 20%, 80% 100%, 20% 100%);
            box-shadow: 0 0 35px rgba(50, 255, 50, 0.5),
                       inset 0 0 30px rgba(50, 255, 50, 0.15);
            animation-delay: -2s;
            z-index: 1;
        }

        /* Электрические эффекты */
        .electric-effect {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0.4;
        }

        .electric-line {
            position: absolute;
            background: linear-gradient(90deg, 
                transparent,
                rgba(0, 255, 255, 0.9),
                rgba(0, 255, 255, 0.7),
                transparent
            );
            height: 2px;
            animation: electricFlow 3s infinite linear;
            filter: blur(0.5px);
        }

        /* Анимации фона */
        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg) scale(1);
            }
            25% {
                transform: translate(-25px, 15px) rotate(-1deg) scale(1.02);
            }
            50% {
                transform: translate(10px, -20px) rotate(1deg) scale(1.01);
            }
            75% {
                transform: translate(15px, 10px) rotate(-1deg) scale(1.02);
            }
        }

        @keyframes electricFlow {
            0% {
                left: -100%;
                opacity: 0;
            }
            5% {
                opacity: 1;
            }
            95% {
                opacity: 1;
            }
            100% {
                left: 100%;
                opacity: 0;
            }
        }

        /* Навигационное меню */
        .navbar {
            background: rgba(10, 10, 20, 0.85);
            box-shadow: var(--box-shadow);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--secondary-color);
        }

        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-brand img {
            height: 50px;
            transition: var(--transition);
            filter: brightness(1.2);
        }

        .navbar-brand img:hover {
            transform: scale(1.05);
        }

        .navbar-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .navbar-item {
            position: relative;
            margin-left: 20px;
        }

        .navbar-link {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            padding: 10px 15px;
            border-radius: 4px;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .navbar-link:hover {
            background-color: rgba(0, 133, 157, 0.3);
            transform: translateY(-2px);
            color: var(--highlight-color);
        }

        .navbar-link i {
            margin-right: 8px;
            color: var(--secondary-color);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: rgba(10, 10, 20, 0.95);
            border-radius: 4px;
            box-shadow: var(--box-shadow);
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 1000;
            backdrop-filter: blur(10px);
            border: 1px solid var(--secondary-color);
        }

		.dropdown-menu li {
			list-style-type: none;
		}

        .navbar-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            padding: 10px 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-link {
            color: var(--secondary-color);
            text-decoration: none;
            display: block;
            transition: var(--transition);
        }

        .dropdown-link:hover {
            color: var(--highlight-color);
            padding-left: 5px;
        }

        .dropdown-divider {
            height: 1px;
            background-color: var(--border-color);
            margin: 5px 0;
        }

        .dropdown-header {
            padding: 10px 15px;
            font-weight: bold;
            color: var(--primary-color);
            background-color: var(--service-bg);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 24px;
            cursor: pointer;
        }

        /* Заголовок страницы */
        .page-header {
            text-align: center;
            padding: 60px 20px 40px;
            position: relative;
        }

        .page-header h1 {
            font-size: 3em;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--secondary-color);
            text-shadow: 0 2px 10px rgba(0, 133, 157, 0.5);
            position: relative;
            display: inline-block;
        }

        .page-header h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
            border-radius: 2px;
        }

        .page-header p {
            font-size: 1.2em;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Основной контент */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            padding-bottom: 100px;
        }

        /* Блок общих требований */
        .general-requirements {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: var(--box-shadow);
            border: 1px solid var(--border-color);
            backdrop-filter: blur(5px);
            animation: fadeInUp 1s ease-out;
        }

        .general-requirements h2 {
            color: var(--secondary-color);
            margin-bottom: 25px;
            font-size: 1.8em;
            position: relative;
            padding-bottom: 15px;
        }

        .general-requirements h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--highlight-color);
            border-radius: 2px;
        }

        .requirements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .requirement-section {
            margin-bottom: 20px;
        }

        .requirement-section h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.3em;
            display: flex;
            align-items: center;
        }

        .requirement-section h3 i {
            margin-right: 10px;
            color: var(--highlight-color);
        }

        .requirement-section ul {
            list-style-type: none;
            padding-left: 5px;
        }

        .requirement-section li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }

        .requirement-section li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--highlight-color);
            font-weight: bold;
        }

        .requirement-section strong {
            color: var(--highlight-color);
        }

        /* Секция навигации по требованиям */
        .requirements-nav {
            margin-bottom: 40px;
        }

        .requirements-nav h2 {
            color: var(--secondary-color);
            margin-bottom: 25px;
            text-align: center;
            font-size: 1.8em;
        }

        .nav-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .nav-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: var(--box-shadow);
            border: 1px solid var(--border-color);
            transition: var(--transition);
            cursor: pointer;
            backdrop-filter: blur(5px);
        }

        .nav-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            border-color: var(--primary-color);
        }

        .nav-card i {
            font-size: 2.5em;
            color: var(--primary-color);
            margin-bottom: 15px;
            display: block;
        }

        .nav-card h3 {
            color: var(--text-color);
            margin-bottom: 10px;
            font-size: 1.2em;
        }

        .nav-card p {
            color: #aaa;
            font-size: 0.9em;
        }

        /* Список документов */
        .documents-list {
            display: none;
            background: var(--card-bg);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: var(--box-shadow);
            border: 1px solid var(--border-color);
            backdrop-filter: blur(5px);
        }

        .documents-list.active {
            display: block;
            animation: fadeInUp 0.5s ease-out;
        }

        .documents-list h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-size: 1.5em;
            text-align: center;
        }

        .documents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }

        .document-item {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid var(--border-color);
        }

        .document-item:hover {
            background: rgba(32, 151, 138, 0.2);
            transform: translateY(-3px);
            border-color: var(--primary-color);
        }

        /* Оверлей для детального описания документа */
        .document-detail-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            padding: 20px;
        }

        .document-detail-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .document-detail-container {
            background: var(--card-bg);
            border-radius: 15px;
            width: 90%;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 30px;
            position: relative;
            box-shadow: var(--box-shadow);
            border: 1px solid var(--primary-color);
            transform: scale(0.9) translateY(50px);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .document-detail-overlay.active .document-detail-container {
            transform: scale(1) translateY(0);
        }

        .detail-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.8em;
            cursor: pointer;
            transition: var(--transition);
            z-index: 10;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .detail-close:hover {
            color: var(--accent-color);
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
        }

        .document-detail-header {
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary-color);
            position: relative;
        }

        .document-detail-header h3 {
            color: var(--primary-color);
            font-size: 1.8em;
            margin: 0;
            text-align: center;
            padding-right: 40px;
        }

        .document-detail-content {
            line-height: 1.7;
            font-size: 1.05em;
        }

        .document-detail-content ul {
            list-style-type: none;
            padding-left: 5px;
            margin-bottom: 25px;
        }

        .document-detail-content li {
            margin-bottom: 12px;
            padding-left: 28px;
            position: relative;
        }

        .document-detail-content li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--highlight-color);
            font-weight: bold;
            font-size: 1.4em;
            top: -2px;
        }

        .document-detail-content strong {
            color: var(--highlight-color);
            font-weight: 600;
        }

        .detail-image-placeholder {
            background: rgba(0, 0, 0, 0.2);
            border: 2px dashed var(--primary-color);
            border-radius: 10px;
            padding: 40px 20px;
            margin: 25px 0;
            text-align: center;
            color: #aaa;
            font-style: italic;
        }

        /* Футер */
        footer {
            background: rgba(10, 10, 20, 0.9);
            padding: 40px 0;
            margin-top: 50px;
            border-top: 1px solid var(--border-color);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .footer-section h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 1.3em;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--highlight-color);
            border-radius: 3px;
        }

        .footer-section address {
            font-style: normal;
            line-height: 1.6;
        }

        .footer-section p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .footer-section a {
            color: var(--text-color);
            text-decoration: none;
            transition: var(--transition);
            display: block;
            margin-bottom: 8px;
        }

        .footer-section a:hover {
            color: var(--highlight-color);
            padding-left: 5px;
        }

        .footer-section i {
            margin-right: 10px;
            color: var(--secondary-color);
            width: 20px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid var(--border-color);
            font-size: 0.9em;
            opacity: 0.7;
        }

        /* Анимации */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Адаптивность */
        @media (max-width: 992px) {
            .requirements-grid {
                grid-template-columns: 1fr;
            }
            
            .nav-cards {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .documents-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .navbar-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .navbar-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 15px;
            }
            
            .navbar-menu.active {
                display: flex;
            }
            
            .navbar-item {
                margin: 5px 0;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            .dropdown-menu {
                position: static;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                margin-left: 15px;
                border-left: 2px solid var(--primary-color);
            }
            
            .navbar-item:hover .dropdown-menu {
                display: block;
            }
            
            .page-header h1 {
                font-size: 2.2em;
            }
            
            .page-header p {
                font-size: 1em;
            }
            
            .general-requirements {
                padding: 20px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .document-detail-container {
                padding: 20px;
                width: 95%;
            }
            
            .document-detail-header h3 {
                font-size: 1.5em;
            }
            
            .document-detail-content {
                font-size: 1em;
            }
        }

        @media (max-width: 480px) {
            .nav-cards {
                grid-template-columns: 1fr;
            }
            
            .documents-grid {
                grid-template-columns: 1fr;
            }
            
            .page-header {
                padding: 40px 15px 30px;
            }
            
            .page-header h1 {
                font-size: 1.8em;
            }
            
            .document-detail-container {
                padding: 15px;
            }
            
            .document-detail-header h3 {
                font-size: 1.3em;
            }
            
            .document-detail-content li {
                padding-left: 22px;
                font-size: 0.95em;
            }
        }
                    /* Стили для ссылок в детальном описании документа */
        .document-detail-content a {
            color: var(--highlight-color);
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
            margin: 10px 0;
            padding: 8px 15px;
            background: rgba(32, 151, 138, 0.1);
            border-radius: 5px;
            border: 1px solid rgba(32, 151, 138, 0.3);
            font-weight: 500;
        }

        .document-detail-content a:hover {
            background: rgba(32, 151, 138, 0.2);
            color: var(--text-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            border-color: var(--primary-color);
        }

        .document-detail-content a i {
            margin-right: 8px;
            color: var(--secondary-color);
        }

        /* Стили для списков ссылок */
        .document-detail-content .akklnk {
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid var(--border-color);
        }

        .document-detail-content .akklnk a {
            display: block;
            margin: 8px 0;
        }

        /* Стили для отдельных классов ссылок */
        .wlrotout {
            color: var(--highlight-color) !important;
            text-decoration: none;
            transition: var(--transition);
        }

        .wlrotout:hover {
            color: var(--secondary-color) !important;
            text-decoration: underline;
        }