/* Герой секция */
.hero-section {
	display: flex;
	align-items: center;
	gap: 3rem;
	padding: 4rem 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 20px;
	margin-bottom: 3rem;
	padding: 3rem;
}

.hero-content h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.hero-subtitle {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.hero-features {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.feature-badge {
	background: rgba(255, 255, 255, 0.2);
	padding: 0.5rem 1rem;
	border-radius: 25px;
	backdrop-filter: blur(10px);
}

.hero-visual {
	font-size: 4rem;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
}

/* Сетка возможностей */
.features-section {
	margin: 4rem 0;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.feature-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 25px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
	border-left: 4px solid #667eea;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.feature-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.feature-card h3 {
	color: #333;
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.feature-card p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.feature-sublist {
	list-style: none;
	padding: 0;
	margin: 0;
}

.feature-sublist li {
	padding: 0.3rem 0;
	color: #888;
	font-size: 0.9rem;
	position: relative;
	padding-left: 1rem;
}

.feature-sublist li:before {
	content: "•";
	color: #667eea;
	position: absolute;
	left: 0;
}

/* SEO секция */
.seo-section {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	color: white;
	padding: 3rem;
	border-radius: 20px;
	margin: 4rem 0;
}

.seo-section h2 {
	text-align: center;
	margin-bottom: 2rem;
	font-size: 2.2rem;
}

.seo-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}

.seo-item {
	background: rgba(255, 255, 255, 0.1);
	padding: 1.5rem;
	border-radius: 12px;
	backdrop-filter: blur(10px);
}

.seo-item h4 {
	margin-bottom: 0.8rem;
	font-size: 1.1rem;
}

.seo-item p {
	opacity: 0.9;
	font-size: 0.95rem;
	line-height: 1.5;
}

/* Эксклюзивная секция */
.exclusive-section {
	background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
	color: white;
	padding: 3rem;
	border-radius: 20px;
	margin: 4rem 0;
}

.exclusive-list {
	list-style: none;
	margin: 1.5rem 0;
}

.exclusive-list li {
	padding: 0.5rem 0;
	font-size: 1.1rem;
}

.auth-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.btn-primary {
	background: #ff6b6b;
	color: white;
	padding: 1rem 2rem;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: background 0.3s;
}

.btn-primary:hover {
	background: #ff5252;
}

.btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
	padding: 1rem 2rem;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s;
}

.btn-secondary:hover {
	background: white;
	color: #ff7e5f;
}

.welcome-user {
		margin-top: 2rem;
}

.dashboard-link {
	color: #ffeb3b;
	text-decoration: none;
	margin-left: 1rem;
}

.dashboard-link:hover {
	text-decoration: underline;
}

/* Технологии */
.tech-section {
	text-align: center;
	margin: 4rem 0;
}

.tech-stack {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.tech-item {
	background: linear-gradient(45deg, #fa709a 0%, #fee140 100%);
	color: white;
	padding: 1rem 2rem;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.9rem;
}
/* Секция автоматизации */
.automation-section {
	background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
	color: white;
	padding: 3rem;
	border-radius: 20px;
	margin: 4rem 0;
}

.automation-section h2 {
	text-align: center;
	margin-bottom: 2rem;
	font-size: 2.2rem;
}

.automation-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.automation-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: rgba(255, 255, 255, 0.1);
	padding: 1.5rem;
	border-radius: 15px;
	backdrop-filter: blur(10px);
	transition: transform 0.3s ease;
}

.automation-item:hover {
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.15);
}

.automation-icon {
	font-size: 2rem;
	flex-shrink: 0;
}

.automation-content h3 {
	margin-bottom: 0.8rem;
	font-size: 1.2rem;
}

.automation-content p {
	opacity: 0.9;
	line-height: 1.5;
	font-size: 0.95rem;
}