        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');
        
        :root {
            /* Основные цвета - светлая тема */
            --bg-primary: #F7F8FA;
            --bg-secondary: rgba(255, 255, 255, 0.9);
            --text-primary: #3c4052;
            --text-secondary: rgba(74, 79, 101, 0.85);
            --text-tertiary: rgba(74, 79, 101, 0.45);
            --border-light: rgba(0, 0, 0, 0.06);
            --border-medium: rgba(0, 0, 0, 0.12);
            
            /* Акцентные цвета */
            --accent-primary: 74, 79, 101;
            --accent-gold: rgb(181, 105, 62);
            --accent-gold-light: rgb(161, 85, 42);
            --accent-blue: #7EB6E3;
            --accent-blue-light: #65A9DD;
            --accent-green: #4CAF50;
            --row-hover: rgba(0, 0, 0, 0.02);
            
            /* Градиенты */
            --gradient-primary: linear-gradient(135deg, rgb(181, 105, 62) 0%, rgb(161, 85, 42) 100%);
            --gradient-blue: linear-gradient(135deg, #7EB6E3 0%, #65A9DD 100%);
            --gradient-green: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
            --gradient-subtle: linear-gradient(135deg, rgba(181, 105, 62, 0.05) 0%, rgba(181, 105, 62, 0.02) 100%);
            --gradient-blue-subtle: linear-gradient(180deg, rgba(126, 182, 227, 0.05) 0%, rgba(126, 182, 227, 0) 100%);
            
            /* Анимации */
            --ease-premium: cubic-bezier(0.33, 1, 0.68, 1);
            --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
        }

        body.night-mode {
            --bg-primary: #0e1116;
            --bg-secondary: rgba(26, 26, 31, 0.95);
            --text-primary: rgba(255, 255, 255, 0.95);
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-tertiary: rgba(255, 255, 255, 0.45);
            --border-light: rgba(255, 255, 255, 0.1);
            --border-medium: rgba(255, 255, 255, 0.15);
            --accent-primary: 255, 255, 255;
            --row-hover: rgba(255, 255, 255, 0.03);
            --gradient-subtle: linear-gradient(135deg, rgba(181, 105, 62, 0.08) 0%, rgba(181, 105, 62, 0.03) 100%);
            --gradient-blue-subtle: linear-gradient(180deg, rgba(126, 182, 227, 0.08) 0%, rgba(126, 182, 227, 0) 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            -webkit-font-smoothing: antialiased;
            background: var(--bg-primary);
            color: var(--text-primary);
            min-height: 100vh;
            transition: background 0.4s ease, color 0.3s ease;
        }

        /* Заголовок страницы */
        .page-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: var(--bg-primary);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 60px;
            border-bottom: 1px solid var(--border-light);
            transition: background 0.3s ease;
        }

        .header-logo {
            width: 80px;
            height: 40px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .header-logo:hover {
            opacity: 1;
        }

        .header-logo svg {
            width: 100%;
            height: 100%;
        }

        /* Переключатель темы */
        .theme-toggle {
            width: 72px;
            height: 36px;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(20px) saturate(150%);
            -webkit-backdrop-filter: blur(20px) saturate(150%);
            border-radius: 36px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 
                0 4px 16px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .theme-toggle:hover {
            transform: translateY(-1px);
            box-shadow: 
                0 6px 20px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        .theme-toggle.night-mode {
            background: linear-gradient(135deg, rgba(20, 20, 35, 0.4) 0%, rgba(40, 40, 70, 0.3) 100%);
            border-color: rgba(100, 120, 255, 0.15);
            box-shadow: 
                0 4px 16px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(100, 120, 255, 0.05);
        }

        .toggle-slider {
            position: absolute;
            top: 50%;
            left: 4px;
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform: translateY(-50%);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        .theme-toggle.night-mode .toggle-slider {
            transform: translateX(36px) translateY(-50%);
            background: linear-gradient(135deg, #2a2a3e 0%, #1e1e2e 100%);
        }

        .sun-icon, .moon-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.4s ease;
        }

        .sun-icon {
            width: 18px;
            height: 18px;
            opacity: 1;
        }

        .theme-toggle.night-mode .sun-icon {
            opacity: 0;
            transform: translate(-50%, -50%) rotate(180deg) scale(0.5);
        }

        .moon-icon {
            width: 14px;
            height: 14px;
            opacity: 0;
            transform: translate(-50%, -50%) rotate(-180deg) scale(0.5);
        }

        .theme-toggle.night-mode .moon-icon {
            opacity: 1;
            transform: translate(-50%, -50%) rotate(0deg) scale(1);
        }

        /* Основной контейнер */
        .page-container {
            padding-top: 60px;
            min-height: 100vh;
            background: var(--bg-primary);
        }

        /* Hero секция */
        .hero-section {
            position: relative;
            padding: 80px 60px;
            text-align: center;
            overflow: hidden;
            background: var(--gradient-subtle);
        }

        .hero-bg-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.03;
            background-image: 
                radial-gradient(circle at 25% 25%, var(--accent-primary) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, var(--accent-secondary) 0%, transparent 50%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(-30px, -30px) rotate(1deg); }
            66% { transform: translate(30px, -20px) rotate(-1deg); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-label {
            display: inline-block;
            padding: 8px 20px;
            background: var(--gradient-primary);
            color: white;
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border-radius: 20px;
            margin-bottom: 24px;
            opacity: 0;
            animation: fadeInDown 0.8s ease forwards;
        }

        .hero-title {
            font-size: clamp(40px, 6vw, 72px);
            font-weight: 200;
            letter-spacing: -0.03em;
            line-height: 1.1;
            color: var(--text-primary);
            margin-bottom: 32px;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.2s forwards;
        }

        .hero-description {
            font-size: clamp(16px, 2vw, 20px);
            line-height: 1.6;
            color: var(--text-secondary);
            margin-bottom: 48px;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.4s forwards;
        }

        /* Статистика */
        .stats-row {
            display: flex;
            justify-content: center;
            gap: 60px;
            padding-top: 20px;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.6s forwards;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 600;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Секция схемы парковки */
        .parking-section {
            padding: 0px 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* SVG схема */
        .parking-svg-container {
            width: 100%;
			margin-top: 60px;
            margin-bottom: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .parking-svg-container img {
            width: 100%;
            max-width: 1200px;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        /* Информационные карточки */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 60px;
        }

        .info-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 28px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
            transform: translateY(-100%);
            transition: transform 0.3s ease;
        }

        .info-card.green::before {
            background: var(--gradient-green);
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .info-card:hover::before {
            transform: translateY(0);
        }

        body.night-mode .info-card {
            background: rgba(255, 255, 255, 0.03);
        }

        .info-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-blue);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .info-card.green .info-icon {
            background: var(--gradient-blue);
        }

        .info-icon svg {
            width: 24px;
            height: 24px;
            stroke: white;
            stroke-width: 2;
            fill: none;
        }

        .info-title {
            font-size: 18px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .info-description {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Особенности парковки */
        .features-section {
            background: var(--gradient-subtle);
            padding: 60px;
            border-radius: 20px;
            margin-bottom: 60px;
        }

        .features-title {
            font-size: 32px;
            font-weight: 300;
            text-align: center;
            margin-bottom: 40px;
            color: var(--text-primary);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .feature-item {
            display: flex;
            align-items: start;
            gap: 16px;
        }

        .feature-check {
            width: 24px;
            height: 24px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

		.feature-check svg {
			width: 14px;
			height: 14px;
			stroke: white;
			stroke-width: 3;
			fill: none;
		}

        .feature-text {
            flex: 1;
        }

        .feature-title {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .feature-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* EV зарядки секция */
        .ev-section {
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(76, 175, 80, 0.02));
            border: 1px solid rgba(76, 175, 80, 0.2);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }

        body.night-mode .ev-section {
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.03));
        }

        .ev-badge {
            position: absolute;
            top: 30px;
            right: 30px;
            background: var(--gradient-green);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .ev-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .ev-text h3 {
            font-size: 28px;
            font-weight: 400;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .ev-text p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .ev-specs {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .ev-spec {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ev-spec-icon {
            width: 20px;
            height: 20px;
            color: var(--accent-green);
        }

        .ev-spec-text {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .ev-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .ev-icon-large {
            width: 200px;
            height: 200px;
            background: var(--gradient-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 3s ease-in-out infinite;
            box-shadow: 0 20px 40px rgba(76, 175, 80, 0.2);
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .ev-icon-large svg {
            width: 100px;
            height: 100px;
            stroke: white;
            stroke-width: 2;
            fill: none;
        }

        /* Тарифы */
        .tariffs-section {
            margin-bottom: 60px;
        }

        .tariffs-title {
            font-size: 32px;
            font-weight: 300;
            text-align: center;
            margin-bottom: 40px;
            color: var(--text-primary);
        }

        .tariffs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .tariff-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .tariff-card.featured {
            border-color: var(--accent-blue);
            transform: scale(1.05);
            box-shadow: 0 10px 40px rgba(126, 182, 227, 0.2);
        }

        .tariff-card.featured::before {
            content: 'Популярный';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-blue);
            color: white;
            padding: 4px 16px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
        }

        body.night-mode .tariff-card {
            background: rgba(255, 255, 255, 0.03);
        }

        .tariff-period {
            font-size: 14px;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 12px;
        }

        .tariff-price {
            font-size: 42px;
            font-weight: 600;
            background: var(--gradient-blue);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .tariff-unit {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .tariff-features {
            list-style: none;
            padding: 20px 0;
            border-top: 1px solid var(--border-light);
        }

        .tariff-features li {
            padding: 8px 0;
            font-size: 14px;
            color: var(--text-secondary);
        }

        /* Мобильные стили */
        .site-header {
            display: none;
        }

        @media (max-width: 1200px) {
            .info-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .site-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                height: 60px;
                padding: 0 20px;
                background: var(--bg-primary);
                border-bottom: 1px solid var(--border-light);
                z-index: 1000;
            }

            body:not(.night-mode) .site-header {
                background: #E8EBF0;
            }

            .mobile-logo {
                width: 48px;
                height: 24px;
                opacity: 0.9;
            }
            
            .mobile-logo svg {
                width: 100%;
                height: 100%;
            }

            .burger {
                margin-left: auto;
            }

            .page-header {
                display: none;
            }

            .main-navigation {
                display: none;
            }

            .page-container {
                padding-top: 60px;
            }

            .hero-section {
                padding: 60px 20px;
            }

            .stats-row {
                flex-direction: column;
                gap: 30px;
            }

            .parking-section {
                padding: 40px 20px;
            }

            .info-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .ev-content {
                grid-template-columns: 1fr;
            }

            .tariffs-grid {
                grid-template-columns: 1fr;
            }

            .tariff-card.featured {
                transform: scale(1);
            }

            .theme-toggle-mobile {
                position: fixed;
                top: 16px;
                right: 80px;
                z-index: 1001;
                width: 55px;
                height: 28px;
            }

            .theme-toggle-mobile .toggle-slider {
                width: 22px;
                height: 22px;
                left: 3px;
            }

            .theme-toggle-mobile.night-mode .toggle-slider {
                transform: translateX(25px) translateY(-50%);
            }
        }

        .mobile-header-logo {
            width: 52px;
            height: 26px;
            opacity: 0.85;
            transition: opacity 0.3s ease;
        }

        .mobile-header-logo:hover {
            opacity: 1;
        }

        .site-header__brand {
            padding-top: 5px;
        }