@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

/* Сброс стилей */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Основные стили */
body {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	line-height: 1.6;
	color: #333333;
	background-color: #f5f5f5;
	overflow-x: hidden;
}

html {
	scroll-behavior: smooth;
}

/* Контейнер */
.ha-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Типографика */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	color: #333333;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3rem;
	line-height: 1.2;
}

h2 {
	font-size: 2.5rem;
	line-height: 1.3;
}

h3 {
	font-size: 1.8rem;
	line-height: 1.4;
}

p {
	margin-bottom: 1rem;
	color: #333333;
}

a {
	color: #4a90e2;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #e67e22;
}

/* Кнопки */
.ha-btn {
	display: inline-block;
	padding: 14px 28px;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	font-family: 'Inter', sans-serif;
}

.ha-btn-primary {
	background-color: #4a90e2;
	color: white;
}

.ha-btn-primary:hover {
	background-color: #357abd;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.ha-btn-secondary {
	background-color: #e67e22;
	color: white;
}

.ha-btn-secondary:hover {
	background-color: #d35400;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.ha-btn-outline {
	background: transparent;
	color: #4a90e2;
	border: 2px solid #4a90e2;
}

.ha-btn-outline:hover {
	background-color: #4a90e2;
	color: white;
	transform: translateY(-2px);
}

/* Хедер */
.ha-header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(74, 144, 226, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.ha-header.ha-scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.ha-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.ha-logo {
	font-size: 1.8rem;
	font-weight: 600;
	color: #4a90e2;
	transition: all 0.3s ease;
}

.ha-logo:hover {
	color: #e67e22;
	transform: scale(1.05);
}

.ha-nav {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.ha-nav-link {
	font-weight: 500;
	padding: 0.7rem 1.2rem;
	border-radius: 6px;
	transition: all 0.3s ease;
	position: relative;
	color: #333333;
}

.ha-nav-link:hover,
.ha-nav-link.ha-active {
	background-color: rgba(74, 144, 226, 0.1);
	color: #4a90e2;
}

.ha-nav-link::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #4a90e2, #e67e22);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.ha-nav-link:hover::after,
.ha-nav-link.ha-active::after {
	width: 100%;
}

/* Мобильное меню */
.ha-mobile-toggle {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}

.ha-mobile-toggle span {
	width: 25px;
	height: 3px;
	background: #4a90e2;
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

.ha-mobile-menu {
	position: fixed;
	top: 0;
	left: -350px;
	width: 350px;
	height: 100vh;
	background: white;
	box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
	transition: left 0.4s ease;
	z-index: 1001;
	padding: 2rem;
}

.ha-mobile-menu.ha-active {
	left: 0;
}

.ha-mobile-nav {
	list-style: none;
	margin-top: 4rem;
}

.ha-mobile-nav-link {
	display: block;
	padding: 1.2rem 0;
	border-bottom: 1px solid rgba(74, 144, 226, 0.1);
	font-weight: 500;
	font-size: 1.1rem;
	color: #333333;
	transition: all 0.3s ease;
}

.ha-mobile-nav-link:hover {
	color: #4a90e2;
	padding-left: 1rem;
}

.ha-mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	display: none;
}

.ha-mobile-overlay.ha-active {
	display: block;
}

/* Секции */
.ha-section {
	padding: 80px 0;
}

.ha-section-title {
	text-align: center;
	margin-bottom: 4rem;
}

.ha-section-title h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #333333;
}

.ha-section-title p {
	font-size: 1.2rem;
	color: #666666;
	max-width: 600px;
	margin: 0 auto;
}

/* Hero секция */
.ha-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: linear-gradient(
		135deg,
		rgba(74, 144, 226, 0.1),
		rgba(230, 126, 34, 0.1)
	);
	position: relative;
	overflow: hidden;
}

.ha-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/ha-hero.webp') center/cover;
	opacity: 0.3;
}

.ha-hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	padding: 2rem;
}

.ha-hero h1 {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	color: #333333;
}

.ha-hero p {
	font-size: 1.3rem;
	margin-bottom: 2.5rem;
	color: #666666;
}

.ha-hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Карточки */
.ha-card {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid rgba(74, 144, 226, 0.1);
}

.ha-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ha-feature-card {
	text-align: center;
	padding: 2.5rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid rgba(74, 144, 226, 0.1);
}

.ha-feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ha-feature-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #4a90e2, #e67e22);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.8rem;
	margin: 0 auto 1.5rem;
}

.ha-feature-title {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #333333;
}

.ha-feature-text {
	color: #666666;
	line-height: 1.6;
}

/* Сетка */
.ha-grid {
	display: grid;
	gap: 2rem;
}

.ha-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.ha-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.ha-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Топик карточки */
.ha-topic-card {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid rgba(74, 144, 226, 0.1);
	position: relative;
	overflow: hidden;
}

.ha-topic-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #4a90e2, #e67e22);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.ha-topic-card:hover::before {
	transform: scaleX(1);
}

.ha-topic-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ha-topic-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #4a90e2, #e67e22);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	margin: 0 auto 1rem;
}

.ha-topic-title {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	color: #333333;
}

.ha-topic-text {
	color: #666666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

/* Аккордеон для лайфхаков */
.ha-tip-list {
	max-width: 800px;
	margin: 0 auto;
}

.ha-tip-item {
	background: white;
	border-radius: 8px;
	margin-bottom: 1rem;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(74, 144, 226, 0.1);
}

.ha-tip-question {
	width: 100%;
	padding: 1.5rem;
	background: none;
	border: none;
	text-align: left;
	font-size: 1.1rem;
	font-weight: 600;
	color: #333333;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
}

.ha-tip-question:hover {
	background-color: rgba(74, 144, 226, 0.05);
	color: #4a90e2;
}

.ha-tip-icon {
	transition: transform 0.3s ease;
	color: #4a90e2;
}

.ha-tip-question.ha-active .ha-tip-icon {
	transform: rotate(180deg);
}

.ha-tip-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: rgba(74, 144, 226, 0.02);
}

.ha-tip-answer.ha-active {
	max-height: 1000px;
}

.ha-tip-answer-content {
	padding: 1.5rem;
	color: #666666;
	line-height: 1.6;
}

/* Карточки экспертов */
.ha-expert-card {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid rgba(74, 144, 226, 0.1);
}

.ha-expert-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ha-expert-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, #4a90e2, #e67e22);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2rem;
	overflow: hidden;
}

.ha-expert-photo img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.ha-expert-name {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: #333333;
}

.ha-expert-title {
	color: #4a90e2;
	margin-bottom: 1rem;
	font-weight: 500;
}

.ha-expert-bio {
	color: #666666;
	line-height: 1.6;
	font-size: 0.9rem;
}

/* Формы */
.ha-form {
	margin: 0 auto;
}

.ha-form-group {
	margin-bottom: 1.5rem;
}

.ha-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #333333;
}

.ha-form-input,
.ha-form-textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid rgba(74, 144, 226, 0.2);
	border-radius: 8px;
	font-size: 1rem;
	background: white;
	color: #333333;
	transition: all 0.3s ease;
	font-family: 'Inter', sans-serif;
}

.ha-form-input:focus,
.ha-form-textarea:focus {
	outline: none;
	border-color: #4a90e2;
	box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.ha-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.ha-form-error {
	color: #e74c3c;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: none;
}

.ha-form-error.ha-show {
	display: block;
}

.ha-form-input.ha-error,
.ha-form-textarea.ha-error {
	border-color: #e74c3c;
}

/* Map Section */
.ha-map {
	height: 100%;
	min-height: 400px;
	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.ha-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.ha-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.ha-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* Cookie баннер */
.ha-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-top: 1px solid rgba(74, 144, 226, 0.2);
	box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
	padding: 1.5rem 0;
	z-index: 1000;
	display: none;
}

.ha-cookie-banner.ha-show {
	display: block;
}

.ha-cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}

.ha-cookie-text {
	flex: 1;
	color: #333333;
}

.ha-cookie-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.ha-cookie-link {
	color: #4a90e2;
	text-decoration: underline;
}

/* Футер */
.ha-footer {
	background: #333333;
	color: white;
	padding: 4rem 0 2rem;
}

.ha-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 2rem;
}

.ha-footer-section h3 {
	color: #4a90e2;
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
}

.ha-footer-section p,
.ha-footer-section li {
	color: #cccccc;
	line-height: 1.6;
	margin-bottom: 0.5rem;
}

.ha-footer-section ul {
	list-style: none;
}

.ha-footer-section a {
	color: #cccccc;
	transition: color 0.3s ease;
}

.ha-footer-section a:hover {
	color: #4a90e2;
}

.ha-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #cccccc;
}

.ha-footer-bottom p {
	color: #cccccc;
}

/* Анимации */
.ha-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.ha-fade-in.ha-visible {
	opacity: 1;
	transform: translateY(0);
}

.ha-fade-in-delay {
	transition-delay: 0.3s;
}

/* Страница организации пространства */
.ha-zone-diagram {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	margin-bottom: 2rem;
}

.ha-zone-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	border-radius: 8px;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

.ha-zone-item:hover {
	background-color: rgba(74, 144, 226, 0.05);
}

.ha-zone-color {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	flex-shrink: 0;
}

.ha-zone-color.ha-living {
	background: #4a90e2;
}

.ha-zone-color.ha-kitchen {
	background: #e67e22;
}

.ha-zone-color.ha-bedroom {
	background: #9b59b6;
}

.ha-zone-color.ha-bathroom {
	background: #1abc9c;
}

.ha-zone-title {
	font-weight: 600;
	color: #333333;
	margin-bottom: 0.5rem;
}

.ha-zone-description {
	color: #666666;
	font-size: 0.9rem;
}

.ha-storage-card {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid rgba(74, 144, 226, 0.1);
}

.ha-storage-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ha-storage-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #4a90e2, #e67e22);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.ha-storage-title {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	color: #333333;
}

.ha-storage-text {
	color: #666666;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.ha-storage-price {
	color: #e67e22;
	font-weight: 600;
	font-size: 1.1rem;
}

/* Сравнительная таблица */
.ha-comparison-table {
	background: white;
	border-radius: 12px;
	overflow-x: auto;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	margin-top: 2rem;
}

.ha-comparison-table table {
	width: 100%;
	border-collapse: collapse;
}

.ha-comparison-table th,
.ha-comparison-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.ha-comparison-table th {
	background: rgba(74, 144, 226, 0.1);
	color: #333333;
	font-weight: 600;
}

.ha-comparison-table tr:hover {
	background-color: rgba(74, 144, 226, 0.02);
}

/* Страница уборки */
.ha-daily-check {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.ha-check-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.ha-check-item:last-child {
	border-bottom: none;
}

.ha-check-box {
	width: 24px;
	height: 24px;
	border: 2px solid #4a90e2;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.ha-check-box:hover {
	background-color: rgba(74, 144, 226, 0.1);
}

.ha-check-box.ha-checked {
	background-color: #4a90e2;
	color: white;
}

.ha-check-text {
	flex: 1;
	color: #333333;
}

.ha-check-time {
	color: #666666;
	font-size: 0.9rem;
}

.ha-cleaning-recipe {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	margin-bottom: 2rem;
	border: 1px solid rgba(74, 144, 226, 0.1);
}

.ha-recipe-title {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #333333;
}

.ha-recipe-ingredients {
	margin-bottom: 1.5rem;
}

.ha-recipe-ingredients h4 {
	color: #4a90e2;
	margin-bottom: 0.5rem;
}

.ha-recipe-ingredients ul {
	list-style: none;
}

.ha-recipe-ingredients li {
	padding: 0.3rem 0;
	color: #666666;
	position: relative;
	padding-left: 1.5rem;
}

.ha-recipe-ingredients li::before {
	content: '•';
	color: #e67e22;
	position: absolute;
	left: 0;
}

.ha-recipe-instructions {
	color: #666666;
	line-height: 1.6;
}

.ha-recipe-instructions h4 {
	color: #4a90e2;
	margin-bottom: 0.5rem;
}

/* Годовой план уборки */
.ha-yearly-plan {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	margin-top: 2rem;
}

.ha-plan-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.ha-plan-item {
	padding: 1.5rem;
	border-radius: 8px;
	border: 1px solid rgba(74, 144, 226, 0.1);
	transition: all 0.3s ease;
}

.ha-plan-item:hover {
	background-color: rgba(74, 144, 226, 0.05);
}

.ha-plan-month {
	font-size: 1.1rem;
	font-weight: 600;
	color: #4a90e2;
	margin-bottom: 1rem;
}

.ha-plan-tasks {
	list-style: none;
}

.ha-plan-tasks li {
	padding: 0.3rem 0;
	color: #666666;
	position: relative;
	padding-left: 1.5rem;
	font-size: 0.9rem;
}

.ha-plan-tasks li::before {
	content: '✓';
	color: #e67e22;
	position: absolute;
	left: 0;
}

/* Страница декора */
.ha-renovation-steps {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	margin-bottom: 2rem;
}

.ha-step-item {
	display: flex;
	gap: 1.5rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.ha-step-item:last-child {
	border-bottom: none;
}

.ha-step-number {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #4a90e2, #e67e22);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 600;
	flex-shrink: 0;
}

.ha-step-content {
	flex: 1;
}

.ha-step-title {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: #333333;
}

.ha-step-description {
	color: #666666;
	line-height: 1.6;
}

.ha-step-time {
	color: #e67e22;
	font-size: 0.9rem;
	margin-top: 0.5rem;
}

.ha-budget-card {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid rgba(74, 144, 226, 0.1);
}

.ha-budget-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ha-budget-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #4a90e2, #e67e22);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.ha-budget-title {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	color: #333333;
}

.ha-budget-price {
	color: #e67e22;
	font-weight: 600;
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.ha-budget-text {
	color: #666666;
	line-height: 1.6;
}

/* Тренды фотогалерея */
.ha-trends-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.ha-trend-item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: white;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.ha-trend-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ha-trend-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, #4a90e2, #e67e22);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2rem;
}

.ha-trend-content {
	padding: 1.5rem;
}

.ha-trend-title {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	color: #333333;
}

.ha-trend-description {
	color: #666666;
	line-height: 1.6;
	font-size: 0.9rem;
}

.ha-trend-tag {
	display: inline-block;
	background: rgba(74, 144, 226, 0.1);
	color: #4a90e2;
	padding: 0.3rem 0.8rem;
	border-radius: 15px;
	font-size: 0.8rem;
	margin-top: 1rem;
}

/* Hero для страниц */
.ha-contact-hero {
	padding: 120px 0 80px;
	background: linear-gradient(
		135deg,
		rgba(74, 144, 226, 0.1),
		rgba(230, 126, 34, 0.05)
	);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.ha-contact-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23333333" fill-opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}

.ha-contact-hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	color: #333333;
	position: relative;
	z-index: 1;
}

.ha-contact-hero p {
	font-size: 1.3rem;
	color: #666666;
	position: relative;
	z-index: 1;
}

/* Контактная информация */
.ha-contact-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.ha-contact-info-card {
	background: white;
	padding: 2.5rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid rgba(74, 144, 226, 0.1);
	color: #333333;
}

.ha-contact-info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ha-contact-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #4a90e2, #e67e22);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.8rem;
	margin: 0 auto 1.5rem;
}

.ha-contact-info-card h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #333333;
}

.ha-contact-info-card p {
	color: #666666;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.ha-contact-info-card a {
	color: #4a90e2;
	font-weight: 500;
}

.ha-contact-info-card a:hover {
	color: #e67e22;
}

.ha-contact-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #4a90e2;
	font-weight: 500;
	transition: all 0.3s ease;
}

.ha-contact-link:hover {
	color: #e67e22;
}

/* Форма контактов */
.ha-contact-form-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.ha-contact-form-content h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #333333;
}

.ha-contact-form-content p {
	color: #666666;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.ha-contact-form {
	background: white;
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(74, 144, 226, 0.1);
}

.ha-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.ha-form-group {
	margin-bottom: 1.5rem;
}

.ha-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #333333;
}

.ha-form-input,
.ha-form-textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid rgba(74, 144, 226, 0.2);
	border-radius: 8px;
	font-size: 1rem;
	background: white;
	color: #333333;
	transition: all 0.3s ease;
	font-family: 'Inter', sans-serif;
}

.ha-form-input:focus,
.ha-form-textarea:focus {
	outline: none;
	border-color: #4a90e2;
	box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.ha-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.ha-form-error {
	color: #e74c3c;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	display: none;
}

.ha-form-error.ha-show {
	display: block;
}

.ha-form-input.ha-error,
.ha-form-textarea.ha-error {
	border-color: #e74c3c;
}

.ha-checkbox-label {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	cursor: pointer;
	font-size: 0.9rem;
	color: #666666;
}

.ha-checkbox {
	display: none;
}

.ha-checkbox-custom {
	width: 20px;
	height: 20px;
	border: 2px solid #4a90e2;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.ha-checkbox:checked + .ha-checkbox-custom {
	background-color: #4a90e2;
}

.ha-checkbox:checked + .ha-checkbox-custom::after {
	content: '✓';
	color: white;
	font-size: 0.8rem;
}

.ha-faq-grid {
	max-width: 800px;
	margin: 0 auto;
}

.ha-faq-item {
	background: white;
	border-radius: 8px;
	margin-bottom: 1rem;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(74, 144, 226, 0.1);
}

.ha-faq-question {
	width: 100%;
	padding: 1.5rem;
	background: none;
	border: none;
	text-align: left;
	font-size: 1.1rem;
	font-weight: 600;
	color: #333333;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
}

.ha-faq-question:hover {
	background-color: rgba(74, 144, 226, 0.05);
	color: #4a90e2;
}

.ha-faq-question i {
	transition: transform 0.3s ease;
	color: #4a90e2;
}

.ha-faq-question.ha-active i {
	transform: rotate(45deg);
}

.ha-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: rgba(74, 144, 226, 0.02);
}

.ha-faq-answer.ha-active {
	max-height: 300px;
}

.ha-faq-answer p {
	padding: 1.5rem;
	color: #666666;
	line-height: 1.6;
	margin: 0;
}

.ha-map-container {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.ha-policy-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 20px;
}

.ha-policy-header {
	text-align: center;
	margin-bottom: 60px;
	padding: 120px 0;
	background: linear-gradient(
		135deg,
		rgba(74, 144, 226, 0.1),
		rgba(230, 126, 34, 0.1)
	);
	border-radius: 20px;
}

.ha-policy-title {
	font-size: 3rem;
	font-weight: 600;
	color: #333333;
	margin-bottom: 15px;
}

.ha-policy-date {
	color: #666666;
	font-size: 1.1rem;
	font-style: italic;
}

.ha-policy-content {
	background: white;
	border-radius: 20px;
	padding: 50px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ha-policy-section {
	margin-bottom: 50px;
	padding-bottom: 40px;
	border-bottom: 1px solid #e8e8e8;
}

.ha-policy-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.ha-policy-section-title {
	font-size: 1.8rem;
	font-weight: 600;
	color: #4a90e2;
	margin-bottom: 25px;
	padding-bottom: 10px;
	border-bottom: 2px solid #e67e22;
	display: inline-block;
}

.ha-policy-text {
	color: #333333;
	line-height: 1.8;
	font-size: 16px;
	text-align: justify;
	margin-bottom: 20px;
}

.ha-policy-text:last-child {
	margin-bottom: 0;
}

.ha-policy-text strong {
	color: #4a90e2;
	font-weight: 600;
}

.ha-policy-text a {
	color: #e67e22;
	text-decoration: none;
	transition: color 0.3s ease;
}

.ha-policy-text a:hover {
	color: #4a90e2;
	text-decoration: underline;
}

/* Policy lists */
.ha-policy-list {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.ha-policy-list li {
	color: #333333;
	margin-bottom: 12px;
	padding-left: 25px;
	position: relative;
	line-height: 1.7;
}

.ha-policy-list li::before {
	content: '•';
	color: #e67e22;
	font-weight: bold;
	font-size: 1.2rem;
	position: absolute;
	left: 0;
	top: 0;
}

/* Sublists */
.ha-policy-sublist {
	list-style: none;
	padding: 0;
	margin: 15px 0 15px 25px;
}

.ha-policy-sublist li {
	margin-bottom: 8px;
	padding-left: 20px;
}

.ha-policy-sublist li::before {
	content: '◦';
	color: #4a90e2;
	font-size: 1.1rem;
}

/* Contact info in policy pages */
.ha-policy-contact {
	background: linear-gradient(
		135deg,
		rgba(74, 144, 226, 0.1),
		rgba(230, 126, 34, 0.1)
	);
	border-radius: 15px;
	padding: 30px;
	margin-top: 40px;
	text-align: center;
}

.ha-policy-contact h3 {
	color: #4a90e2;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 20px;
}

.ha-policy-contact p {
	color: #333333;
	margin-bottom: 8px;
	line-height: 1.6;
}

.ha-policy-contact a {
	color: #e67e22;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.ha-policy-contact a:hover {
	color: #4a90e2;
}

/* Адаптивность */
@media (max-width: 992px) {
	.ha-nav {
		gap: 0;
	}
}

@media (max-width: 768px) {
	.ha-container {
		padding: 0 15px;
	}

	.ha-mobile-toggle {
		display: flex;
	}

	.ha-nav {
		display: none;
	}

	.ha-hero h1 {
		font-size: 2.5rem;
	}

	.ha-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.ha-grid-2,
	.ha-grid-3,
	.ha-grid-4 {
		grid-template-columns: 1fr;
	}

	.ha-footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.ha-cookie-content {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	.ha-section-title h2 {
		font-size: 2rem;
	}

	.ha-comparison-table {
		font-size: 0.9rem;
	}

	.ha-comparison-table th,
	.ha-comparison-table td {
		padding: 0.5rem;
	}

	.ha-step-item {
		flex-direction: column;
		gap: 1rem;
	}

	.ha-trends-gallery {
		grid-template-columns: 1fr;
	}

	.ha-zone-diagram h3 {
		font-size: 1.5rem;
	}
	.ha-contact-form-section {
		grid-template-columns: 1fr;
	}
	.ha-contact-hero h1 {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	.ha-hero h1 {
		font-size: 2rem;
	}

	.ha-policy-title {
		font-size: 2rem;
		word-wrap: break-word;
	}

	.ha-policy-header {
		padding: 120px 10px;
	}

	.ha-policy-section-title {
		font-size: 1.5rem;
	}

	.ha-policy-content {
		padding: 2rem;
	}

	.ha-section-title h2 {
		font-size: 1.8rem;
	}

	.ha-card,
	.ha-feature-card,
	.ha-topic-card,
	.ha-expert-card {
		padding: 1.5rem;
	}

	.ha-mobile-menu {
		width: 80%;
		left: -100%;
	}

	.ha-hero-buttons {
		flex-direction: column;
		gap: 1rem;
	}

	.ha-btn {
		width: 100%;
		text-align: center;
	}

	.ha-plan-grid {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	}
}
