html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 400;
}

/* CONTAINER */
._container {
	max-width: 1240px;
	padding: 0 15px;
	margin: 0 auto;
}

/* HEADER */
header {
	position: fixed;
	width: 100%;
	padding: 13px 16px;
	z-index: 9;
}

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

	padding: 3px 5px;
	border-radius: 100px;

	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);

	border: 1px solid rgba(255, 255, 255, 0.3);

	box-shadow:
		0 4px 15px rgba(0, 0, 0, 0.1),
		inset 0 0 2px rgba(255, 255, 255, 0.2);
}

/* LOGO */
.header_logo {
	margin-left: 15px;
}

.header_logo a {
	font-family: 'Garnetta', sans-serif;
	font-size: 38px;
	color: #992851;
	text-decoration: none;
}



/* MENU */
.header_menu {
	display: none;
}

.header_link {
	color: #fff;
	font-weight: 500;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
}

header.header-on-light .header_link {
	color: #1C274C;
}

/* BURGER */
.header_burger {
	width: 43px;
	height: 43px;
	background: #fff;
	border: 0;
	border-radius: 50%;
	padding: 0;
	appearance: none;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;

	cursor: pointer;
	position: relative;
	z-index: 10;
}

.header_burger span {
	width: 18px;
	height: 2px;
	background: #5A1F2A;
	border-radius: 100px;
	transition: 0.3s;
}

/* BURGER ACTIVE */
.header_burger.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

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

.header_burger.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}


/* DRAWER */
.header_drawer {
	position: fixed;
	inset: 0;
	z-index: 9;
	pointer-events: none;

}

.header_drawer.active {
	opacity: 1;
	visibility: visible;
}

/* DRAWER BODY */
.drawer_body {
	position: fixed;

	top: 0;
	left: 16px;
	right: 0;
	bottom: 0;

	border-radius: 8px 0 0 8px;
	padding: 35px 28px;

	display: flex;
	flex-direction: column;
	justify-content: space-between;

	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.3);

	box-shadow:
		0 4px 15px rgba(0, 0, 0, 0.1),
		inset 0 0 2px rgba(255, 255, 255, 0.2);

	transform: translateX(100%);
	transition: transform 0.4s ease;
}

.header_drawer.active {
	pointer-events: auto;
}

.header_drawer.active .drawer_body {
	transform: translateX(0);
}

/* MENU */
.drawer_menu {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 84px;
}

.drawer_link {
	color: #58267D;
	font-size: 16px;
	font-weight: 500;
	line-height: 100%;
}

/* SOCIAL */
.drawer_socials {
	display: flex;
	gap: 10px;
}

.drawer_socials a {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid #58267D;

	display: flex;
	align-items: center;
	justify-content: center;

	color: #fff;
	text-decoration: none;
}

/* CLOSE BUTTON */
.drawer_close {
	position: absolute;
	top: 16px;
	right: 21px;

	width: 43px;
	height: 43px;
	background: #EBEBEB;
	border: 0;
	border-radius: 50%;
	padding: 0;
	appearance: none;

	display: flex;
	align-items: center;
	justify-content: center;

	cursor: pointer;
	z-index: 10;
}

.drawer_close span {
	position: absolute;
	width: 18px;
	height: 2px;
	background: #5A1F2A;
	border-radius: 2px;
}

.drawer_close span:first-child {
	transform: rotate(45deg);
}

.drawer_close span:last-child {
	transform: rotate(-45deg);
}

/* ================= HOVER EFFECTS ================= */

/* LINKS */
.header_link {
	position: relative;
	transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.header_link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #ff7eb3, #992851);
	transition: width 0.3s ease;
}

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

.header_link:hover::after {
	width: 100%;
}


/* HEADER CONTAINER (glass boost) */
.header_container {
	transition: all 0.3s ease;
}

.header_container:hover {
	background: rgba(255, 255, 255, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.5);
	box-shadow:
		0 8px 25px rgba(0, 0, 0, 0.15),
		inset 0 0 4px rgba(255, 255, 255, 0.3);
}


/* LOGO */
.header_logo a {
	transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.header_logo a:hover {
	transform: scale(1.05);
}


/* BURGER */
.header_burger {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header_burger:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* DESKTOP */
@media (min-width: 920px) {
	.header_menu {
		display: flex;
	}

	.header_container {
		padding: 16px 36px;
	}

	.header_burger {
		display: none;
	}

	.header_logo {
		margin-left: 0;
	}

	.header_menu li:not(:last-child) {
		margin-right: 40px;
	}
}

/* HERO */
.hero {
	height: 100vh;
	background: url('../img/hero/hero_mobile.png') no-repeat center / cover;
	padding-top: 130px;
	position: relative;
	overflow: hidden;
}

.hero_mask {

	position: absolute;
	inset: 0;
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	background: rgba(255, 255, 255, 0.08);
	-webkit-mask-image: linear-gradient(to bottom,
			black 0%,
			black 50%,
			transparent 100%);
	mask-image: linear-gradient(to bottom,
			black 0%,
			black 40%,
			transparent 50%);
	z-index: 1;

}

.hero_title {
	font-weight: 300;
	font-size: 40px;
	line-height: 40px;
	margin-bottom: 15px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	position: relative;
	z-index: 2;
}

.hero_subtitle {
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
	color: #fff;
	text-align: center;
	max-width: 340px;
	margin: 0px auto;
	position: relative;
	z-index: 2;
}



@media(min-width: 920px) {
	.hero_title {
		text-align: left;
		font-size: 56px;
		font-weight: 400;
		line-height: 100%;
	}

	.hero_subtitle {
		font-size: 24px;
		text-align: left;
		max-width: 600px;
		margin: 0px 0px;
		padding-bottom: 50px;
	}

	.hero {
		background: url('../img/hero/hero.png') no-repeat right / cover;
	}

	.hero_container {
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 100vh;
	}

	.hero {
		padding-top: 0px;
	}

	.hero_mask {
		position: absolute;
		inset: 0;
		backdrop-filter: blur(5px);
		-webkit-backdrop-filter: blur(25px);
		background: rgba(255, 255, 255, 0.08);
		-webkit-mask-image: linear-gradient(to right,
				black 0%,
				black 30%,
				rgba(0, 0, 0, 0.3) 70%,
				transparent 50%);
		mask-image: linear-gradient(to right,
				black 0%,
				black 10%,
				rgba(0, 0, 0, 0) 60%,
				transparent 100%);
		z-index: 1;
	}
}



/*products--------------products------------------products------------------------products*/

.products {
	padding: 26px 0px 34px 0px;
}

.products_container {}

.products_info {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #FFDF2B;
	border-radius: 52px;
	padding: 10px;
	width: 100%;
	margin-bottom: 26px;
}

.products_info_text span {
	display: none;
}



.products_info_image {
	margin-right: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.products_info_image img {
	width: 17px;
	height: 17px;
}

.products_info_text {
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	color: #371E52;
}

.products_title {
	font-weight: 400;
	font-size: 34px;
	line-height: 40px;
	color: #9A000E;
	text-align: center;
	margin-bottom: 11px;
	max-width: 300px;
	margin: 0px auto;
}

.products_subtitle {
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: #9A000E;
	text-align: center;
	margin: 10px 0px 26px 0px;
}

.product_cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	align-items: start;
}

.product_cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.products_card {
	background-color: #DAEEFA;
	border-radius: 22px;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	cursor: pointer;
	position: relative;
	width: 100%;
	max-width: 100%;
	flex: 0 0 395px;
}

.products_card:nth-child(2) {
	background-color: #FFE6F4;
}

.products_card:hover {
	transform: translateY(-8px) scale(1.01);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.products_card_header {
	padding: 10px;
}

.products_card_button {
	background-color: #fff;
	width: 43px;
	height: 43px;
	border: 0;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products_card_button:hover {
	transform: scale(1.15) rotate(90deg);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.products_card_inner {
	position: relative;
	min-height: 350px;
}

/* FRONT & BACK */
.products_card_front,
.products_card_back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.4s ease;
}

/* FRONT */
.products_card_front {
	opacity: 1;
	transform: translateY(0);
}

/* BACK */
.products_card_back {
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
	padding: 20px;
}

/* ACTIVE */
.products_card.active .products_card_front {
	opacity: 0;
	transform: translateY(-20px);
	filter: blur(6px);
}

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

/* CONTENT */
.products_card_body {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 40px 40px;
}

.products_card_image img {
	max-height: 252px;
	object-fit: cover;
	transition: transform 0.4s ease;
}



.products_card:hover .products_card_image img {
	transform: scale(1.08);
}

.products_card_title {
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	color: #266992;
	text-align: center;
	margin-top: 20px;
}

.products_card_title_2 {
	color: #8C2278;
}

.products_card_popup-content h3 {
	font-size: 14px;
	margin-bottom: 6px;
	font-weight: 600;
	color: #39304B;
	text-transform: uppercase;
}

.products_card_popup-content p {
	font-size: 14px;
	line-height: 140%;
	margin-bottom: 18px;
}

/* PLUS ROTATE */
.products_card_button img {
	transition: transform 0.3s ease;
}

.products_card.active .products_card_button img {
	transform: rotate(45deg);
}

.products_card_image2 img {
	height: 270px;
	width: 270px;
	object-fit: cover;
}

/* ================= PRODUCTS HOVER EFFECTS ================= */



/* CARD */
.products_card {
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	cursor: pointer;
}

.products_card:hover {
	transform: translateY(-8px) scale(1.01);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


/* CARD IMAGE */
.products_card_image img {
	transition: transform 0.4s ease;
}

.products_card:hover .products_card_image img {
	transform: scale(1.08);
}


/* TITLE */
.products_card_title {
	transition: transform 0.3s ease, text-shadow 0.3s ease;
}

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


/* BUTTON (PLUS) */
.products_card_button {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products_card_button:hover {
	transform: scale(1.15) rotate(90deg);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}


/* CARD COLOR GLOW (по цвету) */
.products_card[data-color="blue"]:hover {
	box-shadow: 0 15px 40px rgba(38, 105, 146, 0.3);
}

.products_card[data-color="pink"]:hover {
	box-shadow: 0 15px 40px rgba(140, 34, 120, 0.3);
}


/* POPUP CLOSE (икс) */
.popup_close {
	transition: transform 0.3s ease;
}

.popup_close:hover {
	transform: rotate(225deg) scale(1.1);
}


/* POPUP CONTENT */
.popup_content {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popup_content:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media(min-width: 920px) {

	.products {
		padding: 22px 0px 75px 0px;
	}

	.products_info {
		background-color: #FFCC0042;
		margin-bottom: 56px;
	}

	.products_info_text span {
		display: inline;
	}

	.products_info_image {
		display: none;
	}

	.products_title {
		font-size: 42px;
		max-width: 700px;
		margin-bottom: 16px;
	}

	.products_subtitle {
		font-size: 16px;
		max-width: 700px;
		line-height: 24px;
		margin: 0px auto;
	}

	.product_cards {
		margin-top: 50px;
		display: flex;
		justify-content: center;
		gap: 20px;
	}

	.products_card {
		max-width: 395px;
	}

	/* ВАЖНО */
	.products_card_inner {
		min-height: 420px;
	}

	.products_card_front,
	.products_card_back {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.products_card_back {
		padding: 30px;
	}

	.products_card_image img {
		max-height: 270px;
	}

	.products_card_popup-content h3 {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.products_card_popup-content p {
		font-size: 14px;
		margin-bottom: 23px;
	}
}


/*packs--------------packs----------------packs------------------packs--------------packs*/

.packs {
	background-image: url('../img/packs/bg_image.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: calc(100% + 100px) bottom;
	padding: 54px 0px 60px 0px;
}



.packs_container {}

.packs_title {
	text-align: center;
	font-weight: 500;
	font-size: 34px;
	line-height: 46px;
	margin-bottom: 36px;
	color: #992851;
}

.packs_items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.packs_item {
	background-color: #FFFFFF69;
	backdrop-filter: blur(31.9px);
	-webkit-backdrop-filter: blur(31.9px);
	border-radius: 26px;
	padding: 27px 13px;
	display: flex;
	flex-direction: column;
	align-items: center;

}

.packs_item_image {
	margin-bottom: 22px;
}

.packs_item_title {
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	margin-bottom: 8px;
	color: #992851;
}

.packs_item_subtitle {
	font-weight: 400;
	font-size: 13px;
	line-height: 16px;
	color: #992851;
	text-align: center;
}

/* ================= PACKS HOVER EFFECTS ================= */

/* ITEM */
.packs_item {
	transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
	cursor: pointer;
}

.packs_item:hover {
	transform: translateY(-10px) scale(1.03);
	background: rgba(255, 255, 255, 0.85);
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.15),
		inset 0 0 10px rgba(255, 255, 255, 0.4);
	cursor: default;
}


/* IMAGE */
.packs_item_image img {
	transition: transform 0.4s ease, filter 0.4s ease;
}

.packs_item:hover .packs_item_image img {
	transform: scale(1.15) rotate(3deg);
	filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.2));
}


/* TITLE */
.packs_item_title {
	transition: transform 0.3s ease, text-shadow 0.3s ease;
}

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


/* SUBTITLE */
.packs_item_subtitle {
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.packs_item:hover .packs_item_subtitle {
	transform: translateY(-2px);
	opacity: 0.9;
}


/* GRID EFFECT (чтобы остальные карточки чуть "тухли") */
.packs_items:hover .packs_item {
	opacity: 0.6;
}

.packs_items .packs_item:hover {
	opacity: 1;
}


/* TITLE (главный заголовок) */


@media(min-width: 920px) {
	.packs {
		background-position: left bottom;
		padding: 100px 0px 90px 0px;
	}

	.packs_items {
		grid-template-columns: 1fr 1fr 1fr 1fr;
		gap: 20px;
	}

	.packs_title {
		font-size: 42px;
		margin-bottom: 40px;
	}
}

/*formula---------formula-------------formula------------formula-----------formula*/

.formula {
	background-image: url('../img/formula/bg_image.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 37px 0px 300px 0px;
}

.formula_container {
	position: relative;
}

.formula_title {
	font-weight: 500;
	font-size: 34px;
	line-height: 45px;
	color: #fff;
	text-align: center;
	margin-bottom: 10px;
}

.formula_subtitle {
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: #FFFFFF;
	text-align: center;
}

.formula_item {
	display: inline-flex;
	padding: 5px 10px;
	align-items: center;
	color: #fff;
	border-radius: 100px;
	background-color: #96335021;
	backdrop-filter: blur(11.9px);
	-webkit-backdrop-filter: blur(11.9px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow:
		0 4px 15px rgba(0, 0, 0, 0.1),
		inset 0 0 2px rgba(255, 255, 255, 0.2);
	position: absolute;
	transform: translate(-50%, -50%);
}

.formula_item1 {
	right: -20%;
	top: 150%;
}

.formula_item2 {
	top: 220%;
	left: 35%;
}

.formula_item3 {
	bottom: -280px;
	right: -20%;
}

.formula_item_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 5px;
}

.formula_item_text {
	font-weight: 600;
	font-size: 13px;
	line-height: 18px;
}

/* ================= FORMULA HOVER EFFECTS ================= */



/* МИКРО "ПЛАВАНИЕ" (очень subtle эффект) */
.formula_item {
	animation: float 4s ease-in-out infinite;
}

.formula_item:nth-child(3) {
	animation-delay: 0.5s;
}

.formula_item:nth-child(4) {
	animation-delay: 1s;
}

@keyframes float {
	0% {
		transform: translate(-50%, -50%) translateY(0px);
	}

	50% {
		transform: translate(-50%, -50%) translateY(-6px);
	}

	100% {
		transform: translate(-50%, -50%) translateY(0px);
	}
}

@media(min-width: 400px) {
	.formula_item1 {
		right: -10%;
		top: 160%;
	}

	.formula_item2 {
		top: 230%;
		left: 35%;
	}

	.formula_item3 {
		bottom: -280px;
		right: -10%;
	}
}

@media(min-width: 920px) {
	.formula {
		padding: 74px 0px 374px 0px;
		background-position: center 40%;
	}

	.formula_title {
		font-size: 42px;
		margin-bottom: 16px;
	}

	.formula_subtitle {
		font-size: 16px;
		max-width: 700px;
		margin: 0px auto;

	}

	.formula_item_text {
		font-size: 16px;
	}

	.formula_item1 {
		right: 10%;
		top: 160%;
	}

	.formula_item2 {
		top: 230%;
		left: 30%;
	}

	.formula_item3 {
		bottom: -280px;
		right: 20%;
	}

}


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

.review {
	padding: 38px 0px 46px 0px;
	background-image: url('../img/review/bg_image.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center right;
}

.review_container {}

.review_title {
	font-size: 34px;
	font-weight: 500;
	line-height: 108%;
	margin-bottom: 20px;
	color: #9A000E;
	text-align: center;
}

.review_slider {
	overflow: hidden;
}

.review_slider_track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 10px 0 4px;
	-ms-overflow-style: none;
	scrollbar-width: none;
	user-select: none;
}

.review_slider_item {
	width: min(295px, calc(100% - 24px));
	flex-shrink: 0;
	scroll-snap-align: start;
	padding: 20px;
	border-radius: 26px;
	background-color: #FFFFFF69;
	backdrop-filter: blur(11.9px);
	-webkit-backdrop-filter: blur(11.9px);
}

.review_slider_track::-webkit-scrollbar {
	display: none;
}

.review_slider_item_img img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	-webkit-user-drag: none;
}

.review_slider_item_name {
	font-weight: 700;
	font-size: 16px;
	color: #9A000E;
	margin: 16px 0px 8px 0px;
}

.review_slider_item_text {
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #9A000E;
}

@media (min-width: 768px) {
	.review_slider_track {
		cursor: grab;
	}

	.review_slider_item {
		min-width: 250px;
	}
}

.review_slider_track.is-dragging {
	scroll-snap-type: none;
	scroll-behavior: auto;
	cursor: grabbing;
}

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

.review_dots[hidden] {
	display: none;
}

.review_dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ccc;
	border: 0;
	padding: 0;
	cursor: pointer;
	appearance: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.review_dot.active {
	background: #9A000E;
	transform: scale(1.15);
}

.review_slider_track {
	user-select: none;
	cursor: grab;
}

.review_slider_track.is-dragging {
	cursor: grabbing;
}

.review_slider_track.is-dragging {
	scroll-snap-type: none;
}

.review_slider_track {
	overscroll-behavior-x: contain;
	overscroll-behavior-y: auto;
}


@media(min-width: 920px) {
	.review {
		padding: 80px 0px;
	}

	.review_title {
		font-size: 42px;
		margin-bottom: 33px;
	}
}




/*about----------about------------about----------------about*/


.about {
	padding: 40px 0px 270px 0px;
	background-image: url('../img/about/bg_image.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	color: #fff;
	position: relative;
}

.about_mask {

	position: absolute;
	inset: 0;
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(25px);
	background: rgba(83, 30, 56, 0.5);
	-webkit-mask-image: linear-gradient(to bottom,
			black 0%,
			black 40%,
			transparent 100%);
	mask-image: linear-gradient(to bottom,
			black 0%,
			black 40%,
			transparent 50%);
	z-index: 1;

}

.about_container {
	position: relative;
	z-index: 2;
}

.about_title {
	position: relative;
	z-index: 2;
	font-size: 34px;
	line-height: 40px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 10px;
}

.about_subtitle {
	position: relative;
	z-index: 2;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	text-align: center;
}

.about_item {
	background-color: #fff;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	transform: translate(-50%, -50%);
	bottom: -110px;
	left: 15%;
	box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.2);
	cursor: pointer;
	z-index: 3;
}

.about_item2 {
	bottom: -200px;
	right: 10%;
	left: auto;
}

.about_card {
	position: absolute;
	right: calc(100% + -136px);

	transform: translate3d(calc(-50% + var(--about-card-shift, 0px)), 10px, 0) scale(0.9);
	transform-origin: center bottom;

	width: min(280px, calc(100vw - 32px));
	background: #fff;
	color: #5a2a4d;
	overflow-wrap: anywhere;

	padding: 16px;
	border-radius: 12px;

	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	z-index: 4;
}

.about_item1 .about_card {
	right: calc(100% + -456px);
}

/* активное состояние */
.about_item.active .about_card {
	opacity: 1;
	pointer-events: all;
	transform: translate3d(calc(-50% + var(--about-card-shift, 0px)), 0, 0) scale(1);
}

/* крестик */

.about_btn {
	background: transparent;
	border: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.3s;
}

/* когда активен */
.about_item.active .about_btn {
	transform: rotate(45deg);
}

.about_btn img {
	display: block;
}

.about_card h3 {
	color: #58267D;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 5px;
}

.about_card p {
	color: #58267D;
	font-weight: 400;
	font-size: 14px;
}

/* ================= ABOUT HOVER EFFECTS ================= */



/* HOTSPOT (КРУЖОК) */
.about_item {
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about_item:hover {
	transform: translate(-50%, -50%);
	box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.25),
		0 10px 25px rgba(0, 0, 0, 0.2);
}


/* КНОПКА (+) */
.about_btn {
	transition: transform 0.3s ease;
}



/* ЭФФЕКТ "ПУЛЬСАЦИИ" (очень subtle, но дорогой) */
.about_item::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
	animation: pulse 2.5s infinite;
	z-index: -1;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
	}

	70% {
		box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}


@media(min-width: 920px) {
	.about {
		padding: 70px 0px 350px 0px;
	}

	.about_title {
		font-size: 42px;
		line-height: 100%;
		margin-bottom: 10px;
	}

	.about_subtitle {
		font-size: 16px;
		max-width: 700px;
		margin: 0px auto;
	}

	.about_item {
		left: 30%;
	}

	.about_item2 {
		left: auto;
		right: 40%;
	}

	.about_item1 .about_card {
		right: calc(100% + 16px);
	}

	.about_card {
		top: 50%;
		right: calc(100% + 16px);
		left: auto;
		bottom: auto;
		transform: translate3d(var(--about-card-shift, 0px), -50%, 0) scale(0.9);
		transform-origin: right center;
		width: min(260px, calc(100vw - 32px));
	}

	.about_item.active .about_card {
		transform: translate3d(var(--about-card-shift, 0px), -50%, 0) scale(1);
	}
}


/*question----------------question----------------question----------question*/

.questions {
	padding: 40px 0px 30px 0px;
}

.question_container {}

.questions_title {
	font-size: 34px;
	text-align: center;
	color: #58267D;
	font-weight: 500;
	margin-bottom: 30px;
}

.questions_items {}

.question_item {
	border-radius: 16px;
	border: 1px solid #E2E2E2;
	padding: 20px;
	margin-bottom: 10px;
	background: #fff;

}

.question_item_heading {
	margin: 0;
}

.question_item_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	background: transparent;
	border: 0;
	padding: 0;
	text-align: left;
	font: inherit;
	cursor: pointer;
}

.question_item_question {
	font-weight: 500;
	color: #58267D;
	font-size: 14px;
	user-select: none;
}

.question_item_btn {
	transition: transform 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.question_item_btn img {
	width: 24px;
	height: 24px;
}

.question_item_answer {
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	color: #58267D;
	font-size: 14px;
	line-height: 140%;
}

.question_item_answer p:not(:first-child) {
	margin-top: 16px;
}

/* активное состояние */
.question_item.active .question_item_answer {
	margin-top: 10px;
}


/* ================= QUESTIONS HOVER EFFECTS ================= */




/* ITEM */
.question_item {
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.question_item:hover {
	transform: translateY(-4px);
	border-color: #c9a6c0;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* HEADER (кнопка) */
.question_item_header {
	transition: opacity 0.3s ease;
}


/* QUESTION TEXT */
.question_item_question {
	transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.question_item:hover .question_item_question {
	transform: translateX(3px);
}


/* ARROW */
.question_item_btn {
	transition: transform 0.3s ease;
}

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

/* если активен + hover (чтобы не ломался поворот) */
.question_item.active .question_item_btn {
	transform: rotate(45deg) translateY(-2px);
}


/* ANSWER (лёгкое появление текста при hover) */
.question_item_answer {
	transition: max-height 0.5s ease, opacity 0.3s ease;
}

.question_item:hover .question_item_answer {
	opacity: 1;
}


/* ACTIVE ITEM (чуть выделить) */
.question_item.active {
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
	border-color: #58267D;
}


/* FOCUS НА ОДНОМ */


@media(min-width: 920px) {
	.questions_title {
		margin-bottom: 40px;
		font-size: 42px;
	}

	.question_item_question {
		font-size: 16px;
	}

	.question_item_answer {}
}



/*footer-----------footer------------footer-------------footer*/


.contacts {
	padding: 20px 0px;
}

.contacts_container {}

.contacts_items {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.contacts_item {
	border-radius: 26px;
	padding: 28px;
}

.contacts_item:nth-child(1) {
	background-color: #FFE6F4;
}

.contacts_item:nth-child(2) {
	background-color: #EFF7FB;
}

.contacts_logo {
	font-family: 'Garnetta', sans-serif;
	font-size: 34px;
	color: #1C274C;
	margin-bottom: 10px;
}

.contacts_logo a {
	color: inherit;
	text-decoration: none;
}

.contacts_item_text {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: #1C274C;
}

.contacts_item_title {
	font-weight: 600;
	font-size: 18px;
	line-height: 100%;
	color: #1C274C;
	margin-bottom: 16px;
}

.contacts_item_info {
	display: flex;
	margin-bottom: 16px;
	align-items: center;
}

.contacts_info_icon {
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contacts_info_icon img {
	min-width: 20px;
	min-height: 20px;
}

.contacts_info_text {
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;
	color: #1C274C;
}

.contacts_item_footer {
	display: grid;
	grid-template-columns: 1fr;
	margin-top: 24px;
}

.contacts_footer_left {
	display: flex;
	align-items: center;
	justify-content: space-between;
	order: 2;
}

.contacts_footer_left a {
	font-weight: 400;
	font-size: 13px;
	color: #1C274C;
	text-decoration: underline;
}

.contacts_footer_right {
	display: flex;
	align-items: center;
	order: 1;
	margin-bottom: 24px;
}

.contacts_footer_right li:not(:last-child) {
	margin-right: 10px;
}

/* ================= CONTACTS HOVER EFFECTS ================= */

/* CARD */
.contacts_item {
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}



/* LOGO */
.contacts_logo a {
	transition: transform 0.3s ease, text-shadow 0.3s ease;
	display: inline-block;
}


/* TEXT BLOCK */
.contacts_item_text {
	transition: opacity 0.3s ease;
}




/* CONTACT LINKS */



/* TEXT (address/email) */
.contacts_info_text {
	transition: transform 0.3s ease;
}

.contacts_item_info:hover .contacts_info_text {
	color: #2f4691;
}


/* POLICY LINKS */
.contacts_footer_left a {
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.contacts_footer_left a:hover {
	opacity: 0.7;
	transform: translateY(-1px);
}


/* SOCIAL ICONS */
.contacts_footer_right a {
	display: inline-flex;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-radius: 50%;
}

.contacts_footer_right a:hover {
	transform: translateY(-3px) scale(1.1);
}


/* SOCIAL ICON IMAGE */
.contacts_footer_right img {
	transition: transform 0.3s ease;
	width: 30px;
	height: 30px;
}

.contacts_footer_right a:hover img {
	transform: scale(1.1);
}



@media(min-width: 920px) {
	.contacts {
		padding: 30px 0px 40px 0px;
	}

	.contacts_items {
		grid-template-columns: 505px 1fr;
		gap: 20px;
	}

	.contacts_item:nth-child(1) {
		background-color: #FFB5DE;
	}

	.contacts_item:nth-child(2) {
		background-color: #EFF7FB;
	}

	.contacts_logo {
		font-size: 40px;
	}

	.contacts_item_title {
		margin-bottom: 23px;
	}

	.contacts_item_info {
		margin-bottom: 18px;
	}

	.contacts_item_footer {
		margin-top: 120px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.contacts_footer_left {
		order: 1;
	}

	.contacts_footer_right {
		order: 2;
		margin: 0px;
	}

	.contacts_footer_right img {
		width: 24px;
		height: 24px;
	}


	.contacts_footer_left a:first-child {
		margin-right: 40px;
	}
}

/* ================= SCROLL REVEAL ================= */

html.has-scroll-reveal .scroll-section,
html.has-scroll-reveal .scroll-fade {
	will-change: opacity, transform, filter;
}

html.has-scroll-reveal .scroll-section {
	opacity: 0;
	transform: translate3d(0, 56px, 0) scale(0.985);
	filter: blur(12px);
	transition:
		opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

html.has-scroll-reveal .scroll-section.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
	filter: blur(0);
}

html.has-scroll-reveal .scroll-fade {
	opacity: 0;
	filter: blur(8px);
	transition:
		opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--reveal-delay, 0ms);
}

html.has-scroll-reveal .scroll-fade.is-visible {
	opacity: 1;
	filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.scroll-section,
	.scroll-fade {
		opacity: 1 !important;
		transform: none !important;
		filter: none !important;
		transition: none !important;
		animation: none !important;
	}
}