        /* ПРЕМИАЛЬНАЯ ЦВЕТОВАЯ СХЕМА */
        :root {
            /* Основные цвета - премиальная палитра (улучшенная) */
            --primary-color: #1a4d7a;
            --primary-light: #2d7fb8;
            --primary-dark: #0f2d4a;
            --accent-color: #c9a961;
            --accent-light: #e5c98a;
            --accent-dark: #a0853f;
            
            /* Дополнительные цвета (улучшенные) */
            --dark-color: #1a1a2e;
            --light-bg: #f8f9fa;
            --cream-bg: #faf8f3;
            --white: #FFFFFF;
            --gold: #d4af37;
            --gold-light: #f4e4bc;
            --border-color: rgba(26, 77, 122, 0.15);
            
            /* Текстовые цвета (улучшенные для читаемости) */
            --text-dark: #1a1a2e;
            --text-medium: #4a5568;
            --text-light: #718096;
            
            /* Градиенты - премиальные (улучшенные) */
            --gradient-primary: linear-gradient(135deg, #1a4d7a 0%, #2d7fb8 50%, #1a4d7a 100%);
            --gradient-accent: linear-gradient(135deg, #c9a961 0%, #e5c98a 50%, #c9a961 100%);
            --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%);
            --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
            --gradient-luxury: linear-gradient(135deg, #1a4d7a 0%, #c9a961 100%);
            --gradient-soft: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(26, 77, 122, 0.1) 100%);
            
            /* Тени - более глубокие для премиального вида (улучшенные) */
            --shadow-sm: 0 2px 8px rgba(26, 77, 122, 0.1);
            --shadow-md: 0 4px 16px rgba(26, 77, 122, 0.15);
            --shadow-lg: 0 8px 32px rgba(26, 77, 122, 0.2);
            --shadow-xl: 0 12px 48px rgba(26, 77, 122, 0.25);
            --shadow-2xl: 0 20px 64px rgba(26, 77, 122, 0.3);
            --shadow-gold: 0 4px 20px rgba(201, 169, 97, 0.35);
            
            /* Анимации */
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body, p, span, div, a, li, td, th {
            font-family: 'TT Norms', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'TT Norms', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
            font-smooth: always;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Анимации из первого файла */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .animate-fadeInUp {
            animation: fadeInUp 0.8s ease-out;
        }

        .animate-pulse {
            animation: pulse 2s infinite;
        }

        .animate-float {
            animation: float 3s ease-in-out infinite;
        }

        /* Заголовки */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .janus-brand {
            color: var(--accent-color);
            font-weight: 700;
        }

        /* Кнопки из первого файла */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .btn:after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .btn:hover:after {
            left: 100%;
        }

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

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

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

        .btn-secondary:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-3px);
        }

        .btn-large {
            padding: 20px 40px;
            font-size: 1.1rem;
        }

        .btn-block {
            width: 100%;
        }

        /* Header из второго варианта */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            z-index: 1000;
            padding: 0;
            border-bottom: 1px solid rgba(58, 123, 158, 0.1);
            transform: translateZ(0);
            will-change: transform;

        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;            
            gap: 20px;

        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform var(--transition-normal);
            will-change: transform;
            max-width: 100px;
        }

        .logo:hover {
            transform: translateY(-2px);
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: bold;
        }

        .main-nav {
           /* display: flex;
            align-items: center;*/
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 18px;
            margin-right: 25px;
            flex-wrap: nowrap;
            white-space: nowrap;
        }

        .nav-links li {
            flex-shrink: 0;
            white-space: nowrap;
        }


        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            padding: 5px 0;
            position: relative;
            text-wrap: nowrap;
            white-space: nowrap;

        }

        .nav-links a:hover {
            color: var(--accent-color);
        }

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

        .nav-links a:hover::after {
            width: 100%;
        }

        .header-phone {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-color);
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);justify-content: end;
                        flex-shrink: 0;
            white-space: nowrap;
            font-size: 0.95rem;

        }

        .header-phone:hover {
            color: var(--accent-color);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
        }

        /* USP Banner из первого файла */
        .usp-banner {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 10px 0;
            font-size: 0.9rem;
        }

        .usp-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

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

        .usp-icon {
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        /* Hero Section из второго варианта */
        .hero {
            background: linear-gradient(135deg, rgba(26, 77, 122, 0.9) 0%, rgba(15, 45, 74, 0.85) 100%), 
                        url('/images/fon.jpg') center/cover;
            padding: 180px 0 100px;
            color: var(--white);
            position: relative;
            overflow: hidden;
                        background-attachment: fixed;
        }
        
        @media (prefers-reduced-motion: reduce) {
            .hero {
                background-attachment: scroll;
            }

        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--white);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.95;
            line-height: 1.6;
        }

        .hero-usp {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }

        .hero-usp-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        /* Счетчик из первого файла */
        .counter-widget {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 15px 25px;
            margin: 30px auto;
            max-width: 300px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .counter-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--white);
            text-align: center;
            display: block;
        }

        .counter-text {
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Видео секция */
        .video-section {
            background: var(--light-bg);
            padding: 80px 0;
            position: relative;
        }

        .video-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: var(--shadow-xl);
            background: var(--dark-color);
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Таймер акции из первого файла */
        .timer-container {
            background: var(--gradient-accent);
            color: var(--white);
            border-radius: 15px;
            padding: 20px;
            margin: 30px 0;
            text-align: center;
            animation: pulse 3s infinite;
            box-shadow: var(--shadow-lg);
        }

        .timer-container:hover {
            animation: none;
            transform: scale(1.02);
        }

        .timer-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .timer-display {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .timer-unit {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .timer-value {
            font-size: 2rem;
            font-weight: 800;
            background: rgba(255, 255, 255, 0.2);
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            margin-bottom: 5px;
        }

        .timer-label {
            font-size: 0.8rem;
            opacity: 0.9;
        }

        /* Секции */
        section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 20px;
            color: var(--dark-color);
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-medium);
            max-width: 800px;
            margin: 0 auto 40px;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Секция "О диагностике" */
        .about-section {
            background: var(--white);
            padding: 100px 0;
        }

        .about-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .about-text h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-top: 40px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .about-text h3:first-child {
            margin-top: 0;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 25px;
        }

                /* Новый дизайн карточек возможностей диагностики */
        .capabilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
            max-width: 1200px;

            margin-left: auto;
            margin-right: auto;
        }

        .capability-card {
            background: var(--white);
            border-radius: 15px;
            padding: 25px;
            box-shadow: var(--shadow-sm);
            border: 2px solid rgba(201, 169, 97, 0.15);
            transition: all var(--transition-normal);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .capability-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform var(--transition-normal);
        }

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

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

        .capability-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 28px;
            margin-bottom: 20px;
            box-shadow: var(--shadow-md);
            flex-shrink: 0;
        }

        .capability-content {
            flex: 1;
            width: 100%;
        }

        .capability-content h4 {
            font-size: 1.15rem;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: 700;
            line-height: 1.3;
        }

        .capability-content p {
            font-size: 0.95rem;
            color: var(--text-medium);
            line-height: 1.6;
            margin: 0;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }


        .goals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .goal-card {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: all var(--transition-normal);
            border: 2px solid transparent;
        }

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

        .goal-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: var(--gradient-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 30px;
        }

        .goal-card h4 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .goal-card p {
            color: var(--text-medium);
            font-size: 1rem;
            margin: 0;
        }

       
        /* Новый дизайн карточек результатов диагностики */
        .results-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
            max-width: 1200px;

            margin-left: auto;
            margin-right: auto;
        }

        .result-item-card {
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow-md);



            border: 2px solid rgba(26, 77, 122, 0.1);
            transition: all var(--transition-normal);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .result-item-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform var(--transition-normal);
        }

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

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

        .result-item-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 32px;
            margin-bottom: 20px;
            box-shadow: var(--shadow-lg);
            flex-shrink: 0;
        }

        .result-item-content {




            flex: 1;
            width: 100%;
        }

        .result-item-content h4 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 12px;
            font-weight: 700;
            line-height: 1.3;
        }

        .result-item-content p {
            font-size: 1rem;
            color: var(--text-medium);
            line-height: 1.7;
            margin: 0;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        /* Промо-секция (переосмысленный блок со скидкой) */


        /* Промо-секция (переосмысленный блок со скидкой) */
        .promo-section {
            background: var(--gradient-luxury);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .promo-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
            pointer-events: none;
        }

        .promo-container {
            position: relative;
            z-index: 1;
        }

        .promo-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            color: var(--white);
        }

        .promo-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 10px 25px;
            border-radius: 50px;
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 0.95rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .promo-badge i {
            color: var(--gold);
        }

        .promo-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--white);
            font-weight: 800;
            line-height: 1.2;
        }

        .promo-highlight {
            color: var(--gold-light);
            text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
        }

        .promo-description {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .promo-benefits {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }

        .promo-benefit {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .promo-benefit i {
            color: var(--gold-light);
        }

        .promo-timer {
            margin-bottom: 40px;
        }

        .promo-timer-text {
            font-size: 1.1rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .promo-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .promo-cta .btn-secondary {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: var(--white);
        }

        .promo-cta .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: var(--white);
        }

        /* Факты из второго варианта */
        .facts-section {
            background-color: var(--light-bg);
        }

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

        .fact-card {
            background: var(--white);
            padding: 40px 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
        }

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

        .fact-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-accent);
        }

        .fact-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: var(--gradient-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 30px;
        }

        .fact-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 10px;
            line-height: 1;
        }

        .fact-text {
            color: var(--text-medium);
            font-size: 1rem;
        }

        /* Команда из второго варианта */
        .team-section {
            background-color: var(--white);
        }

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

        .team-member {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .member-photo {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        .member-info {
            padding: 25px;
        }

        .member-name {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .member-position {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .member-experience {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-medium);
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .member-specialization {
            color: var(--text-dark);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .member-education {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid var(--border-color);
            color: var(--text-medium);
            font-size: 0.9rem;
        }

        /* Блок результатов */
        .results-section {
            background: var(--white);
            padding: 100px 0;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .result-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .result-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform var(--transition-normal);
        }

        .result-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--accent-color);
        }

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

        .result-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: var(--gradient-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 35px;
            box-shadow: var(--shadow-gold);
            transition: all var(--transition-normal);
        }

        .result-card:hover .result-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: var(--shadow-xl);
        }

        .result-card h3 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .result-card p {
            color: var(--text-medium);
            font-size: 1rem;
            line-height: 1.7;
            margin: 0;
        }

        .results-cta {
            text-align: center;
            margin-top: 50px;
        }

        /* Отзывы из первого файла (улучшенные) */
        .testimonials {
            background: var(--light-bg);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .testimonials-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 0 50px;
        }

        .testimonials-slider-wrapper {
            position: relative;
            padding: 0 50px;
        }

        .testimonials-slider {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding: 15px 0 30px;
            position: relative;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .testimonials-slider::-webkit-scrollbar {
            display: none;
        }

        .testimonial-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 42px;
            height: 42px;
            background: var(--gradient-accent);
            border: none;
            border-radius: 50%;
            color: var(--white);
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
            opacity: 0.9;
        }

        .testimonial-nav-btn:hover {
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
            box-shadow: var(--shadow-xl);
        }

        .testimonial-nav-btn.prev {
            left: 0;
        }

        .testimonial-nav-btn.next {
            right: 0;
        }

        .testimonial-nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .testimonial-card {
            min-width: 320px;
            max-width: 320px;
            background: var(--white);
            padding: 35px 30px;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            scroll-snap-align: start;
            border: 2px solid transparent;
            transition: all var(--transition-normal);
            position: relative;
            flex-shrink: 0;
            opacity: 0.85;
        }

        .testimonial-card.active {
            opacity: 1;
            transform: scale(1.02);
            box-shadow: var(--shadow-xl);
        }

        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: 15px;
            left: 25px;
            font-size: 4.5rem;
            color: var(--accent-light);
            font-family: 'TT Norms', sans-serif;
            line-height: 1;
            opacity: 0.3;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-2xl);
            border-color: var(--accent-color);
        }

        .testimonial-text {
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 25px;
            font-style: italic;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 20px;
            border-top: 2px solid var(--accent-light);
        }

        .author-avatar {
            width: 55px;
            height: 55px;
            background: var(--gradient-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--white);
            box-shadow: var(--shadow-sm);
            flex-shrink: 0;
        }

        .author-info h4 {
            margin-bottom: 5px;
            color: var(--dark-color);
            font-size: 1.1rem;
        }

        .author-info p {
            color: var(--text-medium);
            font-size: 0.9rem;
        }

        .testimonials-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 35px;
            flex-wrap: wrap;
        }

        .testimonial-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--accent-light);
            cursor: pointer;
            transition: all var(--transition-normal);
            position: relative;
        }

        .testimonial-dot::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 20px;
            height: 20px;
            background: var(--accent-light);
            border-radius: 50%;
            opacity: 0.3;
            transition: transform var(--transition-normal);
        }

        .testimonial-dot:hover::before {
            transform: translate(-50%, -50%) scale(1);
        }

        .testimonial-dot.active {
            background: var(--gradient-accent);
            transform: scale(1.4);
            box-shadow: 0 0 0 4px rgba(244, 162, 97, 0.2);
        }

        .testimonial-dot.active::before {
            transform: translate(-50%, -50%) scale(1.5);
        }

        /* FAQ из первого файла */
        .faq-section {
            background: var(--white);
        }

        .faq-grid {
            max-width: 900px;
            margin: 40px auto 0;
        }

        .faq-item {
            background: var(--white);
            border: 2px solid rgba(26, 77, 122, 0.15);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all var(--transition-normal);
            box-shadow: var(--shadow-sm);
            position: relative;
        }

        .faq-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--gradient-accent);
            transform: scaleY(0);
            transition: transform var(--transition-normal);
        }

        .faq-item.active {
            border-color: var(--accent-color);
            box-shadow: var(--shadow-lg);
            transform: translateX(5px);
        }

        .faq-item.active::before {
            transform: scaleY(1);
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--dark-color);
            font-size: 1.1rem;
            transition: all var(--transition-normal);
            background: linear-gradient(135deg, rgba(201, 169, 97, 0.03) 0%, rgba(26, 77, 122, 0.03) 100%);
            position: relative;
        }

        .faq-question:hover {
            color: var(--accent-color);
            background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(26, 77, 122, 0.08) 100%);
        }

        .faq-question::before {
            content: '?';
            position: absolute;
            left: 15px;
            width: 30px;
            height: 30px;
            background: var(--gradient-accent);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .faq-question span {
            margin-left: 40px;
        }

        .faq-question i {
            color: var(--accent-color);
            transition: transform var(--transition-normal);
            font-size: 1rem;
            background: rgba(201, 169, 97, 0.1);
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
            background: var(--gradient-accent);
            color: var(--white);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            padding: 0 30px;
            background: var(--white);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 20px 30px 25px;
        }

        .faq-answer p {
            color: var(--text-medium);
            font-size: 1rem;
            line-height: 1.8;
            margin: 0;
        }

        /* Подарки из второго варианта */
        .gift-section {
            background: var(--cream-bg);
        }

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

        .gift-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

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

        .gift-header {
            padding: 30px 30px 20px;
            text-align: center;
            background: var(--gradient-primary);
            color: var(--white);
        }

        .gift-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .gift-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .gift-body {
            padding: 25px 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .gift-features {
            list-style: none;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .gift-features li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-medium);
        }

        .gift-features i {
            color: var(--accent-color);
        }

        /* Форма записи из первого файла */
        .smart-form {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
            border-radius: 20px;
            padding: 50px;
            box-shadow: var(--shadow-xl);
            transition: all var(--transition-normal);
            border: 2px solid rgba(201, 169, 97, 0.2);
            position: relative;
            overflow: hidden;
        }

        .smart-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-accent);
        }

        .smart-form:hover {
            box-shadow: var(--shadow-2xl);
            transform: translateY(-3px);
            border-color: var(--accent-color);
        }

        .form-group {
            margin-bottom: 30px;
            position: relative;
        }

        .form-label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--primary-color);
            font-size: 1rem;
            position: relative;
            padding-left: 25px;
        }

        .form-label::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 15px;
            height: 15px;
            background: var(--gradient-accent);
            border-radius: 3px;
            opacity: 0.7;
        }

        .form-control {
            width: 100%;
            padding: 18px 20px;
            border: 2px solid rgba(26, 77, 122, 0.2);
            border-radius: 12px;
            font-size: 1rem;
            transition: all var(--transition-normal);
            background: var(--white);
            color: var(--text-dark);
            font-family: inherit;
        }

        .form-control::placeholder {
            color: var(--text-light);
            opacity: 0.7;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.15), var(--shadow-md);
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.98);
        }

        .form-control:hover {
            border-color: var(--primary-light);
            box-shadow: var(--shadow-sm);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }

        /* Уведомление формы */
        .form-notification {
            margin-top: 25px;
            padding: 20px;
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            border-radius: 15px;
            color: var(--white);
            animation: slideInDown 0.3s ease;
            box-shadow: var(--shadow-lg);
        }

        .form-notification .notification-content {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .form-notification .notification-content i {
            font-size: 2rem;
            flex-shrink: 0;
        }

        .form-notification strong {
            display: block;
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .form-notification p {
            margin: 0;
            opacity: 0.95;
        }

        .form-select {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            background: var(--white);
            cursor: pointer;
        }

        /* Контакты из первого файла */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }

        .contact-info h3 {
            color: var(--dark-color);
            margin-bottom: 25px;
            font-size: 1.8rem;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-details p {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            color: var(--text-dark);
            font-size: 1rem;
        }

        .contact-details p a {
            color: var(--text-dark);
            text-decoration: none;
            transition: all var(--transition-normal);
            border-bottom: 1px solid transparent;
        }

        .contact-details p a:hover {
            color: var(--accent-color);
            border-bottom-color: var(--accent-color);
        }

        .contact-details i {
            color: var(--accent-color);
            font-size: 1.2rem;
            width: 20px;
            text-align: center;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: var(--gradient-accent);
            color: var(--white);
            border-radius: 50%;
            text-decoration: none;
            transition: all var(--transition-normal);
            font-size: 1.2rem;
        }

        .social-link:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: var(--shadow-lg);
        }

        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            height: 400px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Футер из второго варианта */
        footer {
            background: var(--gradient-dark);
            color: var(--white);
            padding: 60px 0 20px;
        }

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

        .footer-column h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--accent-color);
        }

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

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }

        .social-links-footer {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links-footer a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }

        .social-links-footer a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .legal-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 10px;
            font-size: 0.8rem;
        }

        /* Мобильное CTA из первого файла */
        .mobile-cta-fixed {
                        display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            pointer-events: none !important;

        }

        .cta-container {
            background: var(--white);
            border-radius: 50px;
            padding: 10px;
            box-shadow: var(--shadow-xl);
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .cta-button {
            padding: 12px 25px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all var(--transition-normal);
        }

        .cta-button.primary {
            background: var(--gradient-accent);
            color: var(--white);
        }

        .cta-button.secondary {
            background: var(--light-bg);
            color: var(--primary-color);
        }

        /* Progress Bar из первого файла */
        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: transparent;
            z-index: 1002;
        }

        .progress-bar {
            height: 100%;
            background: var(--gradient-accent);
            width: 0%;
            transition: width 0.3s ease;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
                        .nav-links {
                gap: 15px;
                margin-right: 15px;
            }
            
            .nav-links a {
                font-size: 0.85rem;
            }
            
            .header-phone {
                font-size: 0.9rem;
            }



            .about-features,
            .results-list {
                max-width: 100%;
            }
        }

        @media (min-width: 1400px) {
            .about-features,
            .results-list {
                max-width: 1000px;
            }
        }
        /* Гарантия что меню в одну строку на всех ПК экранах */
        @media (min-width: 769px) {
            .nav-links {
                flex-wrap: nowrap !important;
                white-space: nowrap !important;
            }
            
            .nav-links li {
                flex-shrink: 0 !important;
                white-space: nowrap !important;
            }
            
            .nav-links a {
                white-space: nowrap !important;
            }
            
            .main-nav {
                flex-wrap: nowrap !important;
            }
            
            .header-content {
                flex-wrap: nowrap !important;
            }
        }

        /* Скрытый SEO контент */
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .about-section {
                padding: 60px 0;
            }
            
            .about-text h3 {
                font-size: 1.5rem;
            }
            
            .goals-grid {
                grid-template-columns: 1fr;
            }
            
            .promo-title {
                font-size: 2rem;
            }
            
            .promo-description {
                font-size: 1rem;
            }
            
            .promo-benefits {
                flex-direction: column;
                align-items: stretch;
            }
            
            .promo-cta {
                flex-direction: column;
            }
            
            .results-grid {
                grid-template-columns: 1fr;
            }
            
            .results-section {
                padding: 60px 0;
            }

            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--white);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 40px;
                transition: var(--transition);
                box-shadow: var(--shadow-lg);
            }

            .main-nav.active {
                left: 0;
            }

            .nav-links {
                flex-direction: column;
                gap: 25px;
                margin-right: 0;
                margin-bottom: 30px;
                text-align: center;
            }

            .header-phone {
                margin-top: 20px;
            }

            .facts-grid,
            .team-grid,
            .gift-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .map-container {
                height: 300px;
            }

            .testimonials-slider-wrapper {
                padding: 0 40px;
            }

            .testimonial-nav-btn {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }

            .testimonial-card {
                min-width: 280px;
                max-width: 280px;
                padding: 30px 25px;
            }

            .smart-form {
                padding: 30px 20px;
            }

            .form-group {
                margin-bottom: 20px;
            }

            .form-control {
                padding: 15px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .cta-container {
                flex-direction: column;
                width: 90vw;
            }

            .video-wrapper {
                border-radius: 15px;
            }

                        .capabilities-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .results-cards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .capability-card,
            .result-item-card {
                padding: 20px 15px;
            }

            .capability-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
                margin-bottom: 15px;
            }
            
            .result-item-icon {
                width: 70px;
                height: 70px;
                font-size: 28px;
                margin-bottom: 15px;
            }

            .capability-content h4 {
                font-size: 1.05rem;
                margin-bottom: 8px;
            }
            
            .result-item-content h4 {
                font-size: 1.1rem;
                margin-bottom: 10px;
            }

            .capability-content p {
                font-size: 0.9rem;
                line-height: 1.5;
            }
            
            .result-item-content p {
                font-size: 0.95rem;
                line-height: 1.6;
            }



            .faq-item {
                margin-bottom: 15px;
            }

            .faq-question {
                padding: 20px 25px;
                font-size: 1rem;
            }

            .faq-answer {
                padding: 0 25px;
            }

            .faq-item.active .faq-answer {
                padding: 15px 25px 20px;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 1.5rem;
            }

            .timer-display {
                gap: 10px;
            }
            
            .timer-value {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .timer-container {
                padding: 15px;
            }

            .timer-title {
                font-size: 1rem;
                margin-bottom: 10px;
            }

            .usp-container {
                flex-direction: column;
                gap: 10px;
            }

            .video-section {
                padding: 50px 0;
            }

            .video-wrapper {
                border-radius: 12px;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }
        }

        /* Виджеты в углах экрана из первого файла */
        .widget-container {
            position: fixed;
            z-index: 998;
            pointer-events: none;
        }

        .yclients-widget-wrapper {
            position: fixed !important;
            bottom: 20px !important;
            right: 20px !important;
            z-index: 999 !important;
            pointer-events: none;
        }


        .yclients-widget-wrapper > *,
        .yclients-widget-wrapper iframe,
        .yclients-widget-wrapper div {
            pointer-events: all !important;
            border-radius: 15px !important;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
        }

        #chatovkrkxjrjjsnaqlrovozomwmtp {
            position: fixed !important;
            bottom: 20px !important;
            left: 20px !important;
            z-index: 998 !important;
        }

        @media (max-width: 768px) {
                        .yclients-widget-wrapper {
                bottom: 20px !important;
                right: 20px !important;
            }

            #chatovkrkxjrjjsnaqlrovozomwmtp {
                bottom: 20px !important;
                left: 20px !important;
            }

        }

        /* Utility Classes */
        .text-center { text-align: center; }
        .text-primary { color: var(--primary-color); }
        .text-medium { color: var(--text-medium); }
        .mb-1 { margin-bottom: 10px; }
        .mb-2 { margin-bottom: 20px; }
        .mb-3 { margin-bottom: 30px; }
        .mb-4 { margin-bottom: 40px; }
        .mt-1 { margin-top: 10px; }
        .mt-2 { margin-top: 20px; }
        .mt-3 { margin-top: 30px; }
        .mt-4 { margin-top: 40px; }
        .hidden { display: none; }
        .visible { display: block; }
  .w-100{width:100%}
  .text-right{text-align:right;}
  
  .yButton.right {
  left: 30px !important;
}