/* ═══════════════════════════════════════════════════════════════════════════
	 AlpineClimAir — Структурированные стили
	 ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
	 1. СБРОС И БАЗОВЫЕ СТИЛИ
	 ═══════════════════════════════════════════════════════════════════════════ */

* { 
	max-height: 999999px;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--index: clamp(0.9rem, calc(1vw + 1vh), 1.8rem);
	
	--main-bg-color: #fff;
	--secondary-bg-color: #f4f4fe;
	
	--main-text-color: #19191f;
	--inverse-text-color: #f8f8fe;
	
	--accent-color: #1ed7ff;
	
	--alert-color: #f44336;
}



/* ═══════════════════════════════════════════════════════════════════════════
	 2. ТИПОГРАФИЯ
	 ═══════════════════════════════════════════════════════════════════════════ */

@font-face {
	font-family: "TikTokSans";
	src: url("../fonts/TikTokSans_subset.woff2") format("woff2");
	font-weight: 300 900; 
	font-stretch: 75% 125%;
	font-style: slant; 
	font-display: swap;
}

html, 
body {
	font-family: "TikTokSans", sans-serif;
	font-size: var(--index);
	font-weight: 350;
	font-stretch: 125%;
}

@media (max-width: 767px) {
	html, 
	body {
		background: var(--secondary-bg-color);
		font-size: calc(var(--index) * 1.05);
	}	
}

body {
	color: var(--main-text-color);
	transition: background-color 0.5s ease, color 0.5s ease;
}

/* Заголовки */
h1 {
	font-size: calc(var(--index) * 3);
	font-weight: 700;
	line-height: 1.1;
}

@media (max-width: 767px) {
	h1 {
		font-size: calc(var(--index) * 2.25);
	}	
}

h2 {
	font-size: calc(var(--index) * 2.25);
	font-weight: 600;
	line-height: 1.1;
}

h3 {
	font-size: calc(var(--index) * 1.75);
	font-weight: 600;
}

@media (max-width: 767px) {
	h3 {
		font-size: calc(var(--index) * 1.35);
	}	
}

h4 {
	font-size: calc(var(--index) * 1.15);
	font-weight: 600;
}

/* Текстовые элементы */
blockquote {
	font-size: calc(var(--index) * 1.15);
	font-weight: 300;
	line-height: 1.5;
	margin: auto;
	padding: var(--index) 0;
	width: 80%;
}

p + p {
	margin-top: calc(0.75 * var(--index));
}

/* ═══════════════════════════════════════════════════════════════════════════
	 3. БАЗОВЫЕ ЭЛЕМЕНТЫ
	 ═══════════════════════════════════════════════════════════════════════════ */

section,
header,
footer,
nav,
article {
	display: block;
	position: relative;
	width: 100%;
	z-index: 1;
}

section {
	align-items: center;
	display: flex;
	flex-flow: column;
	justify-content: center;
	min-height: 100dvh;
	z-index: 1;
}

section > header {
	padding: calc(2 * var(--index));
	text-align: center;
}

article {
	max-width: 1200px;
	padding: calc(2 * var(--index));
	text-align: center;
}

@media (max-width: 767px) {
	main section {
		margin-top: var(--index);
	}
	
	article {
		padding: calc(1.5 * var(--index));
	}	
}

main {
	width: 100%;
	overflow: hidden;
}

ul {
	margin: 0 0 var(--index) var(--index);
}

ul::marker {
	color: var(--accent-color);
}

a {
	color: inherit;
	outline: none;
	text-decoration: none;
	transition: 0.25s ease-in;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

img {
	display: block;
	width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════════════
	 4. УТИЛИТАРНЫЕ КЛАССЫ
	 ═══════════════════════════════════════════════════════════════════════════ */

.accent {
	color: var(--accent-color);
}

.row {
	align-items: center;
	display: flex;
	flex-flow: row;
	gap: var(--index);
	justify-content: center;
	width: 100%;
}

@media (max-width: 767px) {
	.content {
		flex-flow: column !important;
	}	
}

/* ═══════════════════════════════════════════════════════════════════════════
	 5. КОМПОНЕНТЫ - КАРТОЧКИ
	 ═══════════════════════════════════════════════════════════════════════════ */

.card {
	aspect-ratio: 1;
	background: #222;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	border-radius: calc(2 * var(--index));
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 60vh;
	overflow: hidden;
}

.card img {
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
	 6. КОМПОНЕНТЫ - КНОПКИ
	 ═══════════════════════════════════════════════════════════════════════════ */

.bttn {
	font: inherit;
	font-size: calc(var(--index) * 0.85);
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	min-width: calc(var(--index) * 12);
	height: calc(var(--index) * 3.25);
	background: transparent;
	border: solid 3px;
	border-radius: calc(var(--index) * 2);
	color: var(--accent-color);
	letter-spacing: 1px;
	text-transform: uppercase;
	overflow: hidden;
	padding: 0 calc(2 * var(--index));
	cursor: pointer;
	width: fit-content;
}

.bttn::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--accent-color);
	border-radius: calc(var(--index) * 2);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s ease;
	z-index: 0;
}

.bttn:hover::after {
	transform: scaleX(1);
}

.bttn span,
.bttn {
	position: relative;
	transition: 0.5s ease;
	z-index: 1;
}

.bttn:hover span {
	color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
	 7. КОМПОНЕНТЫ - BACKGROUND СЕКЦИЙ
	 ═══════════════════════════════════════════════════════════════════════════ */

section:has(.section-bg) {
	min-height: 95vh;
	display: grid;
	flex: 1;
	width: 100%;
	height: 100%;
	position: relative;
}

.section-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	z-index: 1;
}

.section-bg img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* ═══════════════════════════════════════════════════════════════════════════
	 8. КОМПОНЕНТЫ - SCROLL INDICATOR
	 ═══════════════════════════════════════════════════════════════════════════ */

.to-scroll {
	justify-content: center;
	display: none;
	height: 50px;
	width: 30px;
	border-radius: 2rem;
	border: solid 3px rgba(255,255,255,0.65);
	color: #fff;
	margin: auto;
	padding: 6px;
	position: absolute;
	left: 50%;
	bottom: 10vh;
	transform: translateX(-50%);
	z-index: 1;
}

.to-scroll::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #fff;
	animation: 3s infinite vslide;
}

.to-scroll::after {
	color: #fff;
	content: "scroll down";
	font-size: 10px;
	font-weight: 800;
	position: absolute;
	top: calc(100% + var(--index) * 0.5);
	text-align: center;
	text-transform: uppercase;
}

@keyframes vslide {
	40% {
		transform: translateY(100%);
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
	 9. КОМПОНЕНТЫ - БРЕНДИНГ
	 ═══════════════════════════════════════════════════════════════════════════ */

.brand-t {
	font-weight: 600;
	white-space: nowrap;
}

.brand-t b {
	font-weight: 900;
}

.brand-t i {
	font-weight: 300;
	font-style: normal;
}

.brand-t::after {
	content: "\00AE";
	display: inline-block;
	font-size: 50%;
	margin-left: 0.1em;
	vertical-align: super;
}

/* ═══════════════════════════════════════════════════════════════════════════
	 10. HEADER
	 ═══════════════════════════════════════════════════════════════════════════ */

#page-header {
	align-items: center;
	backdrop-filter: blur(25px);	
	color: var(--accent-color);
	display: flex;
	justify-content: space-between;
	padding: var(--index) calc(var(--index) * 2);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: position 0s, transform 0.6s ease;
}

@media (max-width: 767px) {
	#page-header {
		padding: var(--index) calc(var(--index) * 1.5);
	}
}

#page-header .brand-t {
	color: currentColor;
	font-size: calc(1.5 * var(--index));	
}

#page-header.active {
	backdrop-filter: none;	
	color: #fff;
	height: 100%;
	justify-content: center;
}

#page-header.active .brand-t {
	font-size: 9vw;
}

#page-header.active nav {
	display: none;
}

/* Изменение цвета header для определенных секций */
body:has(#s-relations.active) #page-header,
body:has(#s-why.active) #page-header,
body:has(#s-smart.active) #page-header {
	color: #fff;
}


/* ═══════════════════════════════════════════════════════════════════════════
	 11. НАВИГАЦИЯ
	 ═══════════════════════════════════════════════════════════════════════════ */

nav {
	align-items: center;
	display: flex;
	gap: var(--index);
	font-size: calc(var(--index) * 0.65);
	font-weight: 500;
	text-transform: uppercase;
	width: fit-content;
}

nav a {
	color: inherit;
	text-decoration: none;
}

@media (max-width: 767px) {
	nav.active {
		display: flex;
		position: fixed;
		height: 100vh;
		width: 100vh;
		background: var(--accent-color);
		flex-flow: column;
		right: 0;
		color: var(--main-text-color);
		text-align: right;
		text-align: right;
		align-items: end;
		font-size: calc(1.5 * var(--index));
		padding: var(--index) calc(var(--index) * 1.5);
		font-weight: 400;
	
		gap: calc(2 * var(--index));
		top: 0;
		z-index: 10001;
	}
	
	#page-header:has(nav.active)::after {
		background-color: rgba(255,255,255,.75);
		position: fixed;
		content: '';
		left: 0;
		top: 0;
		height: 100vh;
		width: 100vw;
		z-index: 0;
	}
	
	nav.active a:not(.hmbr-menu) {
		background-color: #fff;
		border-radius: calc(3 * var(--index)) 0 0 calc(3 * var(--index));
		display: block;
		margin-right: calc(-1.5 * var(--index));
		opacity: 0;
		padding: var(--index) calc(2 * var(--index));
	}
	
	/* Скрываем пункты по умолчанию */
	nav:not(.active) a:not(.hmbr-menu) {
			opacity: 0;
	}
	
	/* Показываем пункты с анимацией когда меню активно */
	nav.active a:not(.hmbr-menu) {
			animation: slideInFromRight 0.4s ease-out forwards;
			animation-delay: calc(var(--item-index) * 0.1s);
	}
	
	/* Задаем индексы для каждого пункта */
	nav.active a:nth-child(2) { --item-index: 1; }
	nav.active a:nth-child(3) { --item-index: 2; }
	nav.active a:nth-child(4) { --item-index: 3; }
	nav.active a:nth-child(5) { --item-index: 4; }
	nav.active a:nth-child(6) { --item-index: 5; }
	
	
	/* Анимация появления пунктов меню */
	@keyframes slideInFromRight {
			from {
					opacity: 0;
					transform: translateX(100px);
			}
			to {
					opacity: 1;
					transform: translateX(0);
			}
	}
}





/* ═══════════════════════════════════════════════════════════════════════════
	 12. HAMBURGER MENU
	 ═══════════════════════════════════════════════════════════════════════════ */

.hmbr-menu {
	aspect-ratio: 1;
	background: transparent;
	border: none;
	color: currentColor;
	display: none;
	height: 1.5rem;
	margin-left: auto;
	position: relative;
	width: 1.5rem;
}

@media (max-width: 767px) {
	nav a {
		display: none;
	}
	.hmbr-menu {
		display: block;
	}
}

.hmbr-menu span {
	background-color: currentColor;
	border-radius: 2px;
	display: block;
	height: 2px;
	position: absolute;
	width: 100%;
	top: calc(50% - 1px);
	transform: translateX(-0.175rem);		
	transition: 0.25s ease-in;
}

.hmbr-menu span:first-child {
	transform: translateY(-0.5rem) translateX(0.175rem);	
}

.hmbr-menu span:last-child {
	transform: translateY(0.5rem) translateX(0.175rem);		
}

.hmbr-menu:hover span:first-child {
		transform: translateY(-0.5rem) translateX(0);
}
.hmbr-menu:hover span {
		transform: translateX(0);
}
.hmbr-menu:hover span:last-child {
		transform: translateY(0.5rem) translateX(0);
}

nav.active .hmbr-menu span {
	background-color: #fff;
	opacity: 0;
	transform: none;
}

nav.active  .hmbr-menu span:first-child {
	opacity: 1;
	transform: rotate(45deg);
}

nav.active .hmbr-menu span:last-child {
	opacity: 1;
	transform: rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════════════════
	 13. СЕКЦИЯ - WELCOME
	 ═══════════════════════════════════════════════════════════════════════════ */

#s-welcome {
	height: 100vh;
}

#s-welcome .section-bg {
	height: 100%;
	justify-items: flex-start;
}

#s-welcome figure {
	border-radius: 0 0 0 calc(7 * var(--index)); 
	overflow: hidden;
}

#s-welcome article {
	align-self: end;
	color: #fff;				
	justify-content: flex-end;
	text-align: left;
}

@media (max-width: 767px) {
	#s-welcome {
		margin: 0;
	}
	#s-welcome .section-bg {
		height: 95vh;
	}
	
	#s-welcome .section-bg img:last-child {
		display: none;
	} 
	
	#s-welcome .section-bg::after {
		background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,.35));
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		height: 100%;
		width: 100%;
	}
	
	#s-welcome article {
		margin-bottom: calc(7 * var(--index));
		padding: calc(2.5 * var(--index));
	}
}


#s-welcome article blockquote {
	margin: 0;
}

#s-welcome article button {
	margin: var(--index) 0 0;
}

/* Стили при пинировании */
.pin-spacer #s-welcome article {
	color: inherit;
	width: 50vw;
}

.pin-spacer #s-welcome article blockquote {
	width: 100%;
}

.pin-spacer #s-welcome h1 .accent {
	white-space: nowrap;
}

.pin-spacer #s-welcome .to-scroll {
	display: flex;
}

/* ═══════════════════════════════════════════════════════════════════════════
	 14. СЕКЦИИ - WHY И SMART
	 ═══════════════════════════════════════════════════════════════════════════ */

#s-smart, 
#s-why {
	--text-parallax-start: 25;
	--card-scale-final: 1;
	--card-stagger: 0.3;
}

#s-smart .section-bg, 
#s-why .section-bg {
	border-radius: 0 0 calc(7 * var(--index)) 0;
	overflow: hidden;
}	

#s-smart figure.row,
#s-why figure.row {
	flex: 0 0 50%;
	flex-wrap: wrap;
	align-items: center;
}

#s-smart blockquote,
#s-why blockquote {
	padding: calc(2 * var(--index)) 0 var(--index);
	width: 100%;
}

#s-smart article,
#s-why article {
	text-align: left;
}

#s-smart article.text-section,
#s-why article.text-section {
	transform: translateY(var(--text-parallax-start, 20%));
}

#s-smart article.media-section,
#s-why article.media-section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
}

#s-smart article.media-section .card:nth-child(1),
#s-why article.media-section .card:nth-child(1) {
	transform: scale(1);
}

#s-smart article.media-section .card:nth-child(2),
#s-why article.media-section .card:nth-child(2),
#s-smart article.media-section .card:nth-child(3),
#s-why article.media-section .card:nth-child(3) {
	transform: scale(0.7);
}

#s-smart article.media-section .card:nth-child(4),
#s-why article.media-section .card:nth-child(4) {
	transform: scale(0.8);
}

#s-why .content {
	flex-flow: row-reverse;
}

/* Стили при пинировании */
.pin-spacer #s-smart .media-section,
.pin-spacer #s-why .media-section {	
	max-width: 80vh;
}

.pin-spacer #s-smart .media-section .card,
.pin-spacer #s-why .media-section .card {
	transform: scale(0);
	transition: transform 0.3s ease;
}

.pin-spacer #s-smart .media-section .card:nth-child(1),
.pin-spacer #s-why .media-section .card:nth-child(1) {
	--card-scale-final: 1;
}

.pin-spacer #s-smart .media-section .card:nth-child(2),
.pin-spacer #s-why .media-section .card:nth-child(2),
.pin-spacer #s-smart .media-section .card:nth-child(3),
.pin-spacer #s-why .media-section .card:nth-child(3) {
	--card-scale-final: 0.7;
}

.pin-spacer #s-smart .media-section .card:nth-child(4),
.pin-spacer #s-why .media-section .card:nth-child(4) {
	--card-scale-final: 0.8;
}

/* ═══════════════════════════════════════════════════════════════════════════
	 15. СЕКЦИЯ - RELATIONS
	 ═══════════════════════════════════════════════════════════════════════════ */

#s-relations .section-bg {
	border-radius: 0 0 0 calc(7 * var(--index));
	overflow: hidden;
}


@media (max-width: 767px) {
	#s-why,
	#s-relations,
	#s-smart {
		border-radius: 0;
		min-height: 50vh;
	}
	
	#s-why {
		padding-top: 0;
	}
	
	#s-why .section-bg,
	#s-relations .section-bg,
	#s-smart .section-bg {	
		display: block;
		opacity: 1;
		margin-bottom: calc(1 * var(--index));
		position: relative;
		height: 50vh;
	}

	#s-smart article.media-section, 
	#s-relations article.media-section, 
	#s-why article.media-section {
		display: flex;
		padding: 0 var(--index);
	}
	
	#s-smart article.media-section .card, 
	#s-relations article.media-section .card, 
	#s-why article.media-section .card {
		display: none;
	}
	
	#s-smart article.media-section .card:nth-child(1), 
	#s-relations article.media-section .card:nth-child(1), 
	#s-why article.media-section .card:nth-child(1) {
		display: block;
		height: 20vh;
		max-width: 100%;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
	 16. СЕКЦИЯ - HORIZONTAL SCROLL
	 ═══════════════════════════════════════════════════════════════════════════ */

#s-scroll {
	height: 100dvh !important;
}

#scroll-sequence {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

@media (max-width: 767px) {	
	#scroll-sequence {
		display: none;	
	}
}	

.h-scroll {
	overflow: auto;
	white-space: nowrap;
	max-width: 100%;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.h-scroll::-webkit-scrollbar {
	display: none;
}

.h-scroll > div {
	display: flex;
	flex-wrap: nowrap;
	gap: calc(var(--index) * 1.5);
}

.h-scroll .item {
	align-items: center;
	background: linear-gradient(rgba(255,255,255,0.25), rgba(255,255,255,0.45));
	backdrop-filter: blur(15px);
	border-radius: calc(3 * var(--index));
	color: #000;
	display: flex;
	flex: 0 0 70%;
	gap: var(--index);
	padding: calc(1 * var(--index));
}

.h-scroll .item .card {
	height: auto;
	min-height: var(--index);
	flex: 0 0 clamp(50px, 25%, 300px);	
}

.h-scroll .item .card svg {
	width: 50%;
}

.h-scroll .item .text {
	text-align: left;
	white-space: normal;
}

.h-scroll .item .text h3 {
	line-height: 1.1;
	margin-bottom: calc(0.5 * var(--index));
}

.h-scroll .item .text h4 {
	font-weight: 350;
}

@media (max-width: 767px) {
	.h-scroll .item {
		flex-flow: column;
		flex: 0 0 80%;
		padding: calc(1.5 * var(--index));
	}
	
	.h-scroll .item .card {
		flex: unset;
		min-height: auto;
		width: 60%;
	}
	
	.h-scroll .item .text {
		text-align: center;
	}	
}

/* ═══════════════════════════════════════════════════════════════════════════
	 17. СЕКЦИЯ - TEXT
	 ═══════════════════════════════════════════════════════════════════════════ */

.text-section {
	text-align: left;
}

.text-section blockquote {
	padding: calc(2 * var(--index)) 0 var(--index);
	width: 100%;
}

#s-text .air-block {
	width: 90%;
}

#s-text {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 0;
}

#s-text .air-text {
	font-weight: 700;
	line-height: 1.5;
}

@media (max-width: 767px) {
	#s-text {
		min-height: 60vh;
	}
	
	#s-text .air-text {
		font-size: calc(var(--index) * 1.5);
	}	
	
	#s-text .air-block {
		width: 100%;
	}
}	


/* ═══════════════════════════════════════════════════════════════════════════
	 18. СЕКЦИЯ - CONTACT
	 ═══════════════════════════════════════════════════════════════════════════ */

#s-сontact {
	background: #19191f; 
	color: #f4f4fe;
	padding: calc(2 * var(--index)) 0;
}

@media (max-width: 767px) {
	#s-сontact {
		margin: 0;	
	}	
}	

#s-сontact .text-section {
	align-self: normal;
	display: flex;
	flex-flow: column;
	font-size: 90%;
}

#s-сontact .logo {
	width: calc(12 * var(--index));
}

#s-сontact h4 {
	font-size: calc(var(--index) * 0.95);
	margin-bottom: calc(var(--index) * 0.35);
}

#s-сontact p + p {
	margin-top: calc(var(--index) * 0.35);
}

#s-сontact sup {
	display: block;
	margin: var(--index) 0 calc(var(--index) * 0.25);
}

#s-сontact .copyright {
	font-size: 70%;
	margin-top: auto;
	padding: var(--index) 0;
}

@media (max-width: 767px) {
	#s-contact {
		margin: 0;
	}
	#s-сontact > .row {
		flex-flow: column;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
	 19. ФОРМА КОНТАКТА
	 ═══════════════════════════════════════════════════════════════════════════ */

#contactForm {
	display: flex;
	flex-flow: column;
	gap: var(--index);
}

#contactForm input,
#contactForm textarea {
	background-color: #fff;
	border: solid 2px transparent;
	border-radius: var(--index);
	font: inherit;
	outline: none;
	padding: var(--index);
	transition: border-color 0.3s;
	width: 100%;
}

#contactForm textarea {
	min-height: calc(7 * var(--index));
	resize: vertical;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
	font-size: calc(var(--index) * 0.85);
	transition: position 0s, transform 0.6s ease;
}

@media (max-width: 767px) {
	#contactForm input::placeholder,
	#contactForm textarea::placeholder {
		font-size: var(--index);
	}
}

#contactForm input:focus,
#contactForm textarea:focus {
	border-color: var(--accent-color);
}

#contactForm input:focus::placeholder,
#contactForm textarea:focus::placeholder {
	transform: translateY(-0.5rem) translateX(-1rem) scale(0.95);
	color: var(--accent-color);
}

#contactForm button {
	margin-left: 0;
}


#contactForm .form-group {
		position: relative;
}

#contactForm .error-message {
		color: var(--alert-color);
		font-size: calc(.8 * var(--index));
		display: none;
		position: absolute;
		right: calc(.75 * var(--index));
		top: calc(.25 * var(--index));
}

#contactForm .form-group.error input,
#contactForm .form-group.error textarea {
		border-color: var(--alert-color);
}

#contactForm .form-group.error .error-message {
		display: block;
}

#contactForm .bttn:disabled {
		background: #ccc;
		cursor: not-allowed;
}

#contactForm .bttn.loading span {
		display: none;
}

#contactForm .bttn.loading::after {
		content: "...";
}

.success-message {
		color: var(--accent-color);
		color: white;
		margin-bottom: var(--index);
		display: none;
		text-align: left;
}

.error-alert {
		color: var(--alert-color);
		margin-bottom: var(--index);
		display: none;
		text-align: left;
}

/* Honeypot - скрытое поле */
.honeypot {
		position: absolute;
		left: -9999px;
		opacity: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
	 20. LOADER
	 ═══════════════════════════════════════════════════════════════════════════ */

#load-section {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: var(--accent-color);
	color:#fff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 1;
	transition: opacity 0.6s ease-in-out;
}

.loader-content {
	text-align: center;
}

.loader-spinner {
	width: calc(4 * var(--index));
	height: calc(4 * var(--index));
	_border: var(--index) solid rgba(255, 255, 255, 0.1);
	_border-top: var(--index) solid #fff;
	border-radius: 50%;
	margin: 0 auto calc(.5 * var(--index));
	max-width: 75px;
	max-height: 75px;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to { 
		transform: rotate(360deg); 
	}
}

.progress-text {
	font-size: calc(.85 * var(--index));
	font-weight: 400;
	transition: opacity 0.3s;
}

.progress-bar-container {
	width: 200px;
	height: 4px;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 2px;
	overflow: hidden;
	margin: 0 auto;
}

.progress-bar {
	height: 100%;
	background: var(--accent-color);
	width: 0%;
	transition: width 0.3s ease;
}

#fan_ico path,
#fan_ico circle {
	fill: none;
	stroke: #fff;
	stroke-width: 1px;
	stroke-linejoin: round;
	stroke-linecap: round;
}