        /* Обновленные цвета бренда */
        :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;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }


        /* Hero Section */
        .hero {
            /*background: url('/images/fon1.png') no-repeat center center/cover;
			opacity: 1;
			background: url('https://images.unsplash.com/photo-1575505586569-646b2ca898fc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1586&q=80') no-repeat center center/cover;*/
            height: 70vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: rgba(0,0,0,0.5);*/
			background-color: var(--light);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            color: var(--secondary);
            /*max-width: 1024px;*/
			padding: 20px;
			width: 100%;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
			text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
			padding: 0 20px;
			word-break: break-word;
			hyphens: auto;
        }
		
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        /* Hero top */
        .hero-top {
			text-align: center;
            gap: 20px;
            margin: 20px 0;
        }
		
        /* Hero stats */
        .hero-stats {
            display: flex;
            gap: 20px;
            margin: 20px 0;
			justify-content: space-evenly;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--highlight);
        }

        .stat-label {
            font-size: 0.9rem;
        }

        /* CTA buttons */
        .cta-buttons {
            display: flex;
            gap: 15px;
            margin: 20px 0;
			justify-content: space-evenly;
        }

        .btn-large {
            padding: 1rem 2rem;
            font-size: 1.1rem;
        }

        /* Trust badges */
        .trust-badges {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .trust-badges img {
            height: 40px;
            width: auto;
        }

        /* 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;
        }

        /* Features */
        .features {
            padding: 4rem 0;
        }

        .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;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-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: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
			text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .highlight-card {
            border: 2px solid var(--highlight);
            position: relative;
        }

        .feature-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;
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .feature-link {
            display: inline-block;
            margin-top: 1rem;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        /* Success stories */
        .success-stories {
            padding: 4rem 0;
            background: var(--light);
        }

        .story-carousel {
            margin: 2rem 0;
        }

        .story {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }

        blockquote {
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 1.5rem;
        }

        blockquote::before {
            content: '"';
            position: absolute;
            left: 0;
            top: 0;
            font-size: 3rem;
            color: var(--primary);
            opacity: 0.3;
            line-height: 1;
        }

        .story-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .story-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .cta-section {
            text-align: center;
            margin-top: 2rem;
        }

        .btn-accent {
            background: var(--highlight);
            color: var(--dark);
        }

        /* CTA */
        .cta {
            background: var(--primary);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .highlight-text {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .offer-list {
            list-style: none;
            max-width: 500px;
            margin: 0 auto 2rem;
            text-align: left;
        }

        .offer-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .offer-list i {
            position: absolute;
            left: 0;
            color: var(--highlight);
        }

        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 2rem 0;
        }

        .timer-item {
            text-align: center;
        }

        .timer-item span:first-child {
            display: block;
            font-size: 2rem;
            font-weight: bold;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .footer-col {
            margin-bottom: 1.5rem;
        }

        .footer-logo {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .footer-logo i {
            color: var(--accent);
        }

        .app-download p {
            margin: 1rem 0 0.5rem;
        }

        .app-buttons {
            display: flex;
            gap: 10px;
        }

        .app-buttons img {
            height: 40px;
            width: auto;
        }

        .footer-col h3 {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 0.8rem;
        }

        .footer-col a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-col a:hover {
            color: var(--accent);
        }

        .footer-col i {
            margin-right: 8px;
            width: 20px;
            text-align: center;
        }

        .newsletter-form {
            display: flex;
            margin-bottom: 1rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.8rem;
            border: none;
            border-radius: 5px 0 0 5px;
        }

        .newsletter-form button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0 1rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 1rem;
        }

        .social-links a {
            color: white;
            font-size: 1.2rem;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.8rem 0.5rem;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-primary {
			border: 2px solid var(--highlight);
            /*background: var(--highlight);*/
            color: black;
        }

        .btn-primary:hover {
            background: white;
			color: var(--primary);
        }

        .btn-outline {
            //border: 2px solid white;
            color: white;
        }

        .btn-outline:hover {
            background: white;
            color: var(--primary);
        }

        .btn-begin {
            border: 2px solid white;
			/*background: var(--accent);*/
            color: white;
        }

        .btn-begin:hover {
            background: white;
            color: var(--primary);
        }
		
        .btn-small {
            padding: 0.5rem 1rem;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
		
/* 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: 18px;
			border-radius: 8px;
			color: gray;
        }
		.Seldrevo select option{
            padding: 0.1rem 0.1rem;
			font-size: 18px;
        }
		/*
		.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;
        }
		
		.images-icon img{
			margin-left: 1rem;
			margin-right: 1rem;
		}