/* Главная страница — продающая структура */

/* Header главной */
.home-header {
	background: #2d3436;
	color: #fff;
	padding: 16px 0;
	box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.home-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}
.home-header__logo {
	font-size: 22px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	letter-spacing: 0.02em;
}
.home-header__logo:hover {
	color: #dfe6e9;
}
.home-header__phone {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
}
.home-header__phone:hover {
	text-decoration: underline;
}
.home-header__nav {
	display: flex;
	gap: 24px;
	align-items: center;
}
.home-header__nav a {
	color: #b2bec3;
	text-decoration: none;
	font-size: 14px;
}
.home-header__nav a:hover {
	color: #fff;
}

/* Hero */
.hero {
	background: linear-gradient(135deg, #2d3436 0%, #404544 50%, #2d3436 100%);
	color: #fff;
	text-align: center;
	padding: 56px 20px 64px;
}
.hero__title {
	font-size: clamp(26px, 4vw, 38px);
	font-weight: bold;
	margin: 0 0 16px;
	line-height: 1.25;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
.hero__subtitle {
	font-size: clamp(15px, 2vw, 18px);
	opacity: 0.9;
	margin: 0 0 28px;
	line-height: 1.5;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}
.hero__cta {
	display: inline-block;
	background: #e17055;
	color: #fff;
	padding: 14px 32px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: background 0.2s, transform 0.15s;
}
.hero__cta:hover {
	background: #d63050;
	transform: translateY(-1px);
}

/* Блок преимуществ */
.benefits {
	padding: 40px 0;
	background: #fff;
	border-bottom: 1px solid #eee;
}
.benefits__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px 48px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.benefit-item {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 260px;
}
.benefit-item__icon {
	width: 48px;
	height: 48px;
	background: #f0f3f5;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
}
.benefit-item__text strong {
	display: block;
	color: #2d3436;
	margin-bottom: 2px;
	font-size: 15px;
}
.benefit-item__text span {
	color: #636e72;
	font-size: 13px;
}

/* Заголовок секции */
.section-title {
	text-align: center;
	font-size: clamp(22px, 3vw, 28px);
	color: #2d3436;
	margin: 0 0 12px;
	font-weight: bold;
}
.section-subtitle {
	text-align: center;
	color: #636e72;
	font-size: 15px;
	margin: 0 0 32px;
}

/* Категории (быстрые ссылки) */
.categories {
	padding: 40px 0;
	background: #f8f9fa;
}
.categories__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.categories__list a {
	display: block;
	padding: 14px 24px;
	background: #fff;
	color: #2d3436;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 500;
	box-shadow: 0 1px 4px rgba(0,0,0,0.08);
	transition: box-shadow 0.2s, color 0.2s;
}
.categories__list a:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.12);
	color: #e17055;
}

/* Секция каталога */
.catalog-section {
	padding: 24px 0 56px;
}
.catalog-section .produkt__title {
	margin-bottom: 8px;
}
.catalog-section .produkt__title:first-of-type {
	font-size: clamp(22px, 3vw, 28px);
}

/* CTA блок */
.cta-block {
	text-align: center;
	padding: 40px 20px;
	background: linear-gradient(135deg, #404544 0%, #2d3436 100%);
	color: #fff;
}
.cta-block__title {
	font-size: 22px;
	margin: 0 0 12px;
	font-weight: 600;
}
.cta-block__phone {
	font-size: 26px;
	font-weight: bold;
	margin: 0;
}
.cta-block__phone a {
	color: #fff;
	text-decoration: none;
}
.cta-block__phone a:hover {
	text-decoration: underline;
}
.cta-block__note {
	font-size: 14px;
	opacity: 0.85;
	margin: 12px 0 0;
}

@media (max-width: 768px) {
	.home-header .container {
		justify-content: center;
		text-align: center;
	}
	.home-header__nav {
		width: 100%;
		justify-content: center;
	}
	.hero {
		padding: 40px 16px 48px;
	}
	.benefits__list {
		gap: 24px;
	}
	.categories__list a {
		padding: 12px 18px;
		font-size: 14px;
	}
}
