:root {
	--gray: #333333;
	--white: #ffffff;
	--black: #000000;
	--text: #222222;
	--yellow: #edc72d;
}

body {
	font-family: "Open Sans", sans-serif;
	color: var(--text);
	background-color: #f8f8f8;
	line-height: 1.4;
	overflow-x: hidden;
}

@media (max-width: 768px) {
	html {
		overflow-x: hidden;
	}
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	background: none;
	border: none;
	color: inherit;
	cursor: pointer;
}

input {
	outline: none;
}

*,
*::after,
*::before {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

.container {
	max-width: 1340px;
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
}

main {
	padding-top: 100px;
}

.header__mobile-only {
	display: none;
}

.header__nav .header__mobile-only {
	display: none;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	background: transparent;
	transition: background-color 0.2s ease;
	background-color: var(--white);
}

.header--scrolled {
	background-color: var(--gray);
}

.header__content {
	min-height: 100px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	row-gap: 16px;
}

.header__logo {
	font-family: "Montserrat", sans-serif;
	font-size: 24px;
	font-weight: 500;
	color: var(--text);
	text-wrap: nowrap;
}

.header__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	max-width: 646px;
	width: 100%;
}

.header__link,
.header__phone,
.header__lang,
.header__cta {
	font-size: 16px;
	font-weight: 400;
}

.header__link {
	transition: color 0.2s ease;
}

.header__link:hover {
	color: var(--yellow);
}

.header__phone {
	display: flex;
	align-items: center;
	gap: 6px;
}

.header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.header__divider {
	width: 100%;
	height: 1px;
	background-color: rgba(0, 0, 0, 0.1);
	margin: 8px 0;
	display: none;
}

.header__phone-text {
	text-wrap: nowrap;
}

.header__lang {
	position: relative;
	display: inline-flex;
	align-items: center;
	font-weight: 400;
}

.header__lang-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 8px;
	border: none;
	background: transparent;
	color: inherit;
	font: inherit;
	cursor: pointer;
}

.header__lang-dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 56px;
	background-color: var(--white);
	border-radius: 4px;
	box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.05);
	padding: 4px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	pointer-events: none;
	transition:
		opacity 0.2s ease,
		transform 0.2s ease,
		visibility 0.2s ease;
	color: var(--text);
}

.header__lang-option {
	width: 100%;
	padding: 6px 12px;
	border: none;
	background: transparent;
	font: inherit;
	color: inherit;
	cursor: pointer;
	text-align: center;
}

.header__lang-option:hover {
	background-color: #f3f4f6;
}

.header__lang-option--active {
	background-color: #eeeeef;
}

.header__burger {
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 1);
	align-items: center;
	justify-content: center;
	gap: 4px;
	flex-direction: column;
	flex-shrink: 0;
	transition: border-color 0.2s ease;
}

.header__burger span {
	width: 18px;
	height: 2px;
	background-color: currentColor;
	border-radius: 999px;
	transition:
		transform 0.2s ease,
		opacity 0.2s ease;
}

.header--scrolled .header__burger span {
	background-color: var(--white);
}

.header--menu-open .header__burger span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.header--menu-open .header__burger span:nth-child(2) {
	opacity: 0;
}

.header--menu-open .header__burger span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.header__lang-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 8px;
	height: 5px;
	transition: transform 0.2s ease;
}

.header__lang-arrow svg {
	width: 100%;
	height: 100%;
	display: block;
}

.header__lang-arrow svg path {
	fill: currentColor;
}

.header__lang--open .header__lang-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.header__lang--open .header__lang-arrow {
	transform: rotate(180deg);
}

.header__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	border: 1.5px solid var(--gray);
	border-radius: 15px;
	font-weight: 600;
	text-wrap: nowrap;
	transition: background-color 0.2s ease;
}

.header__cta:hover {
	background-color: var(--gray);
	color: var(--white);
}

.header--scrolled .header__logo,
.header--scrolled .header__link,
.header--scrolled .header__phone,
.header--scrolled .header__lang,
.header--scrolled .header__cta {
	color: var(--white);
}

.header--scrolled .header__phone svg path {
	stroke: var(--white);
}

.header--scrolled .header__cta {
	border-color: var(--white);
}

.header--scrolled .header__cta:hover {
	background-color: var(--white);
	color: var(--gray);
}

.header--scrolled .header__burger {
	border-color: var(--white);
}

.footer {
	position: relative;
	background-color: var(--gray);
	color: var(--white);
	padding: 80px 0 20px;
	overflow: hidden;
	margin-top: 120px;
}

.footer__content {
	position: relative;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 40px;
}

.footer__decor {
	position: absolute;
	top: 70px;
	right: -350px;
	width: 522px;
	max-width: none;
	height: auto;
	opacity: 0.95;
	pointer-events: none;
}

.footer__logo {
	font-family: "Montserrat", sans-serif;
	font-size: 24px;
	font-weight: 500;
	align-self: flex-start;
}

.footer__row {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.footer__info {
	display: flex;
	align-items: center;
	gap: 80px;
}

.footer__phones {
	display: flex;
	gap: 20px;
	font-size: 18px;
	flex-wrap: wrap;
}

.footer__phone {
	display: flex;
	align-items: flex-end;
	gap: 10px;
}

.footer__icon img {
	width: 24px;
	height: 24px;
	display: block;
}

.footer__hours {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
}

.footer__social {
	display: flex;
	align-items: center;
	gap: 30px;
	max-width: 320px;
	width: 100%;
}

.footer__social-links {
	max-width: 320px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.footer__social-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	letter-spacing: 0.05em;
}

.footer__bottom {
	margin-top: 40px;
	font-size: 14px;
}

/* Скрываем все группы товаров по умолчанию */
.catalog__group {
    display: none;
}

/* Показываем только активную группу */
.catalog__group--active {
    display: block;
}

/* Убедимся, что сетка внутри группы работает правильно */
.catalog__group .catalog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

@media (max-width: 1200px) {
	.header__actions {
		gap: 12px;
	}
	.header__nav {
		gap: 10px;
		max-width: max-content;
		justify-content: flex-start;
	}

	.header__phone-text {
		display: none;
	}

	.footer__content {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer__decor {
		top: 40px;
		right: -220px;
		transform: scale(0.9);
		transform-origin: top right;
	}

	.footer__info {
		gap: 40px;
		flex-wrap: wrap;
	}

	.footer__row {
		gap: 24px;
	}
}

@media (max-width: 1050px) {
	.header__link {
		font-size: 14px;
	}
}

@media (max-width: 980px) {
	.header__content {
		gap: 20px;
	}

	.header__nav {
		width: 100%;
		order: 5;
		flex-direction: column;
		align-items: flex-start;
		background-color: var(--white);
		padding: 16px 20px;
		position: absolute;
		top: 70px;
		right: 0;
		left: 0;
		width: 100%;
		max-width: unset;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-10px);
		transition:
			opacity 0.2s ease,
			transform 0.2s ease;
	}

	.header--scrolled .header__nav {
		background-color: var(--gray);
	}

	.header--scrolled .header__divider {
		background-color: var(--white);
	}

	.header__actions {
		order: 2;
		margin-left: auto;
		gap: 6px;
	}

	.header__burger {
		display: inline-flex;
		order: 3;
	}

	.header--menu-open .header__nav {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(10px);
	}

	.footer__row {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer__social {
		order: 2;
	}

	.footer__info {
		order: 1;
	}
}

@media (max-width: 768px) {
	.footer {
		margin-top: 60px;
	}
	.header__logo {
		font-size: 20px;
	}

	.header__link,
	.header__phone,
	.header__lang,
	.header__cta {
		font-size: 14px;
	}

	.header__nav {
		gap: 12px;
		justify-content: flex-start;
	}

	.features__slider {
		overflow: hidden;
	}

	@media (max-width: 480px) {
		.features__slider.swiper-initialized .features__grid {
			display: flex;
			gap: 0;
		}

		.features__slider.swiper-initialized .features__card {
			max-width: none;
			width: 100%;
		}
	}

	.partner__diagram {
		width: 100%;
		height: auto;
		margin-bottom: 30px;
	}

	@media (max-width: 480px) {
		.partner__diagram.swiper-initialized {
			overflow: hidden;
		}

		.partner__diagram.swiper-initialized .partner__diagram-inner {
			display: flex;
			gap: 0;
			width: 100%;
			height: auto;
			transform: none;
		}

		.partner__diagram.swiper-initialized .partner__ring {
			display: none;
		}

		.partner__diagram.swiper-initialized .partner__item {
			position: relative;
			left: 0;
			right: 0;
			top: 0;
			bottom: 0;
			width: 100%;
			max-width: none;
			height: auto;
			margin: 0;
		}
	}

	.footer__logo {
		font-size: 20px;
	}

	.footer__phones,
	.footer__hours {
		font-size: 16px;
	}

	.footer__decor {
		right: -260px;
		transform: scale(0.85);
	}
}

@media (max-width: 600px) {
	main {
		padding-top: 90px;
	}

	.header__content {
		min-height: 90px;
		row-gap: 14px;
		gap: 10px;
	}

	.header__nav {
		gap: 12px;
		font-size: 14px;
	}

	.header__link,
	.header__phone,
	.header__lang,
	.header__cta {
		font-size: 14px;
	}

	.header__cta {
		padding: 10px 18px;
		width: 100%;
		justify-content: center;
	}

	.header__nav {
		padding: 14px 20px;
	}

	.header__cta--mobile {
		width: 100%;
		justify-content: center;
		padding: 12px 18px;
		border: 1.5px solid var(--gray);
		border-radius: 15px;
		font-weight: 600;
	}

	.footer {
		padding: 60px 0 16px;
	}

	.footer__decor {
		position: absolute;
		top: 30px;
		right: -280px;
		transform: scale(0.8);
	}

	.footer__row {
		gap: 16px;
	}

	.footer__phones {
		gap: 12px;
	}

	.footer__social-image {
		width: 260px;
	}

	.footer__info {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.footer__social {
		gap: 16px;
	}
}

@media (max-width: 480px) {
	.header__actions .header__phone,
	.header__actions .header__cta {
		display: none;
	}

	.header__nav .header__mobile-only {
		display: inline-flex;
	}

	.header__divider {
		display: block;
	}
}

section {
	padding: 120px 0 0;
}

section:first-child {
	padding-top: 0;
}

@media (max-width: 768px) {
	section {
		padding: 60px 0 0;
	}
}

.hero {
	padding-top: 40px;
}

.hero__card {
	position: relative;
	background-color: var(--gray);
	border-radius: 20px;
	padding: 50px 50px 50px 70px;
	min-height: 570px;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 467px;
	align-items: center;
	gap: 30px;
}

.hero__decor {
	position: absolute;
	left: -74px;
	top: 202px;
	width: 623px;
	height: auto;
	opacity: 0.95;
}

.hero__content {
	display: flex;
	flex-direction: column;
	gap: 40px;
	max-width: 652px;
	position: relative;
	z-index: 2;
	position: relative;
}

.hero__text {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hero__text h1 {
	font-family: "Montserrat", sans-serif;
	font-size: 48px;
	line-height: 1.14;
	font-weight: 700;
	color: var(--white);
}

.hero__text p {
	font-size: 18px;
	line-height: 1.36;
	color: var(--white);
	max-width: 560px;
}

.hero__cta {
	align-self: flex-start;
	background-color: var(--yellow);
	color: var(--gray);
	border-radius: 15px;
	padding: 16px 24px;
	font-size: 18px;
	font-weight: 600;
	transition: background-color 0.2s ease;
}

.hero__cta:hover {
	background-color: #f5d64d;
}

.hero__badge {
	position: absolute;
	right: -50px;
	bottom: 93px;
	width: 117px;
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--yellow);
	flex-direction: column;
	z-index: 2;
}

.hero__badge-text {
	font-size: 14px;
	line-height: 16px;
	text-align: left;
	transform: rotate(23.5deg);
	margin-left: 14px;
	margin-bottom: 2px;
}

.hero__badge-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	pointer-events: none;
}

.hero__media {
	position: relative;
	width: 100%;
	max-width: 467px;
	aspect-ratio: 1;
	justify-self: end;
}

.hero__media-bg {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-12deg);
	background-color: var(--yellow);
	width: calc(100% - 69px);
	height: calc(100% - 69px);
	border-radius: 20px;
	transform-origin: center;
}

.hero__image {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 69px);
	height: calc(100% - 69px);
	border-radius: 18.14px;
	object-fit: cover;
}

@media (max-width: 1200px) {
	.hero__card {
		grid-template-columns: 1fr 380px;
		padding: 40px;
		min-height: auto;
	}

	.hero__media {
		max-width: 380px;
	}
}

@media (max-width: 980px) {
	.hero__card {
		grid-template-columns: 1fr;
		padding: 36px;
		gap: 24px;
	}

	.hero__media {
		justify-self: flex-start;
		max-width: 360px;
	}

	.hero__decor {
		left: -120px;
		top: 260px;
		opacity: 0.6;
	}
}

@media (max-width: 768px) {
	.hero__text h1 {
		font-size: 36px;
	}

	.hero__text p {
		font-size: 16px;
	}

	.hero__cta {
		font-size: 16px;
		padding: 14px 20px;
	}

	.hero__media {
		max-width: 320px;
	}

	.hero__badge {
		bottom: -30px;
		right: auto;
		left: 220px;
	}
}

@media (max-width: 600px) {
	.hero {
		padding-top: 24px;
	}

	.hero__card {
		padding: 28px;
	}

	.hero__media {
		max-width: 280px;
	}
}

@media (max-width: 480px) {
	.hero__text h1 {
		font-size: 24px;
	}

	.hero__text p {
		font-size: 14px;
	}

	.hero__badge {
		width: 100px;
		height: 62px;
		bottom: -20px;
		left: 200px;
	}

	.hero__badge-text {
		font-size: 12px;
	}

	.hero__media {
		max-width: 240px;
	}
}

@media (max-width: 400px) {
	.hero__badge {
		right: -10px;
		left: auto;
		bottom: 40px;
	}
}

.features {
	color: var(--text);
}

.features__header {
	max-width: 660px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.features__header h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 36px;
	line-height: 1.22;
}

.features__header p {
	font-size: 18px;
	line-height: 1.56;
	max-width: 413px;
}

.features__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(200px, 1fr));
	gap: 40px 67px;
	margin-top: 60px;
	justify-items: center;
}

.features__card {
	position: relative;
	min-height: 280px;
	max-width: 274px;
	width: 100%;
	margin: 0 auto;
	min-width: 0;
	text-align: center;
}

.features__card-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	pointer-events: none;
}

.features__card-content {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 23px;
	color: var(--gray);
	font-weight: 600;
	font-size: 18px;
	line-height: 1.38;
}

.features__card-content span {
	max-width: 228px;
}

.features__icon {
	width: 120px;
	height: 120px;
	object-fit: contain;
}

@media (max-width: 1200px) {
	.features__grid {
		grid-template-columns: repeat(2, minmax(220px, 1fr));
		gap: 32px 40px;
	}
}

@media (max-width: 980px) {
	.features__header {
		max-width: 100%;
	}

	.features__header p {
		max-width: 100%;
	}

	.features__grid {
		grid-template-columns: repeat(2, minmax(140px, 1fr));
		gap: 20px;
	}

	.features__card {
		max-width: 240px;
	}

	.features__card-content {
		font-size: 16px;
		padding: 18px;
	}
}

@media (max-width: 768px) {
	.features__header h2 {
		font-size: 28px;
	}

	.features__header p {
		font-size: 16px;
	}

	.features__grid {
		grid-template-columns: repeat(2, minmax(120px, 1fr));
		margin-top: 30px;
	}

	.features__card {
		min-height: 220px;
		max-width: 220px;
	}

	.features__icon {
		width: 84px;
		height: 84px;
	}
}

@media (max-width: 600px) {
	.features__grid {
		grid-template-columns: repeat(2, minmax(100px, 1fr));
		margin-top: 20px;
	}

	.features__card {
		min-height: 200px;
		max-width: 200px;
	}
}

@media (max-width: 480px) {
	.features__grid {
		grid-template-columns: 1fr;
	}

	.features__card {
		max-width: 240px;
		min-height: 240px;
	}

	.features__card-content {
		font-size: 18px;
	}
}

.catalog {
	position: relative;
	color: var(--text);
}

.catalog__decor {
	position: absolute;
	top: 204px;
	right: -120px;
	width: 633px;
	height: 650px;
	object-fit: contain;
	pointer-events: none;
	opacity: 0.95;
	z-index: -1;
}

.catalog__header {
	max-width: 732px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.catalog__header h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 36px;
	line-height: 1.22;
}

.catalog__tabs {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

.catalog__tab {
	padding: 16px 32px;
	border-radius: 15px;
	border: 1.5px solid var(--gray);
	color: var(--gray);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.56;
	transition:
		background-color 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease;
}

.catalog__tab--active,
.catalog__tab:hover {
	background-color: var(--yellow);
	border-color: var(--yellow);
}

.catalog__desc {
	font-size: 18px;
	line-height: 1.56;
	max-width: 660px;
}

.catalog__grid {
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(4, minmax(240px, 1fr));
	gap: 20px;
	justify-items: center;
}

.catalog-card {
	position: relative;
	background-color: var(--white);
	border-radius: 15px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	max-width: 310px;
}

.catalog-card--hidden {
	display: none;
}

.catalog__more-text--hidden {
	display: none;
}

.catalog-card__image {
	position: relative;
	border-radius: 15px;
	background-color: #f3f4f6;
	overflow: hidden;
	height: 290px;
}

.catalog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom center;
	position: relative;
	z-index: 1;
	display: block;
}

.catalog-card__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 6px 15px;
	border-radius: 999px;
	background-color: rgba(255, 255, 255, 0.8);
	color: #40ba41;
	font-size: 14px;
	line-height: 1.36;
	z-index: 1;
}

.catalog-card__body {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.catalog-card__body h3 {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.36;
}

.catalog-card__meta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 16px;
	line-height: 1.36;
	color: rgba(34, 34, 34, 0.8);
}

.catalog-card__footer {
	width: 100%;
	margin-top: auto;
}

.catalog-card__price {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 10px 16px;
	border-radius: 12px;
	background-color: var(--gray);
	color: var(--white);
	font-size: 16px;
	font-weight: 600;
}

.catalog-card__action {
	position: absolute;
	right: -9px;
	bottom: -9px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background-color: var(--yellow);
	border: 10px solid var(--white);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transform-origin: bottom right;
	transition: transform 0.2s ease;
}

.catalog-card__action:hover {
	transform: scale(1.03);
}

.catalog-card__action img {
	width: 19px;
	height: 19px;
	object-fit: contain;
}

.catalog__more {
	margin: 60px auto 0;
	background-color: var(--yellow);
	border-radius: 15px;
	padding: 16px 32px;
	font-size: 18px;
	font-weight: 600;
	color: var(--gray);
	display: flex;
	width: fit-content;
	align-items: center;
	justify-content: center;
}

@media (max-width: 1200px) {
	.catalog__decor {
		right: -220px;
		transform: scale(0.9);
		transform-origin: top right;
	}

	.catalog__grid {
		grid-template-columns: repeat(2, minmax(240px, 1fr));
	}

	.catalog-card {
		max-width: 100%;
	}
}

@media (max-width: 980px) {
	.catalog__header {
		max-width: 100%;
	}

	.catalog__desc {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.catalog__decor {
		right: -280px;
		transform: scale(0.8);
	}

	.catalog__header {
		gap: 20px;
	}

	.catalog__header h2 {
		font-size: 28px;
	}

	.catalog__tabs {
		justify-content: flex-start;
	}

	.catalog__tab {
		font-size: 16px;
		padding: 12px 20px;
	}

	.catalog__desc {
		font-size: 16px;
	}

	.catalog__grid {
		grid-template-columns: repeat(2, minmax(200px, 1fr));
		gap: 16px;
		margin-top: 30px;
	}

	.catalog-card__image {
		min-height: 240px;
	}

	.catalog__more {
		margin-top: 30px;
	}
}

@media (max-width: 600px) {
	.catalog__decor {
		right: -320px;
		top: 20px;
		transform: scale(0.7);
	}

	.catalog__tabs {
		gap: 12px;
	}

	.catalog__grid {
		grid-template-columns: 1fr;
	}
}

.advantages {
	position: relative;
	color: var(--text);
}

.advantages__decor {
	position: absolute;
	top: 0;
	right: -40px;
	width: 633px;
	height: 650px;
	object-fit: contain;
	pointer-events: none;
}

.advantages__inner {
	position: relative;
	display: flex;
	gap: 40px;
	align-items: flex-end;
}

.advantages__content {
	max-width: 640px;
}

.advantages__content h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 36px;
	line-height: 1.22;
	max-width: 509px;
	margin-bottom: 20px;
}

.advantages__content > p {
	font-size: 18px;
	line-height: 1.56;
	max-width: 496px;
	margin-bottom: 60px;
}

.advantages__cards {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(2, minmax(280px, 1fr));
	gap: 20px;
	max-width: 640px;
}

.advantages__card {
	position: relative;
	border-radius: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	padding: 20px;
	min-height: 202px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.advantages__card--light {
	background-color: var(--white);
}

.advantages__card--muted {
	background-color: #f3f4f6;
}

.advantages__card--accent {
	background-color: var(--yellow);
}

.advantages__card-head {
	display: flex;
	align-items: center;
	gap: 12px;
}

.advantages__card h3 {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.36;
	z-index: 1;
	position: relative;
}

.advantages__card p {
	font-size: 16px;
	line-height: 1.36;
	color: rgba(34, 34, 34, 0.8);
	position: relative;
	z-index: 1;
}

.advantages__icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: var(--yellow);
	color: var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.advantages__icon svg {
	width: 24px;
	height: 24px;
}

.advantages__icon--light {
	background-color: var(--white);
	color: var(--yellow);
}

.advantages__slice {
	position: absolute;
	width: 282px;
	height: 290px;
	object-fit: contain;
	pointer-events: none;
	z-index: 0;
}

.advantages__slice--right {
	top: 71px;
	right: -158px;
}

.advantages__slice--left {
	top: 71px;
	left: -144px;
}

.advantages__slice--right-top {
	top: -151px;
	right: -158px;
}

.advantages__slice--left-top {
	top: -151px;
	left: -144px;
}

.advantages__slider {
	position: relative;
	flex: 1;
	min-width: 320px;
	overflow: hidden;
	padding-right: 140px;
	padding-bottom: 40px;
	width: calc(100% + (100vw - 100%) / 2);
	margin-right: calc((100vw - 100%) / -2);
}

.advantages__track {
	position: relative;
	width: 100%;
	max-width: 1079px;
	height: 392px;
	display: flex;
	align-items: center;
	gap: 20px;
	transition: transform 0.6s ease;
	will-change: transform;
}

.advantages__slide {
	position: relative;
	width: 310px;
	height: 290px;
	background-color: #d4d4d4;
	border-radius: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	flex: 0 0 auto;
	transform: scale(1);
	transform-origin: left center;
	transition:
		margin-right 0.6s ease,
		transform 0.6s ease,
		box-shadow 0.6s ease;
}

.advantages__slide--active {
	z-index: 2;
	transform: scale(1.35);
	margin-right: 110px;
}

.advantages__slide:not(.advantages__slide--active)::after {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #404040;
	opacity: 0.5;
	pointer-events: none;
	filter: blur(10px);
}

.advantages__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.advantages__pagination {
	display: flex;
	align-items: center;
	gap: 10px;
	width: max-content;
	margin-top: 20px;
}

.advantages__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #e0e0e0;
	border: none;
	padding: 0;
	cursor: pointer;
}

.advantages__dot--active {
	width: 12px;
	height: 12px;
	background-color: var(--gray);
}

@media (max-width: 1200px) {
	.advantages__inner {
		flex-direction: column;
		align-items: start;
		gap: 32px;
	}

	.advantages__content > p {
		max-width: unset;
		margin-bottom: 30px;
	}

	.advantages__content {
		max-width: 100%;
		width: 100%;
	}

	.advantages__cards {
		max-width: 100%;
	}

	.advantages__slider {
		width: 100%;
		padding-right: 0;
		padding-bottom: 0;
		height: auto;
	}

	.advantages__track {
		height: auto;
		justify-content: center;
	}

	.advantages__slide {
		display: none;
		width: min(420px, 100%);
		height: auto;
		aspect-ratio: 419 / 392;
	}

	.advantages__slide--active {
		display: block;
		margin: 0 auto;
		transform: none;
	}

	.advantages__pagination {
		margin: 20px auto 0;
		gap: 12px;
	}

	.advantages__dot {
		width: 10px;
		height: 10px;
	}

	.advantages__dot--active {
		width: 12px;
		height: 12px;
	}
}

@media (max-width: 768px) {
	.advantages__content h2,
	.advantages__content > p {
		max-width: 100%;
	}

	.advantages__cards {
		grid-template-columns: 1fr;
	}

	.advantages__card:nth-child(2) {
		order: 2;
	}
	.advantages__card:nth-child(4) {
		order: 4;
	}
	.advantages__content h2 {
		font-size: 28px;
	}

	.advantages__content > p {
		font-size: 16px;
	}
}

@media (max-width: 600px) {
	.advantages__decor {
		right: -200px;
		opacity: 0.5;
	}
}

.partner {
	position: relative;
}

.partner__inner {
	display: flex;
	gap: 24px;
	align-items: flex-end;
	justify-content: space-between;
}

.partner__content {
	flex: 1;
	max-width: 676px;
	display: flex;
	flex-direction: column;
}

.partner__content h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 36px;
	line-height: 1.22;
	color: var(--text);
	margin-bottom: 20px;
}

.partner__content > p {
	font-size: 18px;
	line-height: 1.56;
	color: rgba(34, 34, 34, 0.8);
	max-width: 603px;
	margin-bottom: 60px;
}

.partner__diagram {
	--partner-scale: 1;
	position: relative;
	width: calc(676px * var(--partner-scale));
	height: calc(583px * var(--partner-scale));
	margin-bottom: 60px;
}

.partner__diagram-inner {
	position: relative;
	display: block;
	width: 676px;
	height: 583px;
	transform: scale(var(--partner-scale));
	transform-origin: top left;
}

.partner__diagram:not(.swiper-initialized) .swiper-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.partner__ring {
	position: absolute;
	left: 53px;
	top: 1px;
	width: 582px;
	height: 582px;
	border-radius: 50%;
	border: 3px solid var(--yellow);
}

.partner__item {
	position: absolute;
	width: 234px;
	height: 234px;
	border-radius: 50%;
	border: 3px solid var(--yellow);
	background-color: var(--white);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: end;
	text-align: center;
	padding: 10px;
	padding-bottom: 60px;
}

.partner__item-decor {
	position: absolute;
	left: -1px;
	top: -2px;
	width: 235px;
	height: 238px;
	object-fit: contain;
	pointer-events: none;
}

.partner__item h3 {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.46;
	color: var(--gray);
	position: relative;
	z-index: 1;
	margin-bottom: 3px;
}

.partner__item p {
	font-size: 15px;
	line-height: 1.56;
	color: rgba(34, 34, 34, 0.8);
	position: relative;
	z-index: 1;
}

.partner__icon {
	width: 84px;
	height: 84px;
	position: relative;
	z-index: 1;
}

.partner__item--center {
	left: 227px;
	top: 175px;
}

.partner__item--top-right {
	left: 442px;
	top: 0;
}

.partner__item--top-left {
	left: 0;
	top: 1px;
}

.partner__item--bottom-left {
	left: 0;
	top: 343px;
}

.partner__item--bottom-right {
	left: 442px;
	top: 343px;
}

.partner__note {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.56;
	color: var(--text);
}

.partner__note span {
	align-items: center;
	gap: 6px;
}

.partner__note-text {
	font-weight: 400;
}

.partner__note-link {
	color: var(--yellow);
	font-weight: 600;
	text-decoration: underline;
}

.partner__note-link:hover {
	text-decoration: none;
}

.partner__note-icon {
	display: inline;
	width: 34px;
	height: 34px;
}

.partner__note-arrow {
	width: 12px;
	height: 16px;
}

.partner__art {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	min-width: 320px;
	pointer-events: none;
}

.partner__art img {
	width: 100%;
	max-width: 687px;
	height: auto;
	opacity: 0.05;
	margin-bottom: 74px;
}

@media (max-width: 1200px) {
	.partner__inner {
		flex-direction: column;
		align-items: start;
		position: relative;
	}

	.partner__content {
		max-width: 100%;
	}

	.partner__diagram {
		--partner-scale: 1;
		aspect-ratio: auto;
		margin: 0 auto;
		margin-bottom: 60px;
	}

	.partner__ring {
		left: 50%;
		top: 0;
		transform: translateX(-50%);
	}

	.partner__art {
		position: absolute;
		right: 0;
		bottom: 0;
		margin-bottom: 0;
	}

	.partner__art img {
		opacity: 0.03;
	}
}
@media (max-width: 768px) {
	.partner__content h2 {
		font-size: 28px;
	}

	.partner__content > p {
		font-size: 16px;
	}

	.partner__diagram {
		--partner-scale: 0.7;
	}

	.partner__ring {
		width: 408px;
		height: 408px;
	}
}

@media (max-width: 600px) {
	.partner__diagram {
		--partner-scale: 0.65;
	}

	.partner__ring {
		width: 378px;
		height: 378px;
	}
}

@media (max-width: 550px) {
	.partner__diagram.swiper-initialized {
		overflow: hidden;
	}

	.partner__diagram.swiper-initialized .partner__diagram-inner {
		display: flex;
		gap: 0;
		width: 100%;
		height: auto;
		transform: none;
	}

	.partner__diagram.swiper-initialized .partner__ring {
		display: none;
	}

	.partner__diagram.swiper-initialized .partner__item {
		position: relative;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		width: 234px;
		height: 234px;
		margin: 0 auto;
		padding: 12px;
		justify-content: center;
		box-sizing: border-box;
		overflow: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.partner__diagram.swiper-initialized .partner__item-content {
		width: 90vw;
		max-width: 320px;
		aspect-ratio: 1 / 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-end;
		text-align: center;
		position: relative;
	}

	.partner__content > p {
		margin-bottom: 30px;
	}
	.partner__diagram {
		--partner-scale: 1;
		width: 100%;
		height: auto;
		margin-bottom: 30px;
	}

	.partner__item-decor {
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
	}

	.partner__item p {
		font-size: 14px;
	}

	.partner__item--bottom-right {
		grid-column: auto;
		justify-self: auto;
		width: auto;
	}
}

.features__pagination,
.partner__pagination {
	position: static !important;
	margin-top: 16px;
	top: auto !important;
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: #e0e0e0;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	width: 12px;
	height: 12px;
	background: var(--gray);
}

.modal {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease;
}

.modal--open {
	opacity: 1;
	visibility: visible;
}

.modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}
.modal__content {
	position: relative;
	width: 100%;
	max-width: 580px;
	background: var(--white);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	gap: 40px;
	max-height: 90dvh;
	overflow-y: auto;
	overflow-x: hidden;
}

#call-modal .modal__content {
	max-height: none;
	overflow: hidden;
}

.modal__content::-webkit-scrollbar {
	width: 6px;
}

.modal__content::-webkit-scrollbar-track {
	background: transparent;
	border-radius: 3px;
	margin: 20px 0;
}

.modal__content::-webkit-scrollbar-thumb {
	background: rgba(237, 199, 45, 0.6);
	border-radius: 3px;
}

.modal__content::-webkit-scrollbar-thumb:hover {
	background: #d4b128;
}

.modal__slice {
	position: absolute;
	top: 70px;
	right: -340px;
	width: 615px;
	height: auto;
	opacity: 0.6;
	pointer-events: none;
}

.modal__close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 30px;
	height: 30px;
	opacity: 0.6;
	transition: opacity 0.2s ease;
}
.modal__close svg {
	transition: all 0.2s ease;
}

.modal__close:hover {
	opacity: 1;
}

.modal__close:hover svg {
	fill: #333333;
}

.modal__head h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 36px;
	line-height: 1.22;
	color: var(--text);
}

.modal__head p {
	margin-top: 20px;
	font-size: 18px;
	line-height: 1.36;
	color: var(--text);
}

.modal__form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.modal__field {
	display: flex;
	flex-direction: column;
}

.modal__field label {
	font-size: 14px;
	line-height: 1.36;
	margin-bottom: 12px;
}

.modal__error {
	display: none;
	font-size: 14px;
	line-height: 1.36;
	color: #da1818;
	margin-top: 4px;
}

.modal__field input,
.modal__field textarea {
	width: 100%;
	border: 1px solid rgba(34, 34, 34, 0.8);
	border-radius: 15px;
	padding: 16px;
	font-size: 16px;
	font-family: "Open Sans", sans-serif;
	color: var(--text);
	background: transparent;
}

.modal__field.is-error input,
.modal__field.is-error textarea {
	border-color: #da1818;
}

.modal__field.is-error .modal__error {
	display: block;
}

.modal__field textarea {
	min-height: 120px;
	resize: vertical;
}

.modal__field input::placeholder,
.modal__field textarea::placeholder {
	color: rgba(34, 34, 34, 0.6);
}

.modal__agree {
	display: flex;
	gap: 10px;
	font-size: 14px;
	line-height: 1.36;
	align-items: flex-start;
}

.modal__agree input {
	position: absolute;
	opacity: 0;
}

.modal__checkbox {
	width: 15px;
	height: 15px;
	border: 1px solid var(--text);
	border-radius: 2px;
	flex-shrink: 0;
	margin-top: 2px;
	position: relative;
}

.modal__checkbox::after {
	content: "";
	position: absolute;
	left: 3px;
	top: 4px;
	width: 8px;
	height: 6px;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='8'%20height='6'%20viewBox='0%200%208%206'%3E%3Cpath%20fill='%23222222'%20d='M2.64423%204.3875L6.88173%200.15C6.98173%200.05%207.0984%200%207.23173%200C7.36506%200%207.48173%200.05%207.58173%200.15C7.68173%200.25%207.73173%200.368833%207.73173%200.5065C7.73173%200.644167%207.68173%200.762834%207.58173%200.8625L2.99423%205.4625C2.89423%205.5625%202.77756%205.6125%202.64423%205.6125C2.5109%205.6125%202.39423%205.5625%202.29423%205.4625L0.144231%203.3125C0.0442308%203.2125-0.00376923%203.09383%200.000230769%202.9565C0.00423077%202.81917%200.0563973%202.70033%200.156731%202.6C0.257064%202.49967%200.375897%202.44967%200.513231%202.45C0.650564%202.45033%200.769231%202.50033%200.869231%202.6L2.64423%204.3875Z'/%3E%3C/svg%3E");
	opacity: 0;
}

.modal__agree input:checked + .modal__checkbox::after {
	opacity: 1;
}

.modal__agree--error .modal__checkbox {
	border-color: #da1818;
}

.modal__attach {
	display: flex;
	flex-direction: column;
}

.modal__attach:has(.modal__file) {
	gap: 10px;
}

.modal__attach-button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	line-height: 1.36;
	color: var(--yellow);
	cursor: pointer;
	width: max-content;
}

.modal__file-input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.modal__files {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.modal__file {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 10px 20px;
	border-radius: 999px;
	background: #eeeeef;
	font-size: 14px;
	line-height: 1.36;
	color: rgba(34, 34, 34, 0.8);
}

.modal__file-remove {
	width: 20px;
	height: 20px;
	opacity: 0.6;
}

.modal__submit {
	width: 100%;
	background: var(--yellow);
	border-radius: 15px;
	padding: 16px 32px;
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
	position: relative;
	z-index: 1;
}

@media (max-width: 640px) {
	.modal__content {
		padding: 32px 24px;
		gap: 24px;
		max-height: 540px;
	}

	.modal__head h2 {
		font-size: 28px;
	}

	.modal__head p {
		font-size: 16px;
	}

	.modal__slice {
		opacity: 0.4;
		right: -220px;
	}
}

.steps__inner {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.steps__header h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 36px;
	line-height: 1.22;
	color: var(--text);
}

.steps__header p {
	margin-top: 20px;
	font-size: 18px;
	line-height: 1.56;
	color: var(--text);
	max-width: 409px;
}

.steps__list {
	display: flex;
	justify-content: space-between;
	gap: 94px;
}

.steps__item {
	position: relative;
	width: 100%;
	height: 192px;
}

.steps__item:nth-child(1) {
	max-width: 332px;
}

.steps__item:nth-child(2) {
	max-width: 369px;
}

.steps__item:nth-child(3) {
	max-width: 327px;
}

.steps__number {
	display: block;
	height: 191px;
	object-fit: contain;
}

.steps__item:nth-child(1) .steps__number {
	width: 231px;
}

.steps__item:nth-child(2) .steps__number {
	width: 264px;
}

.steps__item:nth-child(3) .steps__number {
	width: 262px;
}

.steps__text {
	position: absolute;
	right: 0;
	bottom: 11px;
	height: 81px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.steps__item:nth-child(1) .steps__text {
	width: 187px;
	max-width: 187px;
}

.steps__item:nth-child(2) .steps__text {
	width: 224px;
	max-width: 224px;
}

.steps__item:nth-child(3) .steps__text {
	width: 182px;
	max-width: 182px;
}

.steps__text p {
	font-weight: 600;
	font-size: 20px;
	line-height: 1.36;
	color: var(--gray);
	position: relative;
	z-index: 1;
}

.steps__item:nth-child(1) .steps__text p {
	max-width: 187px;
}

.steps__item:nth-child(2) .steps__text p {
	max-width: 224px;
}

.steps__item:nth-child(3) .steps__text p {
	max-width: 182px;
}

.steps__dot {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--yellow);
	flex-shrink: 0;
	position: absolute;
	z-index: 0;
	left: -14px;
	bottom: -8px;
}

.steps__item:nth-child(2) .steps__dot {
	margin-top: 50px;
}

.steps__cta {
	align-self: center;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	border-radius: 15px;
	background: var(--gray);
	color: var(--white);
	font-size: 18px;
	font-weight: 600;
	position: relative;
	overflow: hidden;
	transition: background 0.2s ease;
}

.circle-button {
	position: relative;
	overflow: hidden;
}

.circle-button::before {
	z-index: 1;
}

.circle-button > * {
	position: relative;
	z-index: 2;
}

.circle-button::before {
	content: "";
	position: absolute;
	width: var(--circle-size, 222px);
	height: var(--circle-size, 222px);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
	transition:
		transform 0.65s ease,
		opacity 0.65s ease;
}

.circle-button--active::before {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

.circle-button--fading::before {
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
}

.header--scrolled .header__cta.circle-button::before,
.header--scrolled .header__cta--mobile.circle-button::before {
	background: #f3f4f6;
	opacity: 1;
}

.header--scrolled .header__cta.circle-button,
.header--scrolled .header__cta--mobile.circle-button,
.header--scrolled .header__cta.circle-button span,
.header--scrolled .header__cta--mobile.circle-button span {
	color: var(--white);
}

.header--scrolled .header__cta.circle-button.circle-button--active,
.header--scrolled .header__cta--mobile.circle-button.circle-button--active,
.header--scrolled .header__cta.circle-button.circle-button--fading,
.header--scrolled .header__cta--mobile.circle-button.circle-button--fading {
	background: var(--white);
	color: var(--text);
}

.header__cta.circle-button.circle-button--active,
.header__cta.circle-button.circle-button--fading,
.header__cta--mobile.circle-button.circle-button--active,
.header__cta--mobile.circle-button.circle-button--fading {
	background: var(--gray);
	color: var(--white);
}

.header--scrolled .header__cta.circle-button.circle-button--active span,
.header--scrolled .header__cta--mobile.circle-button.circle-button--active span,
.header--scrolled .header__cta.circle-button.circle-button--fading span,
.header--scrolled
	.header__cta--mobile.circle-button.circle-button--fading
	span {
	color: var(--text);
}

.header--scrolled .header__cta.circle-button:hover,
.header--scrolled .header__cta--mobile.circle-button:hover,
.header--scrolled .header__cta.circle-button:hover span,
.header--scrolled .header__cta--mobile.circle-button:hover span {
	color: var(--text);
}

.steps__cta.circle-button {
	background: var(--gray);
	color: var(--white);
}

@media (max-width: 1000px) {
	.steps__list {
		flex-direction: column;
		width: max-content;
		margin: 0 auto;
		gap: 60px;
	}
	.steps__text {
		left: 144px;
	}
}

@media (max-width: 768px) {
	.steps__header h2 {
		font-size: 28px;
	}

	.steps__header p {
		font-size: 16px;
	}

	.steps__text p {
		font-size: 18px;
	}
}

@media (max-width: 580px) {
	.steps__item {
		max-width: 300px;
		width: 300px;
	}

	.steps__text {
		left: 104px;
	}
}

.vacancies__inner {
	display: flex;
	flex-direction: column;
}

.vacancies {
	position: relative;
}

.vacancies__decor {
	position: absolute;
	top: 0;
	right: -120px;
	width: 633px;
	height: 650px;
	object-fit: contain;
	pointer-events: none;
	opacity: 0.95;
	z-index: -1;
}

.vacancies__header {
	margin-bottom: 60px;
}

.vacancies__header h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 36px;
	line-height: 1.22;
	color: var(--text);
}

.vacancies__header p {
	margin-top: 20px;
	font-size: 18px;
	line-height: 1.56;
	color: var(--text);
	max-width: 366px;
}

.vacancies__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.vacancies__card {
	background: var(--white);
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
}

.vacancies__info {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.vacancies__info h3 {
	font-weight: 600;
	font-size: 18px;
	line-height: 1.36;
}

.vacancies__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 20px;
	font-size: 16px;
	line-height: 1.36;
	color: rgba(34, 34, 34, 0.8);
}

.vacancies__tag {
	border-radius: 1000px;
	padding: 6px 16px;
	border: 1px solid currentColor;
	font-size: 16px;
	line-height: 1.36;
}

.vacancies__tag--blue {
	color: rgba(26, 48, 128, 0.8);
}

.vacancies__tag--green {
	color: rgba(64, 186, 65, 0.8);
}

.vacancies__location {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 16px;
	line-height: 1.36;
	color: rgba(34, 34, 34, 0.8);
}

.vacancies__actions {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.vacancies__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	border-radius: 12px;
	background: var(--gray);
	color: var(--white);
	font-size: 16px;
	font-weight: 600;
}

.vacancies__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	border-radius: 12px;
	border: 1px solid var(--gray);
	color: var(--text);
	font-size: 16px;
	font-weight: 600;
	background: var(--white);
	position: relative;
	overflow: hidden;
	transition: all 0.2s ease;
}

.vacancies__button:hover {
	background: var(--yellow);
	border-color: var(--yellow);
}

.vacancies__button.circle-button--active,
.vacancies__button.circle-button--fading {
	background: var(--yellow);
	border-color: var(--yellow);
}

.vacancies__button.circle-button--active::after,
.vacancies__button.circle-button--fading::after {
	opacity: 1;
}

.vacancies__note {
	font-size: 18px;
	line-height: 1.56;
	color: rgba(34, 34, 34, 0.8);
	margin-top: 20px;
}

.vacancies__note a {
	color: var(--yellow);
	font-weight: 700;
}

.vacancies__note a:hover {
	text-decoration: underline;
}

.resume__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.resume {
	position: relative;
}

.resume__section-decor {
	position: absolute;
	bottom: -370px;
	right: -200px;
	width: 491px;
	height: 504px;
	object-fit: contain;
	pointer-events: none;
	opacity: 0.95;
	z-index: -1;
}

.resume__promo {
	position: relative;
	background: var(--gray);
	border-radius: 20px;
	padding: 40px;
	min-height: 567px;
	overflow: hidden;
}

.resume__promo-content h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 36px;
	line-height: 1.22;
	color: var(--white);
	max-width: 509px;
}

.resume__promo-content p {
	margin-top: 12px;
	font-size: 18px;
	line-height: 1.56;
	color: var(--white);
	max-width: 419px;
}

.resume__decor {
	position: absolute;
	left: -89px;
	top: 224px;
	width: 595px;
	height: auto;
	opacity: 0.1;
}

.resume__form-card {
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	padding: 41px 110px;
	min-height: 567px;
	display: flex;
	align-items: center;
}

.resume__form {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.resume__submit {
	padding: 16px 32px;
	border-radius: 15px;
	background: var(--yellow);
	color: var(--text);
	font-size: 16px;
	font-weight: 600;
}

.faq__inner {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.faq__header {
	max-width: 509px;
}

.faq__header h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 36px;
	line-height: 1.22;
	color: var(--text);
}

.faq__header p {
	margin-top: 20px;
	font-size: 18px;
	line-height: 1.56;
	color: var(--text);
	max-width: 473px;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq__item {
	background: var(--white);
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	cursor: pointer;
}

.faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 17px;
}

.faq__question h3 {
	font-weight: 600;
	font-size: 18px;
	line-height: 1.36;
}

.faq__icon {
	position: relative;
	width: 25px;
	height: 25px;
	flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
	content: "";
	position: absolute;
	background: var(--text);
}

.faq__icon::before {
	left: 0;
	top: 12px;
	width: 25px;
	min-height: 2px;
	border-radius: 1px;
}

.faq__icon::after {
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	min-width: 2px;
	height: 25px;
	border-radius: 1px;
	transition: height 0.2s ease;
}

.faq__item p {
	font-size: 18px;
	line-height: 1.56;
	color: rgba(34, 34, 34, 0.8);
	margin-top: 0;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition:
		margin-top 0.35s ease 0.25s,
		max-height 0.35s ease,
		opacity 0.35s ease;
}

.faq__item--active .faq__icon::after {
	height: 0;
}

.faq__item--active p {
	max-height: 400px;
	opacity: 1;
	margin-top: 20px;
	transition:
		max-height 0.35s ease 0.1s,
		opacity 0.35s ease,
		margin-top 0.35s ease;
}

@media (max-width: 1200px) {
	.resume__form-card {
		padding: 41px;
	}
}

@media (max-width: 980px) {
	.vacancies__card {
		flex-direction: column;
		align-items: flex-start;
	}

	.resume__inner {
		grid-template-columns: 1fr;
	}

	.resume__form-card {
		padding: 32px;
	}
}

@media (max-width: 768px) {
	.vacancies__header {
		margin-bottom: 30px;
	}
	.vacancies__header h2 {
		font-size: 28px;
	}

	.vacancies__header p,
	.vacancies__note {
		font-size: 16px;
	}

	.faq__header h2,
	.resume__promo-content h2 {
		font-size: 28px;
	}

	.faq__header p,
	.faq__item p,
	.resume__promo-content p {
		font-size: 16px;
	}

	.vacancies__actions {
		width: 100%;
	}

	.resume__form-card {
		padding: 41px 110px;
		min-height: auto;
	}

	.resume__promo {
		min-height: 480px;
	}

	.faq__inner {
		gap: 30px;
	}
}

@media (max-width: 600px) {
	.resume__promo {
		padding: 32px 24px 150px;
		min-height: auto;
	}

	.resume__decor {
		left: -60px;
		top: auto;
		bottom: -20px;
		width: 430px;
	}
	.resume__form-card {
		padding: 24px;
	}
	.vacancies__link,
	.vacancies__button {
		width: 100%;
		justify-content: center;
	}
}

.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #ffffff;
	box-shadow: 0px -4px 20px rgba(0, 0, 0, 0.05);
	z-index: 1000;
	padding: 24px 0;
	transform: translateY(100%);
	transition: transform 0.3s ease;
	border-top: 1px solid #e5e5e5;
}

.cookie-banner.show {
	transform: translateY(0);
}

.cookie-banner-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.cookie-banner-text {
	max-width: 800px;
}

.cookie-banner-title {
	font-weight: 700;
	font-size: 18px;
	line-height: 1.2;
	color: #222222;
	margin-bottom: 8px;
}

.cookie-banner-description {
	font-size: 14px;
	line-height: 1.4;
	color: #666666;
}

.cookie-banner-description a {
	color: #0056b3;
	text-decoration: underline;
}

.cookie-banner-buttons {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.cookie-btn {
	padding: 12px 24px;
	border-radius: 15px;
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s ease;
	border: 1px solid transparent;
}

.cookie-btn-accept {
	background: #000000;
	color: #ffffff;
}

.cookie-btn-accept:hover {
	background: #333333;
}

.cookie-btn-reject,
.cookie-btn-settings {
	background: transparent;
	border-color: #e5e5e5;
	color: #222222;
}

.cookie-btn-reject:hover,
.cookie-btn-settings:hover {
	border-color: #cccccc;
	background: #f5f5f5;
}

@media (max-width: 992px) {
	.cookie-banner-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.cookie-banner-buttons {
		width: 100%;
		flex-wrap: wrap;
	}

	.cookie-btn {
		flex: 1;
		text-align: center;
		min-width: 140px;
	}
}

@media (max-width: 576px) {
	.cookie-banner-content {
		padding: 0 20px;
	}

	.cookie-btn {
		width: 100%;
		flex: none;
	}
}

/* Cookie Settings Modal */
.cookie-settings-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1001;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.cookie-settings-overlay.show {
	opacity: 1;
	visibility: visible;
}

.cookie-modal-container {
	background: #ffffff;
	width: 100%;
	max-width: 600px;
	border-radius: 12px;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	position: relative;
	transform: translateY(20px);
	transition: transform 0.3s ease;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	margin: 20px;
}

.cookie-settings-overlay.show .cookie-modal-container {
	transform: translateY(0);
}

.cookie-modal-header {
	padding: 24px;
	border-bottom: 1px solid #e5e5e5;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cookie-modal-title {
	font-size: 24px;
	font-weight: 700;
	color: #1c274c;
	margin: 0;
}

.cookie-modal-close {
	background: transparent;
	border: none;
	font-size: 28px;
	color: #1c274c;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s ease;
}

.cookie-modal-close:hover {
	opacity: 0.7;
}

.cookie-modal-body {
	padding: 24px;
	overflow-y: auto;
	flex-grow: 1;
}

/* Custom scrollbar for webkit */
.cookie-modal-body::-webkit-scrollbar {
	width: 6px;
}

.cookie-modal-body::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 4px;
}

.cookie-modal-body::-webkit-scrollbar-thumb {
	background: #c1c1c1;
	border-radius: 4px;
}

.cookie-modal-body::-webkit-scrollbar-thumb:hover {
	background: #a8a8a8;
}

.cookie-modal-intro {
	font-size: 14px;
	line-height: 1.5;
	color: #666666;
	margin-bottom: 24px;
}

.cookie-category {
	background: #ffffff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 16px;
}

.cookie-category-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}

.cookie-category-info {
	flex-grow: 1;
}

.cookie-category-title {
	font-size: 16px;
	font-weight: 700;
	color: #1c274c;
	margin-bottom: 8px;
}

.cookie-category-description {
	font-size: 14px;
	line-height: 1.5;
	color: #666666;
}

/* Toggle Switch */
.cookie-toggle {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 24px;
	flex-shrink: 0;
}

.cookie-toggle input {
	opacity: 0;
	width: 0;
	height: 0;
}

.cookie-toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #cccccc;
	transition: 0.4s;
	border-radius: 24px;
}

.cookie-toggle-slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: 0.4s;
	border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
	background-color: #4a5c9a;
}

.cookie-toggle input:focus + .cookie-toggle-slider {
	box-shadow: 0 0 1px #4a5c9a;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
	transform: translateX(24px);
}

.cookie-toggle-disabled .cookie-toggle-slider {
	cursor: not-allowed;
	opacity: 0.7;
}

.cookie-modal-footer {
	padding: 24px;
	border-top: 1px solid #e5e5e5;
	display: flex;
	justify-content: center;
}

.cookie-modal-footer .cookie-btn {
	width: 100%;
	padding: 16px 24px;
	font-size: 16px;
}

@media (max-width: 576px) {
	.cookie-modal-container {
		margin: 16px;
		height: calc(100vh - 32px);
	}

	.cookie-modal-header,
	.cookie-modal-body,
	.cookie-modal-footer {
		padding: 16px;
	}

	.cookie-category {
		padding: 16px;
	}
}
