        /* Обновленные цвета бренда */
        :root {
            --primary: #3a7ca5;  /* Глубокий синий */
            --secondary: #2f6690; /* Темно-синий */
            --accent: #5cb85c;   /* Зеленый - символ роста */
            --light: #f8f9fa;
            --dark: #343a40;
            --highlight: #ffc107; /* Акцентный желтый */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
			font-family: "TT Hoves Pro Variable", sans-serif;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
			line-height: 1.6;
        }

        /* Header */
        header {
            /*background: linear-gradient(135deg, var(--primary), var(--secondary));*/
			background: white;
            color: blue; /* лого и аккаунт (текст)*/
            padding: 0 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
			width: 100%;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
			width: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 2rem;
            font-weight: 700;
        }

        .logo i {
            color: var(--accent);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        nav a {
            color: black; /* меню */
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        nav a:hover {
            color: var(--accent);
        }

        .auth-buttons .btn {
            margin: 0 10px;
        }

        /* Quick benefits */
        .quick-benefits {
            padding: 3rem 0;
            background-color: white;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .benefit-card {
            text-align: center;
            padding: 1.5rem;
            border-radius: 8px;
            background: var(--light);
        }

        .benefit-card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        /* featuresdemo */
        .featuresdemo {
            padding: 1rem 0;
        }
		
		.featuresdemo-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
			line-height: 1.6;
        }

        .featuresdemo-section-title {
            text-align: center;
            margin-bottom: 1rem;
            font-size: 2.2rem;
            color: var(--secondary);
        }

        .featuresdemo-section-subtitle {
            text-align: center;
            margin-bottom: 3rem;
            color: var(--dark);
            opacity: 0.8;
        }

        .featuresdemo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            /*gap: 2rem;*/
			justify-items: center;
        }

        .featuresdemo-card {
            background: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            opacity: 1;
            transform: translateY(20px);
            transition: all 0.5s ease;
			text-align: center;
			width: 600px;
        }

        /*.featuresdemo-card:hover {
            transform: translateY(-10px);
        }*/

        .featuresdemo-highlight-card {
            border: 2px solid var(--highlight);
            position: relative;
        }

        .featuresdemo-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: var(--highlight);
            color: var(--dark);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .featuresdemo-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .featuresdemo-link {
            display: inline-block;
            margin-top: 1rem;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        /* Buttons-menu */
        .btn-menu {
            display: inline-block;
            padding: 0.8rem 0.5rem;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
		
		.btn-menu-accent {
            background: var(--highlight);
            color: var(--dark);
        }
		
        .btn-menu-primary {
			/*border: 2px solid white;*/
            /*background: var(--accent);*/
            color: white;
        }

        .btn-menu-primary:hover {
            background: white;
			color: var(--primary);
        }

        .btn-menu-outline {
            /*border: 2px solid white;*/
            color: black;/* выход */
        }

        .btn-menu-outline:hover {
            background: white;
            color: var(--primary);
        }

        .btn-menu-begin {
            border: 2px solid white;
			/*background: var(--accent);*/
            color: white;
        }

        .btn-menu-begin:hover {
            background: white;
            color: var(--primary);
        }
		
        .btn-menu-small {
            padding: 0.5rem 1rem;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
		
		/* Buttons-demo */
        .btn-demo {
            display: inline-block;
            padding: 0.8rem 0.5rem;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

		.btn-demo-accent {
            background: var(--highlight);
            color: var(--dark);
        }
		
/* Responsive styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        flex: 1 1 120px;
        min-width: 120px;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
        display: none;
    }
    
    nav.active {
        display: block;
    }
    
    .auth-buttons {
        margin-left: auto;
    }
    
    .mobile-menu-btn {
        display: block;
        margin-left: 15px;
    }

    /* Hero section adjustments */
    .hero {
        height: auto;
        padding: 100px 0;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero p.highlight-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        justify-content: space-around;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin-bottom: 10px;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    /* Features section */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Quick benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* Success stories */
    .story-author {
        flex-direction: column;
        text-align: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .offer-list {
        padding-left: 0;
    }
}

        /* Mobile Menu - исправленные стили */
        .mobile-menu-btn {
            display: none; /* По умолчанию скрываем */
            background: none;
            border: none;
            color: black;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 10px;
        }

        /* Показываем кнопку меню только на мобильных */
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            
            .mobile-menu-btn {
                display: block; /* Показываем кнопку */
                order: 2; /* Размещаем после логотипа */
                margin-left: auto; /* Сдвигаем вправо */
            }
            
            nav {
                display: none;
                width: 100%;
                order: 4; /* Размещаем под всем */
                padding-top: 15px;
            }
            
            nav.active {
                display: block;
                animation: fadeIn 0.3s ease;
            }
            
            nav ul {
                flex-direction: column;
                gap: 10px;
            }
            
            .auth-buttons {
                margin-left: auto;
                order: 3; /* Размещаем рядом с кнопкой меню */
                display: flex;
				flex-direction: column;
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
		
        /* Seldrevo */
        .Seldrevo {
            padding: 0.1rem 0;
        }
		.Seldrevo select{
            padding: 0.1rem 0.1rem;
			font-size: 16px;
			border-radius: 8px;
			color: gray;
        }
		.Seldrevo select option{
            padding: 0.1rem 0.1rem;
			font-size: 16px;
        }
		/*
		.Seldrevo form{
            padding: 0.1rem 0.1rem;
			font-size: 18px;
			border-radius: 8px;
			color: gray;
			width: 200px;
        }
		*/
        .section-title {
            text-align: center;
            margin-bottom: 1rem;
            font-size: 2.2rem;
            color: var(--secondary);
        }

        .section-subtitle {
            text-align: center;
            margin-bottom: 3rem;
            color: var(--dark);
            opacity: 0.8;
        }

        .Seldrevo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
			justify-items: center;
        }

        .Seldrevo-card {
            background: white;
            border-radius: 8px;
            padding: 0.2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            opacity: 1;
            transform: translateY(5px);
			text-align: center;
			width: 400px;
        }

        .Seldrevo-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: var(--highlight);
            color: var(--dark);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .Seldrevo-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .Seldrevo-link {
            display: inline-block;
            margin-top: 1rem;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }
		
		.demo-images-icon img{
			margin-left: 1rem;
			margin-right: 1rem;
		}