        :root {
            --color-primary: #2c3e50;
            --color-secondary: #3498db;
            --color-accent: #e74c3c;
            --color-light: #f8f9fa;
            --color-dark: #212529;
            --color-text: #333;
            --color-text-light: #6c757d;
            --color-bg: #ffffff;
            --shadow-card: 0 5px 15px rgba(0, 0, 0, 0.05);
            --transition-default: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --border-radius: 12px;
            --section-spacing: 80px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--color-text);
            background-color: var(--color-bg);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Основные стили страницы */
        .company-page {
            padding: var(--section-spacing) 5vw;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Заголовки */
        .section-heading {
            color: var(--color-primary);
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .section-heading--main {
            font-size: clamp(2rem, 5vw, 3rem);
        }

        .section-heading--main::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--color-secondary);
            border-radius: 2px;
        }

        .section-heading--sub {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        /* Текст */
        .text-content {
            margin-bottom: 1.25rem;
            line-height: 1.8;
            color: var(--color-text);
            font-size: clamp(1rem, 2vw, 1.1rem);
        }

        .text-content--light {
            color: var(--color-text-light);
        }

        /* Табы */
        .tab-nav {
            display: flex;
            flex-wrap: wrap;
            margin: 2.5rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .tab-nav__item {
            padding: 0.75rem 1.5rem;
            cursor: pointer;
            font-weight: 500;
            color: var(--color-text-light);
            transition: var(--transition-default);
            position: relative;
            margin-right: 0.5rem;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .tab-nav__item:hover {
            color: var(--color-primary);
            background: rgba(52, 152, 219, 0.1);
        }

        .tab-nav__item--active {
            color: var(--color-secondary);
            font-weight: 600;
            background: rgba(52, 152, 219, 0.05);
        }

        .tab-nav__item--active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--color-secondary);
        }

        .tab-nav__icon {
            margin-right: 0.5rem;
        }

        /* Контент табов */
        .tab-content {
            display: none;
            padding: 0rem 0;
            animation: fadeIn 0.4s ease-out;
        }

        .tab-content--active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Карточки */
        .card {
            background: var(--color-bg);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-card);
            margin-bottom: 2rem;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: var(--transition-default);
        }

        .card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        /* Контактная информация */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .contact-card {
            background: var(--color-bg);
            padding: 1.75rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-card);
            transition: var(--transition-default);
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-color: rgba(52, 152, 219, 0.2);
        }

        .contact-card__icon {
            font-size: 2rem;
            color: var(--color-secondary);
            margin-bottom: 1.25rem;
            background: rgba(52, 152, 219, 0.1);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-card__text {
            color: var(--color-text);
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .contact-card__text i {
            color: var(--color-secondary);
            margin-right: 0.5rem;
            width: 1.25rem;
            text-align: center;
        }

        /* Разделитель */
        .divider {
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
            margin: 2rem 0;
        }

        /* Документы */
        .documents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .document-card {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: var(--transition-default);
            aspect-ratio: 1/1.414; /* Соотношение A4 */
            background: #f5f5f5;
        }

        .document-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }

        .document-card__image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            cursor: pointer;
            background: white;
            padding: 0.5rem;
        }

        /* Модальное окно */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .modal--active {
            display: flex;
            opacity: 1;
        }

        .modal__content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
            animation: zoomIn 0.3s ease;
        }

        @keyframes zoomIn {
            from { transform: scale(0.95); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .modal__image {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 8px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
        }

        .modal__close {
            position: absolute;
            top: -50px;
            right: 0;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            transition: var(--transition-default);
            opacity: 0.8;
            padding: 0.5rem;
        }

        .modal__close:hover {
            opacity: 1;
            color: var(--color-accent);
        }

        /* Анимации */
        .animate-fade {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .animate-fade--fast {
            transition-duration: 0.4s;
        }

        /* Утилиты */
        .text-center {
            text-align: center;
        }

        .py-2 {
            padding-top: 2rem;
            padding-bottom: 2rem;
        }

        /* Адаптивность */
        @media (max-width: 1200px) {
            .company-page {
                padding: calc(var(--section-spacing) * 0.875) 5vw;
            }
        }

        @media (max-width: 992px) {
            .documents-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
            
            .contact-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-spacing: 60px;
            }
            
            .section-heading--main {
                font-size: clamp(1.75rem, 6vw, 2.5rem);
            }
            
            .card {
                padding: 1.5rem;
            }
            
            .tab-nav__item {
                padding: 0.6rem 1rem;
                margin-right: 0.25rem;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 576px) {
            :root {
                --section-spacing: 50px;
            }
            
            .documents-grid {
                grid-template-columns: 1fr;
            }
            
            .tab-nav {
                flex-direction: column;
                border-bottom: none;
                gap: 0.5rem;
            }
            
            .tab-nav__item {
                margin-right: 0;
                margin-bottom: 0;
                border-radius: var(--border-radius);
                border: 1px solid rgba(0, 0, 0, 0.1);
            }
            
            .tab-nav__item--active {
                border-color: var(--color-secondary);
            }
            
            .tab-nav__item--active::after {
                display: none;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .modal__image {
                max-height: 70vh;
            }
            
            .modal__close {
                top: -45px;
                font-size: 1.75rem;
            }
        }

        @media (max-width: 400px) {
            :root {
                --section-spacing: 40px;
            }
            
            .card {
                padding: 1.25rem;
            }
        }