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

        :root {
            --primary: #FF1B54;
            --primary-dark: #d61442;
            --primary-light: #ff5a7e;
            --secondary: #667eea;
            --secondary-dark: #5a67d8;
            
            /* Обновленная цветовая схема - единый фон */
            /* Светлая тема */
            --bg-main: #ffffff;
            --bg-secondary: #f8f9fa;
            --bg-tertiary: #f1f3f5;
            --bg-card: #ffffff;
            --bg-hover: #f8f9fa;
            --bg-solid: #ffffff;
            
            --text-primary: #212529;
            --text-secondary: #495057;
            --text-tertiary: #6c757d;
            --text-light: #868e96;
            
            --border-color: rgba(222, 226, 230, 0.5);
            --border-light: rgba(233, 236, 239, 0.5);
            --border-dark: #ced4da;
            
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.15);
            
            --gradient-primary: linear-gradient(135deg, #FF1B54 0%, #ff5a7e 100%);
            --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            
            --success: #51cf66;
            --info: #339af0;
            --warning: #ffd43b;
            
            /* Убираем все border-radius глобально */
            --radius: 0px;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: var(--bg-main);
            color: var(--text-primary);
            overflow-x: hidden;
            position: relative;
        }

        /* Lazy loading для изображений */
        img {
            opacity: 0;
            transition: opacity 0.3s;
        }

        img.loaded {
            opacity: 1;
        }

        /* Изображения в lightbox всегда видимы */
        .lightbox-image,
        .advantage-lightbox-image {
            opacity: 1 !important;
        }

        /* Анимации появления */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        /* Классы для анимаций */
        .animate-on-scroll {
            opacity: 0;
        }

        .animate-on-scroll.animated {
            animation-duration: 0.6s;
            animation-fill-mode: both;
            animation-timing-function: ease-out;
        }

        .animate-on-scroll.animated.fadeInUp {
            animation-name: fadeInUp;
        }

        .animate-on-scroll.animated.fadeIn {
            animation-name: fadeIn;
        }

        .animate-on-scroll.animated.slideInLeft {
            animation-name: slideInLeft;
        }

        .animate-on-scroll.animated.slideInRight {
            animation-name: slideInRight;
        }

        .animate-on-scroll.animated.scaleIn {
            animation-name: scaleIn;
        }

        /* Задержки анимации */
        .animation-delay-100 {
            animation-delay: 0.1s !important;
        }

        .animation-delay-200 {
            animation-delay: 0.2s !important;
        }

        .animation-delay-300 {
            animation-delay: 0.3s !important;
        }

        .animation-delay-400 {
            animation-delay: 0.4s !important;
        }

        /* Анимированный фон - обновлен */
        .bg-animation {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            background: linear-gradient(135deg, rgba(255, 27, 84, 0.015) 0%, rgba(102, 126, 234, 0.015) 100%);
            overflow: hidden;
        }

        .bg-animation::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF1B54' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            animation: slide 20s linear infinite;
        }

        @keyframes slide {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        /* Scrollbar styling */
        ::-webkit-scrollbar {
            width: 10px;
            height: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-tertiary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border: 2px solid var(--bg-card);
            border-radius: 0;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }

        /* Firefox scrollbar */
        * {
            scrollbar-width: thin;
            scrollbar-color: var(--primary) var(--bg-tertiary);
        }

        /* Grid System */
        .container {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin-right: -15px;
            margin-left: -15px;
        }

        .col {
            position: relative;
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
        }

        /* Mobile First Approach */
        @media (min-width: 576px) {
            .container { max-width: 540px; }
            .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
            .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
        }

        @media (min-width: 768px) {
            .container { max-width: 720px; }
            .col-md-6 { flex: 0 0 50%; max-width: 50%; }
            .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
            .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
            .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
        }

        @media (min-width: 992px) {
            .container { max-width: 960px; }
            .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
            .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
            .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
            .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
            .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
        }

        @media (min-width: 1200px) {
            .container { max-width: 1140px; }
        }

        @media (min-width: 1400px) {
            .container { max-width: 1320px; }
        }

        /* Хедер - обновлен под новый фон */
        .header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(20px);
            background: rgba(255, 255, 255, 0.92);
            border-bottom: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            min-height: 70px;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: clamp(20px, 3vw, 40px);
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(24px, 4vw, 32px);
            font-weight: 900;
            text-decoration: none;
            letter-spacing: -1px;
            position: relative;
            color: var(--text-primary) !important;
        }

        .logo-go {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .logo:hover::after {
            transform: scaleX(1);
        }

        .nav {
            display: none;
            list-style: none;
            gap: clamp(20px, 2vw, 35px);
        }

        @media (min-width: 992px) {
            .nav {
                display: flex;
            }
        }

        .nav a {
            color: var(--text-secondary) !important;
            text-decoration: none;
            font-size: clamp(14px, 1.5vw, 15px);
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            padding: 5px 0;
            white-space: nowrap;
        }

        .nav a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav a:hover {
            color: var(--primary) !important;
        }

        .nav a:hover::before {
            width: 100%;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: clamp(15px, 2vw, 30px);
        }

        .header-contacts {
            display: none;
        }

        @media (min-width: 768px) {
            .header-contacts {
                display: flex;
                align-items: center;
                gap: 20px;
            }
        }

        .contact-block {
            text-align: right;
        }

        .phone, .email {
            font-size: clamp(14px, 2vw, 16px);
            font-weight: 600;
            color: var(--text-primary) !important;
            text-decoration: none;
            display: block;
            transition: color 0.3s;
            white-space: nowrap;
        }

        .phone:hover, .email:hover {
            color: var(--primary) !important;
        }

        .work-time {
            font-size: 11px;
            color: var(--text-tertiary);
            margin-top: 3px;
            display: none;
        }

        /* Mobile menu button */
        .mobile-menu-btn {
            display: flex;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            position: relative;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 2px;
            background: var(--text-primary);
            transition: all 0.3s;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        @media (min-width: 992px) {
            .mobile-menu-btn {
                display: none;
            }
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-light);
            padding: 20px;
            transform: translateY(-100%);
            opacity: 0;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: var(--shadow-lg);
        }

        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-menu-list {
            list-style: none;
        }

        .mobile-menu-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border-light);
        }

        .mobile-menu-list li:last-child {
            border-bottom: none;
        }

        .mobile-menu-list a {
            color: var(--text-primary) !important;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            display: block;
            transition: color 0.3s;
        }

        .mobile-menu-list a:hover {
            color: var(--primary) !important;
        }

        .mobile-menu-contacts {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border-light);
        }

        .mobile-menu-phone,
        .mobile-menu-email {
            display: block;
            color: var(--primary) !important;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .header-btn {
            padding: clamp(10px, 1.5vw, 12px) clamp(15px, 2vw, 25px);
            background: var(--primary) !important;
            color: white !important;
            border: none;
            font-size: clamp(13px, 1.5vw, 15px);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
            border-radius: var(--radius);
        }

        .header-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
            border-radius: 50%;
        }

        .header-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .header-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 27, 84, 0.3);
        }

        /* УЛУЧШЕННЫЙ Hero Section для всех устройств */
        .hero {
            padding: 120px 0 60px;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: transparent;
        }

        /* Мобильная версия hero */
        @media (max-width: 991px) {
            .hero {
                padding: 90px 0 40px;
                min-height: auto;
            }
        }

        /* Десктоп версия с правильным расположением */
        @media (min-width: 1200px) {
            .hero {
                padding: 140px 0 80px;
            }
        }

        /* Scroll Indicator - ПОДНЯТ НА 100px */
        .scroll-indicator {
            position: absolute;
            bottom: 130px; /* Изменено с 30px на 130px */
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            animation: bounce 2s infinite;
            cursor: pointer;
            z-index: 10;
        }

        /* Скрываем индикатор на мобильных */
        @media (max-width: 768px) {
            .scroll-indicator {
                display: none;
            }
        }

        .scroll-indicator-mouse {
            width: 26px;
            height: 40px;
            border: 2px solid rgba(255, 27, 84, 0.3);
            border-radius: 15px;
            position: relative;
        }

        .scroll-indicator-mouse::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 8px;
            background: var(--primary);
            border-radius: 2px;
            animation: wheel 2s infinite;
            opacity: 0.6;
        }

        .scroll-indicator-arrows {
            display: flex;
            flex-direction: column;
            gap: -4px;
        }

        .scroll-indicator-arrow {
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 8px solid rgba(255, 27, 84, 0.3);
            animation: arrow-fade 2s infinite;
        }

        .scroll-indicator-arrow:nth-child(2) {
            animation-delay: 0.2s;
            margin-top: -4px;
        }

        .scroll-indicator-arrow:nth-child(3) {
            animation-delay: 0.4s;
            margin-top: -4px;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        @keyframes wheel {
            0% {
                top: 8px;
                opacity: 1;
            }
            100% {
                top: 20px;
                opacity: 0;
            }
        }

        @keyframes arrow-fade {
            0%, 100% {
                opacity: 0.3;
            }
            50% {
                opacity: 1;
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px;
            background: rgba(255, 27, 84, 0.08);
            border: 1px solid rgba(255, 27, 84, 0.2);
            margin-bottom: 20px;
            border-radius: var(--radius);
            font-size: 12px;
        }

        @media (min-width: 768px) {
            .hero-badge {
                padding: 10px 20px;
                margin-bottom: 30px;
                font-size: 13px;
            }
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            background: var(--primary);
            animation: pulse 2s infinite;
            flex-shrink: 0;
            border-radius: 50%;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .badge-text {
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Улучшенная типографика для заголовка */
        h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 28px !important;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        @media (min-width: 768px) {
            h1 {
                font-size: 36px !important;
                line-height: 1.15;
            }
        }

        @media (min-width: 1200px) {
            h1 {
                font-size: 44px !important;
                margin-bottom: 25px;
            }
        }

        @media (min-width: 1400px) {
            h1 {
                font-size: 48px !important;
            }
        }

        h1 .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        @media (min-width: 768px) {
            .hero-subtitle {
                font-size: 17px;
                margin-bottom: 40px;
            }
        }

        @media (min-width: 1200px) {
            .hero-subtitle {
                font-size: 19px;
                margin-bottom: 50px;
            }
        }

        /* Улучшенные Feature cards для мобильных */
        .features-row {
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        @media (min-width: 768px) {
            .features-row {
                margin-bottom: 30px;
                gap: 15px;
            }
        }

        .features-row .col {
            flex: 1 1 100%;
            padding: 0;
        }

        @media (min-width: 480px) {
            .features-row .col {
                flex: 1 1 calc(50% - 5px);
            }
        }

        @media (min-width: 768px) {
            .features-row .col {
                flex: 1 1 calc(33.333% - 10px);
            }
        }

        .feature-card {
            padding: 15px;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            backdrop-filter: blur(10px);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            height: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            max-width: none;
        }

        @media (min-width: 768px) {
            .feature-card {
                padding: 18px;
            }
        }

        /* Фоновая иконка с эмоджи */
        .feature-card::after {
            content: '';
            position: absolute;
            right: -10px;
            bottom: -10px;
            width: 60px;
            height: 60px;
            font-size: 50px;
            opacity: 0.12;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            filter: grayscale(100%) sepia(100%) hue-rotate(320deg) saturate(2) brightness(0.8);
        }

        @media (min-width: 768px) {
            .feature-card::after {
                width: 70px;
                height: 70px;
                font-size: 60px;
                right: -15px;
                bottom: -15px;
            }
        }

        .features-row .col:nth-child(1) .feature-card::after {
            content: '🏗️';
        }

        .features-row .col:nth-child(2) .feature-card::after {
            content: '📋';
        }

        .features-row .col:nth-child(3) .feature-card::after {
            content: '🚚';
        }

        .feature-card:hover::after {
            opacity: 0.18;
            right: -10px;
            bottom: -10px;
            transform: scale(1.1);
        }

        .feature-card:hover {
            background: var(--bg-hover);
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .feature-number {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 5px;
            font-family: 'Montserrat', sans-serif;
            line-height: 1;
            position: relative;
            z-index: 1;
        }

        @media (min-width: 768px) {
            .feature-number {
                font-size: 24px;
            }
        }

        .feature-text {
            font-size: 12px;
            color: var(--text-secondary);
            line-height: 1.4;
            position: relative;
            z-index: 1;
        }

        @media (min-width: 768px) {
            .feature-text {
                font-size: 13px;
            }
        }

        /* Специальные стили для карточки с доставкой */
        .delivery-card .feature-number {
            font-size: 17px;
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        @media (min-width: 768px) {
            .delivery-card .feature-number {
                font-size: 19px;
            }
        }

        /* Улучшенные кнопки hero для мобильных */
        .hero-buttons {
            display: flex;
            gap: 12px;
            margin-bottom: 25px;
            flex-direction: column;
        }

        @media (min-width: 576px) {
            .hero-buttons {
                flex-direction: row;
                gap: 15px;
            }
        }

        @media (min-width: 768px) {
            .hero-buttons {
                gap: 20px;
                margin-bottom: 30px;
            }
        }

        .btn {
            padding: 16px 24px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
            border: none;
            white-space: nowrap;
            border-radius: var(--radius);
            width: 100%;
        }

        @media (min-width: 576px) {
            .btn {
                width: auto;
                padding: 16px 30px;
            }
        }

        @media (min-width: 768px) {
            .btn {
                padding: 18px 35px;
                font-size: 16px;
            }
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 27, 84, 0.25);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 27, 84, 0.35);
            background: var(--primary-dark);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 27, 84, 0.25);
        }

        /* Минималистичные эмодзи для кнопок */
        .btn-icon-emoji {
            font-size: 18px;
            line-height: 1;
        }

        .btn-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
            flex-shrink: 0;
        }

        .hero-note {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: var(--text-secondary);
            font-size: 13px;
            line-height: 1.5;
            padding: 15px;
            background: var(--bg-secondary);
            border-radius: var(--radius);
            border-left: 3px solid var(--success);
        }

        @media (min-width: 768px) {
            .hero-note {
                font-size: 14px;
            }
        }

        .check-icon {
            width: 20px;
            height: 20px;
            background: rgba(81, 207, 102, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border-radius: 50%;
        }

        .check-icon svg {
            width: 12px;
            height: 12px;
            fill: var(--success);
        }

        /* Улучшенное Hero Image для всех устройств */
        .hero-visual {
            position: relative;
            margin-top: 40px;
        }

        @media (min-width: 992px) {
            .hero-visual {
                padding-left: 40px;
            }
        }

        @media (min-width: 1200px) {
            .hero-visual {
                margin-left: -110px; /* Сдвигаем влево для увеличения */
            }
        }

        @media (min-width: 1400px) {
            .hero-visual {
                transform: scale(1.1);
                margin-left: -110px; /* Сдвигаем влево для увеличения */
                transform-origin: left center;
            }
        }

        .hero-image-wrapper {
            position: relative;
            transition: transform 0.5s;
        }

        @media (min-width: 992px) {
            .hero-image-wrapper {
                transform: perspective(1000px) rotateY(-10deg);
            }
            
            .hero-image-wrapper:hover {
                transform: perspective(1000px) rotateY(0deg) scale(1.03);
            }
        }

        .hero-image {
            width: 100%;
            aspect-ratio: 10/8;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius);
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
        }

        /* ПРОДУКТОВАЯ ЛИНЕЙКА - обновлена под новый фон */
        .products {
            padding: clamp(60px, 10vh, 100px) 0;
            position: relative;
            background: transparent;
        }

        .section-header {
            text-align: center;
            margin-bottom: clamp(40px, 6vw, 60px);
        }

        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text-primary);
            line-height: 1.2;
        }

        .section-title .accent-text {
            color: var(--primary);
        }

        .section-subtitle {
            font-size: clamp(16px, 2vw, 18px);
            color: var(--text-secondary);
            line-height: 1.5;
            margin-top: 10px;
        }

        .section-label-top {
            font-size: clamp(12px, 1.5vw, 14px);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary);
            margin-bottom: clamp(15px, 2vw, 20px);
            position: relative;
            display: inline-block;
        }

        .section-label-top::before,
        .section-label-top::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 50px;
            height: 1px;
            background: var(--primary);
            opacity: 0.3;
        }

        .section-label-top::before {
            right: calc(100% + 20px);
        }

        .section-label-top::after {
            left: calc(100% + 20px);
        }

        /* Слайдер продуктов для мобильных с тач-поддержкой */
        .products-slider-wrapper {
            position: relative;
            overflow: hidden;
            display: none;
            touch-action: pan-y;
        }
@media (min-width: 992px) {
  .hero-visual {
    position: relative;
    top: 100px; /* визуальный сдвиг вниз */
  }
}
        @media (max-width: 991px) {
            .products-slider-wrapper {
                display: block;
            }
            
            .products .row {
                display: none;
            }
        }

        .products-slider {
            display: flex;
            transition: transform 0.3s ease;
        }

        .products-slide {
            min-width: 100%;
            padding: 0 15px;
        }

        @media (min-width: 576px) and (max-width: 991px) {
            .products-slide {
                min-width: 50%;
            }
        }

        .products-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            font-size: 20px;
            box-shadow: 0 4px 10px rgba(255, 27, 84, 0.3);
            transition: all 0.3s;
        }

        .products-nav:hover {
            background: var(--primary-dark);
            transform: translateY(-50%) scale(1.1);
        }

        .products-nav.prev {
            left: 10px;
        }

        .products-nav.next {
            right: 10px;
        }

        .products-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .products-dot {
            width: 8px;
            height: 8px;
            background: var(--border-color);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
        }

        .products-dot.active {
            background: var(--primary);
            transform: scale(1.3);
        }

        /* Продуктовые карточки - обновлены под новый фон с более заметными границами */
        .product-card {
            background: var(--bg-card);
            border: 2px solid var(--border-color);
            backdrop-filter: blur(10px);
            padding: 0;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s;
        }

        .product-card:hover::before {
            transform: scaleX(1);
        }

        .product-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: var(--shadow-xl);
        }

        .product-card.accent-blue {
            border-color: rgba(102, 126, 234, 0.3);
        }

        .product-card.accent-blue::before {
            background: var(--gradient-secondary);
        }

        .product-card.accent-blue:hover {
            border-color: var(--secondary);
        }

        .product-card.accent-green {
            border-color: rgba(81, 207, 102, 0.3);
        }

        .product-card.accent-green::before {
            background: linear-gradient(90deg, var(--success) 0%, #8bc34a 100%);
        }

        .product-card.accent-green:hover {
            border-color: var(--success);
        }

        .product-card.accent-orange {
            border-color: rgba(255, 215, 59, 0.3);
        }

        .product-card.accent-orange::before {
            background: linear-gradient(90deg, var(--warning) 0%, #ff9800 100%);
        }

        .product-card.accent-orange:hover {
            border-color: var(--warning);
        }

        /* Хедер карточки продукта */
        .product-card-header {
            padding: 20px 20px 15px;
            background: var(--bg-secondary);
            border-bottom: 1px solid var(--border-light);
        }

        .product-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 10px;
        }

        .product-icon {
            width: 60px;
            height: 60px;
            flex-shrink: 0;
            padding: 10px;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            position: relative;
            border-radius: var(--radius);
            font-size: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-icon svg {
            width: 100%;
            height: 100%;
            stroke: var(--primary);
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: all 0.4s;
        }

        .product-card:hover .product-icon svg {
            stroke-width: 2;
            transform: scale(1.1);
        }

        .product-card.accent-blue .product-icon svg {
            stroke: var(--secondary);
        }

        .product-card.accent-green .product-icon svg {
            stroke: var(--success);
        }

        .product-card.accent-orange .product-icon svg {
            stroke: var(--warning);
        }

        .product-icon .pulse {
            animation: pulse 2s infinite;
        }

        .product-icon .rotate {
            animation: rotate 10s linear infinite;
            transform-origin: center;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .product-badge {
            padding: 4px 10px;
            background: rgba(255, 27, 84, 0.08);
            border: 1px solid var(--primary);
            font-size: 10px;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
            border-radius: var(--radius);
        }

        .product-card.accent-blue .product-badge {
            background: rgba(102, 126, 234, 0.08);
            border-color: var(--secondary);
            color: var(--secondary);
        }

        .product-card.accent-green .product-badge {
            background: rgba(81, 207, 102, 0.08);
            border-color: var(--success);
            color: var(--success);
        }

        .product-card.accent-orange .product-badge {
            background: rgba(255, 215, 59, 0.08);
            border-color: var(--warning);
            color: #ff9800;
        }

        .product-name {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(18px, 2.2vw, 20px);
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.2;
        }

        .product-tagline {
            font-size: clamp(12px, 1.4vw, 13px);
            color: var(--primary);
            font-weight: 500;
            margin-top: 5px;
        }

        .product-card.accent-blue .product-tagline {
            color: var(--secondary);
        }

        .product-card.accent-green .product-tagline {
            color: var(--success);
        }

        .product-card.accent-orange .product-tagline {
            color: #ff9800;
        }

        /* Тело карточки */
        .product-card-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-description {
            font-size: clamp(13px, 1.5vw, 14px);
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .product-features {
            list-style: none;
            margin-bottom: 20px;
            flex: 1;
        }

        .product-features li {
            font-size: clamp(12px, 1.4vw, 13px);
            color: var(--text-secondary);
            padding: 6px 0;
            padding-left: 22px;
            position: relative;
            line-height: 1.4;
        }

        .product-features li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
            font-size: 16px;
        }

        .product-card.accent-blue .product-features li::before {
            color: var(--secondary);
        }

        .product-card.accent-green .product-features li::before {
            color: var(--success);
        }

        .product-card.accent-orange .product-features li::before {
            color: var(--warning);
        }

        /* Футер карточки */
        .product-card-footer {
            padding: 20px;
            border-top: 1px solid var(--border-light);
        }

        .product-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 12px 20px;
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            border-radius: var(--radius);
        }

        .product-btn:hover {
            background: var(--primary);
            color: white;
            box-shadow: var(--shadow-md);
        }

        .product-card.accent-blue .product-btn {
            border-color: var(--secondary);
            color: var(--secondary);
        }

        .product-card.accent-blue .product-btn:hover {
            background: var(--secondary);
        }

        .product-card.accent-green .product-btn {
            border-color: var(--success);
            color: var(--success);
        }

        .product-card.accent-green .product-btn:hover {
            background: var(--success);
        }

        .product-card.accent-orange .product-btn {
            border-color: #ff9800;
            color: #ff9800;
        }

        .product-card.accent-orange .product-btn:hover {
            background: #ff9800;
        }

        /* КЛЮЧЕВЫЕ ПРЕИМУЩЕСТВА - обновлены под новый фон */
        .advantages {
            padding: clamp(60px, 10vh, 100px) 0;
            position: relative;
            background: transparent;
        }

        .section-title .highlight {
            color: var(--primary);
        }

        .advantage-card {
            position: relative;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            backdrop-filter: blur(10px);
            margin-bottom: clamp(30px, 4vw, 40px);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
            padding: clamp(30px, 3.5vw, 40px);
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
        }

        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s;
        }

        .advantage-card:hover::before {
            transform: scaleX(1);
        }

        .advantage-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: var(--shadow-xl);
        }

        .advantage-inner {
            display: flex;
            gap: clamp(30px, 4vw, 40px);
            align-items: flex-start;
            flex-direction: column;
        }

        @media (min-width: 992px) {
            .advantage-inner {
                flex-direction: row;
            }
        }

        /* Слайдер изображений в преимуществах с тач-поддержкой */
        .advantage-image-section {
            width: 100%;
            max-width: 400px;
            aspect-ratio: 7/7;
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin: 0 auto;
            border-radius: var(--radius);
            cursor: pointer;
            touch-action: pan-y;
        }

        @media (min-width: 768px) {
            .advantage-image-section {
                width: 350px;
                max-width: none;
                margin: 0;
            }
        }

        @media (min-width: 992px) {
            .advantage-image-section {
                width: 380px;
            }
        }

        @media (min-width: 1200px) {
            .advantage-image-section {
                width: 400px;
            }
        }

        @media (min-width: 1400px) {
            .advantage-image-section {
                width: 430px;
            }
        }

        .advantage-slider {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .advantage-slides {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease;
        }

        .advantage-slide {
            width: 100%;
            height: 100%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .advantage-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.9;
            transition: all 0.4s;
        }
        
        .advantage-image-contain {
            object-fit: contain !important;
        }

        .advantage-card:hover .advantage-image {
            opacity: 1;
            transform: scale(1.05);
        }

        .image-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 15px;
            color: var(--text-tertiary);
            text-align: center;
            padding: 30px;
            width: 100%;
            height: 100%;
        }

        .placeholder-icon {
            width: 100px;
            height: 100px;
            border: 2px dashed var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius);
        }

        .placeholder-icon svg {
            width: 50px;
            height: 50px;
            stroke: var(--text-tertiary);
            fill: none;
            stroke-width: 1.5;
            opacity: 0.5;
        }

        .placeholder-text {
            font-size: clamp(13px, 1.6vw, 15px);
            color: var(--text-tertiary);
            opacity: 0.7;
        }

        /* Стрелки навигации для слайдера преимуществ */
        .advantage-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 5;
            opacity: 0.6;
            border-radius: 50%;
        }

        .advantage-nav:hover {
            opacity: 1;
            background: white;
            box-shadow: var(--shadow-md);
        }

        .advantage-nav.prev {
            left: 10px;
        }

        .advantage-nav.next {
            right: 10px;
        }

        .advantage-nav svg {
            width: 16px;
            height: 16px;
            stroke: var(--text-secondary);
            fill: none;
            stroke-width: 2;
        }

        .advantage-content-wrapper {
            flex: 1;
            position: relative;
            min-width: 0;
        }

        .advantage-number {
            position: absolute;
            top: -10px;
            right: 0;
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(60px, 7vw, 80px);
            font-weight: 900;
            color: rgba(255, 27, 84, 0.1);
            line-height: 1;
            z-index: 0;
        }

        @media (max-width: 768px) {
            .advantage-number {
                font-size: clamp(40px, 6vw, 60px);
                top: -5px;
            }
        }

        .advantage-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(20px, 2.5vw, 26px);
            font-weight: 700;
            margin-bottom: clamp(20px, 2.5vw, 25px);
            color: var(--text-primary);
            position: relative;
            z-index: 1;
            padding-right: 60px;
            line-height: 1.2;
        }

        @media (max-width: 768px) {
            .advantage-title {
                font-size: clamp(18px, 2.5vw, 22px);
                padding-right: 40px;
            }
        }

        .advantage-title .highlight {
            color: var(--primary);
        }

        .partners-logos {
            display: flex;
            flex-wrap: wrap;
            gap: clamp(8px, 1vw, 12px);
            align-items: center;
            margin-bottom: clamp(15px, 2vw, 20px);
            padding: clamp(12px, 1.5vw, 15px);
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
        }

        /* ИСПРАВЛЕННЫЙ Слайдер логотипов партнеров */
        .partners-slider {
            position: relative;
            overflow: hidden;
            margin-bottom: clamp(40px, 5vw, 60px);
            padding: 20px 0;
        }

        .partners-slider-track {
            display: flex;
            animation: slidePartners 20s linear infinite;
        }

        @keyframes slidePartners {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

@media (max-width: 768px) {
    .partners-slider-track {
        animation: slidePartnersMobile 25s linear infinite;
    }
    
    @keyframes slidePartnersMobile {
        0% {
            transform: translateX(0);
        }
        100% {
            /* Сдвигаем ровно на половину всех слайдов */
            transform: translateX(calc(-120px * 7));
        }
    }
}

        .partner-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 200px;
            padding: 0 20px;
        }

        @media (max-width: 768px) {
            .partner-slide {
                min-width: 150px;
                padding: 0 15px;
            }
        }

        .partner-slide img {
            max-width: 120px;
            max-height: 60px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
        }

        @media (max-width: 768px) {
            .partner-slide img {
                max-width: 100px;
                max-height: 50px;
            }
        }

        .partner-slide:hover img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }

        .partners-label {
            font-size: clamp(10px, 1.2vw, 11px);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-tertiary);
            margin-right: 12px;
            padding-right: 12px;
            border-right: 1px solid var(--border-light);
        }

        @media (max-width: 768px) {
            .partners-label {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid var(--border-light);
                padding-bottom: 8px;
                margin-bottom: 8px;
                margin-right: 0;
                padding-right: 0;
            }
        }

        .partner-logo {
            padding: clamp(4px, 0.8vw, 8px) clamp(10px, 1.5vw, 15px);
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            font-size: clamp(11px, 1.3vw, 12px);
            font-weight: 600;
            color: var(--text-secondary);
            transition: all 0.3s;
            white-space: nowrap;
            border-radius: var(--radius);
        }

        .partner-logo:hover {
            background: rgba(255, 27, 84, 0.05);
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
        }

        .advantage-content {
            position: relative;
            z-index: 1;
        }

        .advantage-section {
            margin-bottom: clamp(20px, 2.5vw, 25px);
        }

        .section-label {
            font-size: clamp(11px, 1.4vw, 12px);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
            margin-bottom: clamp(8px, 1vw, 12px);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .section-label::before {
            content: '';
            width: 15px;
            height: 2px;
            background: var(--primary);
        }

        .advantage-text {
            font-size: clamp(13px, 1.6vw, 14px);
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: clamp(12px, 1.5vw, 15px);
        }

        .advantage-highlight-text {
            font-size: clamp(14px, 1.7vw, 15px);
            color: var(--text-primary);
            line-height: 1.6;
            padding: clamp(12px, 1.5vw, 15px);
            background: rgba(255, 27, 84, 0.05);
            border-left: 3px solid var(--primary);
            margin: clamp(15px, 2vw, 20px) 0;
            border-radius: 0;
        }

        .numbered-list {
            list-style: none;
            margin-bottom: clamp(15px, 2vw, 20px);
            counter-reset: item;
        }

        .numbered-list li {
            padding: clamp(6px, 0.8vw, 8px) 0;
            padding-left: 30px;
            position: relative;
            font-size: clamp(13px, 1.6vw, 14px);
            color: var(--text-secondary);
            line-height: 1.5;
            counter-increment: item;
        }

        .numbered-list li::before {
            content: counter(item);
            position: absolute;
            left: 0;
            top: 6px;
            width: 20px;
            height: 20px;
            background: rgba(255, 27, 84, 0.1);
            border: 1px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 600;
            color: var(--primary);
        }

        .feature-list {
            list-style: none;
            margin-bottom: clamp(15px, 2vw, 20px);
        }

        .feature-list li {
            padding: clamp(6px, 0.8vw, 8px) 0;
            padding-left: 25px;
            position: relative;
            font-size: clamp(13px, 1.6vw, 14px);
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-size: 14px;
            font-weight: bold;
        }

        /* Обновленные метрики */
        .final-metrics {
            padding: clamp(25px, 3vw, 35px) clamp(20px, 2.5vw, 30px);
            background: linear-gradient(135deg, rgba(255, 27, 84, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
            border: 1px solid var(--primary);
            margin-top: clamp(30px, 4vw, 40px);
            border-radius: var(--radius);
        }

        .metrics-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(20px, 2.5vw, 24px);
            font-weight: 700;
            text-align: center;
            margin-bottom: clamp(20px, 2.5vw, 30px);
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: clamp(10px, 1.5vw, 20px);
            margin-bottom: clamp(20px, 2.5vw, 30px);
        }

        @media (max-width: 576px) {
            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .metric-card {
            text-align: center;
            padding: clamp(10px, 1.5vw, 15px);
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            transition: all 0.3s;
            border-radius: var(--radius);
        }

        .metric-card:hover {
            background: var(--bg-hover);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .metric-value {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 5px;
            line-height: 1;
        }

        .metric-label {
            font-size: clamp(11px, 1.3vw, 12px);
            color: var(--text-secondary);
            line-height: 1.3;
        }

        .cta-section {
            text-align: center;
            padding-top: clamp(15px, 2vw, 20px);
            border-top: 1px solid var(--border-light);
        }

        .cta-subtitle {
            font-size: clamp(14px, 1.7vw, 16px);
            color: var(--text-secondary);
            margin-bottom: clamp(12px, 1.5vw, 15px);
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: clamp(10px, 1.5vw, 12px) clamp(18px, 2vw, 24px);
            background: var(--primary);
            color: white;
            font-size: clamp(13px, 1.5vw, 14px);
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(255, 27, 84, 0.25);
            border-radius: var(--radius);
        }

        .cta-button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 27, 84, 0.35);
        }

        .cta-button svg {
            width: 16px;
            height: 16px;
        }

        .cta-note {
            margin-top: clamp(10px, 1.3vw, 12px);
            font-size: clamp(11px, 1.3vw, 12px);
            color: var(--text-tertiary);
        }

        /* КОМПАКТНЫЙ БЛОК СЕГМЕНТОВ - обновлен под новый фон */
        .segments {
            padding: clamp(50px, 8vh, 80px) 0;
            background: transparent;
            position: relative;
        }

        .segment-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            backdrop-filter: blur(10px);
            padding: clamp(20px, 2.5vw, 25px);
            height: 100%;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            margin-bottom: 15px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }

        .segment-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .segment-card:hover::before {
            transform: scaleX(1);
        }

        .segment-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
        }

        .segment-icon-wrapper {
            width: 50px;
            height: 50px;
            background: rgba(255, 27, 84, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            position: relative;
            border-radius: var(--radius);
        }

        .segment-icon {
            width: 24px;
            height: 24px;
            stroke: var(--primary);
            fill: none;
            stroke-width: 2;
        }

        .segment-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(16px, 2vw, 18px);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .segment-text {
            color: var(--text-secondary);
            font-size: clamp(12px, 1.4vw, 13px);
            line-height: 1.5;
            flex: 1;
        }

        .segment-highlight {
            display: inline-block;
            margin-top: 10px;
            font-size: 11px;
            font-weight: 600;
            color: var(--primary);
            transition: all 0.3s;
        }

        .segment-card:hover .segment-highlight {
            transform: translateX(5px);
        }

        /* БЛОК ПРОИЗВОДСТВА - обновлен под новый фон */
        .production {
            padding: clamp(60px, 10vh, 100px) 0;
            background: transparent;
            position: relative;
            overflow: hidden;
        }

        .production::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 27, 84, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(102, 126, 234, 0.02) 0%, transparent 50%);
            pointer-events: none;
        }

        .production-container {
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .production-header {
            text-align: center;
            margin-bottom: clamp(40px, 5vw, 60px);
        }

        .production-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(24px, 3.5vw, 42px);
            font-weight: 800;
            margin-bottom: clamp(15px, 2vw, 20px);
            color: var(--text-primary);
            line-height: 1.2;
        }

        /* Акцентный цвет для "полный контроль качества" */
        .production-title .accent-text {
            color: var(--primary);
        }

        .production-subtitle {
            font-size: clamp(14px, 1.6vw, 16px);
            color: var(--text-secondary);
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Слайдер контейнер */
        .slider-wrapper {
            position: relative;
            width: 100%;
            margin-bottom: clamp(30px, 4vw, 40px);
        }

        .slider-container {
            overflow: hidden;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .slider-track {
            display: flex;
            gap: clamp(10px, 1.5vw, 20px);
            padding: 0 clamp(10px, 1.5vw, 20px);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Слайды */
        .slide {
            flex: 0 0 calc(25% - 15px);
            aspect-ratio: 1;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: all 0.3s;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }

        @media (max-width: 1200px) {
            .slide {
                flex: 0 0 calc(33.333% - 14px);
            }
        }

        @media (max-width: 768px) {
            .slide {
                flex: 0 0 calc(50% - 10px);
            }
        }

        @media (max-width: 480px) {
            .slide {
                flex: 0 0 calc(100% - 0px);
            }
        }

        .slide:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
        }

        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
        }

        /* Навигационные стрелки - более заметные */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: var(--primary);
            border: 3px solid white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
            color: white;
            font-size: 28px;
            font-weight: bold;
            border-radius: 50%;
            box-shadow: 0 6px 20px rgba(255, 27, 84, 0.4);
        }

        .slider-arrow:hover {
            background: var(--primary-dark);
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 8px 30px rgba(255, 27, 84, 0.6);
        }

        .slider-arrow.prev {
            left: 20px;
        }

        .slider-arrow.next {
            right: 20px;
        }

        .slider-arrow.disabled {
            opacity: 0.3;
            cursor: not-allowed;
            background: var(--bg-tertiary);
            border-color: var(--border-color);
            box-shadow: none;
            color: var(--text-tertiary);
        }

        .slider-arrow.disabled:hover {
            background: var(--bg-tertiary);
            border-color: var(--border-color);
            transform: translateY(-50%);
            box-shadow: none;
        }

        @media (max-width: 768px) {
            .slider-arrow {
                width: 45px;
                height: 45px;
                font-size: 22px;
                border-width: 2px;
            }
            
            .slider-arrow.prev {
                left: 10px;
            }
            
            .slider-arrow.next {
                right: 10px;
            }
        }

        /* Навигационные точки */
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: clamp(30px, 4vw, 40px);
        }

        .dot {
            width: 8px;
            height: 8px;
            background: var(--border-color);
            border: 1px solid var(--border-light);
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 50%;
        }

        .dot.active {
            background: var(--primary);
            border-color: var(--primary);
            transform: scale(1.2);
        }

        .dot:hover {
            background: rgba(255, 27, 84, 0.5);
            border-color: rgba(255, 27, 84, 0.5);
        }

        /* Подпись */
        .production-note {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
        }

        .note-content {
            padding: clamp(20px, 2.5vw, 25px);
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
            border-radius: var(--radius);
        }

        .note-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 2px;
            height: 100%;
            background: var(--primary);
            opacity: 0.5;
        }

        .note-text-wrapper {
            text-align: center;
        }

        .note-label {
            font-size: clamp(10px, 1.2vw, 11px);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
            margin-bottom: 6px;
        }

        .note-text {
            font-size: clamp(13px, 1.5vw, 14px);
            color: var(--text-secondary);
            line-height: 1.4;
            font-weight: 400;
        }

        /* Lightbox для просмотра фото */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            cursor: pointer;
            animation: fadeIn 0.3s;
        }

        .lightbox.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-image {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            animation: zoomIn 0.3s;
        }

        .lightbox-close {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 50%;
        }

        .lightbox-close:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: rotate(90deg);
        }

        /* Навигация в lightbox */
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 50%;
        }

        .lightbox-nav:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

        .lightbox-prev {
            left: 30px;
        }

        .lightbox-next {
            right: 30px;
        }

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

        /* ГЕОГРАФИЯ ПРОЕКТОВ С КАРТОЙ - обновлена под новый фон */
        .map-section {
            padding: clamp(60px, 10vh, 100px) 0;
            background: transparent;
            position: relative;
        }

        .map-section .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .map-section .section-title .accent {
            color: var(--primary);
        }

        /* Статистика */
        .stats-panel {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        @media (max-width: 1200px) {
            .stats-panel {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .stats-panel {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }

        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            padding: 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }

        @media (max-width: 768px) {
            .stat-card {
                padding: 20px;
            }
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .stat-value {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(32px, 4vw, 42px);
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .stat-sublabel {
            font-size: 12px;
            color: var(--text-tertiary);
            margin-top: 5px;
        }

        /* Основной контент с картой */
        .map-content {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 30px;
            align-items: start;
        }

        @media (max-width: 1200px) {
            .map-content {
                grid-template-columns: 1fr;
            }
        }

        /* Фильтры */
        .filters-panel {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            padding: 30px;
            position: sticky;
            top: 90px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
        }

        @media (max-width: 1200px) {
            .filters-panel {
                position: static;
                margin-bottom: 30px;
            }
        }

        .filters-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .filter-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            cursor: pointer;
            padding: 10px;
            background: var(--bg-secondary);
            transition: all 0.2s;
            border-radius: var(--radius);
        }

        .filter-item:hover {
            background: var(--bg-tertiary);
            transform: translateX(5px);
        }

        .filter-checkbox {
            width: 20px;
            height: 20px;
            margin-right: 12px;
            cursor: pointer;
            accent-color: var(--primary);
        }

        .filter-color {
            width: 14px;
            height: 14px;
            margin-right: 12px;
            border: 2px solid white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            border-radius: var(--radius);
        }

        .filter-label {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
        }

        .filter-separator {
            height: 1px;
            background: var(--border-light);
            margin: 20px 0;
        }

        .filter-note {
            font-size: 11px;
            color: var(--text-tertiary);
            margin-top: 15px;
            font-style: italic;
        }

        /* Контейнер карты */
        .map-container {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            overflow: hidden;
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
        }

        .map-header-bar {
            background: var(--bg-secondary);
            padding: 20px 30px;
            border-bottom: 1px solid var(--border-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        @media (max-width: 768px) {
            .map-header-bar {
                padding: 15px;
            }
        }

        .map-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .map-legend {
            display: flex;
            gap: 20px;
            font-size: 13px;
            flex-wrap: wrap;
        }

        @media (max-width: 768px) {
            .map-legend {
                display: none;
            }
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .legend-dot {
            width: 12px;
            height: 12px;
            border: 2px solid white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            border-radius: var(--radius);
        }

        #senergo-map {
            width: 100%;
            height: 600px;
            position: relative;
        }

        @media (max-width: 768px) {
            #senergo-map {
                height: 400px;
            }
        }

        /* Кастомные маркеры */
        .custom-marker {
            width: 20px !important;
            height: 20px !important;
            cursor: pointer;
            position: relative;
            transition: all 0.3s;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
            border: 3px solid white;
            border-radius: var(--radius);
        }

        .custom-marker:hover {
            transform: scale(1.2);
            z-index: 1000 !important;
        }

        .marker-residential { background: #3b82f6; }
        .marker-industrial { background: #f59e0b; }
        .marker-social { background: #10b981; }
        .marker-military { background: #ef4444; }
        .marker-energy { background: #8b5cf6; }

        /* Попапы */
        .leaflet-popup-content-wrapper {
            background: var(--bg-card);
            box-shadow: var(--shadow-xl);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
        }

        .leaflet-popup-content {
            margin: 20px;
            min-width: 280px;
        }

        .leaflet-popup-tip {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            border-top: none;
            border-right: none;
        }

        .popup-header {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .popup-info {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .popup-specs {
            font-size: 12px;
            color: var(--text-tertiary);
            padding: 10px;
            background: var(--bg-secondary);
            margin: 10px 0;
            border-radius: var(--radius);
        }

        .popup-btn {
            display: inline-block;
            padding: 8px 16px;
            background: var(--primary) !important;
            color: white !important;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s;
            margin-top: 10px;
            border-radius: var(--radius);
        }

        .popup-btn:hover {
            background: var(--primary-dark) !important;
            transform: translateY(-2px);
        }

        /* Модальное окно с полным описанием */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: 20px;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            background: var(--bg-card);
            padding: 40px;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            border-radius: var(--radius);
            box-shadow: var(--shadow-xl);
        }

        @media (max-width: 768px) {
            .modal-content {
                padding: 30px 20px;
            }
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            color: var(--text-tertiary);
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            border-radius: var(--radius);
        }

        .modal-close:hover {
            background: var(--primary);
            color: white;
            transform: rotate(90deg);
        }

        .modal-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--text-primary);
            padding-right: 50px;
        }

        @media (max-width: 768px) {
            .modal-title {
                font-size: 22px;
            }
        }

        .modal-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-light);
            flex-wrap: wrap;
        }

        .modal-meta-item {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .modal-meta-item strong {
            color: var(--text-primary);
        }

        .modal-section {
            margin-bottom: 30px;
        }

        .modal-section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .modal-section-title::before {
            content: '';
            width: 3px;
            height: 20px;
            background: var(--primary);
        }

        .modal-text {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .modal-specs {
            background: var(--bg-secondary);
            padding: 20px;
            margin: 20px 0;
            border-radius: var(--radius);
        }

        .modal-specs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        @media (max-width: 576px) {
            .modal-specs-grid {
                grid-template-columns: 1fr;
            }
        }

        .modal-spec-item {
            font-size: 14px;
        }

        .modal-spec-label {
            color: var(--text-tertiary);
            margin-bottom: 5px;
        }

        .modal-spec-value {
            color: var(--text-primary);
            font-weight: 600;
        }

        .modal-results {
            background: linear-gradient(135deg, rgba(255, 27, 84, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
            border: 1px solid var(--primary);
            padding: 25px;
            margin: 30px 0;
            border-radius: var(--radius);
        }

        .modal-results-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .modal-results-list {
            list-style: none;
        }

        .modal-results-list li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            font-size: 14px;
            color: var(--text-primary);
        }

        .modal-results-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
        }

        /* CTA секция в географии */
        .map-cta-section {
            text-align: center;
            margin-top: 60px;
            padding: 50px;
            background: linear-gradient(135deg, rgba(255, 27, 84, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
        }

        .map-cta-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(26px, 3.5vw, 32px);
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        .map-cta-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 30px;
        }

        .map-cta-button {
            display: inline-block;
            padding: 18px 40px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            border-radius: var(--radius);
            box-shadow: 0 4px 15px rgba(255, 27, 84, 0.25);
        }

        .map-cta-button:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 27, 84, 0.35);
        }

        /* Скрыть атрибуцию Leaflet */
        .leaflet-control-attribution {
            display: none !important;
        }

        /* Переопределение стилей Leaflet */
        .leaflet-control-zoom {
            border: 1px solid var(--border-light);
            background: var(--bg-card);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border-radius: var(--radius);
        }

        .leaflet-control-zoom a {
            background: var(--bg-card);
            color: var(--text-tertiary);
            width: 36px;
            height: 36px;
            line-height: 36px;
        }

        .leaflet-control-zoom a:hover {
            background: var(--bg-secondary);
            color: var(--primary);
        }

        /* ПРОЦЕСС РАБОТЫ */
        .process {
            padding: clamp(60px, 10vh, 100px) 0;
            background: transparent;
            position: relative;
        }

        .process-timeline {
            position: relative;
            padding: 20px 0;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, transparent 0%, var(--border-color) 10%, var(--border-color) 90%, transparent 100%);
            transform: translateX(-50%);
        }

        @media (max-width: 767px) {
            .process-timeline::before {
                left: 30px;
            }
        }

        .process-item {
            position: relative;
            margin-bottom: 50px;
        }

        .process-content {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            padding: clamp(20px, 3vw, 30px);
            width: calc(50% - 40px);
            transition: all 0.3s;
            position: relative;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }

        .process-item:nth-child(odd) .process-content {
            margin-left: auto;
            margin-right: 0;
        }

        .process-item:nth-child(even) .process-content {
            margin-left: 0;
            margin-right: auto;
        }

        @media (max-width: 767px) {
            .process-content {
                width: calc(100% - 60px);
                margin-left: 60px !important;
            }
        }

        .process-content::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 1px;
            background: var(--border-color);
            top: 30px;
        }

        .process-item:nth-child(odd) .process-content::before {
            left: -20px;
        }

        .process-item:nth-child(even) .process-content::before {
            right: -20px;
        }

        @media (max-width: 767px) {
            .process-content::before {
                left: -30px !important;
                right: auto !important;
            }
        }

        .process-content:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .process-number {
            position: absolute;
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            left: 50%;
            top: 20px;
            transform: translateX(-50%);
            z-index: 2;
            box-shadow: 0 0 0 6px var(--bg-solid);
            color: white;
        }

        @media (max-width: 767px) {
            .process-number {
                left: 30px;
                transform: translateX(-50%);
            }
        }

        .process-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(18px, 2.2vw, 20px);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 5px;
        }

        .process-time {
            color: var(--primary);
            font-size: 13px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .process-text {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
        }

        /* ОБНОВЛЕННЫЙ ИТП БЛОК - обновлен под новый фон */
        .itp-special {
            padding: clamp(60px, 10vh, 100px) 0;
            background: transparent;
            position: relative;
        }

        .itp-container {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(255, 27, 84, 0.04) 100%);
            border: 1px solid rgba(102, 126, 234, 0.15);
            padding: clamp(40px, 5vw, 60px);
            border-radius: var(--radius);
            position: relative;
            overflow: hidden;
        }

        .itp-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 50%, #764ba2 100%);
        }

        .itp-header {
            text-align: center;
            margin-bottom: clamp(40px, 5vw, 50px);
        }

        .itp-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(102, 126, 234, 0.1);
            border: 1px solid rgba(102, 126, 234, 0.3);
            margin-bottom: 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: var(--radius);
        }

        .itp-badge-icon {
            width: 16px;
            height: 16px;
            background: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .itp-badge-icon::after {
            content: '✓';
            color: white;
            font-size: 10px;
            font-weight: bold;
        }

        .itp-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(26px, 3.5vw, 38px);
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .itp-title span {
            background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .itp-subtitle {
            font-size: clamp(15px, 1.8vw, 17px);
            color: var(--text-secondary);
            line-height: 1.5;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Компактная сетка кейсов */
        .itp-features {
            margin-bottom: clamp(40px, 5vw, 50px);
        }

        .itp-features-title {
            font-size: clamp(18px, 2.2vw, 20px);
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 25px;
            text-align: center;
            position: relative;
        }

        .itp-features-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: var(--secondary);
        }

        .itp-features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        @media (max-width: 768px) {
            .itp-features-grid {
                grid-template-columns: 1fr;
            }
        }

        .itp-feature {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            padding: 25px;
            position: relative;
            transition: all 0.3s;
            border-radius: var(--radius);
        }

        .itp-feature:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: rgba(102, 126, 234, 0.3);
        }

        .itp-feature-header {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
        }

        .itp-feature-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(255, 27, 84, 0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border-radius: var(--radius);
        }

        .itp-feature-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--secondary);
            fill: none;
            stroke-width: 2;
        }

        .itp-feature-content {
            flex: 1;
        }

        .itp-feature-title {
            font-size: clamp(15px, 1.8vw, 17px);
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .itp-feature-text {
            font-size: clamp(13px, 1.5vw, 14px);
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* Возможности */
        .itp-capabilities {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            padding: clamp(30px, 4vw, 40px);
            margin-bottom: clamp(40px, 5vw, 50px);
            border-radius: var(--radius);
        }

        .itp-capabilities-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .itp-capabilities-title {
            font-size: clamp(20px, 2.5vw, 24px);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .itp-capabilities-subtitle {
            font-size: clamp(14px, 1.6vw, 15px);
            color: var(--text-secondary);
        }

        .itp-capabilities-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        @media (max-width: 768px) {
            .itp-capabilities-grid {
                grid-template-columns: 1fr;
            }
        }

        .itp-capability {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .itp-capability-number {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--secondary) 0%, #764ba2 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-weight: bold;
            font-size: 14px;
            border-radius: 50%;
        }

        .itp-capability-content {
            flex: 1;
        }

        .itp-capability-title {
            font-size: clamp(15px, 1.8vw, 16px);
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 5px;
        }

        .itp-capability-desc {
            font-size: clamp(13px, 1.5vw, 14px);
            color: var(--text-secondary);
            line-height: 1.4;
        }

        /* CTA секция */
        .itp-cta {
            text-align: center;
            padding: clamp(35px, 4vw, 45px);
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(255, 27, 84, 0.05) 100%);
            border: 1px solid rgba(102, 126, 234, 0.2);
            border-radius: var(--radius);
        }

        .itp-cta-icon {
            width: 60px;
            height: 60px;
            background: white;
            border: 2px solid rgba(102, 126, 234, 0.2);
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .itp-cta-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--secondary);
            fill: none;
            stroke-width: 2;
        }

        .itp-cta-text {
            font-size: clamp(20px, 2.5vw, 24px);
            color: var(--text-primary);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .itp-cta-subtext {
            font-size: clamp(14px, 1.7vw, 16px);
            color: var(--text-secondary);
            margin-bottom: 25px;
        }

        .itp-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: clamp(14px, 1.8vw, 16px) clamp(25px, 3vw, 35px);
            background: linear-gradient(135deg, var(--secondary) 0%, #764ba2 100%);
            color: white;
            border: none;
            font-size: clamp(14px, 1.7vw, 15px);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            border-radius: var(--radius);
        }

        .itp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
        }

        .itp-btn svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }

        /* ДОПОЛНИТЕЛЬНЫЕ УСЛУГИ - обновлены под новый фон */
        .services {
            padding: clamp(60px, 10vh, 100px) 0;
            background: transparent;
            position: relative;
        }

        .services-header {
            text-align: center;
            margin-bottom: clamp(40px, 5vw, 50px);
        }

        .services-cta-wrapper {
            text-align: center;
            margin-top: 40px;
        }

        .services-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 25px;
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            border-radius: var(--radius);
        }

        .services-cta-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 27, 84, 0.3);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            padding: 35px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s;
            height: 100%;
            display: flex;
            flex-direction: column;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 27, 84, 0.05), transparent);
            transition: left 0.6s;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(255, 27, 84, 0.08) 0%, rgba(255, 27, 84, 0.05) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            position: relative;
            border-radius: var(--radius);
        }

        .service-icon svg {
            width: 35px;
            height: 35px;
            stroke: var(--primary);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .service-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
            color: white;
        }

        .service-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(20px, 2.5vw, 22px);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 15px;
        }

        .service-description {
            color: var(--text-secondary);
            font-size: clamp(14px, 1.6vw, 15px);
            line-height: 1.6;
            flex: 1;
        }

        .service-features {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border-light);
        }

        .service-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 5px 0;
            color: var(--text-secondary);
            font-size: 13px;
        }

        .service-feature-icon {
            width: 16px;
            height: 16px;
            background: rgba(81, 207, 102, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .service-feature-icon::after {
            content: '✓';
            color: var(--success);
            font-size: 10px;
            font-weight: bold;
        }

        .service-card.highlight {
            background: linear-gradient(135deg, rgba(255, 27, 84, 0.03) 0%, rgba(102, 126, 234, 0.03) 100%);
            border: 2px solid var(--primary);
        }

        .service-card.highlight .service-icon {
            background: linear-gradient(135deg, rgba(255, 27, 84, 0.15) 0%, rgba(102, 126, 234, 0.15) 100%);
        }

        .service-card.highlight::after {
            content: 'Популярно';
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--primary);
            color: white;
            padding: 5px 40px;
            font-size: 12px;
            font-weight: 600;
            transform: rotate(45deg);
            text-transform: uppercase;
        }
        /* ФОРМА ЗАЯВКИ - уже в нужном стиле */
        .contact-form-section {
            padding: clamp(60px, 10vh, 100px) 0;
            background: transparent;
            position: relative;
        }

        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            padding: clamp(40px, 5vw, 60px);
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
        }

        @media (max-width: 768px) {
            .form-container {
                padding: clamp(30px, 4vw, 40px);
            }
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        .form-subtitle {
            font-size: clamp(16px, 2vw, 18px);
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }

        @media (max-width: 576px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        .form-group {
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 500;
        }

        .form-group label span {
            color: var(--primary);
        }

        .form-group label .optional {
            color: var(--text-tertiary);
            font-size: 12px;
            font-weight: 400;
            margin-left: 5px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            color: var(--text-primary);
            font-size: 15px;
            transition: all 0.3s;
            font-family: inherit;
            border-radius: var(--radius);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            background: var(--bg-card);
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 27, 84, 0.1);
        }

        .form-group select {
            cursor: pointer;
        }

        .form-group select option {
            background: var(--bg-card);
            color: var(--text-primary);
        }

        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin: 30px 0;
        }

        .form-checkbox input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            cursor: pointer;
            accent-color: var(--primary);
        }

        .form-checkbox label {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.5;
            cursor: pointer;
        }

        .form-checkbox a {
            color: var(--primary);
            text-decoration: underline;
        }

        .file-upload {
            position: relative;
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: var(--bg-secondary);
            border: 2px dashed var(--border-color);
            cursor: pointer;
            transition: all 0.3s;
            border-radius: var(--radius);
        }

        .file-upload:hover {
            border-color: var(--primary);
            background: rgba(255, 27, 84, 0.03);
        }

        .file-upload input[type="file"] {
            position: absolute;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .file-upload-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 27, 84, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 20px;
            border-radius: var(--radius);
        }

        .file-upload-text {
            flex: 1;
        }

        .file-upload-title {
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: 3px;
        }

        .file-upload-subtitle {
            color: var(--text-tertiary);
            font-size: 13px;
        }

        .form-submit-btn {
            width: 100%;
            padding: 18px 40px;
            background: var(--primary);
            color: white;
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 30px;
            border-radius: var(--radius);
        }

        .form-submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(255, 27, 84, 0.3);
        }

        .form-note {
            text-align: center;
            margin-top: 20px;
            color: var(--text-secondary);
            font-size: 14px;
        }

        .form-note-highlight {
            color: var(--primary);
            font-weight: 600;
        }

        /* ФУТЕР */
        .footer {
            padding: clamp(40px, 6vw, 60px) 0 clamp(20px, 3vw, 30px);
            background: var(--text-primary);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            color: white;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        .footer-column h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }

        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: 900;
            margin-bottom: 15px;
            color: white;
        }

        .footer-logo-go {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7) !important;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .footer-links a:hover {
            color: var(--primary-light) !important;
            transform: translateX(5px);
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        .footer-contact-icon {
            width: 20px;
            height: 20px;
            background: rgba(255, 27, 84, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--primary-light);
            font-size: 12px;
            border-radius: var(--radius);
        }

        .footer-contact-text {
            flex: 1;
        }

        .footer-contact-text a {
            color: rgba(255, 255, 255, 0.9) !important;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-contact-text a:hover {
            color: var(--primary-light) !important;
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.6) !important;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s;
            cursor: pointer;
        }

        .footer-bottom-links a:hover {
            color: var(--primary-light) !important;
        }

        @media (max-width: 768px) {
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Popup - обновлен под новый фон */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            transition: opacity 0.3s;
            padding: 20px;
        }

        .popup-overlay.active {
            display: flex;
            opacity: 1;
        }

        .popup {
            background: var(--bg-card);
            border: 1px solid var(--border-light);
            padding: clamp(30px, 5vw, 50px);
            max-width: 550px;
            width: 100%;
            position: relative;
            transform: scale(0.8);
            transition: transform 0.3s;
            max-height: 90vh;
            overflow-y: auto;
            border-radius: var(--radius);
            box-shadow: var(--shadow-xl);
        }

        @media (max-width: 576px) {
            .popup {
                padding: clamp(25px, 4vw, 35px);
            }
        }

        .popup-overlay.active .popup {
            transform: scale(1);
        }

        .popup-close {
            position: absolute;
            top: clamp(15px, 2vw, 20px);
            right: clamp(15px, 2vw, 20px);
            width: clamp(35px, 5vw, 40px);
            height: clamp(35px, 5vw, 40px);
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-tertiary);
            font-size: clamp(18px, 2.5vw, 20px);
            transition: all 0.3s;
            border-radius: 50%;
        }

        .popup-close:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
            transform: rotate(90deg);
        }

        .popup h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(22px, 4vw, 28px);
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-primary);
            padding-right: 40px;
        }

        .popup-subtitle {
            color: var(--text-secondary);
            margin-bottom: clamp(20px, 3vw, 30px);
            font-size: clamp(14px, 1.8vw, 15px);
            line-height: 1.5;
        }

        .form-submit {
            width: 100%;
            padding: clamp(14px, 2vw, 16px);
            background: var(--primary);
            color: white;
            border: none;
            font-size: clamp(15px, 2vw, 16px);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: clamp(15px, 2vw, 20px);
            border-radius: var(--radius);
        }

        .form-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 27, 84, 0.4);
        }

        /* Utility classes */
        .d-none { display: none !important; }
        .d-block { display: block !important; }
        
        @media (min-width: 576px) {
            .d-sm-none { display: none !important; }
            .d-sm-block { display: block !important; }
        }
        
        @media (min-width: 768px) {
            .d-md-none { display: none !important; }
            .d-md-block { display: block !important; }
        }
        
        @media (min-width: 992px) {
            .d-lg-none { display: none !important; }
            .d-lg-block { display: block !important; }
        }

        /* Дополнительная адаптация для планшетов */
        @media (min-width: 768px) and (max-width: 991px) {
            .hero-buttons {
                flex-direction: row;
                justify-content: center;
            }
            
            .btn {
                padding: 16px 30px;
            }
            
            .product-card {
                margin-bottom: 30px;
            }
            
            .advantage-card {
                padding: 35px;
            }
        }

        /* Адаптация для больших экранов */
        @media (min-width: 1920px) {
            .container {
                max-width: 1400px;
            }
            
            h1 {
                font-size: 52px;
            }
            
            .hero-subtitle {
                font-size: 20px;
            }
            
            .section-title {
                font-size: 46px;
            }
        }

        /* Фикс для iOS Safari */
        @supports (-webkit-touch-callout: none) {
            .hero {
                min-height: -webkit-fill-available;
            }
        }

        /* Печать */
        @media print {
            .header,
            .footer,
            .scroll-indicator,
            .mobile-menu,
            .popup-overlay {
                display: none !important;
            }
            
            body {
                background: white;
                color: black;
            }
        }

        /* Стили для уведомления об отправке */
        .notification {
            position: fixed;
            top: 100px;
            right: 20px;
            padding: 20px 30px;
            background: white;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-xl);
            border-radius: var(--radius);
            z-index: 3000;
            transform: translateX(400px);
            transition: transform 0.3s;
            max-width: 350px;
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification.success {
            border-left: 4px solid var(--success);
        }

        .notification.error {
            border-left: 4px solid var(--primary);
        }

        .notification-title {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--text-primary);
        }

        .notification-message {
            font-size: 14px;
            color: var(--text-secondary);
        }

        /* Lightbox для слайдеров преимуществ */
        .advantage-lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            cursor: pointer;
            animation: fadeIn 0.3s;
        }

        .advantage-lightbox.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .advantage-lightbox-image {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            animation: zoomIn 0.3s;
        }

        .advantage-lightbox-close {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 50%;
        }

        .advantage-lightbox-close:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: rotate(90deg);
        }

        .advantage-lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 50%;
        }

        .advantage-lightbox-nav:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

        .advantage-lightbox-prev {
            left: 30px;
        }

        .advantage-lightbox-next {
            right: 30px;
        }
