.audit-case-root{
            --primary: #2e2a2a;
            --secondary: #2e2a2a;
            --accent: #e67e22;
            --light: #f8f8f8;
            --dark: #2e2a2a;
            --text: #333;
            --border: #ddd;
            --sidebar-width: 220px;
            --sidebar-collapsed-width: 50px;
        } .audit-case-root *{
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        } .audit-case-root{
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: #f9f9f9;
            padding: 0;
            margin: 0;
            scroll-behavior: smooth;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        } .audit-case-root .container, .audit-case-root header, .audit-case-root footer, .audit-case-root .highlight, .audit-case-root p, .audit-case-root h1, .audit-case-root h2, .audit-case-root h3, .audit-case-root ul, .audit-case-root ol, .audit-case-root li, .audit-case-root .image-caption{
            -webkit-user-select: text;
            -moz-user-select: text;
            -ms-user-select: text;
            user-select: text;
        } .audit-case-root .container{
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            transition: margin-left 0.3s ease;
        } .audit-case-root header{
            background: #2c3e50;
            color: white;
            padding: 20px 0;
            text-align: center;
            margin-bottom: 30px;
            border-bottom: 5px solid var(--accent);
            position: relative;
        } .audit-case-root h1{
            font-size: 2.2rem;
            margin-bottom: 8px;
        } .audit-case-root .header-info{
            font-size: 1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 10px;
        } .audit-case-root h2{
            color: var(--primary);
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
            scroll-margin-top: 30px;
        } .audit-case-root h3{
            color: var(--secondary);
            margin: 20px 0 10px;
        } .audit-case-root p{
            margin-bottom: 15px;
        } .audit-case-root .highlight{
            background-color: var(--light);
            padding: 20px;
            border-radius: 5px;
            margin: 20px 0;
            border-left: 4px solid var(--accent);
        } .audit-case-root ul, .audit-case-root ol{
            margin: 15px 0 15px 25px;
            padding-left: 20px;
        } .audit-case-root li{
            margin-bottom: 8px;
            padding-left: 5px;
        } .audit-case-root .audit-image{
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border: 1px solid var(--border);
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        } .audit-case-root .audit-image:hover{
            transform: scale(1.02);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        } .audit-case-root .image-caption{
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-size: 0.9rem;
        } .audit-case-root table{
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
        } .audit-case-root th, .audit-case-root td{
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        } .audit-case-root th{
            background-color: var(--accent);
            color: white;
            font-weight: bold;
        } .audit-case-root tr:hover{
            background-color: #f8f9fa;
        } .audit-case-root .badge{
            display: inline-block;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: bold;
            margin-left: 8px;
            position: relative;
        } .audit-case-root .badge.green{
            background-color: #d4edda;
            color: #155724;
        } .audit-case-root .badge.blue{
            background-color: #cce7ff;
            color: #004085;
        } .audit-case-root .badge.yellow{
            background-color: #fff3cd;
            color: #856404;
        } .audit-case-root .badge.red{
            background-color: #f8d7da;
            color: #721c24;
        } .audit-case-root .badge-tooltip{
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: #333;
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            margin-bottom: 5px;
        } .audit-case-root .badge-tooltip::after{
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 5px solid transparent;
            border-top-color: #333;
        } .audit-case-root .badge:hover .badge-tooltip{
            opacity: 1;
            visibility: visible;
        } .audit-case-root .report-btn{
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            margin: 10px 0;
            transition: background 0.3s ease;
        } .audit-case-root .report-btn:hover{
            background: #d35400;
        } .audit-case-root .strategic-conclusion{
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        } .audit-case-root .strategic-conclusion h3{
            color: white;
            margin-bottom: 20px;
            font-size: 1.5rem;
        } .audit-case-root .strategic-conclusion p{
            margin-bottom: 15px;
            line-height: 1.7;
        } .audit-case-root .strategic-conclusion ul{
            margin-left: 20px;
        } .audit-case-root .strategic-conclusion li{
            margin-bottom: 10px;
        } .audit-case-root .t250{
            font-size: 3.5rem;
            line-height: 1;
            margin: 10px 0;
        } .audit-case-root footer{
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 30px 0;
            margin-top: 50px;
        } .audit-case-root footer .footer-content{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        } .audit-case-root footer .footer-content a{
            color: white;
            text-decoration: none;
        } .audit-case-root footer .footer-content a:hover{
            text-decoration: underline;
        } .audit-case-root /* Прелоадер */
        .preloader{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 152, 219, 0.9) 100%);
            backdrop-filter: blur(5px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        } .audit-case-root .preloader.hidden{
            opacity: 0;
            visibility: hidden;
        } .audit-case-root .preloader-content{
            text-align: center;
            color: white;
        } .audit-case-root .preloader-spinner{
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top: 4px solid #e67e22;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        } .audit-case-root @keyframes spin{
            0% { transform: rotate(0deg); } 100%{ transform: rotate(360deg); } .audit-case-root }
        
        .preloader-text{
            font-size: 18px;
            font-weight: 300;
            margin-bottom: 10px;
        } .audit-case-root .preloader-subtext{
            font-size: 14px;
            opacity: 0.8;
        } .audit-case-root /* Боковая панель */
        .sidebar{
            position: fixed;
            top: 0;
            left: 0;
            width: var(--sidebar-width);
            height: 100vh;
            background-color: #333;
            padding: 15px 0;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: transform 0.3s ease;
        } .audit-case-root .sidebar-header{
            padding: 0 10px 10px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 10px;
            text-align: center;
        } .audit-case-root .sidebar-title{
            font-size: 1rem;
            margin-bottom: 0;
            color: white;
            padding: 8px 0;
        } .audit-case-root .sidebar-toggle{
            display: none;
            position: fixed;
            top: 20px;
            left: 20px;
            background: var(--accent);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            cursor: pointer;
            z-index: 1001;
            font-size: 18px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            align-items: center;
            justify-content: center;
        } .audit-case-root .sidebar-toggle:hover{
            background-color: #d35400;
        } .audit-case-root .nav-links{
            display: flex;
            flex-direction: column;
            gap: 2px;
            padding: 0 10px;
        } .audit-case-root .nav-link{
            color: white;
            text-decoration: none;
            padding: 8px 10px;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        } .audit-case-root .nav-link:hover, .audit-case-root .nav-link.active{
            background-color: rgba(255,255,255,0.1);
            color: white;
        } .audit-case-root .nav-link i{
            font-style: normal;
            font-size: 0.9rem;
            min-width: 20px;
        } .audit-case-root .nav-link-text{
            font-size: 0.9rem;
        } .audit-case-root /* Кнопки прокрутки */
        .scroll-btn{
            position: fixed;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 99;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        } .audit-case-root .scroll-btn.active{
            opacity: 1;
            visibility: visible;
        } .audit-case-root .scroll-btn.up{
            bottom: 20px;
        } .audit-case-root .scroll-btn.down{
            bottom: 80px;
            opacity: 1 !important;
            visibility: visible !important;
        } .audit-case-root .scroll-btn.hidden{
            opacity: 0;
            visibility: hidden;
        } .audit-case-root .scroll-btn svg{
            width: 20px;
            height: 20px;
            fill: white;
        } .audit-case-root .scroll-btn:hover{
            background-color: #d35400;
            transform: scale(1.1);
        } .audit-case-root /* Popup для изображений */
        .image-popup{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            transition: opacity 0.3s ease;
        } .audit-case-root .image-popup.active{
            display: flex;
            opacity: 1;
        } .audit-case-root .popup-content{
            position: relative;
            max-width: 90%;
            max-height: 90%;
            text-align: center;
        } .audit-case-root .popup-close{
            position: absolute;
            top: -40px;
            right: 0;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        } .audit-case-root .popup-close:hover{
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        } .audit-case-root .popup-image{
            max-width: 100%;
            max-height: 100%;
            border-radius: 8px;
        } .audit-case-root .popup-caption{
            color: white;
            margin-top: 15px;
            font-size: 16px;
            text-align: center;
        } .audit-case-root /* Панель вебмастера */
        .webmaster-panel{
            position: fixed;
            top: 50%;
            right: -350px;
            transform: translateY(-50%);
            width: 350px;
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            border-radius: 10px 0 0 10px;
            box-shadow: -5px 0 20px rgba(0,0,0,0.3);
            transition: right 0.3s ease;
            z-index: 1000;
        } .audit-case-root .webmaster-panel.active{
            right: 0;
        } .audit-case-root .webmaster-toggle{
            position: absolute;
            left: -40px;
            top: 50%;
            transform: translateY(-50%);
            background: #e67e22;
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 5px 0 0 5px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
        } .audit-case-root .webmaster-toggle:hover{
            background: #d35400;
        } .audit-case-root .webmaster-content{
            padding: 20px;
            color: white;
        } .audit-case-root .webmaster-title{
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #e67e22;
        } .audit-case-root .webmaster-section{
            margin-bottom: 20px;
        } .audit-case-root .webmaster-section h4{
            color: #e67e22;
            margin-bottom: 10px;
            font-size: 14px;
        } .audit-case-root .webmaster-section p, .audit-case-root .webmaster-section li{
            font-size: 13px;
            margin-bottom: 5px;
        } .audit-case-root .webmaster-section ul{
            margin-left: 15px;
        } .audit-case-root /* Адаптивность */
        @media (max-width: 1024px){
            .container {
                margin-left: 0;
                padding-left: 20px;
                padding-right: 20px;
            } .audit-case-root .sidebar{
                transform: translateX(-100%);
            } .audit-case-root .sidebar.active{
                transform: translateX(0);
                width: 220px;
            } .audit-case-root .sidebar-toggle{
                display: flex;
            } .audit-case-root .scroll-btn{
                display: none;
            } .audit-case-root .t250{
                font-size: 2.8rem;
            } .audit-case-root }
        @media (min-width: 1025px){
            .container {
                margin-left: var(--sidebar-width);
                padding-left: 30px;
                padding-right: 30px;
            } .audit-case-root .sidebar{
                transform: translateX(0);
            } .audit-case-root .sidebar-toggle{
                display: none;
            } .audit-case-root }
        @media (max-width: 768px){
            .scroll-btn {
                display: none !important;
            }
        }
