        @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: #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);
        }

        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;
            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: 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);
            }
        }

        /* Фильтры категорий */
        .filters-section {
            padding: 40px 60px;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 100px;
            z-index: 50;
            backdrop-filter: blur(20px);
        }

        .filters-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 24px;
            background: var(--bg-primary);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .filter-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .filter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(126, 182, 227, 0.2);
        }

        .filter-btn.active {
            background: var(--gradient-primary);
            color: white;
            border-color: transparent;
        }

        .filter-btn span {
            position: relative;
            z-index: 1;
        }

        /* Контейнер партнеров */
        .partners-section {
            padding: 80px 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Сетка партнеров */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 80px;
        }

        /* Карточка партнера */
        .partner-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .partner-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;
        }

        .partner-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .partner-card:hover::before {
            transform: translateY(0);
        }

        body.night-mode .partner-card {
            background: rgba(255, 255, 255, 0.03);
        }

        body.night-mode .partner-card:hover {
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        /* Логотип партнера */
        .partner-logo {
            width: 100%;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            filter: grayscale(100%) opacity(0.7);
            transition: filter 0.3s ease;
        }

        .partner-card:hover .partner-logo {
            filter: grayscale(0%) opacity(1);
        }

        .partner-logo img {
            max-width: 160px;
            max-height: 50px;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        /* Информация о партнере */
        .partner-name {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .partner-address {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 18px;
        }

        .partner-link {
            font-size: 12px;
            color: var(--accent-primary);
            text-decoration: none;
            font-weight: 500;
            padding: 7px 14px;
            border: 1px solid var(--accent-primary);
            border-radius: 18px;
            transition: all 0.3s ease;
            display: inline-block;
            margin-top: auto;
        }

        .partner-link:hover {
            background: var(--accent-primary);
            color: white;
            transform: scale(1.05);
        }

        /* Кнопка обратного звонка */
        .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;
        }

        /* Мобильные стили */
        .site-header {
            display: none;
        }

        @media (max-width: 1200px) {
            .partners-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: 80px 20px;
            }

            .stats-row {
                flex-direction: column;
                gap: 30px;
            }

            .filters-section {
                padding: 20px;
                top: 60px;
            }

            .partners-section {
                padding: 40px 20px;
            }

            .partners-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .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;
		}