/* Объединённые стили GeniTree (menu, _menu2, kak-eto-rabotaet) */

:root {
    --primary: #3a7ca5;
    --secondary: #2f6690;
    --accent: #5cb85c;
    --light: #f8f9fa;
    --dark: #343a40;
    --highlight: #ffc107;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "TT Hoves Pro Variable", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.6;
}

/* Header & Menu */
header {
    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-around;
    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 {
font-size: 1.2rem;
}
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 { display: flex; align-items: center; }
.auth-buttons .btn { margin: 0 10px; }

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
}

/* Hero Section */
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--light);
}
.hero-content {
    position: relative;
    z-index: 1;
    color: var(--secondary);
    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 { 
	text-align: center; 
	gap: 20px; 
	margin: 10px 0; 
}

/* 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-demo */
.featuresdemo {
    padding: 1rem 0;
}
.featuresdemo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.6;
}
.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: 1rem;
    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: 800px;*/
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}
.feature-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}
.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: 1.5rem;
}
.feature-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 2rem;
}
.cta-section h2 { font-size: 2rem; margin-bottom: 1.5rem; }
/* 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;
}

/* CTA buttons */
.cta-buttons {
	display: flex;
	gap: 15px;
	margin: 20px 0;
	justify-content: space-evenly;
}

.btn-large {
	padding: 1rem 2rem;
	font-size: 1.1rem;
}
.btn-accent {
    background: var(--highlight);
    color: var(--dark);
}
/* Buttons */
.btn, .btn-menu {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
/*
.btn-primary {
    background: var(--accent);
    color: white;
}
*/
        /* 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;
        }
		
.btn-demo-accent {
    background: var(--highlight);
    color: var(--dark);
}

.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-gallery {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
/*
.btn-primary:hover { background: #4aae4a; transform: translateY(-2px); }
.btn-large { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-menu-accent { background: var(--highlight); color: var(--dark); }
.btn-menu-primary { color: white; }
.btn-menu-primary:hover { background: white; color: var(--primary); }
.btn-menu-outline { color: black; }
.btn-menu-outline:hover { background: white; color: var(--primary); }
.btn-menu-begin { border: 2px solid white; color: white; }
.btn-menu-begin:hover { background: white; color: var(--primary); }
.btn-menu-small { padding: 0.5rem 1rem; }
*/
        /* 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;
        }}

        /* Seldrevo */
        .Seldrevo {
            padding: 0.1rem 0;
        }
		.Seldrevo select{
            padding: 0.1rem 0.1rem;
			font-size: 13px;
			border-radius: 8px;
			color: gray;
			line-height: 2px;
        }
		.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;
        }
		*/

        .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;
		}
/*		
.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;
}
*/	
.section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: var(--secondary);
    position: relative;
}
.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto 0;
}
.section-subtitle {
    text-align: center;
    margin-bottom: 1rem;
	font-size: 1.5rem;
    color: var(--dark);
    opacity: 0.8;
}

        .steps-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .step {
            display: flex;
            gap: 2rem;
            align-items: flex-start;
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .step:hover {
            transform: translateY(-5px);
        }

        .step-number {
            background: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            flex-shrink: 0;
        }

        .step-content h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
		
		
		
/* 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;
    }
}





/* Mobile Menu - исправленные стили */
.mobile-menu-btn {
	display: none; /* По умолчанию скрываем */
	background: none;
	border: none;
	color: black;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 10px;
}



/* 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;
}
*/

.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;
	width: 5rem;
	height: 5rem;
}
.demo-drevo {
	font-size: 1.6rem;
}