*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Inter", sans-serif;
}


html, body{
	height: 100%;
	/*background: linear-gradient(to top, #0A1938, #081735);*/
	background: linear-gradient(to top, #0A1938, #0d2a41);
	position: relative;
	overflow-x: hidden;
	
}

body:after{
	content: "";
	width: 134px;
	height: 127px;
	background: url(img/star_top.png) no-repeat center;
	background-size: cover;
	position: absolute;
	top: -35px;
	right: -21px;
	opacity: 0.7;
}

body:before{
	content: "";
	width: 137px;
	height: 100px;
	background: url(img/star_bottom.png) no-repeat center top;
	background-size: cover;
	position: absolute;
	bottom: 0;
	left: -32px;
	opacity: 0.5;
}

.error{
	width: calc(100% - 30px);
	max-width: 420px;
	height: 55px;
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50px;
	color: #fff;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(#E6982F, #BF530A);
	font-weight: 600;
	font-size: 16px;
	z-index: 999;
	opacity: 0;
	transition: top .3s, opacity .3s;
}

.error.show{
	top: 22px;
	opacity: 1;
	transition: top .3s, opacity .3s;
}


/* Базові стилі для всіх шарів зірок */
.stars-layer-1, .stars-layer-2, .stars-layer-3 {
	position: fixed;
	top: 50%;
	left: 50%;
	background: transparent;
	/*z-index: -1;*/ /* За контентом */
	opacity: 0.5; /* Загальна м'якість */
	border-radius: 50%; /* Округлі крапки */
}

/* Шар 1: Найдрібніші та найвіддаленіші зірки (Сотні крапок) */
.stars-layer-1 {
	width: 1px;
	height: 1px;
	box-shadow: 
	/* Генерація множинних тіней (для швидкості) */
	/* Білі */
	-200px -300px 0.5px #ffffff, 150px -150px 0.5px #ffffff, -400px 200px 0.5px #ffffff, 
	300px 350px 0.5px #ffffff, -100px 450px 0.5px #ffffff, 250px -400px 0.5px #ffffff, 
	0px -250px 0.5px #ffffff, -350px -400px 0.5px #ffffff, 450px 100px 0.5px #ffffff, 
	-50px -180px 0.5px #ffffff,
	/* Золотисті */
	80px 120px 1px #FCEFA9, -280px -80px 1px #FCEFA9, 380px 280px 1px #FCEFA9, 
	-180px -420px 1px #FCEFA9, 210px 410px 1px #FCEFA9,
	/* Блакитні */
	-120px 220px 1.5px #A9F5FC, 160px -320px 1.5px #A9F5FC, 0px 480px 1.5px #A9F5FC,
	-430px -180px 1.5px #A9F5FC, 410px -210px 1.5px #A9F5FC,
	/* Додай ще 50-100 рядків за аналогією для "щільності" */
	-10px 50px 0.5px #ffffff, 20px -80px 0.5px #ffffff, -30px 110px 0.5px #ffffff, 
	40px 140px 0.5px #ffffff, -50px -170px 0.5px #ffffff, 60px 200px 0.5px #ffffff, 
	-70px 230px 0.5px #ffffff, 80px -260px 0.5px #ffffff, -90px 290px 0.5px #ffffff, 
	100px -320px 0.5px #ffffff,
	-110px -350px 0.5px #FCEFA9, 120px 380px 0.5px #FCEFA9, -130px -410px 0.5px #FCEFA9, 
	140px 440px 0.5px #FCEFA9, -150px -470px 0.5px #FCEFA9,
	-160px 210px 0.5px #A9F5FC, 170px -180px 0.5px #A9F5FC, -180px 150px 0.5px #A9F5FC, 
	190px -120px 0.5px #A9F5FC, -200px 90px 0.5px #A9F5FC;
	animation: starsPulse1 12s infinite ease-in-out; /* Дуже повільне дихання */
}

/* Шар 2: Середні зірки, яскравіші та трохи більше */
.stars-layer-2 {
	width: 2px;
	height: 2px;
	box-shadow: 
	120px -350px 2px #ffffff, -250px 50px 2px #ffffff, 200px 150px 2px #ffffff,
	-80px 280px 2px #FCEFA9, 180px -120px 2px #ffffff, -300px -100px 2px #ffffff,
	-200px 380px 3px 1px rgba(252, 239, 169, 0.4), /* Золоте світіння */
	280px -250px 2px #ffffff, 0px -400px 2px #ffffff, 320px 100px 2px #FCEFA9,
	-150px -200px 2px #A9F5FC, 50px 320px 2px #A9F5FC;
	animation: starsPulse2 8s infinite ease-in-out; /* Середня швидкість */
}

/* Шар 3: Ближчі зірки, найбільші та найяскравіші (Дуже мало) */
.stars-layer-3 {
	width: 3px;
	height: 3px;
	box-shadow: 
	-350px -350px 4px 2px rgba(255, 255, 255, 0.6), /* Велика біла */
	350px 350px 4px 2px rgba(252, 239, 169, 0.6), /* Велика золота */
	-420px 420px 4px 2px rgba(169, 245, 252, 0.6); /* Велика блакитна */
	animation: starsPulse3 5s infinite ease-in-out; /* Найшвидше дихання */
}

/* Анімації дихання для кожного шару (різні opacity та scale) */
@keyframes starsPulse1 {
	0%, 100% { opacity: 0.3; transform: scale(1); }
	50% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes starsPulse2 {
	0%, 100% { opacity: 0.4; transform: scale(1); }
	50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes starsPulse3 {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.15); }
}

.stars-center-cluster {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 2px;
	height: 2px;
	background: transparent;
	/*z-index: -1;*/
	/* Тут ми фокусуємося на малих значеннях (від -150 до 150), щоб забити центр */
	box-shadow: 
	/* Білі зірки в центрі */
	20px 40px 1px #ffffff, -30px -60px 1px #ffffff, 80px -20px 1px #ffffff,
	-70px 10px 1px #ffffff, 10px -90px 1px #ffffff, -110px 40px 1px #ffffff,
	140px 100px 1px #ffffff, -130px -120px 1px #ffffff, 50px 150px 1px #ffffff,
	/* Золоті зірки в центрі (яскравіші) */
	-40px 80px 2px #FCEFA9, 90px 30px 2px #FCEFA9, -20px -110px 2px #FCEFA9,
	110px -70px 2px #FCEFA9, -90px -30px 2px #FCEFA9, 40px 120px 2px #FCEFA9,
	/* Блакитні акценти */
	-100px 100px 1.5px #A9F5FC, 120px -100px 1.5px #A9F5FC,
	/* "Мерехтливі" точки (з більшим розмиттям) */
	0px 0px 8px 2px rgba(255, 255, 255, 0.2),
	60px -40px 10px 1px rgba(252, 239, 169, 0.3);

	animation: centerStarsTwinkle 8s infinite ease-in-out;
}

@keyframes centerStarsTwinkle {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.2); }
}

main{
	height: 100%;
	padding-top: 80px;
}

main.result{
	padding-top: 0px;
}

/*main .container{
	display: none;
	}*/

	.container {
		max-width: 420px;
		width: 100%;
		margin: 0 auto;
		padding: 0 20px;
	}

	@keyframes breathe {
		0% { opacity: 0.2; transform: translate(-50%, -105%) scale(1); }
		50% { opacity: 0.35; transform: translate(-50%, -100%) scale(1.1); }
		100% { opacity: 0.2; transform: translate(-50%, -105%) scale(1); }
	}

	.oval_bg {
		width: 450px;
		height: 450px;
		border-radius: 50%;
		position: absolute;
		top: 100px;
		left: 50%;
		background: #2F93A2;
		filter: blur(100px);
		opacity: 0.28;
		z-index: 0;
		pointer-events: none;
		transform: translate(-50%, -100%);
		/*animation: breathe 8s infinite ease-in-out;*/
	}

	.top_line{
		padding-top: 20px;
		height: 80px;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		/*	display: none;*/
	}

	.top_line .logo{
		width: 60px;
		height: 60px;
		/*box-shadow: 0 0 40px rgba(255, 255, 255, .15);*/
		border-radius: 13px;
		overflow: hidden;
		border: 1px solid #43627a;
	}

	.top_line .logo img{
		display: block;
		max-width: 100%;
		height: auto;
	}

	.top_line .container{
		display: flex;
		align-items: center;

	}

	.step_info{
		padding-left: 12px;
		color: #fff;
		font-size: 16px;
		font-weight: 500;
		color: #e0e0e0;
		line-height: 20px;
	}

	.step_name{
		display: block;
		font-weight: 400;
		color: #c7c7c7;
		font-size: 14px;
	}

	.progress_box h1{
		font-size: 25px;
		font-weight: 600;
		margin-top: 25px;
		background: linear-gradient(to bottom, #FCEFA9, #F2C167);
		-webkit-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent;
		color: #F2C167;
		text-transform: uppercase;
	}

	.progress_box h1 span{
		background: #71D2CE;
		color: #71D2CE;
		-webkit-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent;
	}

	.progress {
		width: 100%;
		height: 10px;
		border-radius: 25px;
		background: #193756;
		border: 1px solid #375472;
		margin-top: 10px;
		position: relative;
		margin-bottom: 20px;
	}

	.progress span {
		width: 8%;
		height: calc(100% + 2px);
		position: absolute;
		top: -1px;
		left: 0px;
		border-radius: 25px;
		background: linear-gradient(to left,#F6D997, #5C9ACB);
		transition: width .5s;
	}

	.quiz_wrap{
		width: 100%;
		overflow: hidden;
		/*margin-top: 20px;*/
	}

	.quiz_box {
		width: 600%;
		display: flex;
		left: 0%;
		position: relative;
		transition: left .3s;
	}

	.quiz_step {
		width: 25%;
		height: 0;
		opacity: 0;
		transition: opacity .3s;
	}

	.quiz_step.active {
		height: auto;
		opacity: 1;
		transition: opacity .3s;
	}

	.quiz_title {
		font-size: 20px;
		line-height: 24px;
		color: #dedede;
		font-weight: 500;
		margin-bottom: 20px;
	}

	.quiz_title span {
		background: linear-gradient(to bottom, #FCEFA9, #F2C167);
		color: #71D2CE;
		-webkit-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent;
	}


	.quiz_item {
		margin-top: 15px;
		width: 100%;
		height: 65px;
		border-radius: 10px;
		display: flex;
		align-items: center;
		border: 1px solid #37506E;
		background: linear-gradient(to bottom, #193756, #122244);
		cursor: pointer;
	}

	.item_icon {
		width: 47px;
		height: 47px;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 30px;
		background: rgba(255,255,255,.05);
		border-radius: 10px;
		margin-left: 9px;
		margin-right: 10px;
	}

	.item_title{
		font-size: 16px;
		font-weight: 500;
		color: #ded398;
	}

	.quiz_item small{
		font-size: 13px;
		color: #dedede;
		display: block;
	}

	.quiz_info{
		font-size: 12px;
		font-style: italic;
		color: #ededed;
		text-align: center;
		margin-top: 25px;
		font-weight: 400;
		line-height: 18px;
	}

	.button_box {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 20px;
		margin-bottom: 10px;
	}

	.next_step {
		width: 100%;
		height: 50px;
		color: #636973;
		text-transform: uppercase;
		font-size: 18px;
		font-weight: 500;
		background: #071126;
		border: 1px solid #37506E;
		border-radius: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		opacity: 0.7;
	}

	.next_step span{
		width: 25px;
		height: 25px;
		background: url(img/next_icon.png) no-repeat center;
		background-size: 25px;
		margin-left: 9px;
	}


	.policy{
		color: #5a6886;
		font-size: 12px;
		text-align: center;
		margin-bottom: 3px; 
		display: block;
		text-decoration: none;

	}

	.policy_box{
		display: flex;
		align-items: center;
		justify-content: center;
		color: #5a6886;
		font-size: 12px;
		text-decoration: none;
		position: relative;
		z-index: 99;
	}

	.policy_box a{
		color: #5a6886;
		font-size: 12px;
		text-decoration: none;
	}

	.policy_box a:nth-child(2){
		margin: 0 5px;
	}

	.load_box {
		height: calc(100vh - 40px);
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		opacity: 0;
		transition: opacity .3s;
	}

	.loader {
		width: 50px;
		aspect-ratio: 1;
		margin-top: -20px;
		--_c:no-repeat radial-gradient(farthest-side,#25b09b 92%, transparent);
		background: 
		var(--_c) top,
		var(--_c) left,
		var(--_c) right,
		var(--_c) bottom;
		background-size: 12px 12px;
		animation: l7 1s infinite;
	}
	@keyframes l7 {to{transform: rotate(.5turn)}}

	.analysis {
		font-size: 22px;
		margin-top: 20px;
		font-weight: 500;
		color: #fff;
	}

	.analysis span {
		color: #71D2CE;
	}


	.result_box{
		padding: 20px 0 10px;
		height: 0;
		position: relative;
		display: none;
		z-index: 9;
/*	display: block;
height: 100%;*/
}

.result_box .container{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*.result_bg{
	content: "";
	width: 100%;
	height: 100%;
	background: url("img/result_bg.jpg") no-repeat center;
	background-size: cover;
	position: fixed;
	opacity: 0;
	transition: opacity 1s;
	}*/



	.logo_res{
		display: flex;
		align-items: center;
		justify-content: center;
		font-family: "Montserrat", sans-serif;
		font-size: 16px;
		font-weight: 500;
		background: linear-gradient(to right, #C9ACC2, #71D2CE);
		-webkit-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent;
		color: #71D2CE;
		text-transform: uppercase;

	}

	.logo_res img{
		width: 35px;
		height: 35px;
		margin-right: 8px;
		box-shadow: 0 0 40px rgba(255, 255, 255, .15);
		border-radius: 7px;
		overflow: hidden;
		border: 1px solid #43627a;
	}

	.result_index{
		width: 250px;
		height: 250px;
		background: url(img/index_sleep.png) no-repeat center;
		background-size: contain;
		margin: -8px auto -35px;
		position: relative;
	}

	.result_index:after{
		content: "";
		width: 127px;
		height: 160px;
		background: url(img/score_after.png) no-repeat center;
		background-size: contain;
		position: absolute;
		bottom: 53px;
		left: -93px;
	}

	.result_index:before{
		content: "";
		width: 82px;
		height: 125px;
		background: url(img/score_before.png) no-repeat center;
		background-size: contain;
		position: absolute;
		bottom: 67px;
		right: -59px;
	}



	.score_box{
		display: flex;
		justify-content: center;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: 100px;
		text-align: center;
		flex-direction: column;
	}

	.score_box .score{
		color: #f1c969;
		font-size: 25px;
		font-weight: 700;
		font-family: "Roboto", serif;
		text-shadow: 0 0 10px rgba(241, 201, 105, 0.5);
	}

	.score_box .score span{
		font-size: 35px;
	}

	.result_index strong{
		font-size: 96px;
		color: #2D5772;
		text-transform: uppercase;
		text-align: center;
		text-shadow: 0 2px 5px rgba(0, 0, 0, .5);
		line-height: 1;
		margin-top: -20px;
	}

	.norm_notice{
		background: #122C5D;
		font-size: 10px;
		color: #fff;
		height: 18px;
		padding: 0 6px;
		border-radius: 25px;
		border: 1px solid rgba(255, 255, 255, 0.12);
		line-height: 18px;
		/*margin-top: 15px;*/
		margin-top: 8px;
	}

	.norm_notice .red_text{
		color: #50DCE1;
		font-weight: 900;
		filter: blur(4px);
	}



	.result_title{
		font-size: 23px;
		font-weight: 600;
		text-align: center;
		color: #fff;
		text-transform: uppercase;
		margin-top: 10px;
	}

	.result_title span{
		color: #f1c969;
	}

	



	.result_info{
		margin-top: 15px;
		color: #fff;
		font-size: 15px;
		line-height: 19px;
		text-align: center;
	}

	.result_info small{
		display: block;
		margin-top: 15px;
	}

	.result_info ul{
		text-align: left;
	}

	.result_info ul li{
		list-style: none;
	}

	.subs_form{
		position: relative;
		width: 100%;
		left: 0;
	}

	.subs_form .reg_button{
		width: 100%;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		background: #fff;
		color: #1A2749;
		font-size: 19px;
		font-weight: 700;
		box-shadow: 0 4px 4px rgba(0,0,0,.4);
		text-decoration: none;
		border-radius: 10px;
		margin-bottom: 15px;
		margin-top: 10px;
	}

	.subs_form .reg_button img{
		width: 30px;
		height: auto;
		display: block;
		margin-right: 10px;
	}

	.subs_form .separate{
		font-size: 13px;
		color: #c0d7e5;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 16px;
		position: relative;
		overflow: hidden;
	}

	.subs_form .separate:after{
		content: "";
		width: 100%;
		height: 1px;
		background: rgba(255,255,255,.4);
		position: absolute;
		top: 50%;
		left: 50%;
		margin-left: 25px;
	}

	.subs_form .separate:before{
		content: "";
		width: 100%;
		height: 1px;
		background: rgba(255,255,255,.4);
		position: absolute;
		top: 50%;
		right: 50%;
		margin-right: 25px;
	}

	.input_box{
		position: relative;
		margin-top: 15px;
	}

	.input_box:after{
		content: "";
		width: 30px;
		height: 30px;
		background: url(img/mail_icon.png) no-repeat center;
		background-size: 29px;
		position: absolute;
		top: 50%;
		left: 17px;
		transform: translateY(-50%);
	}

	.guard_email,
	.guard_result{
		text-align: center;
		color: #e8e8e8;
		font-size: 11px;
		display: block;
		margin-top: 3px;
	}

	.guard_result{
		margin-bottom: 5px;
		margin-top: 8px;
		font-size: 11px;
		color: #a0a0a0;
		margin-top: 12px;
		letter-spacing: 0.3px;
	}


	.subs_form input{
		width: 100%;
		height: 50px;
		color: #fff;
		font-weight: 400;
		border: 1px solid #71ACD2;
		border-radius: 25px;
		background: #152A4A;
		padding-left: 55px;
		outline: none;
		font-size: 16px;
		z-index: -1;
	}
	/* Змінюємо колір фону та тексту при автозаповненні */
	.subs_form input:-webkit-autofill,
	.subs_form input:-webkit-autofill:hover, 
	.subs_form input:-webkit-autofill:focus, 
	.subs_form input:-webkit-autofill:active {
		/* Використовуємо величезну внутрішню тінь, щоб перекрити дефолтний фон Chrome */
		/* Колір #0c1c3c підбираємо під твій темний фон Somnum */
		-webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,.15) inset !important;

		/* Колір тексту робимо білим */
		-webkit-text-fill-color: #ffffff !important;

		/* Якщо у тебе є закруглення або блюр, важливо їх підтримати */
		transition: background-color 5000s ease-in-out 0s;
		font-size: 16px;
	}

	/* Прибираємо синій контур, який іноді з'являється в Safari */
	input:-webkit-autofill {
		caret-color: rgba(255,255,255,.15); /* колір курсору */
		font-size: 16px;
	}


	/* Стандартний селектор */
	.subs_form input::placeholder {
		color: #ffffff;
		font-weight: 400;
		font-size: 16px;
	}

	/* Для Safari та Chrome */
	.subs_form input::-webkit-input-placeholder {
		color: #ffffff;
		font-weight: 400;
		font-size: 16px;
	}

	/* Для Firefox */
	.subs_form input::-moz-placeholder {
		color: #ffffff;
		font-weight: 400;
		font-size: 16px;
	}

	.subs_form button{
		width: 100%;
		height: 50px;
		color: #fff;
		text-transform: uppercase;
		font-size: 18px;
		font-weight: 700;
		margin-top: 12px;
		border-radius: 25px;
		cursor: pointer;
		outline: none;
		border: 1px solid #E99C66;
		text-shadow: 0 3px 4px rgba(0,0,0,.25);
		background: linear-gradient(#E6982F, #BF530A);
		z-index: 99;
		position: relative;
		box-shadow: 0 2px 14px #E3922C
	}

	/* Контейнер-обгортка */
	.accept_policy_wrapper {
		display: flex;
		align-items: flex-start;
		gap: 12px;
		cursor: pointer;
		margin: 15px auto 5px;
		max-width: 90%;
		text-align: left;
		user-select: none;
	}

	/* Приховуємо дефолтний чекбокс, але залишаємо його клікабельним і видимим для браузера */
	.real-checkbox {
		position: absolute;
		opacity: 0;
		width: 0;
		height: 0;
	}

	/* Наш кастомний квадрат */
	.custom-checkbox {
		flex-shrink: 0;
		width: 20px;
		height: 20px;
		border: 1px solid rgba(255, 255, 255, 0.3);
		border-radius: 5px;
		background: rgba(18, 27, 54, 0.5); /* Темний фон під твій сайт */
		position: relative;
		transition: all 0.2s ease;
		margin-top: 2px;
	}

	/* Ефект при наведенні */
	.accept_policy_wrapper:hover .custom-checkbox {
		border-color: #f39c12; /* Помаранчевий ховер */
	}

	/* Стиль для активного (натиснутого) чекбокса */
	.real-checkbox:checked + .custom-checkbox {
		background-color: #f39c12; /* Стає повністю помаранчевим */
		border-color: #f39c12;
	}

	/* Малюємо галочку всередині через CSS */
	.real-checkbox:checked + .custom-checkbox::after {
		content: "";
		position: absolute;
		left: 6px;
		top: 2px;
		width: 5px;
		height: 10px;
		border: solid white;
		border-width: 0 2px 2px 0;
		transform: rotate(45deg);
	}

	/* Стиль для тексту */
	.policy-text {
		font-size: 12px;
		color: #d1d1d1;
		line-height: 1.4;
	}

	.policy-text a {
		color: #f39c12;
		text-decoration: underline;
		transition: opacity 0.2s;
	}

	.policy-text a:hover {
		opacity: 0.8;
	}

	/* Якщо користувач пропустив чекбокс і натиснув кнопку — підсвітимо червоним */
	.real-checkbox:invalid:focused + .custom-checkbox {
		border-color: #ff4d4d;
	}


	/*----------- Сторінка результату ------------*/


	.solution h1{
		font-size: 19px;
		color: #bacadb;
		font-weight: 600;
		display: flex;
		align-items: center;
		background: inherit;
	}

	.solution h1 span{
		color: #f1c969;
		margin-right: 5px;
		margin-left: 5px;
	}

	.solution_info{
		color: #fff;
		font-size: 12px;
		display: block;
	}

	.solution_box{
		width: 100%;
		height: 72px;
		border-radius: 10px;
		border: 1px solid #37506E;
		background: linear-gradient(#193756, #122244);
		margin-top: 8px;
		display: flex;
		align-items: center;
		color: #fff;
		flex-shrink: 0;
		position: relative;
	}

	.solution_icon{
		width: 47px;
		height: 47px;
		background: rgba(255, 255, 255, 0.05);
		border-radius: 10px;
		margin-left: 9px;
		margin-right: 9px;
		flex-shrink: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 30px;
	}

	.solution_title{
		font-size: 12px;
		color: #f1c969;
		font-weight: 600;
	}

	.solution_txt{
		font-size: 13px;
		padding-right: 15px;
	}

	.full_analys{
		margin-top: 15px;
	}

	.full_analys > span{
		display: flex;
		align-items: center;
		font-size: 12px;
		color: #fff;
	}

	.analys_box{
		margin-top: 10px;
		padding: 8px 0;
		border-top: 1px dashed #26375B;
		border-bottom: 1px dashed #26375B;
		display: flex;
		justify-content: space-between;
	}

	.analys_item{
		width: calc(25% - 5px);
		height: 56px;
		background: #132343;
		border-radius: 5px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		position: relative;
	}

	.analys_icon{
		opacity: .8;
		font-size: 23px;
		color: #ffdc88;
		font-weight: 700;
	}

	.analys_txt{
		font-size: 12px;
		color: #abb3c3;
		font-weight: 500;	
	}

	.analys_item:nth-child(2) .analys_txt,
	.analys_item:nth-child(3) .analys_txt {
		filter: blur(1px);
	}

	.timer{
		margin-top: 10px;
		color: #fff;
		text-transform: uppercase;
		font-size: 14px;
		font-weight: 400;
		text-align: center;
	}

	.timer strong{
		color: #f22134;
		font-weight: 700;
	}

	.timer small{
		text-align: center;
		display: block;
		margin-top: 2px;
		font-size: 10px;
		font-weight: 300;
		text-transform: none;
		color: #d4d4d4;
	}

	.pay_box button{
		width: 100%;
		height: 50px;
		color: #fff;
		text-transform: uppercase;
		font-size: 16px;
		font-weight: 500;
		margin-top: 12px;
		border-radius: 25px;
		cursor: pointer;
		outline: none;
		border: 1px solid #E99C66;
		text-shadow: 0 3px 4px rgba(0, 0, 0, .25);
		background: linear-gradient(#E6982F, #BF530A);
		z-index: 99;
		position: relative;
		box-shadow: 0 2px 14px #E3922C;
		margin-bottom: 4px;
	}

	.pay_box button small{
		text-transform: none;
		font-size: 12px;
		font-weight: 400;
		display: block;
	}


	/*Прелоадер*/


	#algo-loader {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #0a1128;
		z-index: 10000;
		/*display: flex;*/
		align-items: center;
		justify-content: center;
		color: #fff;
		font-family: sans-serif;
		display: none;
	}

	.loader-content {
		width: 100%;
		max-width: 320px;
		text-align: center;
		padding: 20px;
	}

	.loader-circle {
		width: 80px;
		height: 80px;
		border: 3px solid rgba(255, 255, 255, 0.1);
		border-top: 3px solid #f39c12;
		border-radius: 50%;
		animation: spin 1s linear infinite;
		margin: 0 auto 25px;
	}

	#algo-title {
		font-size: 20px;
		margin-bottom: 15px;
		font-weight: 600;
	}

	#algo-steps {
		text-align: left;
		font-size: 14px;
		color: #a0a0a0;
		line-height: 2;
	}

	.step-item {
		display: flex;
		align-items: center;
		opacity: 0.3;
		transition: all 0.3s ease;
	}

	.dot {
		margin-right: 10px;
	}

	.progress-container {
		width: 100%;
		height: 4px;
		background: rgba(255, 255, 255, 0.1);
		border-radius: 10px;
		margin-top: 30px;
		overflow: hidden;
	}

	#algo-progress {
		width: 0%;
		height: 100%;
		background: #f39c12;
		transition: width 0.3s ease;
	}

	/* Klasy stanu (dla JavaScript) */
	.step-done {
		color: #2ecc71 !important;
		opacity: 1 !important;
	}

	.step-active {
		color: #fff !important;
		opacity: 1 !important;
		font-weight: bold;
	}

	@keyframes spin {
		0% { transform: rotate(0deg); }
		100% { transform: rotate(360deg); }
	}


	/* Плашка cookies*/

	/* Головний контейнер плашки — тепер він фіксований знизу */
#cookie-overlay {
    position: fixed;
    top: auto; 
    bottom: 0; /* Притискаємо до нижнього краю екрана */
    left: 0;
    width: 100%;
    height: auto;
    background: rgba(18, 27, 54, 0.98); /* Твій фірмовий глибокий синій, майже непрозорий */
    border-top: 2px solid #f39c12; /* Помаранчевий акцент-лінія зверху банера */
    padding: 16px 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    z-index: 999999; /* Поверх усіх елементів квізу */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

/* Обгортка вмісту */
.cookie-container {
    width: 90%;
    max-width: 500px; /* Обмежуємо ширину, щоб на десктопі не розповзалося */
    margin: 0 auto;
}

/* Блок з головним текстом та кнопками */
#cookie-main-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Акуратний дрібний текст, який не тисне на користувача */
.cookie-content p {
    font-size: 12px;
    color: #d1d1d1;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

.cookie-link {
    color: #f39c12;
    text-decoration: underline;
}

/* Контейнер кнопок */
.cookie-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
}

/* Загальний стиль кнопок кукі */
.cookie-btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

/* Головна кнопка "Akceptuję" */
.btn-accept {
    background-color: #f39c12;
    color: #fff;
}

.btn-accept:hover {
    background-color: #e08e0b;
}

/* Друрядна кнопка "Ustawienia" */
.btn-settings {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #a0a0a0;
}

.btn-settings:hover {
    border-color: #f39c12;
    color: #fff;
}

/* Панель налаштувань (якщо розгортається) */
#cookie-settings-panel {
    width: 100%;
    padding-top: 5px;
}

/* Кастомний тумблер Switch для налаштувань (якщо у тебе його не було) */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute;
    cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: #333;
    transition: .4s; border-radius: 34px;
}
.slider:before {
    position: absolute; content: ""; height: 16px; width: 16px;
    left: 3px; bottom: 3px; background-color: white;
    transition: .4s; border-radius: 50%;
}
input:checked + .slider { background-color: #f39c12; }
input:checked + .slider:before { transform: translateX(18px); }



	


	.plan_box{
		color: #fff;
		margin-top: 11px;
		position: relative;
		z-index: 9;
		padding: 12px 0;
	}

	.plan_box:after{
		content: "";
		width: 100vw;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background: linear-gradient(#193756, #122244);
		left: 50%;
		transform: translateX(-50%);
		border-top: 1px solid #37506E;
		border-bottom: 1px solid #37506E;
		opacity: .58;
		z-index: -1;
	}

	.plan_title{
		font-size: 23px;
		text-align: center;
		font-weight: 600;
	}

	.plan_box ul{
		margin-top: 8px;
		padding-left: 6px;
	}

	.plan_box ul li{
		list-style: none;
		font-size: 12px;
		padding-left: 24px;
		line-height: 22px;
		position: relative;
	}

	.plan_box ul li:after{
		content: "";
		width: 19px;
		height: 19px;
		background: url(img/checked.png) no-repeat center;
		background-size: 19px;
		position: absolute;
		top: 2px;
		left: 0;
	}

	.plan_box span{
		display: block;
		font-size: 13px;
		margin-top: 9px;
		padding-left: 8px;
		color: #f5f5f5;
		line-height: 18px;
	}



	/*Вікно помилки*/

	#tech-error-overlay {
		position: fixed;
		top: 0; left: 0; width: 100%; height: 100%;
		background: rgba(10, 17, 40, 0.95);
		backdrop-filter: blur(10px);
		z-index: 200000;
		display: flex;
		align-items: center;
		justify-content: center;
		font-family: sans-serif;
	}
	.error-box {
		width: 90%;
		max-width: 400px;
		background: #121b36;
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 20px;
		padding: 40px 25px;
		text-align: center;
		box-shadow: 0 20px 50px rgba(0,0,0,0.5);
	}
	.error-icon { font-size: 50px; margin-bottom: 20px; }
	.error-box h3 { color: #fff; margin-bottom: 15px; font-size: 20px; }
	.error-box p { color: #d1d1d1; font-size: 14px; line-height: 1.6; margin-bottom: 15px; }
	.error-box .small-info { color: #a0a0a0; font-size: 12px; margin-bottom: 25px; }
