@font-face {
	font-style: normal;
	font-weight: 300;
	font-family: "Mulish-SemiBold";
	src: url("./fonts/static/Mulish-SemiBold.ttf");
	font-display: swap;
}

@font-face {
	font-style: normal;
	font-weight: 400;
	font-family: "Mulish-Regular";
	src: url("./fonts/static/Mulish-Regular.ttf");
	font-display: swap;
}

@font-face {
	font-style: normal;
	font-weight: 700;
	font-family: "Mulish-Bold";
	src: url("./fonts/static/Mulish-Bold.ttf");
	font-display: swap;
}

@font-face {
	font-style: normal;
	font-weight: 900;
	font-family: "Mulish-ExtraBold";
	src: url("./fonts/static/Mulish-ExtraBold.ttf");
	font-display: swap;
}



:root {
	--bg-dark: #0a0a1a;
	--primary-purple: #5D3FD3;
	--accent-blue: #2575fc;
	--text-white: #ffffff;
	--glass-bg: rgba(255, 255, 255, 0.05);
	--glass-border: 1px solid rgba(255, 255, 255, 0.15);
	--gradient-btn: linear-gradient(0deg, #8800FF 100%, #00B7FF 50%);
	--gradient-text: #007BFF;
}

* {
	margin: 0;
	padding: 0;
	outline: 0;
	font-family: "Mulish-Regular";
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
}

.invise {
	display: none !important;
}

.main-container {
	overflow: hidden;
}

body {
	margin: 0;
	padding: 0;

	background-color: var(--bg-dark);
	color: var(--text-white);
	overflow-x: hidden;
	/* Блокируем горизонт. скролл тела */
	/* height: 100vh;
    width: 100vw; */
}


/* Фон со звездами */
.background-stars {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("img/bg_1.png");
	/* тут фон */
	background-size: cover;
	background-position: center;
}

.background-stars::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 170px;
	background: linear-gradient(180deg,
			rgba(31, 27, 27, 0) 0%,
			/* Верхний цвет (#1F1B1B) делаем прозрачным, чтобы был плавный переход */
			#0C0E12 50%,
			/* Средний цвет */
			#070B10 100%
			/* Нижний цвет */
		);
	z-index: 9999;
}

.layout-split_wrapper {
	margin: 0 auto;
	padding: 10px;
	max-width: 1440px;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.content-text {
	max-width: 482px;
}

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

.gradient-text {
	background: var(--gradient-text);
	font-family: "Mulish-ExtraBold";
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.content-text .subtitle {
	text-align: center;
	color: #ccc;
	font-size: 16px;
	line-height: 1.5;
	margin-top: 10px;
	margin-bottom: 50px;
}

.content-text .btn-primary {
	margin: 20px auto;
}

.visual-container {
	-webkit-mask-image: linear-gradient(to bottom,
			rgba(0, 0, 0, 1) 80%,
			/* до 60% высоты полностью видима */
			rgba(0, 0, 0, 0) 100%
			/* к самому низу исчезает */
		);
	mask-image: linear-gradient(to bottom,
			rgba(0, 0, 0, 1) 80%,
			rgba(0, 0, 0, 0) 100%);
}





/* --- КНОПКИ --- */
.btn-primary {
	width: 100%;
	max-width: 400px;
	height: 79px;
	box-shadow: 0 4px 26px 0 rgba(0, 66, 159, 0.7);
	background: linear-gradient(180deg, #00b7ff 0%, #8800FF 100%);
	/* background: linear-gradient(0deg, #00B7FF 0%, #8800FF 100%); */
	border-radius: 17px;

	color: #ffffff;
	font-family: "Mulish-Bold";
	letter-spacing: 0.04em;
	font-size: 22px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.1s, box-shadow 0.2s;
}

.btn-primary:active {
	transform: scale(0.88);
}

.btn-primary:hover {
	box-shadow: 0 0 35px rgba(37, 117, 252, 0.6);
}


/* --- СТИЛИ ШАГОВ (STEPS) --- */
/* Обновляем этот класс */
#step-1 {
	margin-top: calc(50vh - 300px);
}

#step-2 {
	margin-top: calc(50vh - 330px);
}

#step-3 {
	margin-top: calc(50vh - 240px);
}

#step-4 {
	margin-top: calc(50vh - 250px);
}

#step-5 {
	margin-top: calc(50vh - 280px);
}

#step-6 {
	margin-top: calc(50vh - 300px);
}

.step {

	box-sizing: border-box;
	display: none;
	overflow: hidden;
	transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* Активный слайд */
.step.active {
	display: block;
	opacity: 1;
	transform: translateX(0);
	z-index: 2;
}

.step.prev-slide {
	display: block;
	transform: translateX(-100%);
	opacity: 0;
	z-index: 1;
}

.step.next-slide {
	display: block;
	transform: translateX(100%);
	opacity: 0;
	z-index: 3;
}





#step-1 .content-text h2 {
	font-size: 45px;
	text-align: center;
}

#step-1 .content-text .subtitle {
	margin-top: 20px;
	font-size: 18px;
	text-align: center;
}








#step-2 .content-text h2 {
	font-size: 45px;
	text-align: center;
}

#step-2 .content-text .subtitle {
	margin-top: 20px;
	font-size: 18px;
	text-align: center;
}


.step-2_content-visual {
	position: relative;
	-webkit-mask-image: linear-gradient(to bottom,
			rgba(0, 0, 0, 1) 90%,
			rgba(0, 0, 0, 0) 100%);
	mask-image: linear-gradient(to bottom,
			rgba(0, 0, 0, 1) 90%,
			rgba(0, 0, 0, 0) 100%);
}

.step-2_content-visual .phone-back {
	margin-left: 50px;
	max-width: 575px;
	width: 100%;
	height: auto;
}






#step-3 .cards-center-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#step-3 .cards-grid {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1100px;
}

#step-3 .glass-card {
	background-image: url('img/step_3_bg.svg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border: none;
	border-radius: 24px;
	padding: 0;
	margin: 0 10px;
	position: relative;
	overflow: hidden;
	width: 350px;
	height: 292px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;


}

#step-3 .card-img-wrapper img {
	width: 100%;
	height: auto;
}

#step-3 .card-text {
	position: relative;
	z-index: 2;
	text-align: center;
}

#step-3 .card-text h3 {
	font-family: "Mulish-Bold";
	width: 100%;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 8px 0;
	color: #fff;
	line-height: 1.2;
	letter-spacing: 0.04em;
}

#step-3 .card-text p {
	font-family: "Mulish-SemiBold";
	width: 100%;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
	line-height: 1.4;
	letter-spacing: 0.04em;
}

#step-3 .btn-primary {
	margin: 60px auto 20px;
}





#step-4 .layout-split_wrapper {
	min-height: 420px;
}

#step-4 .step-4_block_2 {
	margin-left: 50px;
	position: relative;
}

#step-4 .feature-list {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	box-sizing: border-box;
	padding: 25px 25px 20px 25px;
	width: 542px;
	height: 355px;
	background-image: url('img/step_3_bg_1.svg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

#step-4 .feature-list li {
	list-style-type: none;
	position: relative;
	padding-left: 25px;
	margin-bottom: 40px;

	font-size: 18px;
	line-height: 1.2;
	color: #ffffff;
	text-align: left;
}

#step-4 .feature-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 5px;

	width: 9px;
	height: 9px;

	/* background: linear-gradient( #00B7FF 0%, #8800FF 100%); */
	background-image: url('img/step_4_point.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

#step-4 .feature-list li:first-child {
	max-width: 326px;
}

#step-4 .feature-list li:nth-child(2) {
	max-width: 320px;

}

#step-4 .feature-list li:nth-child(3) {
	max-width: 320px;
	margin-bottom: 0;
}

#step-4 .man-image2 {
	position: absolute;
	right: -90px;
	bottom: 0;
	background-image: url('img/image_19.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	border-bottom-right-radius: 45px;
	width: 336px;
	height: 399px;
}

#step-4 .content-text h2 {
	font-size: 45px;
	text-align: center;
}

#step-4 .content-text .subtitle {
	margin-top: 20px;
	font-size: 18px;
	text-align: center;
}






#step-5 .layout-split_wrapper {
	max-width: 1060px;

}

#step-5 .content-text h2 {
	font-size: 45px;
	text-align: center;
}

#step-5 .content-text .subtitle {
	margin-top: 20px;
	font-size: 18px;
	text-align: center;
}

#step-5 .chat-container-custom {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-left: 50px;
	/* min-height: 530px; */
}

#step-5 .chat-container-custom img {
	max-width: 433px;
	width: 100%;
	height: auto;
}

#step-5 .chat-container-custom img:first-child {
	margin-bottom: 24px;
}


.chat-container-custom_card {
	position: relative;
	max-width: 433px;
	padding: 55px 16px;
	background: #1a3557;
	border-radius: 25px;
}

.chat-container-custom_card:first-child {
	margin-bottom: 20px;
}

.chat-container-custom_card:last-child {
	-webkit-mask-image: linear-gradient(to bottom,
			rgba(0, 0, 0, 1) 30%,
			rgba(0, 0, 0, 0) 100%);
	mask-image: linear-gradient(to bottom,
			rgba(0, 0, 0, 1) 30%,
			rgba(0, 0, 0, 0) 100%);
}

.chat-container-custom_card p.name {
	letter-spacing: 0.04em;
	position: absolute;
	top: 14px;
	left: 16px;
	width: 80%;
	height: 18px;
	font-weight: 600;
	font-size: 16px;
	line-height: 130%;
	color: #007BFF;
}

.chat-container-custom_card p.time {
	letter-spacing: 0.04em;
	position: absolute;
	bottom: 14px;
	right: 14px;
	font-weight: 600;
	font-size: 11px;
	line-height: 130%;
	color: #98a1b0;
}



.chat-container-custom_card p.text {
	letter-spacing: 0.04em;
	font-family: "Mulish-SemiBold";
	font-weight: 600;
	font-size: 18px;
	line-height: 130%;
	color: #fff;
}









#step-6 .layout-split_wrapper {
	max-width: 1160px;
}

#step-6 .content-text h2 {
	font-size: 45px;
	text-align: center;
}

#step-6 .pricing-slider {
	display: flex;
	margin-left: 50px;
	padding: 30px 5px 30px 5px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	transition: transform 0.3s ease;
}

#step-6 .pricing-slider::-webkit-scrollbar {
	display: none;
}


#step-6 .price-card {
	display: block;
	min-width: 300px;
	scroll-snap-align: center;

	background: rgba(15, 15, 35, 0.9);
	border: 4px solid transparent;
	border-radius: 20px;
	padding: 25px;
	box-sizing: border-box;
	position: relative !important;
	text-align: left;
	max-width: 360px;

	cursor: pointer;
	transition: all 0.3s ease;
}

#step-6 .price-card:first-child {
	margin-right: 25px;
}

#step-6 .price-card.selected {

	border: 4px solid #5D3FD3;
	box-shadow: 0 0 20px rgba(93, 63, 211, 0.4);
	transform: scale(1.02);
}



#step-6 .badge {
	position: absolute;
	top: -17px;
	display: inline-block;
	font-family: "Mulish-ExtraBold";
	letter-spacing: 0.04em;
	font-size: 16px;
	margin-bottom: 15px;

	box-sizing: border-box;
	border-radius: 41px;
	padding: 6px 20px;
	width: fit-content;
	height: 34px;

	background: linear-gradient(180deg, #00b7ff 0%, #80f 100%);
	color: #fff;
	transition: background 0.3s ease;
}

#step-6 .price-card.selected .badge {
	background: linear-gradient(180deg, #00b7ff 0%, #80f 100%);
}

#step-6 .check-list {

	list-style: none;
	padding: 0;
	font-size: 14px;
	margin-top: 5px;
}

#step-6 .check-list li {

	margin-bottom: 15px;
	padding-left: 35px;
	position: relative;
	color: #fff;
	display: flex;
	align-items: center;
	min-height: 24px;
}

#step-6 .check-list li:last-child {
	margin-bottom: 0;
}

#step-6 .check-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);

	width: 22px;
	height: 22px;
	border-radius: 50%;

	background: url("img/Vector.svg");

	box-shadow: 0 2px 8px rgba(124, 39, 199, 0.4);
	border: none;
}

#step-6 .check-list li.disabled {
	color: #888;
}

#step-6 .check-list li.disabled::before {
	background: transparent;

	border: 2px solid #555;
	box-sizing: border-box;
	box-shadow: none;

	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
	background-size: 12px;
	background-repeat: no-repeat;
	background-position: center;
}



.language {
	z-index: 10;
	position: absolute;
	top: 5px;
	left: 0;
	right: 0;
	margin: 0 auto;
		width: fit-content;

}
.language p {
	display: inline-block;
	text-align: center;
	width: fit-content;
	color: #fff;
	font-size: 20px;
	line-height: 1;
	text-shadow: 0 0 1px rgba(0, 0, 0, 1);
}

.language p span{
display: inline-block;
	cursor: pointer;
	padding: 8px 10px;
}
.language p span.active {
	font-weight: 700;
	text-transform: uppercase;
	box-shadow: inset 0 0 8px rgba(255, 255, 255, 1) ;
	border-radius: 5px;
	cursor: not-allowed;
}


@media (max-width:1000px) {

.language p {
	font-size: 18px;
}

.language p span{
	padding: 6px 8px;
}
.language p span.active {
	text-transform: uppercase;
	box-shadow: inset 0 0 6px rgba(255, 255, 255, 1) ;
	border-radius: 4px;

}


	#step-1,
	#step-2,
	#step-4,
	#step-5,
	#step-6 {
		margin-top: 37px;
	}

	#step-3 {
		margin-top: 57px;
	}






	.layout-split_wrapper {
		padding: 0px 5px;
		flex-direction: column;
		justify-content: center;

	}

	#step-1 .content-text h2,
	#step-2 .content-text h2 {
		font-size: 30px;
		text-align: center;
	}

	#step-4 .content-text h2 {
		font-size: 30px;
		text-align: center;
	}


	#step-1 .content-text .subtitle {
		max-width: 300px;
		margin: 15px auto 5px;
		font-size: 16px;
	}

	#step-2 .content-text .subtitle,
	#step-4 .content-text .subtitle {
		max-width: 340px;
		margin: 15px auto 5px;
		font-size: 16px;
	}

	#step-5 .content-text .subtitle {
		max-width: 340px;
		margin: 15px auto 5px;
		font-size: 16px;
	}

	#step-1 .btn-primary {
		position: fixed;
		left: 0;
		right: 0;
		margin: 0px auto;
		bottom: 30px;
		max-width: 351px;
		height: 68px;
		font-size: 16px;
		z-index: 2;
	}

	#step-2 .btn-primary {
		position: fixed;
		left: 0;
		right: 0;
		margin: 0px auto;
		bottom: 70px;
		max-width: 351px;
		height: 68px;
		font-size: 16px;
		z-index: 2;
	}

	#step-4 .btn-primary {
		position: fixed;
		left: 0;
		right: 0;
		margin: 0px auto;
		bottom: 70px;
		max-width: 351px;
		height: 68px;
		font-size: 16px;
		z-index: 2;
	}


	#step-3 .btn-primary {
		margin: 30px auto 20px;
		max-width: 351px;
		height: 68px;
		font-size: 16px;
	}


	#step-1 .man-image {
		max-width: 393px;
	}

	.background-stars::after {
		height: 130px;
		z-index: 0;
	}

	#step-2 .layout-split_wrapper {
		min-height: 664px;
		justify-content: flex-start;
	}

	.step-2_content-visual {
		-webkit-mask-image: linear-gradient(to bottom,
				rgba(0, 0, 0, 1) 70%,
				rgba(0, 0, 0, 0) 100%);
		mask-image: linear-gradient(to bottom,
				rgba(0, 0, 0, 1) 70%,
				rgba(0, 0, 0, 0) 100%);
	}

	.step-2_content-visual .phone-back {
		margin-top: 10px;
		margin-left: auto;
		max-width: 360px;
		width: 100%;
		height: auto;
	}


	#step-3 .cards-grid {

		flex-direction: column;
		justify-content: center;

	}

	#step-3 .glass-card {
		border-radius: 20px;
		padding: 0;
		margin: 0 0 18px;
		width: 350px;
		height: 140px;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
	}

	#step-3 .card-img-wrapper {
		order: 1;
	}

	#step-3 .card-text {
		max-width: 205px;
		padding-left: 16px;
		text-align: left;
		letter-spacing: 0.02em;
	}

	#step-3 .card-text h3 {
		font-size: 20px;
	}

	#step-3 .card-text p {
		font-size: 14px;
		line-height: 1.2;
	}

	#step-3 .card-img-wrapper img.book_img {
		position: absolute;
		bottom: -10px;
		right: -50px;
	}

	#step-3 .card-img-wrapper img.heart_img {
		position: absolute;
		max-width: 152px !important;
		bottom: -20px;
		right: -50px;
	}

	#step-3 .card-img-wrapper img.calendar_img {
		position: absolute;
		max-width: 160px !important;
		bottom: -30px;
		right: -45px;
	}




	#step-4 .layout-split_wrapper {
		min-height: 664px;
		justify-content: flex-start;
	}

	#step-4 .step-4_block_2 {
		margin-left: auto;
	}

	#step-4 .feature-list {
		margin-top: 30px;
		padding: 20px 18px;
		width: 350px;
		border-radius: 20px;
		height: fit-content;
	}

	#step-4 .feature-list li {
		padding-left: 25px;
		margin-bottom: 15px;
		font-size: 16px;
	}


	#step-4 .feature-list li:first-child {
		max-width: 185px;
	}

	#step-4 .feature-list li:nth-child(2) {
		max-width: 185px;

	}

	#step-4 .feature-list li:nth-child(3) {
		max-width: 185px;
		margin-bottom: 0;
	}

	#step-4 .man-image2 {
		bottom: -65px;
		right: -25px;
		border-bottom-right-radius: 0;
		width: 250px;
		height: 383px;
		background-image: url('img/image_19_m.png');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		-webkit-mask-image: linear-gradient(to bottom,
				rgba(0, 0, 0, 1) 80%,
				rgba(0, 0, 0, 0) 100%);
		mask-image: linear-gradient(to bottom,
				rgba(0, 0, 0, 1) 80%,
				rgba(0, 0, 0, 0) 100%);
	}








	#step-5 .layout-split_wrapper {
		justify-content: flex-start;
	}

	#step-5 .content-text h2 {
		font-size: 32px;
	}

	#step-5 .card-text p {
		font-size: 16px;
		line-height: 1.3;
	}


	#step-5 .chat-container-custom {
		align-items: flex-start;
		margin-top: 40px;
		margin-left: 0;
	}

	#step-5 .chat-container-custom img {
		max-width: 325px;
		margin: 0 auto;
	}


	.chat-container-custom_card {
		max-width: 325px;
		padding: 45px 16px;
	}

	.chat-container-custom_card:first-child {
		margin-bottom: 13px;
	}


	.chat-container-custom_card p.text {
		font-size: 16px;
	}

	.chat-container-custom_card p.name {
		font-size: 15px;
	}






	#step-5 .chat-container-custom img:first-child {
		margin-bottom: 15px;
	}

	#step-5 .chat-container-custom img:last-child {
		-webkit-mask-image: linear-gradient(to bottom,
				rgba(0, 0, 0, 1) 30%,
				rgba(0, 0, 0, 0) 100%);
		mask-image: linear-gradient(to bottom,
				rgba(0, 0, 0, 1) 30%,
				rgba(0, 0, 0, 0) 100%);
	}

	#step-5 .btn-primary {
		position: fixed;
		left: 0;
		right: 0;
		margin: 0px auto;
		bottom: 0px;
		max-width: 351px;
		height: 68px;
		font-size: 16px;
		z-index: 2;
	}

	#step-5 .eng_cont .btn-primary {
		position: fixed;
		left: 0;
		right: 0;
		margin: 0px auto;
		bottom: 30px;
		max-width: 351px;
		height: 68px;
		font-size: 16px;
		z-index: 2;
	}










	#step-6 .layout-split_wrapper {
		justify-content: flex-start;
		min-height: 680px;
	}

	#step-6 .content-text h2 {
		line-height: 1.2;
		font-size: 32px;
	}

	#step-6 .card-text p {
		font-size: 16px;
		line-height: 1.3;
	}

	#step-6 .btn-primary {
		position: fixed;
		left: 0;
		right: 0;
		margin: 0px auto;
		bottom: 10px;
		max-width: 351px;
		height: 68px;
		font-size: 16px;
		z-index: 2;
	}

	#step-6 .content-text .subtitle {
		margin-top: 10px;
		margin-bottom: 15px;
	}

	#step-6 .pricing-slider {
		max-width: 400px;
		margin-left: 0;
		justify-content: flex-start;
		padding: 30px 5px 30px 5px;
		/* overflow-x: hidden; */
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}

	#step-6 .price-card {
		/* min-width: 100%; */
		flex-shrink: 0;
	}

	#step-6 .price-card:first-child {
		margin-left: 10px;
	}
}




@media (max-width:450px) {
	.background-stars {
		background-image: url("img/bg_2.png");
		background-size: cover;
		background-position: center;
	}

}