
        /* ========== БАЗОВЫЙ СБРОС ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        /* ========== ГЛОБАЛЬНЫЕ НАСТРОЙКИ ========== */
        html, body {
            max-width: 100%;
            overflow-x: hidden; /* запрет горизонтального скролла */
            overflow-y: auto;
            /* min-width removed for responsive layout */
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #030303;
            color: #FFFFFF;
            line-height: 1.6;
            font-weight: 300;
            width: 100%; /* адаптивная ширина */
            min-width: 320px;
            margin: 0 auto; /* Центрируем */
            position: relative;
        }

        /* отступ сверху у игровых страниц чтобы не уезжали под фиксированную шапку */
        .page {
            padding-top: 80px; /* приблизительная высота navbar */
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* ========== КОНТЕЙНЕР ========== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* ================================= */
        /*        ТИПОГРАФИКА                */
        /* ================================= */

        h1 {
            font-size: 72px;
            line-height: 0.9;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        h2 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 300;
            position: relative;
            display: inline-block;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 1px;
            background: #C5A572;
            transition: width 0.6s ease;
        }

        h2:hover:after {
            width: 100px;
        }

        h3 {
            font-size: 28px;
            margin-bottom: 15px;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
        }

        p {
            font-size: 16px;
            line-height: 1.6;
        }

        .section-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            letter-spacing: 0.5em;
            text-transform: uppercase;
            color: #C5A572;
            margin-bottom: 10px;
            font-weight: 300;
        }

        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            letter-spacing: -0.02em;
        }

        /* ========== КРЕАТИВНЫЙ ФОН ========== */
        .creative-background {
            position: fixed;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1200px;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }

        .architectural-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .architectural-lines .line-vertical {
            position: absolute;
            width: 1px;
            height: 100%;
            background: linear-gradient(to bottom, 
                transparent, 
                rgba(197, 165, 114, 0.2), 
                rgba(197, 165, 114, 0.4), 
                rgba(197, 165, 114, 0.2), 
                transparent);
            animation: fadePulse 6s infinite;
        }

        .architectural-lines .line-vertical:nth-child(1) { left: 15%; }
        .architectural-lines .line-vertical:nth-child(2) { left: 35%; }
        .architectural-lines .line-vertical:nth-child(3) { left: 55%; }
        .architectural-lines .line-vertical:nth-child(4) { left: 75%; }
        .architectural-lines .line-vertical:nth-child(5) { left: 95%; }

        .architectural-lines .line-horizontal {
            position: absolute;
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, 
                transparent, 
                rgba(197, 165, 114, 0.2), 
                rgba(197, 165, 114, 0.4), 
                rgba(197, 165, 114, 0.2), 
                transparent);
            animation: fadePulse 6s infinite;
        }

        .architectural-lines .line-horizontal:nth-child(6) { top: 20%; }
        .architectural-lines .line-horizontal:nth-child(7) { top: 40%; }
        .architectural-lines .line-horizontal:nth-child(8) { top: 60%; }
        .architectural-lines .line-horizontal:nth-child(9) { top: 80%; }

        @keyframes fadePulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.7; }
        }

        .golden-arcs {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .arc {
            position: absolute;
            border: 2px solid rgba(197, 165, 114, 0.2);
            border-radius: 50%;
            animation: rotateSlow 45s infinite linear;
        }

        .arc1 {
            width: 800px;
            height: 800px;
            top: -300px;
            right: -300px;
            border-color: rgba(197, 165, 114, 0.15);
            animation-duration: 67.5s;
        }

        .arc2 {
            width: 1000px;
            height: 1000px;
            bottom: -400px;
            left: -400px;
            border-color: rgba(197, 165, 114, 0.12);
            animation-duration: 90s;
            animation-direction: reverse;
        }

        .arc3 {
            width: 600px;
            height: 600px;
            top: 40%;
            left: 30%;
            border-color: rgba(197, 165, 114, 0.1);
            animation-duration: 52.5s;
        }

        @keyframes rotateSlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .glowing-dots {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #C5A572;
            border-radius: 50%;
            box-shadow: 0 0 15px #C5A572;
            animation: glow 2.25s infinite;
        }

        .dot:nth-child(1) { top: 25%; left: 10%; }
        .dot:nth-child(2) { top: 75%; left: 90%; }
        .dot:nth-child(3) { top: 45%; left: 45%; }
        .dot:nth-child(4) { top: 85%; left: 25%; }
        .dot:nth-child(5) { top: 15%; left: 80%; }
        .dot:nth-child(6) { top: 60%; left: 15%; }
        .dot:nth-child(7) { top: 35%; left: 65%; }
        .dot:nth-child(8) { top: 70%; left: 40%; }
        .dot:nth-child(9) { top: 50%; left: 75%; }
        .dot:nth-child(10) { top: 30%; left: 85%; }

        @keyframes glow {
            0%, 100% { opacity: 0.2; transform: scale(1); box-shadow: 0 0 10px #C5A572; }
            50% { opacity: 1; transform: scale(1.8); box-shadow: 0 0 30px #C5A572; }
        }

        .texture-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 30% 40%, rgba(197, 165, 114, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        /* ========== НАВИГАЦИЯ ========== */
        .navbar {
            position: fixed;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1200px; /* fixed width, centered */
            z-index: 1000;
            padding: 25px 0;
            transition: all 0.4s ease;
            mix-blend-mode: normal;
        }

        .navbar.scrolled {
            padding: 15px 0;
            background: rgba(3, 3, 3, 0.95);
            backdrop-filter: blur(10px);
            mix-blend-mode: normal;
        }

        /* when menu open we want the nav to sit on top without blending effects */
        body.menu-open .navbar {
            mix-blend-mode: normal;
        }

        .nav-container {
            display: flex;
            /* keep logo and menu in flow; menu will be centered via absolute positioning */
            align-items: center;
            padding: 0 40px;
            position: relative;
        }
        .logo {
            /* keep logo in normal flow instead of absolute positioning */
            position: relative;
            left: 0;
        }
        
        .nav-menu .logo {
            display: none;
        }
        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            font-weight: 300;
            text-decoration: none;
            color: #FFFFFF;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .logo span {
            color: #C5A572;
            font-weight: 400;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0; /* flex container spacing handles placement */
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .nav-menu a {
            color: #FFFFFF;
            text-decoration: none;
            font-size: 13px;
            font-weight: 300;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            transition: color 0.3s ease;
            position: relative;
            cursor: pointer;
            white-space: nowrap;
        }

        /* close button hidden by default; only used in mobile overlay */
        .nav-menu .menu-close {
            display: none;
        }

        /* underline animation moved to ::before so that dropdown
           arrows can use ::after without conflicts */
        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: #C5A572;
            transition: width 0.4s ease;
        }

        .nav-menu a:hover {
            color: #C5A572;
        }

        .nav-menu a:hover::before {
            width: 100%;
        }

        .nav-menu a.active {
            color: #C5A572;
        }

        .nav-menu a.active::before {
            width: 100%;
        }

        /* Бургер-меню для мобильных */
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            color: #FFFFFF;
            cursor: pointer;
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
        }

        /* when the mobile menu is open we stop body scrolling and lock position */
        body.menu-open {
            overflow: hidden;
            height: 100vh;
            position: fixed;
            width: 100%;
        }

        /* ========== ВЫПАДАЮЩЕЕ МЕНЮ ========== */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-trigger {
            display: inline-flex !important;
            align-items: center !important;
            gap: 6px !important;
            position: relative !important;
            width: 100% !important;
            cursor: pointer !important;
            user-select: none !important;
            z-index: 1002 !important; /* keep trigger above dropdown panel if they ever overlap */
        }

        .dropdown-trigger span {
            flex: 0 1 auto !important;
            pointer-events: none !important;
        }

        /* arrow indicator on the right – uses ::after so underline
           (now in ::before) and arrow don’t collide */
        .dropdown-trigger::after {
            content: '▼' !important;
            font-size: 0.8rem !important;
            transition: transform 0.3s ease !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            width: 1.2em !important;
            text-align: center !important;
            line-height: 1 !important;
            color: #FFFFFF !important;
            pointer-events: none !important;
            /* spacing from text handled by gap on parent */
        }

        .dropdown.open .dropdown-trigger::after {
            transform: rotate(180deg) !important;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            /* ensure dropdown panel appears below trigger rather than overlapping it */
            top: 100%;
            left: 0;
            background: rgba(3, 3, 3, 0.95);
            backdrop-filter: blur(10px);
            min-width: 250px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
            z-index: 1001;
            border: 1px solid rgba(197, 165, 114, 0.3);
            border-radius: 8px;
            padding: 15px;
        }

        .dropdown:hover:not(.open) .dropdown-content {
            display: block;
        }
        /* rotate the arrow on hover as well as when the dropdown is open */
        .dropdown:hover .dropdown-trigger::after {
            transform: rotate(180deg);
        }
        /* mobile friendly dropdown: allow tap to open/close */
        .dropdown.open .dropdown-trigger::after {
            transform: rotate(180deg);
        }
        .dropdown.open .dropdown-content {
            display: block;
        }

        .dropdown-content a {
            color: white !important;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 11px !important;
            border-bottom: 1px solid rgba(197, 165, 114, 0.1);
            white-space: normal;
        }

        .dropdown-content a:hover {
            background: rgba(197, 165, 114, 0.1) !important;
            color: #C5A572 !important;
        }

        /* ========== ХЕДЕР ========== */
        .hero {
            min-height: 70vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 10;
            padding: 120px 40px 60px;
        }

        .hero-content {
            position: relative;
            z-index: 20;
            max-width: 1000px;
            margin: 0 auto;
        }

        .hero-subtitle {
            font-size: 12px;
            letter-spacing: 0.8em;
            color: #C5A572;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
            animation-delay: 0.5s;
        }

        .hero-title {
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
            animation-delay: 0.8s;
            position: relative;
            display: inline-block;
        }

        .hero-title::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(197, 165, 114, 0.4) 0%, transparent 70%);
            filter: blur(60px);
            animation: glowPulse 3s infinite alternate;
            z-index: -1;
        }

        @keyframes glowPulse {
            0% {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(0.8);
            }
            100% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.2);
            }
        }

        .hero-title span {
            color: #C5A572;
            font-style: italic;
            position: relative;
        }

        .hero-title span::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(197, 165, 114, 0.5) 0%, transparent 80%);
            filter: blur(50px);
            animation: spanGlow 2s infinite alternate;
            z-index: -1;
        }

        @keyframes spanGlow {
            0% {
                opacity: 0.4;
                transform: translate(-50%, -50%) scale(0.9);
            }
            100% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.3);
            }
        }

        .hero-description {
            font-size: 18px;
            max-width: 800px;
            margin: 30px auto;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 300;
            letter-spacing: 0.1em;
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
            animation-delay: 1.1s;
        }

        .hero-buttons {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
            animation-delay: 1.4s;
        }

        .hero-btn {
            display: inline-block;
            padding: 18px 50px;
            border: 2px solid rgba(197, 165, 114, 0.3);
            color: #FFFFFF;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            font-size: 14px;
            transition: all 0.6s ease;
            position: relative;
            overflow: hidden;
            background: transparent;
            cursor: pointer;
            z-index: 30;
        }

        .hero-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #C5A572;
            transition: left 0.6s ease;
            z-index: -1;
        }

        .hero-btn:hover {
            border-color: #C5A572;
        }

        .hero-btn:hover:before {
            left: 0;
        }

        .hero-btn-outline {
            border-color: rgba(255, 255, 255, 0.2);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========== СТАТИСТИКА ========== */
        .stats {
            padding: 100px 0;
            background: rgba(0, 0, 0, 0.2);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-item {
            text-align: center;
            padding: 40px 30px;
            border: 1px solid rgba(197, 165, 114, 0.1);
            transition: all 0.3s ease;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(5px);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            border-color: #C5A572;
        }

        .stat-number {
            font-size: 56px;
            font-weight: 700;
            color: #C5A572;
            font-family: 'Cormorant Garamond', serif;
        }

        .stat-label {
            color: rgba(255,255,255,0.7);
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ========== ПАРАЛЛАКС БЛОК ========== */
        .parallax-section {
            position: relative;
            min-height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            z-index: 5;
        }

        .parallax-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(197, 165, 114, 0.1) 0%, transparent 70%);
            z-index: 1;
            pointer-events: none;
        }

        .parallax-content {
            max-width: 1000px;
            text-align: center;
            padding: 60px 50px;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            border: 1px solid rgba(197, 165, 114, 0.3);
            position: relative;
            z-index: 2;
            margin: 0 30px;
        }

        .parallax-content h2 {
            font-size: 72px;
            margin-bottom: 30px;
            color: #C5A572;
            text-shadow: 0 0 30px rgba(197, 165, 114, 0.5);
        }

        .parallax-content p {
            font-size: 20px;
            line-height: 1.8;
            color: rgba(255,255,255,0.95);
        }

        /* ========== ПРОЦЕСС РАБОТЫ ========== */
        .process {
            padding: 100px 0;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .process-card {
            text-align: center;
            padding: 50px 40px;
            border: 1px solid rgba(197, 165, 114, 0.1);
            position: relative;
            transition: all 0.3s ease;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(5px);
        }

        .process-card:hover {
            transform: translateY(-15px);
            border-color: #C5A572;
        }

        .process-number {
            font-size: 64px;
            font-weight: 700;
            color: rgba(197, 165, 114, 0.2);
            position: absolute;
            top: 20px;
            right: 20px;
            font-family: 'Cormorant Garamond', serif;
        }

        .process-icon {
            font-size: 48px;
            color: #C5A572;
            margin-bottom: 25px;
        }

        .process-card p {
            font-size: 15px;
            color: rgba(255,255,255,0.7);
        }

        /* ========== ВИДЫ РАБОТ ========== */
        .work-types {
            padding: 100px 0;
            background: rgba(0, 0, 0, 0.2);
        }

        .work-types-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .work-type-card {
            padding: 50px 30px;
            border: 1px solid rgba(197, 165, 114, 0.1);
            text-align: center;
            transition: all 0.3s ease;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(5px);
        }

        .work-type-card:hover {
            transform: translateY(-15px);
            border-color: #C5A572;
        }

        .work-type-card i {
            font-size: 48px;
            color: #C5A572;
            margin-bottom: 20px;
        }

        .work-type-card p {
            font-size: 14px;
            margin-bottom: 15px;
            color: rgba(255,255,255,0.7);
        }

        .work-type-card .price-tag {
            color: #C5A572;
            font-size: 18px;
            font-weight: 600;
        }

        .all-services-btn {
            text-align: center;
            margin-top: 70px;
        }

        .all-services-btn .hero-btn {
            font-size: 15px;
            padding: 20px 60px;
        }

        /* ========== ПОЧЕМУ МЫ ========== */
        .why-us {
            padding: 100px 0;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .why-us-card {
            padding: 50px 40px;
            border: 1px solid rgba(197, 165, 114, 0.1);
            transition: all 0.3s ease;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(5px);
            text-align: center;
        }

        .why-us-card:hover {
            transform: translateY(-15px);
            border-color: #C5A572;
        }

        .why-us-card i {
            font-size: 48px;
            color: #C5A572;
            margin-bottom: 20px;
        }

        .why-us-card p {
            font-size: 15px;
            color: rgba(255,255,255,0.7);
        }

        /* ========== ЦИФРЫ И ФАКТЫ ========== */
        .facts {
            padding: 100px 0;
            background: rgba(0, 0, 0, 0.2);
        }

        .facts-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .fact-card {
            padding: 50px 40px;
            border: 1px solid rgba(197, 165, 114, 0.1);
            text-align: center;
            transition: all 0.3s ease;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(5px);
        }

        .fact-card:hover {
            transform: translateY(-15px);
            border-color: #C5A572;
        }

        .fact-card i {
            font-size: 56px;
            color: #C5A572;
            margin-bottom: 20px;
        }

        .fact-number {
            font-size: 48px;
            font-weight: 700;
            color: #C5A572;
            margin-bottom: 10px;
            font-family: 'Cormorant Garamond', serif;
        }

        .fact-label {
            color: rgba(255,255,255,0.7);
            font-size: 15px;
        }

        /* ========== НАША КОМАНДА ========== */
        .team {
            padding: 100px 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .team-card {
            text-align: center;
            transition: all 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-15px);
        }

        .team-photo {
            width: 180px;
            height: 180px;
            margin: 0 auto 25px;
            background: rgba(197, 165, 114, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #C5A572;
            transition: all 0.3s ease;
        }

        .team-card:hover .team-photo {
            border-color: #C5A572;
            box-shadow: 0 0 40px rgba(197, 165, 114, 0.3);
        }

        .team-photo i {
            font-size: 6rem;
            color: #C5A572;
        }

        .team-card h3 {
            font-size: 22px;
            margin-bottom: 8px;
        }

        .team-card p {
            font-size: 14px;
            color: rgba(255,255,255,0.5);
        }

        /* ========== УСЛУГИ ========== */
        .services {
            padding: 80px 0 100px;
            position: relative;
            z-index: 10;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2px;
            background: rgba(197, 165, 114, 0.1);
            border: 1px solid rgba(197, 165, 114, 0.1);
            margin-top: 60px;
        }

        .service-card {
            background: #030303;
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.6s ease;
            cursor: pointer;
        }

        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(197, 165, 114, 0.15), transparent 70%);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .service-card:hover:before {
            opacity: 1;
        }

        .service-icon {
            font-size: 48px;
            color: #C5A572;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 26px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .service-card h3:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 2px;
            background: #C5A572;
            transition: width 0.6s ease;
        }

        .service-card:hover h3:after {
            width: 100%;
        }

        .service-items {
            list-style: none;
            margin: 25px 0;
        }

        .service-items li {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 15px;
            font-size: 14px;
            display: inline-flex; /* shrink-to-content, hitbox only covers item */
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
        }

        .service-items li i {
            color: #C5A572;
            font-size: 1rem;
            opacity: 0.9;
            transition: all 0.3s ease;
            background: rgba(197, 165, 114, 0.15);
            padding: 8px;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-items li:hover {
            color: #C5A572;
            background: rgba(197, 165, 114, 0.15);
            transform: translateX(8px);
        }

        .service-items li:hover i {
            opacity: 1;
            background: rgba(197, 165, 114, 0.25);
            transform: scale(1.1);
        }

        /* ========== КОНТАКТНАЯ И ЮРИДИЧЕСКАЯ ИНФОРМАЦИЯ ========== */
        .contact-info-block {
            padding: 100px 0;
            background: rgba(0, 0, 0, 0.2);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .contact-details,
        .legal-info {
            padding: 50px 40px;
            border: 1px solid rgba(197, 165, 114, 0.1);
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(5px);
        }

        .contact-details h3,
        .legal-info h3 {
            font-size: 32px;
            color: #C5A572;
            margin-bottom: 30px;
        }

        .contact-details p,
        .legal-info p {
            margin-bottom: 15px;
            color: rgba(255,255,255,0.8);
            font-size: 16px;
        }

        .contact-details i,
        .legal-info i {
            color: #C5A572;
            width: 35px;
            font-size: 1.2rem;
        }

        /* ========== БЛОК СОТРУДНИЧЕСТВА ========== */
        .partners {
            padding: 150px 0 100px;
            position: relative;
            z-index: 10;
            background: rgba(0, 0, 0, 0.2);
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
            margin-top: 60px;
        }

        .partners-section {
            border: 1px solid rgba(197, 165, 114, 0.1);
            padding: 50px 40px;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(5px);
            transition: all 0.6s ease;
        }

        .partners-section:hover {
            border-color: #C5A572;
            transform: translateY(-15px);
            box-shadow: 0 30px 50px rgba(197, 165, 114, 0.2);
        }

        .partners-section h3 {
            font-size: 32px;
            margin-bottom: 40px;
            color: #C5A572;
            text-align: center;
        }

        .partners-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .partner-item {
            padding: 35px 25px;
            border: 1px solid rgba(197, 165, 114, 0.1);
            text-align: center;
            transition: all 0.4s ease;
            cursor: pointer;
            background: rgba(0,0,0,0.2);
            border-radius: 12px;
        }

        .partner-item:hover {
            border-color: #C5A572;
            transform: scale(1.05) translateY(-8px);
            background: rgba(197, 165, 114, 0.1);
            box-shadow: 0 15px 40px rgba(197, 165, 114, 0.3);
        }

        .partner-item i {
            font-size: 44px;
            color: #C5A572;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }

        .partner-item:hover i {
            transform: scale(1.2);
        }

        .partner-item h4 {
            font-size: 18px;
            margin-bottom: 8px;
            color: #FFFFFF;
        }

        .partner-item p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }

        .job-list {
            list-style: none;
        }

        .job-list li {
            margin-bottom: 25px;
            padding: 30px;
            border: 1px solid rgba(197, 165, 114, 0.1);
            transition: all 0.4s ease;
            cursor: pointer;
            background: rgba(0,0,0,0.2);
            border-radius: 12px;
        }

        .job-list li:hover {
            border-color: #C5A572;
            transform: translateX(15px);
            background: rgba(197, 165, 114, 0.1);
            box-shadow: 0 15px 40px rgba(197, 165, 114, 0.2);
        }

        .job-title {
            font-size: 22px;
            color: #C5A572;
            margin-bottom: 10px;
        }

        .job-desc {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 15px;
            font-size: 14px;
        }

        .job-link {
            color: #FFFFFF;
            text-decoration: none;
            font-size: 13px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            border: 1px solid rgba(197, 165, 114, 0.3);
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        .job-link i {
            transition: transform 0.3s ease;
        }

        .job-list li:hover .job-link {
            background: rgba(197, 165, 114, 0.2);
            border-color: #C5A572;
        }

        .job-list li:hover .job-link i {
            transform: translateX(5px);
        }

        /* ========== О НАС ========== */
        .about {
            padding: 150px 0 100px;
            position: relative;
            z-index: 10;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 80% 20%, rgba(197, 165, 114, 0.08) 0%, transparent 50%);
            z-index: -1;
        }

        .about-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 60px;
        }

        .about-stats-carousel {
            position: relative;
            height: 550px;
            width: 100%;
            overflow: hidden;
            border: 1px solid rgba(197, 165, 114, 0.2);
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border-radius: 20px;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 40px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .carousel-slide.active {
            opacity: 1;
            transform: translateY(0);
        }

        .carousel-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 120px;
            font-weight: 300;
            color: #C5A572;
            line-height: 1;
            margin-bottom: 25px;
            text-shadow: 0 0 40px rgba(197, 165, 114, 0.5);
            animation: pulse 3s infinite;
        }

        .carousel-title {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .carousel-text {
            color: rgba(255, 255, 255, 0.8);
            max-width: 450px;
            margin: 0 auto;
            font-size: 16px;
        }

        .carousel-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border: 1px solid rgba(197, 165, 114, 0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: #C5A572;
            transform: scale(1.3);
            box-shadow: 0 0 15px #C5A572;
        }

        @keyframes pulse {
            0%, 100% { text-shadow: 0 0 30px rgba(197, 165, 114, 0.5); }
            50% { text-shadow: 0 0 60px rgba(197, 165, 114, 0.8); }
        }

        .about-content h3 {
            font-size: 42px;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .about-content h3:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #C5A572, transparent);
        }

        .about-text-block {
            margin-bottom: 50px;
            position: relative;
            padding-left: 25px;
            border-left: 2px solid rgba(197, 165, 114, 0.4);
        }

        .about-text-block p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            font-size: 17px;
        }

        .about-features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 50px;
        }

        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 18px;
            background: rgba(197, 165, 114, 0.05);
            border: 1px solid rgba(197, 165, 114, 0.1);
            transition: all 0.4s ease;
            border-radius: 10px;
        }

        .about-feature-item:hover {
            border-color: #C5A572;
            transform: translateX(12px);
            background: rgba(197, 165, 114, 0.1);
        }

        .about-feature-item i {
            color: #C5A572;
            font-size: 1.8rem;
        }

        .about-feature-item span {
            font-size: 16px;
        }

        .about-timeline {
            margin-top: 50px;
            position: relative;
        }

        .timeline-item {
            display: flex;
            gap: 25px;
            margin-bottom: 25px;
            padding: 18px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(197, 165, 114, 0.1);
            transition: all 0.4s ease;
            border-radius: 10px;
        }

        .timeline-item:hover {
            border-color: #C5A572;
            transform: translateX(12px);
            background: rgba(197, 165, 114, 0.1);
        }

        .timeline-year {
            font-family: 'Cormorant Garamond', serif;
            font-size: 22px;
            color: #C5A572;
            min-width: 90px;
        }

        .timeline-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
        }

        /* ========== КОНТАКТЫ ========== */
        .contact {
            padding: 150px 0 100px;
            position: relative;
            z-index: 10;
            background: rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(197, 165, 114, 0.08) 0%, transparent 50%);
            z-index: -1;
        }

        .contact-showcase {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .contact-card {
            position: relative;
            padding: 60px 40px;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(197, 165, 114, 0.2);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
            z-index: 1;
            text-align: center;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(197, 165, 114, 0.15), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .contact-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #C5A572, transparent);
            transform: translateX(-100%);
            transition: transform 1s ease;
        }

        .contact-card:hover {
            border-color: #C5A572;
            transform: translateY(-15px);
            box-shadow: 0 30px 50px rgba(197, 165, 114, 0.2);
        }

        .contact-card:hover::before {
            opacity: 1;
        }

        .contact-card:hover::after {
            transform: translateX(100%);
        }

        .contact-icon {
            font-size: 52px;
            color: #C5A572;
            margin-bottom: 25px;
            transition: all 0.4s ease;
        }

        .contact-card:hover .contact-icon {
            transform: scale(1.1);
            text-shadow: 0 0 30px #C5A572;
        }

        .contact-card h3 {
            font-size: 28px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .contact-card h3:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 2px;
            background: #C5A572;
            transition: width 0.4s ease;
        }

        .contact-card:hover h3:after {
            width: 100%;
        }

        .contact-detail {
            margin: 25px 0;
            font-size: 18px;
            color: #FFFFFF;
            font-weight: 300;
            letter-spacing: 0.05em;
        }

        .contact-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: #C5A572;
            text-decoration: none;
            font-size: 15px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            transition: gap 0.3s ease;
            margin-top: 25px;
            padding: 12px 25px;
            border: 1px solid rgba(197, 165, 114, 0.3);
            border-radius: 40px;
        }

        .contact-link i {
            transition: transform 0.3s ease;
        }

        .contact-card:hover .contact-link {
            gap: 18px;
            background: rgba(197, 165, 114, 0.1);
            border-color: #C5A572;
        }

        .contact-card:hover .contact-link i {
            transform: translateX(5px);
        }

        .contact-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .contact-particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: #C5A572;
            border-radius: 50%;
            opacity: 0;
            animation: floatParticle 12s infinite linear;
        }

        .contact-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .contact-particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
        .contact-particle:nth-child(3) { top: 40%; left: 40%; animation-delay: 4s; }
        .contact-particle:nth-child(4) { top: 80%; left: 20%; animation-delay: 6s; }
        .contact-particle:nth-child(5) { top: 30%; left: 70%; animation-delay: 8s; }
        .contact-particle:nth-child(6) { top: 70%; left: 50%; animation-delay: 10s; }

        @keyframes floatParticle {
            0% { transform: translateY(0) scale(1); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-150px) scale(2); opacity: 0; }
        }

        /* ========== ФУТЕР ========== */
        .footer {
            padding: 80px 0 30px;
            border-top: 1px solid rgba(197, 165, 114, 0.1);
            position: relative;
            z-index: 10;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-col h4 {
            font-size: 20px;
            margin-bottom: 25px;
            color: #C5A572;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.3s ease;
            cursor: pointer;
            font-size: 15px;
        }

        .footer-col ul a:hover {
            color: #C5A572;
        }

        .footer-col p {
            font-size: 15px;
            color: rgba(255,255,255,0.6);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 40px;
            border-top: 1px solid rgba(197, 165, 114, 0.1);
            color: rgba(255, 255, 255, 0.3);
            font-size: 14px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-social {
            display: flex;
            gap: 25px;
        }

        .footer-social a {
            color: rgba(255, 255, 255, 0.3);
            transition: color 0.3s ease;
            cursor: pointer;
            font-size: 1.4rem;
        }

        .footer-social a:hover {
            color: #C5A572;
        }

        /* ========== МОДАЛЬНОЕ ОКНО ========== */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            overflow-y: auto;
            padding: 20px;
        }

        .modal.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            max-width: 800px;
            width: 800px;
            background: #030303;
            border: 2px solid #C5A572;
            padding: 60px 50px;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            margin: auto;
            border-radius: 20px;
        }

        .modal.active .modal-content {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 25px;
            right: 25px;
            color: #C5A572;
            font-size: 2rem;
            cursor: pointer;
            transition: color 0.3s ease;
            z-index: 10;
        }

        .modal-close:hover {
            color: #ffffff;
        }

        .modal h3 {
            font-size: 36px;
            margin-bottom: 30px;
            color: #C5A572;
            border-bottom: 2px solid rgba(197, 165, 114, 0.3);
            padding-bottom: 15px;
        }

        .modal h4 {
            font-size: 22px;
            margin: 25px 0 15px;
            color: #FFFFFF;
            letter-spacing: 0.05em;
        }

        .modal p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
            line-height: 1.8;
            font-size: 16px;
        }

        .modal ul li {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 15px;
        }

        .modal ul li i {
            color: #C5A572;
            font-size: 1rem;
            min-width: 25px;
        }

        .modal-buttons {
            display: flex;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .modal-btn {
            display: inline-block;
            padding: 18px 40px;
            background: transparent;
            border: 2px solid #C5A572;
            color: #FFFFFF;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 14px;
            transition: all 0.6s ease;
            cursor: pointer;
            border-radius: 50px;
        }

        .modal-btn:hover {
            background: #C5A572;
            color: #030303;
        }

        .modal-btn-outline {
            border-color: rgba(255, 255, 255, 0.3);
        }

        .modal-btn-outline:hover {
            background: #FFFFFF;
            border-color: #FFFFFF;
            color: #030303;
        }

        /* ========== СТИЛЬ ДЛЯ ЗАПРЕЩЕННОЙ СОЦСЕТИ ========== */
        .banned-social {
            text-align: center;
            padding: 30px;
        }

        .banned-social i {
            font-size: 5rem;
            color: #999;
            margin-bottom: 20px;
        }

        .banned-social p {
            color: #ff6b6b;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .banned-social small {
            color: #666;
            font-size: 0.9rem;
        }

        /* ========== АНИМАЦИИ ПОЯВЛЕНИЯ ========== */
        /* Оригинальные стили — переопределяются в responsive.css */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
    
    
