        :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: #7EB6E3;
            --accent-secondary: #65A9DD;
            --gradient-primary: linear-gradient(135deg, #7EB6E3 0%, #65A9DD 100%);
            --gradient-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);
            --gradient-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;
            -moz-osx-font-smoothing: grayscale;
            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);
        }

        .sun-icon svg, .moon-icon svg {
            width: 100%;
            height: 100%;
        }

        .sun-icon svg circle {
            fill: #FFC107;
        }

        .sun-icon svg line {
            stroke: #FFC107;
            stroke-width: 2;
            stroke-linecap: round;
        }

        .moon-icon svg {
            fill: #b8b8d0;
        }

        /* Основной контейнер страницы */
        .page-container {
            padding-top: 0px;
            min-height: 100vh;
            background: var(--bg-primary);
        }

        /* Hero секция - чистый градиент без изображений */
        .hero-section {
            position: relative;
            height: 420px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
            margin-top: 60px;
        }

        body.night-mode .hero-section {
            background: linear-gradient(135deg, 
                rgba(126, 182, 227, 0.15) 0%, 
                rgba(101, 169, 221, 0.1) 100%);
            border-bottom: 1px solid rgba(126, 182, 227, 0.2);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 0 40px;
            animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .hero-title {
            font-size: clamp(42px, 6vw, 56px);
            font-weight: 200;
            color: white;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        body.night-mode .hero-title {
            color: var(--text-primary);
        }

        .hero-description {
            font-size: 19px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 300;
            max-width: 700px;
            margin: 0 auto;
        }

        body.night-mode .hero-description {
            color: var(--text-secondary);
        }

        /* Компактная статистика */
        .stats-bar {
            background: white;
            padding: 48px 0;
            margin: -40px 0 0px;
            position: relative;
            z-index: 10;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        body.night-mode .stats-bar {
            background: var(--bg-secondary);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .stats-bar-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .stat-compact {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .stat-value {
            font-size: 32px;
            font-weight: 600;
            letter-spacing: -0.02em;
            color: var(--accent-primary);
        }

        .stat-text {
            font-size: 14px;
            font-weight: 400;
            color: var(--text-secondary);
            max-width: 100px;
            line-height: 1.3;
        }

        /* Контейнер услуг */
        .services-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 60px;
        }

        /* Категории услуг */
        .service-category {
            margin-bottom: 100px;
        }

        .service-category:last-child {
            margin-bottom: 0;
        }

        .category-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .category-title {
            font-size: 42px;
            font-weight: 300;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            margin-bottom: 12px;
        }

        .category-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            font-weight: 400;
            margin-top: 8px;
        }

        /* Сетка услуг */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 32px;
        }

        /* Премиальная карточка услуги */
        .service-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            padding: 48px;
            position: relative;
            transition: all 0.4s var(--ease-premium);
            cursor: default;
            display: flex;
            flex-direction: column;
            min-height: 320px;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: translateY(-100%);
            transition: transform 0.4s var(--ease-premium);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 48px rgba(126, 182, 227, 0.15);
            border-color: var(--accent-secondary);
        }

        .service-card:hover::before {
            transform: translateY(0);
        }

        .service-card.featured {
            background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(126, 182, 227, 0.05) 100%);
            border-color: var(--accent-secondary);
        }

        body.night-mode .service-card {
            background: rgba(255, 255, 255, 0.03);
        }

        body.night-mode .service-card.featured {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(126, 182, 227, 0.03) 100%);
        }

        /* Альтернативная сетка для основных услуг */
        .services-grid.primary-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        @media (max-width: 1200px) {
            .services-grid.primary-grid {
                grid-template-columns: 1fr;
            }
        }

        .service-icon-wrapper {
            width: 56px;
            height: 56px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 32px;
            position: relative;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }

        .service-icon-wrapper::after {
            content: '';
            position: absolute;
            inset: -4px;
            background: var(--gradient-primary);
            border-radius: 18px;
            opacity: 0.2;
            z-index: -1;
            transition: opacity 0.3s ease;
        }

        .service-card:hover .service-icon-wrapper::after {
            opacity: 0.3;
        }

        .service-icon {
            width: 28px;
            height: 28px;
            stroke: white;
            fill: none;
            stroke-width: 1.5;
        }

        .service-name {
            font-size: 26px;
            font-weight: 500;
            letter-spacing: -0.01em;
            color: var(--text-primary);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .service-description {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: auto;
            font-weight: 400;
        }

        .service-features {
            list-style: none;
            margin-top: 24px;
            padding: 0;
        }

        .service-feature {
            position: relative;
            padding-left: 28px;
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 12px;
            line-height: 1.6;
        }

        .service-feature::before {
            content: '•';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--accent-primary);
            font-size: 20px;
            line-height: 1.2;
        }

        .service-badge {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--accent-primary);
            font-weight: 500;
        }

        .service-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent-primary);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.2); }
        }

        /* Кнопка обратного звонка */
        .call-me-btn {
            position: fixed;
			bottom: 120px;
			right: 24px;
			width: 64px;
			height: 64px;
            padding: 0;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            color: #fff;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.4s var(--ease-premium);
            box-shadow: 
                0 10px 30px rgba(101, 169, 221, 0.3),
                0 20px 60px rgba(101, 169, 221, 0.15);
            z-index: 100;
            animation: breathe 4s ease-in-out infinite;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes breathe {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .call-me-btn::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-primary), transparent, var(--accent-secondary));
            opacity: 0;
            animation: rotateGlow 3s linear infinite;
            z-index: -1;
        }

        @keyframes rotateGlow {
            0% { transform: rotate(0deg); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: rotate(360deg); opacity: 0; }
        }

        .call-me-btn svg {
            width: 28px;
            height: 28px;
            fill: none;
            stroke: #fff;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: all 0.3s ease;
        }

        .call-me-btn:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 
                0 15px 40px rgba(101, 169, 221, 0.4),
                0 25px 70px rgba(101, 169, 221, 0.2);
        }

        /* Модальное окно */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s var(--ease-premium);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-container {
            width: 90%;
            max-width: 400px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
            border-radius: 18px;
            padding: 32px 28px 28px;
            position: relative;
            transform: scale(0.9) translateY(30px);
            transition: all 0.4s var(--ease-premium);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.2),
                0 10px 30px rgba(0, 0, 0, 0.1);
        }

        body.night-mode .modal-container {
            background: linear-gradient(135deg, rgba(20, 20, 30, 0.98), rgba(30, 30, 40, 0.95));
        }

        .modal-overlay.active .modal-container {
            transform: scale(1) translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: transparent;
            border: 1px solid rgba(0, 0, 0, 0.15);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s var(--ease-premium);
        }

        .modal-close:hover {
            background: rgba(0, 0, 0, 0.08);
            transform: rotate(90deg);
        }

        .modal-close svg {
            width: 14px;
            height: 14px;
            stroke: #1a1a1a;
            stroke-width: 1.5;
        }

        body.night-mode .modal-close {
            border-color: rgba(255, 255, 255, 0.1);
        }

        body.night-mode .modal-close:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        body.night-mode .modal-close svg {
            stroke: #fff;
        }

        .modal-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .modal-title {
            font-size: 26px;
            font-weight: 400;
            color: #0d0d0d;
            margin-bottom: 4px;
            letter-spacing: -0.5px;
        }

        body.night-mode .modal-title {
            color: #ffffff;
            font-weight: 300;
        }

        .modal-subtitle {
            font-size: 12px;
            color: #2a2a2a;
            letter-spacing: 0.2px;
            font-weight: 400;
        }

        body.night-mode .modal-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 300;
        }

        .modal-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .form-group {
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 12px 16px;
            font-size: 13px;
            font-weight: 400;
            color: #1a1a1a;
            background: rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.12);
            border-radius: 8px;
            transition: all 0.3s var(--ease-premium);
            outline: none;
        }

        body.night-mode .form-input {
            background: rgba(255, 255, 255, 0.03);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.08);
            font-weight: 300;
        }

        .form-input:focus {
            background: #fff;
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(101, 169, 221, 0.1);
        }

        body.night-mode .form-input:focus {
            background: rgba(255, 255, 255, 0.05);
        }

        .form-input::placeholder {
            color: #6a6a6a;
            font-weight: 300;
        }

        body.night-mode .form-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .form-label {
            position: absolute;
            top: -8px;
            left: 12px;
            padding: 0 4px;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 0.2px;
            color: var(--accent-primary);
            background: linear-gradient(to bottom, transparent 50%, white 50%);
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s var(--ease-premium);
            pointer-events: none;
        }

        body.night-mode .form-label {
            background: linear-gradient(to bottom, transparent 50%, rgba(20, 20, 30, 0.98) 50%);
        }

        .form-input:focus + .form-label,
        .form-input:not(:placeholder-shown) + .form-label {
            opacity: 1;
            transform: translateY(0);
        }

        .form-agreements {
            margin: 12px 0 6px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .agreement-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .agreement-checkbox {
            width: 16px;
            height: 16px;
            min-width: 16px;
            cursor: pointer;
            position: relative;
            appearance: none;
            background: rgba(0, 0, 0, 0.03);
            border: 2px solid rgba(0, 0, 0, 0.2);
            border-radius: 3px;
            transition: all 0.3s var(--ease-premium);
        }

        body.night-mode .agreement-checkbox {
            background: rgba(255, 255, 255, 0.02);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .agreement-checkbox:hover {
            border-color: var(--accent-primary);
        }

        .agreement-checkbox:checked {
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            border-color: var(--accent-primary);
        }

        .agreement-checkbox:checked::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 3px;
            height: 6px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: translate(-50%, -60%) rotate(45deg);
        }

        .agreement-checkbox:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(101, 169, 221, 0.1);
        }

        .agreement-label {
            font-size: 10px;
            line-height: 1.3;
            color: #2a2a2a;
            font-weight: 400;
            cursor: pointer;
            user-select: none;
        }

        body.night-mode .agreement-label {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 300;
        }

        .agreement-link {
            color: var(--accent-primary);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
            display: inline;
            font-weight: 500;
        }

        .agreement-link:hover {
            color: var(--accent-secondary);
            border-bottom-color: var(--accent-secondary);
        }

        .agreement-checkbox.error {
            border-color: #e74c3c;
            animation: shake 0.5s ease;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        .recaptcha-container {
            margin: 12px 0;
            display: flex;
            justify-content: center;
            transform: scale(0.85);
            transform-origin: center;
        }

        .form-submit {
            padding: 14px 28px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            color: #fff;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.6px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s var(--ease-premium);
            margin-top: 2px;
            position: relative;
            overflow: hidden;
        }

        .form-submit::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .form-submit:hover::before {
            width: 400px;
            height: 400px;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(101, 169, 221, 0.3);
        }

        .form-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .form-message {
            margin-top: 10px;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 400;
            text-align: center;
            display: none;
        }

        .form-message.success {
            background: rgba(76, 175, 80, 0.1);
            color: #2e7d32;
            border: 1px solid rgba(76, 175, 80, 0.2);
            display: block;
        }

        .form-message.error {
            background: rgba(244, 67, 54, 0.1);
            color: #c62828;
            border: 1px solid rgba(244, 67, 54, 0.2);
            display: block;
        }

        /* Премиальные анимации */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stats-bar {
            animation: slideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card {
            opacity: 0;
            transform: scale(0.95) translateY(30px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .service-card.visible {
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        /* Задержка для каскадного эффекта */
        .service-card:nth-child(1) { transition-delay: 0.1s; }
        .service-card:nth-child(2) { transition-delay: 0.2s; }
        .service-card:nth-child(3) { transition-delay: 0.3s; }

        /* Мобильные стили */
        .site-header {
            display: none;
        }

        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            }
            
            .services-grid.primary-grid {
                grid-template-columns: 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: 0px;
            }

            .hero-section {
                height: 350px;
                padding: 60px 20px 40px;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-description {
                font-size: 16px;
            }

            .stats-bar {
                padding: 36px 0;
                margin: -30px 0 60px;
            }

            .stats-bar-container {
                gap: 30px;
                padding: 0 20px;
            }

            .stat-compact {
                flex-direction: column;
                text-align: center;
                gap: 4px;
                flex: 1 1 40%;
                min-width: 120px;
            }

            .stat-value {
                font-size: 28px;
            }

            .stat-text {
                font-size: 12px;
                max-width: none;
            }

            .services-wrapper {
                padding: 40px 20px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-card {
                padding: 32px 24px;
                min-height: auto;
            }

            .service-name {
                font-size: 22px;
            }

            .category-title {
                font-size: 32px;
            }

            .call-me-btn {
                right: 20px;
                bottom: 90px;
				width: 56px;
				height: 56px;
            }

            .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;
		}