.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;
        } .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;
            margin-top: -15px;
            margin-bottom: 20px;
            color: #666;
            font-size: 0.9em;
        } .audit-case-root .sidebar{
            position: fixed;
            left: 0;
            top: 0;
            height: 100vh;
            width: var(--sidebar-width);
            background-color: #333;
            color: white;
            padding: 15px 0;
            z-index: 100;
            transition: all 0.3s ease;
            overflow-y: auto;
            transform: translateX(-100%);
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        } .audit-case-root .sidebar.active{
            transform: translateX(0);
        } .audit-case-root .sidebar-toggle{
            position: fixed;
            left: 15px;
            top: 15px;
            background-color: var(--accent);
            color: white;
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            cursor: pointer;
            z-index: 101;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        } .audit-case-root .sidebar-toggle:hover{
            background-color: #d01f40;
        } .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 .nav-links{
            display: flex;
            flex-direction: column;
            gap: 2px;
            padding: 0 5px;
        } .audit-case-root .nav-link{
            color: white;
            text-decoration: none;
            padding: 8px 10px;
            border-radius: 3px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
        } .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;
            text-align: center;
        } .audit-case-root footer{
            background-color: var(--dark);
            color: white;
            text-align: center;
            padding: 30px 0;
            margin-top: 50px;
        } .audit-case-root footer .footer-content{
            max-width: 1200px;
            margin: 0 auto;
            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 .contacts{
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        } .audit-case-root .contact-link{
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        } .audit-case-root .contact-link:hover{
            text-decoration: underline;
        } .audit-case-root .report-btn{
            display: inline-block;
            background-color: var(--accent);
            color: #ffffff;
            padding: 12px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin: 20px 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        } .audit-case-root .report-btn:hover{
            background-color: #c71e3e;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        } .audit-case-root .scroll-btn{
            position: fixed;
            right: 20px;
            width: 40px;
            height: 40px;
            background-color: var(--accent);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            z-index: 99;
        } .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: 70px;
            opacity: 1;
            visibility: visible;
        } .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 /* Прелоадер */
        .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{
            -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 .t250{
            font-size: 3.5rem;
            line-height: 1;
            margin: 10px 0;
        } .audit-case-root .t-robotoslab{
            font-family: 'Roboto Slab', 'Segoe UI', serif;
        } .audit-case-root .t-bold{
            font-weight: bold;
        } .audit-case-root .t-primary700{
            color: #ed2348;
        } .audit-case-root .mar0{
            margin: 0;
        } .audit-case-root /* Стили для стратегического заключения */
        .strategic-conclusion{
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            border-left: 5px solid #e67e22;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        } .audit-case-root .strategic-conclusion h3{
            color: #e67e22;
            font-size: 1.4rem;
            margin-bottom: 20px;
            text-align: center;
        } .audit-case-root .strategic-conclusion p{
            color: #ecf0f1;
            line-height: 1.7;
        } .audit-case-root .strategic-conclusion ul, .audit-case-root .strategic-conclusion ol{
            color: #ecf0f1;
        } .audit-case-root .strategic-conclusion b{
            color: #e67e22;
        } .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;
            justify-content: center;
            align-items: 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-image{
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        } .audit-case-root .popup-caption{
            color: white;
            margin-top: 15px;
            font-size: 16px;
            opacity: 0.9;
        } .audit-case-root .popup-close{
            position: absolute;
            top: -40px;
            right: 0;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 24px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        } .audit-case-root .popup-close:hover{
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        } .audit-case-root /* Панель вебмастера */
        .webmaster-panel{
            position: fixed;
            top: 50%;
            right: -350px;
            transform: translateY(-50%);
            width: 350px;
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            border-radius: 10px 0 0 10px;
            box-shadow: -5px 0 20px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: right 0.3s ease;
            backdrop-filter: blur(10px);
        } .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: background 0.3s ease;
        } .audit-case-root .webmaster-toggle:hover{
            background: #d35400;
        } .audit-case-root .webmaster-content{
            padding: 20px;
            max-height: 80vh;
            overflow-y: auto;
        } .audit-case-root .webmaster-title{
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            text-align: center;
            color: #e67e22;
        } .audit-case-root .webmaster-section{
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
        } .audit-case-root .webmaster-section h4{
            color: #e67e22;
            margin-bottom: 10px;
            font-size: 14px;
        } .audit-case-root .webmaster-section p{
            font-size: 12px;
            line-height: 1.4;
            margin-bottom: 8px;
        } .audit-case-root .webmaster-section ul{
            font-size: 12px;
            margin-left: 15px;
        } .audit-case-root .webmaster-section li{
            margin-bottom: 5px;
        } .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;
            }
        }
