/* Базовые переменные */
:root {
	--bg: #FFFFFF;
	--bg-muted: #F3F6FF;
	--accent: #1B2250;
	--accent-secondary: #6282E3;
	--accent-light: #E1E7FF;
	--accent-gradient: linear-gradient(135deg, #6282E3, #1B2250);
	--text: #1B2250;
	--muted: #4F5A8A;
}

html {
	scroll-behavior: smooth;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	border: 0;
	white-space: nowrap;
}

/* Обнуление */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
span,
div {
	font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
}


body {
	font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	background: var(--bg);
	color: var(--text);
}


/* ===== HEADER ===== */
header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 16px rgba(27, 34, 80, 0.1);
	transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Контейнер */
._container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 14px 0px;
}

@media(max-width: 1200px) {
	._container {
		padding: 14px 20px;
	}
}

.header_container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Логотип */
.header_logo {
	display: flex;
	align-items: center;
	justify-content: center;
}

.header_logo img {
	width: 140px;
	height: auto;
}

/* Меню */
.header_menu {
	display: flex;
	align-items: center;
	gap: 28px;
}

.header_link {
	font-weight: 500;
	color: var(--muted);
	text-decoration: none;
	transition: color 0.2s ease, transform 0.15s ease;
}

.header_link:hover {
	color: var(--accent);
	transform: translateY(-2px);
}

/* Кнопка */
.header_button {
	background: var(--accent-gradient);
	color: #fff;
	padding: 10px 18px;
	border-radius: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 4px 16px rgba(27, 34, 80, 0.2);
}

.header_button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(27, 34, 80, 0.3);
}

/* ===== АДАПТИВ ===== */


/* Бургер для мобильной версии */
.burger {
	display: none;
	width: 32px;
	height: 24px;
	position: relative;
	cursor: pointer;
	background: none;
	border: none;
}

.burger span {
	position: absolute;
	height: 3px;
	width: 100%;
	background: var(--text);
	border-radius: 3px;
	left: 0;
	transition: all 0.3s ease;
}

.burger span:nth-child(1) {
	top: 0;
}

.burger span:nth-child(2) {
	top: 10px;
}

.burger span:nth-child(3) {
	top: 20px;
}

.burger.active span:nth-child(1) {
	transform: rotate(45deg);
	top: 10px;
}

.burger.active span:nth-child(2) {
	opacity: 0;
}

.burger.active span:nth-child(3) {
	transform: rotate(-45deg);
	top: 10px;
}

@media (max-width: 768px) {
	.burger {
		display: block;
	}

	.header_menu {
		position: fixed;
		top: 70px;
		right: 0px;
		flex-direction: column;
		gap: 18px;
		background: rgba(255, 255, 255, 1);
		padding: 20px 30px;
		border-radius: 12px;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
		transform: translateY(-10px);
		opacity: 0;
		pointer-events: none;
		transition: all 0.3s ease;
		width: 100%;
	}

	.header_menu.active {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}

	.burger {
		display: block;
	}
}



/*main-------main-------main-------main-------main-------main-------main-------main-------main-------main-------main-------main-------main-------*/
main {
	position: relative;
	background-color: var(--bg-muted);
	background-image: url("../images/hero-mountains.jpeg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

main::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(243, 246, 255, 0));
}

.main_container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 80px 0px;
	gap: 50px;
	position: relative;
	z-index: 1;
}

.main_content {
	flex: 0 1 520px;
	max-width: 520px;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.main_title {
	font-size: 42px;
	font-weight: 700;
	color: var(--text);
	line-height: 1.2;
}

.main_title_line {
	display: block;
}

.main_title_accent {
	color: var(--accent-secondary);
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}



.main_subtitle {
	font-size: 18px;
	line-height: 1.6;
	max-width: 550px;
}

.main_buttons {
	display: flex;
}

.main_button {
	background: var(--accent-gradient);
	color: #fff;
	font-weight: 600;
	font-size: 18px;
	padding: 16px 36px;
	border-radius: 14px;
	width: fit-content;
	transition: all 0.3s ease;
	cursor: pointer;
	box-shadow: 0 6px 15px rgba(27, 34, 80, 0.28);
	margin-right: 10px;
	border: 0;
	width: 250px;
}

.main_button_2 {
	background-color: transparent;
	color: var(--accent);
	font-weight: 600;
	font-size: 18px;
	padding: 16px 36px;
	border-radius: 14px;
	width: fit-content;
	transition: all 0.3s ease;
	cursor: pointer;
	box-shadow: 0 6px 15px rgba(98, 130, 227, 0.2);
	border: 1px solid var(--accent);
	width: 250px;
}

.main_button_2:hover {
	transform: translateY(-3px);
}

.main_button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 22px rgba(27, 34, 80, 0.35);
}

/* 📱 Мобильная адаптация */
@media (max-width: 768px) {
	.main_container {
		flex-direction: column;
		text-align: center;
		padding: 60px 20px;
	}

	.main_content {
		align-items: center;
		max-width: 100%;
		flex: 1;
	}

	.main_title {
		font-size: 32px;
	}

	.main_subtitle {
		font-size: 16px;
	}
}




/*adv---adv---adv---adv---adv---adv---adv---adv---adv---adv---adv---adv*/
.adv_title {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 20px;
	padding-top: 80px;
}

.adv_slider_wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 80px 0;
}

.adv_slider {
	overflow: hidden;
	width: 100%;
	max-width: 1200px;
}

.adv_slider_track {
	display: flex;
	transition: transform 0.6s ease;
}

.adv_slide {
	display: flex;
	justify-content: space-around;
	gap: 20px;
	min-width: 100%;
	padding: 20px 0px;
}

.adv_item {
	background: #fff;
	border-radius: 16px;
	padding: 25px;
	text-align: center;
	flex: 1 1 23%;
	transition: transform 0.3s ease;
}

.adv_item:hover {
	transform: translateY(-6px);
}

.adv_item img {
	width: 60px;
	margin-bottom: 15px;
}

.adv_item_title {
	font-size: 18px;
	font-weight: 600;
	color: var(--accent);
	margin-bottom: 8px;
}

.adv_item_subtitle {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.5;
}

/* кнопки управления */
.slider_btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	background-color: transparent;
	color: var(--accent-secondary);
	font-size: 30px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
}



.slider_btn.prev {
	left: -60px;
}

.slider_btn.next {
	right: -60px;
}

/* адаптив */
@media (max-width: 768px) {
	.slider_btn {
		width: 42px;
		height: 42px;
		font-size: 18px;
	}

	.slider_btn.prev {
		left: 5px;
	}

	.slider_btn.next {
		right: 5px;
	}
}

/* точки */
.adv_dots {
	text-align: center;
	margin-top: 25px;
}

.adv_dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	background: var(--accent-light);
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
	transition: 0.3s;
}

.adv_dot.active {
	background: var(--accent-secondary);
}

/* адаптив */
@media (max-width: 992px) {
	.adv_slide {
		flex-wrap: wrap;
	}

	.adv_item {
		flex: 1 1 45%;
	}

	.slider_btn.prev {
		left: -10px;
	}

	.slider_btn.next {
		right: -10px;
	}
}

@media (max-width: 600px) {
	.adv_item {
		flex: 1 1 100%;
	}
}


/*process---process---process---process---process---process---process---process---process---process---process---process---process---process---*/




/* ===== HOW IT WORKS SECTION ===== */
.process {
	background-color: #fff;
	padding: 80px 0;
	position: relative;
}

.process_title {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 70px;
}

.process_steps {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	position: relative;
}

.process_step {
	background: var(--bg-muted);
	border-radius: 20px;
	box-shadow: 0 6px 20px rgba(27, 34, 80, 0.12);
	padding: 30px 40px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	max-width: 800px;
	width: 100%;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process_step:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 30px rgba(27, 34, 80, 0.18);
}

.process_number {
	background: var(--accent-gradient);
	color: #fff;
	font-weight: 700;
	font-size: 22px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 10px rgba(98, 130, 227, 0.24);
}

.process_text h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--accent);
	margin-bottom: 8px;
}

.process_text p {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.6;
}

/* стрелки между блоками */
.process_arrow {
	width: 40px;
	height: 40px;
	background: transparent;
	position: relative;
}

.process_arrow::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 20px;
	height: 20px;
	border-right: 3px solid var(--accent-secondary);
	border-bottom: 3px solid var(--accent-secondary);
	animation: arrowMove 2s infinite ease-in-out;
}

@keyframes arrowMove {

	0%,
	100% {
		transform: translateX(-50%) rotate(45deg) translateY(0);
		opacity: 0.7;
	}

	50% {
		transform: translateX(-50%) rotate(45deg) translateY(6px);
		opacity: 1;
	}
}

/* адаптив */
@media (max-width: 768px) {
	.process_step {
		flex-direction: column;
		align-items: flex-start;
		padding: 25px 30px;
	}

	.process_number {
		margin-bottom: 10px;
	}
}

/*review---review---review---review---review---review---review---review---review---review---review---review---review---review---*/

.review {
	padding: 80px 0;
	background-color: var(--bg-muted);
	position: relative;
}

.review_title {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 20px;
}

.review_subtitle {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 50px;
	color: var(--muted);
	line-height: 1.6;
}

.review_slider_wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.review_slider {
	overflow: hidden;
	width: 100%;
	max-width: 1200px;
	position: relative;
}

.review_slider_track {
	display: flex;
	transition: transform 0.6s ease;
}

.review_slide {
	min-width: 100%;
	display: flex;
	justify-content: space-around;
	gap: 20px;
	padding: 20px 0px;
}

.review_item {
	display: flex;
	flex-direction: column;
	flex: 1 1 30%;
	background: #ffffff;
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review_item:hover {
	transform: translateY(-5px);
	
}

.review_image img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 15px;
	border: 3px solid var(--accent-light);
}

.review_name {
	font-weight: 600;
	color: var(--accent);
	margin-bottom: 10px;
	font-size: 18px;
}

.review_text {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.5;
	margin-bottom: 15px;
}

audio {
	width: 100%;
	margin-top: auto;
	border-radius: 10px;
}

/* кнопки управления */
.slider_btn {
	position: absolute;
	top: 43%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	color: var(--accent-secondary);
	font-size: 30px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
}



.slider_btn.prev {
	left: -60px;
}

.slider_btn.next {
	right: -60px;
}

/* точки */
.review_dots {
	text-align: center;
	margin-top: 30px;
}

.review_dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	background: var(--accent-light);
	border-radius: 50%;
	margin: 0 6px;
	cursor: pointer;
	transition: 0.3s ease;
}

.review_dot.active {
	background: var(--accent);
	transform: scale(1.2);
}

/* адаптив */
@media (max-width: 992px) {
	.review_slide {
		flex-wrap: wrap;
	}

	.review_item {
		flex: 1 1 45%;
	}

	.slider_btn.prev {
		left: -10px;
	}

	.slider_btn.next {
		right: -10px;
	}
}

@media (max-width: 768px) {
	.slider_btn {
		width: 42px;
		height: 42px;
		font-size: 18px;
		display: none;
	}

	.slider_btn.prev {
		left: 5px;
	}

	.slider_btn.next {
		right: 5px;
	}
}

@media (max-width: 600px) {
	.review_item {
		flex: 1 1 100%;
	}
}



/*recommendations---------recommendations---------recommendations---------recommendations---------recommendations---------recommendations---------recommendations---------recommendations*/

.recommendations {
	background: var(--bg-muted);
	padding: 80px 0;
	position: relative;
}

.recommendations_title {
	text-align: center;
	font-size: 32px;
	color: var(--accent);
	font-weight: 700;
	margin-bottom: 50px;
}

.recommendations_outer {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.recommendations_wrapper {
	overflow: hidden;
	width: 100%;
}

.recommendations_list {
	display: flex;
	transition: transform 0.8s ease;
	padding: 20px 0px;
	justify-content: space-between;
}

.recommendation_item {
	flex: 0 0 100%;
	background: #fff;
	border-radius: 20px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: all 0.3s ease;
}

.recommendation_item:hover {
	transform: translateY(-5px);
}


.recommendation_avatar img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 50%;
	border: 3px solid var(--accent-light);
	margin-bottom: 15px;
}

.recommendation_text h3 {
	margin: 0;
	font-size: 20px;
	color: var(--accent);
	font-weight: 600;
}

.recommendation_role {
	color: var(--muted);
	font-size: 14px;
	margin: 4px 0 12px;
}

.recommendation_quote {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.6;
}

.slider_btn {
	position: absolute;
	top: 43%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	color: var(--accent-secondary);
	font-size: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
}


.slider_btn.prev {
	left: -60px;
}

.slider_btn.next {
	right: -60px;
}

.rec_dots {
	display: flex;
	justify-content: center;
	margin-top: 25px;
	gap: 10px;
}

.rec_dot {
	width: 10px;
	height: 10px;
	background-color: var(--accent-light);
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.3s;
}

.rec_dot.active {
	background-color: var(--accent-secondary);
}

/* 📱 Адаптив */
@media (max-width: 600px) {
	.slider_btn.prev {
		left: 10px;
	}

	.slider_btn.next {
		right: 10px;
	}
}

/*pricing---pricing---pricing---pricing---pricing---pricing---pricing---pricing---pricing---pricing---pricing---pricing---pricing---pricing---pricing---*/

.pricing {
	padding: 80px 0;
	background: var(--bg-muted);
	text-align: center;
	color: var(--accent);
}

.pricing_title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 50px;
}

.pricing_plans {
	display: flex;
	gap: 30px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 70px;
}

.plan_card {
	background: #fff;
	border: 1.5px solid var(--accent-light);
	border-radius: 18px;
	padding: 40px 30px;
	box-shadow: 0 6px 20px rgba(27, 34, 80, 0.1);
	width: 300px;
	transition: 0.3s ease;
}

.plan_card.active {
	background: var(--accent-gradient);
	color: #fff;
	transform: translateY(-5px);
}

.plan_card h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
}

.plan_card .price {
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 10px;
}

.plan_card .desc {
	font-size: 15px;
	line-height: 1.5;
	margin-bottom: 25px;
}

.plan_btn {
	background: var(--accent-gradient);
	color: #fff;
	font-weight: 600;
	border: none;
	border-radius: 10px;
	padding: 12px 28px;
	cursor: pointer;
	transition: 0.3s;
}

.plan_card.active .plan_btn {
	background: #fff;
	color: var(--accent);
}

.plan_btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 18px rgba(27, 34, 80, 0.22);
}

/* ==== Таблица ==== */
.plans {
	padding: 80px 20px;
	background-color: var(--bg-muted);
	font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	color: var(--accent);
}

.plans_title {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 50px;
	color: var(--accent);
}

.plans_table {
	max-width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	overflow: hidden;
}

.plans_row {
	display: contents;
}

.plans_row.header .plans_col {
	color: var(--accent);
	font-weight: 600;
	border-bottom: 2px solid var(--accent-secondary);
	font-size: 22px;
	text-align: left;
}

.plans_head span {
	font-size: 14px;
	color: var(--muted);
}

.price_num {
	font-size: 36px;
}

.price_num span {
	font-size: 12px;
	color: var(--muted);
}

.price_discount_2 {
	font-size: 22px;
	color: var(--text);
	font-weight: 700;
	position: relative;
}

.price_discount_2::before {
	content: "";
	width: 30px;
	height: 2px;
	background-color: var(--accent);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -2px;
}

.price_discount_3 {
	font-size: 22px;
	color: var(--text);
	font-weight: 700;
	position: relative;
}

.price_discount_3::before {
	content: "";
	width: 40px;
	height: 2px;
	background-color: var(--accent);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -2px;
}

.price_discount {
	font-size: 16px;
	color: var(--muted);
}

.plans_row.header .plans_col:first-child {
	background: transparent;
}

.plans_col {
	padding: 18px 16px;
	text-align: center;
	border-bottom: 1.5px solid var(--accent-light);
	border-right: 1.5px solid var(--accent-light);
	font-size: 16px;
}

.plans_col:last-child {
	border-right: none;
}

.plans_col.feature {
	font-weight: 600;
	text-align: left;
	background-color: var(--bg-muted);
}

.plans_row.footer .plans_col {
	border-top: 2px solid var(--accent-secondary);
	background-color: var(--accent-light);
}

.plan_btn {
	background: var(--accent-gradient);
	border: none;
	color: white;
	font-weight: 600;
	padding: 12px 28px;
	border-radius: 12px;
	cursor: pointer;
	transition: 0.3s;
	font-size: 16px;
}

.plan_btn:hover {
	background: var(--accent-gradient);
	transform: translateY(-3px);
}

.plans_mobile {
	display: none;
}

@media (max-width: 992px) {
	.plans_table {}

	.price_num {
		font-size: 30px;
	}

	.plan_btn {
		font-size: 15px;
		padding: 10px 24px;
	}
}

/* Смартфоны (до 768px) */
@media (max-width: 768px) {
	.plans_mobile {
		display: block;
	}

	/* Вместо таблицы — карточки */
	.plans_table {
		display: flex;
		flex-direction: column;
		gap: 25px;
	}

	.plans_row.header,
	.plans_row.footer {
		display: none;
		/* убираем заголовочную строку и футер */
	}

	/* Каждая колонка — отдельная карточка тарифа */
	.plans_col.feature {
		display: none;
		/* скрываем лишние названия строк */
	}

	.plans_table::before {
		display: none;
	}

	/* Создаем карточки */
	.plans_table>.plans_row:nth-child(n+2) {
		display: none;
		/* скрываем исходные строки, покажем через флекс ниже */
	}

	/* Карточки через псевдоэлементы вручную */
	.plans_table::after {
		content: "";
	}

	/* Альтернатива — вручную создаем карточки тарифов */
	.plans_table {
		grid-template-columns: 1fr;
	}

	/* Каждая карточка тарифа */
	.plans_mobile_card {
		background: #fff;
		border-radius: 16px;
		padding: 25px 20px;
		box-shadow: 0 6px 18px rgba(98, 130, 227, 0.14);
		text-align: center;
		margin-bottom: 20px;
	}

	.plans_mobile_card h3 {
		font-size: 22px;
		font-weight: 700;
		color: var(--accent);
		margin-bottom: 8px;
	}

	.plans_mobile_card .price {
		font-size: 28px;
		font-weight: 700;
		color: var(--accent-secondary);
		margin-bottom: 8px;
	}

	.plans_mobile_card .price_discount {
		font-size: 14px;
		color: var(--muted);
		margin-bottom: 20px;
	}

	.plans_mobile_card ul {
		list-style: none;
		padding: 0;
		margin: 0 0 20px 0;
	}

	.plans_mobile_card ul li {
		font-size: 15px;
		color: var(--accent);
		padding: 6px 0;
		border-bottom: 1px solid var(--accent-light);
	}

	.plan_btn {
		width: 100%;
		padding: 14px;
		font-size: 16px;
	}
}

/* Малые экраны (до 480px) */
@media (max-width: 480px) {
	.plans {
		padding: 60px 10px;
	}

	.plans_title {
		font-size: 28px;
		margin-bottom: 35px;
	}

	.plans_mobile_card {
		padding: 20px 15px;
	}

	.plans_mobile_card h3 {
		font-size: 20px;
	}

	.price_num {
		font-size: 26px;
	}
}


/*order---order---order---order---order---order---order---order---order---order---order---order---order---order---order---*/

/* === ORDER SECTION === */
.order {
	padding: 80px 0;
	background: linear-gradient(180deg, var(--bg-muted) 0%, #ffffff 100%);
	color: var(--accent);
}

.order_container {
	background: #fff;
	border: 1px solid var(--accent-light);
	border-radius: 20px;
	box-shadow: 0 8px 25px rgba(27, 34, 80, 0.1);
	padding: 40px 50px;
}

/* Заголовок */
.order_title {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 60px;
}

/* === FORM === */
/* === GLOBAL FORM STYLE (унификация шрифта и отступов) === */
.order_form {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
	color: var(--accent);
	line-height: 1.6;
}

/* === INPUTS & LABELS === */
.order_fields label {
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
}

.order_fields span {
	font-size: 16px;
	font-weight: 500;
	color: var(--accent);
	margin-bottom: 10px;
}

.order_fields input,
.order_fields textarea,
.order_setting select {
	padding: 14px 16px;
	border: 1.5px solid var(--accent-light);
	border-radius: 12px;
	font-size: 15px;
	font-weight: 400;
	background-color: var(--bg-muted);
	color: var(--accent);
	transition: all 0.25s ease;
	resize: none;
	font-family: inherit;
}

.order_fields textarea {
	min-height: 160px;
	resize: vertical;
}

.order_fields input:focus,
.order_fields textarea:focus,
.order_setting select:focus {
	outline: none;
	border-color: var(--accent-secondary);
	background-color: #ffffff;
	box-shadow: 0 0 0 4px rgba(98, 130, 227, 0.18);
}

.order_setting input[type="text"] {
	padding: 14px 16px;
	border: 1.5px solid var(--accent-light);
	border-radius: 12px;
	font-size: 15px;
	background-color: var(--bg-muted);
	color: var(--accent);
	transition: all 0.25s ease;
	font-family: inherit;
}

.order_setting input[type="text"]:focus {
	outline: none;
	border-color: var(--accent-secondary);
	background-color: #ffffff;
	box-shadow: 0 0 0 4px rgba(98, 130, 227, 0.18);
}

/* === AUDIO SETTINGS === */
.order_audio_settings {
	border-top: 2px solid var(--accent-light);
	padding-top: 30px;
}

.order_audio_settings h3 {
	font-size: 22px;
	font-weight: 600;
	color: var(--accent);
	margin-bottom: 25px;
}

.order_setting {
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
}

.order_setting label {
	font-size: 15px;
	font-weight: 500;
	color: var(--accent);
	margin-bottom: 8px;
}

.order_setting .hint {
	font-size: 14px;
	color: var(--muted);
	margin-top: 6px;
	line-height: 1.5;
}

.promo_field {
	display: flex;
	gap: 12px;
	align-items: stretch;
}

.promo_field input {
	flex: 1;
}

.promo_apply_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 26px;
	align-self: stretch;
	border-radius: 12px;
	border: none;
	background: var(--accent-gradient);
	color: #ffffff;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
	font-family: inherit;
	box-shadow: 0 6px 20px rgba(27, 34, 80, 0.22);
}

.promo_apply_btn:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(27, 34, 80, 0.3);
}

.promo_apply_btn:disabled {
	cursor: not-allowed;
	opacity: 0.65;
	transform: none;
	box-shadow: none;
}

.promo_status {
	margin-top: 8px;
	font-size: 14px;
	color: var(--muted);
	min-height: 1.2em;
}

.promo_status--success {
	color: #2a9d66;
}

.promo_status--error {
	color: #d64545;
}

.promo_status--info {
	color: var(--muted);
}

/* === CONSENT === */
.consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: var(--accent);
	line-height: 1.5;
}

.consent input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--accent-secondary);
	cursor: pointer;
	margin-top: 2px;
}

.consent a {
	color: var(--accent-secondary);
	text-decoration: underline;
	font-weight: 500;
	transition: 0.3s;
}

.consent a:hover {
	color: var(--accent);
}

/* === BUTTON === */
.order_btn {
	align-self: center;
	background: var(--accent-gradient);
	color: #fff;
	font-weight: 600;
	font-size: 17px;
	border: none;
	border-radius: 14px;
	padding: 12px 48px;
	cursor: pointer;
	transition: 0.3s ease;
	box-shadow: 0 6px 20px rgba(27, 34, 80, 0.22);
	font-family: inherit;
}

.order_btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(27, 34, 80, 0.3);
}

.order_status {
	margin-top: 18px;
	font-size: 15px;
	text-align: center;
	color: var(--accent);
}

.order_status--success {
	color: #2a9d66;
}

.order_status--error {
	color: #d1435b;
}

.order_modal {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(27, 34, 80, 0.6);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 1000;
}

.order_modal--visible {
	opacity: 1;
	pointer-events: all;
}

.order_modal__content {
	position: relative;
	width: min(420px, 100%);
	background: #ffffff;
	border-radius: 20px;
	padding: 32px 28px;
	box-shadow: 0 18px 45px rgba(27, 34, 80, 0.22);
	text-align: center;
}

.order_modal__body {
	margin-top: 12px;
}

.order_modal__title {
	font-size: 24px;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 12px;
}

.order_modal__text {
	font-size: 16px;
	line-height: 1.6;
	color: var(--accent);
}

.order_modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	background: transparent;
	border: none;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: var(--muted);
}

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

.modal-open {
	overflow: hidden;
}

/* === INFO BLOCKS === */
.order_info {
	margin-top: 60px;
	text-align: center;
	font-size: 15px;
	color: var(--accent);
	line-height: 1.7;
}

.order_telegram {
	margin-top: 30px;
}

.order_info_email {
	color: var(--accent-secondary);
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

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

.order_telegram_btn {
	display: inline-block;
	margin-top: 12px;
	background: var(--accent-gradient);
	color: white;
	font-weight: 600;
	text-decoration: none;
	padding: 12px 24px;
	border-radius: 14px;
	transition: 0.3s;
}

.order_telegram_btn:hover {
	transform: translateY(-2px);
}

.order_payment {
	margin-top: 40px;
	font-weight: 500;
}

.order_thanks {
	margin-top: 30px;
	font-size: 15px;
	color: var(--accent);
	background: var(--bg-muted);
	padding: 20px 25px;
	border-radius: 12px;
	line-height: 1.6;
	font-weight: 400;
}

/* === FAQ === */
.faq {
	background: var(--accent-light);
	padding: 80px 0;
}

.faq_title {
	text-align: center;
	font-size: 34px;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 40px;
}

.faq_list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.faq_item {
	background: #fff;
	border: 1px solid var(--accent-light);
	border-radius: 16px;
	padding: 20px 24px;
	box-shadow: 0 12px 25px rgba(27, 34, 80, 0.1);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq_item[open] {
	border-color: var(--accent-secondary);
	box-shadow: 0 16px 32px rgba(27, 34, 80, 0.16);
}

.faq_item summary {
	list-style: none;
	font-size: 18px;
	font-weight: 600;
	color: var(--accent);
	cursor: pointer;
	position: relative;
	padding-right: 32px;
}

.faq_item summary::-webkit-details-marker {
	display: none;
}

.faq_item summary::after {
	content: '+';
	position: absolute;
	right: 0;
	top: 0;
	font-size: 22px;
	color: var(--accent-secondary);
	transition: transform 0.2s ease;
}

.faq_item[open] summary::after {
	transform: rotate(45deg);
}

.faq_item p {
	margin-top: 14px;
	font-size: 16px;
	color: var(--muted);
	line-height: 1.6;
}

.faq_cta {
	margin: 40px auto 0;
	display: flex;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	align-items: center;
	justify-content: center;
	background: var(--accent-gradient);
	color: #fff;
	font-weight: 600;
	font-size: 17px;
	border-radius: 14px;
	padding: 14px 36px;
	border: none;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 8px 24px rgba(27, 34, 80, 0.22);
}

.faq_cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(27, 34, 80, 0.3);
}

/* === STICKY CTA === */
.sticky_cta {
	position: fixed;
	left: 50%;
	bottom: 24px;
	transform: translate(-50%, 160%);
	transition: transform 0.3s ease, opacity 0.3s ease;
	opacity: 0;
	pointer-events: none;
	z-index: 900;
	width: min(640px, 90vw);
}

.sticky_cta--visible {
	transform: translate(-50%, 0);
	opacity: 1;
	pointer-events: auto;
}

.sticky_cta__inner {
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
	background: #ffffff;
	border: 1px solid rgba(98, 130, 227, 0.28);
	box-shadow: 0 18px 40px rgba(27, 34, 80, 0.2);
	border-radius: 18px;
	padding: 22px 44px 22px 28px;
}

.sticky_cta__text {
	display: flex;
	flex-direction: column;
	gap: 6px;
	color: var(--accent);
}

.sticky_cta__text strong {
	font-size: 18px;
	font-weight: 700;
}

.sticky_cta__text span {
	font-size: 15px;
	line-height: 1.5;
	color: var(--muted);
}

.sticky_cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-gradient);
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	border: none;
	border-radius: 14px;
	padding: 12px 28px;
	box-shadow: 0 10px 24px rgba(27, 34, 80, 0.3);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky_cta__button:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(27, 34, 80, 0.32);
}

.sticky_cta__close {
	position: absolute;
	top: 12px;
	right: 16px;
	background: none;
	border: none;
	color: var(--muted);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.sticky_cta__close:hover {
	color: var(--muted);
}

.plan_btn.is-hovered,
.sticky_cta__button.is-hovered {
	box-shadow: 0 0 0 3px rgba(27, 34, 80, 0.3);
	transform: translateY(-2px);
}

/* === ADAPTIVE === */
@media (max-width: 768px) {
	.faq {
		padding: 60px 0;
	}

	.faq_list {
		grid-template-columns: 1fr;
	}

	.faq_title {
		font-size: 28px;
	}

	.faq_cta {
		width: 100%;
	}

	.sticky_cta__inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px 24px;
	}

	.sticky_cta__button {
		width: 100%;
		justify-content: center;
	}

	.sticky_cta__close {
		top: 8px;
		right: 12px;
	}

	.order {
		padding: 70px 0;
	}

	.order_form {
		padding: 30px 20px;
		gap: 30px;
	}

	.order_title {
		font-size: 28px;
		margin-bottom: 40px;
	}

	.order_fields span,
	.order_setting label {
		font-size: 15px;
	}

	.order_btn {
		width: 100%;
		padding: 14px;
		font-size: 17px;
	}

	.promo_field {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.promo_apply_btn {
		width: 100%;
	}

	.order_info {
		font-size: 14px;
		margin-top: 40px;
	}
}

@media(max-width: 920px) {
	.slider_btn {
		display: none;
	}

	.main_buttons {
		flex-direction: column;
		align-items: center;
	}

	.main_button {
		margin-right: 0px;
		margin-bottom: 20px;
	}

}

/* === FOOTER === */
.footer {
	background: var(--accent-gradient);
	color: #fff;
	padding: 20px 0;
	text-align: center;
	box-shadow: 0 -4px 20px rgba(27, 34, 80, 0.18);
}

.footer_inner p {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.3px;
}

.footer_inner a {
	color: #fff;
	text-decoration: underline;
	transition: color 0.2s ease;
}
