@charset "UTF-8";
/* Defaults */
/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
	color: inherit;
}

body {
	touch-action: pan-y;
}

input,
textarea,
button,
select,
a {
	-webkit-tap-highlight-color: transparent;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

a:hover,
button:hover {
	cursor: pointer;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
	display: block;
}

table,
thead,
tfoot,
tbody,
tr,
th {
	font-weight: inherit;
	font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	font-size: inherit;
	font-weight: inherit;
}

ul,
ul li {
	list-style: none;
}

img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	vertical-align: top;
}

img,
svg {
	max-width: 100%;
	height: auto;
}

address {
	font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	color: inherit;
	background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button,
input[type="submit"] {
	display: inline-block;
	box-shadow: none;
	background-color: transparent;
	background: none;
	cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
	outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

[hidden] {
	display: none !important;
}

[disabled="disabled"],
[disabled="true"],
[disabled] {
	opacity: 0.7;
	cursor: not-allowed;
}

html {
	scroll-behavior: smooth;
}

body {
	min-width: 100vw;
	background: #fff;
	font-family: "SF Pro Display";
	font-weight: 500;
	color: #2a292d;
}

body.active {
	overflow: hidden;
}

b {
	font-weight: 700;
}

.wrapper {
	overflow: hidden;
	position: relative;
}

.container {
	margin: 0 auto;
	padding: 0 4.44444vw;
}

.title {
	font-size: 11.11111vw;
	font-weight: 700;
	line-height: 1.2;
}

.numbers {
	margin-top: 2.77778vw;
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: -webkit-fit-content;
	height: fit-content;
}

.numbers div {
	font-size: 3.61111vw;
	line-height: 1.2;
	color: #A1A1AA;
}

.trigger {
	box-shadow: 1.11111vw 1.11111vw 6.66667vw rgba(198, 198, 198, 0.25), 0px 1.11111vw 0px #d9deec;
	max-width: -webkit-fit-content;
	max-width: fit-content;
	padding: 4.44444vw 5.55556vw;
	background: #fff;
	border: 1px solid #EDEDED;
	border-radius: 8.88889vw;
	font-size: 4.44444vw;
	line-height: 1.2;
	color: #005eff;
	transition: 0.3s all;
}

.trigger:hover {
	box-shadow: unset;
}

.hidden {
	display: none !important;
}

.fade-in {
	-webkit-animation: fade-in 0.3s;
	        animation: fade-in 0.3s;
}

.lazy-loaded {
	-webkit-animation: fade-in 0.3s;
	        animation: fade-in 0.3s;
}

@-webkit-keyframes fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.fade-out {
	-webkit-animation: fade-out 0.3s;
	        animation: fade-out 0.3s;
}

@-webkit-keyframes fade-out {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes fade-out {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

.button-base {
	--on-hover-rect-width: 55.55556vw;
	--on-hover-text-move: 50%;
	--on-hover-left-arrow: 10%;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	width: 100%;
	min-height: 16.66667vw;
	padding: 5vw 5.55556vw;
	border-radius: 5vw;
	font-size: 5vw;
	font-weight: 600;
	line-height: 1.2;
}

.button-base__text {
	z-index: 2;
	transition: 0.65s cubic-bezier(0.579, 0.001, 0, 1.007);
}

.button-base__rectangle {
	inset: 1.11111vw 1.11111vw 1.11111vw auto;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index: 1;
	width: 14.44444vw;
	transition: 0.65s cubic-bezier(0.579, 0.001, 0, 1.007);
	border-radius: 4.16667vw;
}

.button-base__arrow {
	width: 3.33333vw;
	height: 3.88889vw;
	transition: 0.65s cubic-bezier(0.579, 0.001, 0, 1.007);
}

.button-base__arrow--left {
	translate: 0% -50%;
	position: absolute;
	top: 50%;
	left: -100%;
}

.button-base__arrow--right {
	translate: 0 0;
}

.button-base:hover .button-base__text {
	-webkit-transform: translateX(var(--on-hover-text-move));
	        transform: translateX(var(--on-hover-text-move));
}

.button-base:hover .button-base__rectangle {
	width: var(--on-hover-rect-width);
}

.button-base:hover .button-base__arrow--left {
	left: var(--on-hover-left-arrow);
}

.button-base:hover .button-base__arrow--right {
	translate: 10000% 0;
}

.button-base.white {
	background: #fff;
}

.button-base.white .button-base__text {
	color: #2a292d;
}

.button-base.white .button-base__arrow--right path {
	fill: #fff;
}

.button-base.white .button-base__arrow--left path {
	fill: #005eff;
}

.button-base.white .button-base__rectangle {
	background: #005eff;
}

.button-base.white:hover .button-base__text {
	color: #fff;
}

.button-base.blue {
	background: #005eff;
}

.button-base.blue .button-base__text {
	color: #fff;
}

.button-base.blue .button-base__arrow--right path {
	fill: #005eff;
}

.button-base.blue .button-base__arrow--left path {
	fill: #fff;
}

.button-base.blue .button-base__rectangle {
	background: #fff;
}

.button-base.blue:hover .button-base__text {
	color: #005eff;
}

.pulse {
	will-change: transform;
	position: relative;
	width: 11.11111vw;
	height: 11.11111vw;
	-webkit-animation: levitation 3s ease-in-out infinite;
	        animation: levitation 3s ease-in-out infinite;
	border: 1px solid #cbd9ff;
	border-radius: 50%;
}

.pulse span {
	translate: -50% -50%;
	will-change: transform;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-animation: pulse 3s linear infinite;
	        animation: pulse 3s linear infinite;
	-webkit-animation-delay: calc(var(--i) * -2s);
	        animation-delay: calc(var(--i) * -2s);
	background: transparent;
	border: 1px solid #cbd9ff;
	border-radius: 50%;
}

@-webkit-keyframes pulse {
	0% {
		width: 11.11111vw;
		height: 11.11111vw;
		opacity: 1;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		width: 19.44444vw;
		height: 19.44444vw;
	}
}

@keyframes pulse {
	0% {
		width: 11.11111vw;
		height: 11.11111vw;
		opacity: 1;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		width: 19.44444vw;
		height: 19.44444vw;
	}
}

@-webkit-keyframes levitation {
	0%,
	100% {
		-webkit-transform: translateY(-1.38889vw);
		        transform: translateY(-1.38889vw);
	}
	50% {
		-webkit-transform: translateY(1.38889vw);
		        transform: translateY(1.38889vw);
	}
}

@keyframes levitation {
	0%,
	100% {
		-webkit-transform: translateY(-1.38889vw);
		        transform: translateY(-1.38889vw);
	}
	50% {
		-webkit-transform: translateY(1.38889vw);
		        transform: translateY(1.38889vw);
	}
}

.slider-container {
	width: 100%;
	-webkit-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.range {
	height: 2.77778vw;
	width: 100%;
	padding: 0 1.38889vw;
	background: linear-gradient(90deg, #005eff 50%, #e9ecef 100%);
	border-radius: 4.44444vw;
}

.custom {
	position: relative;
	height: 100%;
	background: #e9ecef;
	cursor: pointer;
}

.custom-filled {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: #005eff;
	width: 0%;
	z-index: 1;
}

.custom-thumb {
	position: absolute;
	width: 4.72222vw;
	height: 4.72222vw;
	background: #fff;
	border: 1.38889vw solid #005eff;
	border-radius: 27.77778vw;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	cursor: -webkit-grab;
	cursor: grab;
	transition: -webkit-transform 0.1s;
	transition: transform 0.1s;
	transition: transform 0.1s, -webkit-transform 0.1s;
	z-index: 3;
}

.custom-thumb:active {
	-webkit-transform: translate(-50%, -50%) scale(1.2);
	        transform: translate(-50%, -50%) scale(1.2);
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

.marks {
	position: relative;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}

.mark {
	position: absolute;
	width: 1.11111vw;
	height: 1.11111vw;
	background: #fff;
	border-radius: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

.terms, .privacy {
	margin-top: 11.11111vw;
}

.terms__title, .privacy__title {
	font-weight: 800;
}

.terms__content, .privacy__content {
	display: flex;
	flex-direction: column;
	gap: 1.38889vw;
}

.lazy {
	background-image: none !important;
	opacity: 0;
}

.lazy:before, .lazy:after {
	content: none !important;
}

.lazy-loaded {
	opacity: 1;
	transition: 0.1s;
}

.header {
	display: flex;
	align-items: center;
	gap: 2.77778vw;
	z-index: 99;
	position: absolute;
	top: 5.55556vw;
	left: 4.44444vw;
	right: 4.44444vw;
	color: #fff;
	transition: 0.3s all;
}

.header--scrolled {
	position: fixed;
	background: rgba(0, 0, 0, 0.31);
	backdrop-filter: blur(2.77778vw);
	-webkit-backdrop-filter: blur(2.77778vw);
	left: 0;
	top: 0;
	width: 100%;
	padding: 5.55556vw;
}

.header--scrolled:has(.header__burger.active) {
	background: none;
}

.header * {
	z-index: 99;
}

.header__logo {
	order: 1;
	max-width: 31.94444vw;
	margin-right: auto;
}

.header__menu {
	order: 3;
	height: 8.88889vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.header__burger {
	transition: background 0.65s cubic-bezier(0.579, 0.001, 0, 1.007);
	border-radius: 1.11111vw;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	transition: 0.3s;
	gap: 1.66667vw;
	padding: 1.38889vw;
}

.header__burger .line {
	width: 6.66667vw;
	height: 0.55556vw;
	background: #fff;
	transition: 0.65s cubic-bezier(0.579, 0.001, 0, 1.007);
}

.header__burger.active {
	-webkit-transform: rotate(90deg);
	        transform: rotate(90deg);
}

.header__list {
	display: none;
}

.header__actions {
	display: flex;
	align-items: center;
	gap: 2.77778vw;
	order: 2;
}

.header__lang {
	position: relative;
	cursor: pointer;
}

.header__lang-current {
	display: flex;
	align-items: center;
	gap: 1.38889vw;
	text-transform: uppercase;
}

.header__lang-current > span {
	display: flex;
	align-items: center;
	gap: 1.11111vw;
}

.header__lang-current img {
	max-width: 6.66667vw;
	border-radius: 0.83333vw;
}

.header__lang-current svg {
	width: 2.22222vw;
	transition: 0.65s cubic-bezier(0.579, 0.001, 0, 1.007);
}

.header__lang-switcher {
	display: flex;
	flex-direction: column;
	position: absolute;
	z-index: 10;
	bottom: -1.38889vw;
	right: 0;
	opacity: 0;
	-webkit-transform: translate(0, 100%);
	        transform: translate(0, 100%);
	overflow: hidden;
	width: -webkit-fit-content;
	width: fit-content;
	max-height: 0;
	padding: 1.38889vw;
	transition: 0.65s cubic-bezier(0.579, 0.001, 0, 1.007);
	background: #fff;
	border-radius: 2.22222vw;
}

.header__lang-switcher a {
	display: grid;
	align-items: center;
	gap: 1.38889vw;
	grid-template-columns: 6.66667vw auto;
	padding: 2.77778vw;
	border-radius: 2.22222vw;
	color: #2a292d;
	transition: 0.3s;
}

.header__lang-switcher a > span {
	display: contents;
}

.header__lang-switcher a.active {
	background: #EDEDED;
}

.header__lang-switcher a:hover {
	background: #EDEDED;
}

.header__lang-switcher a img {
	width: 100%;
	max-width: 6.66667vw;
	border-radius: 0.83333vw;
}

.header__lang.active .header__lang-current svg {
	rotate: -180deg;
}

.header__lang.active .header__lang-switcher {
	opacity: 1;
	max-height: 55.55556vw;
}

.header__login {
	position: relative;
	transition: 0.3s;
	border-radius: 2.77778vw;
}

.header__login::after {
	content: "";
	position: absolute;
	top: 102%;
	left: 0;
	width: 0%;
	height: 1px;
	transition: 0.65s cubic-bezier(0.579, 0.001, 0, 1.007);
	background: #fff;
}

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

.main {
	overflow: hidden;
}

.main__msg {
	display: flex;
	flex-direction: column;
	position: absolute;
	bottom: 19.16667vw;
	left: 9.16667vw;
	width: 30.55556vw;
	z-index: 3;
	background: #fff;
	padding: 2.22222vw;
	border-radius: 2.22222vw;
	border-top-right-radius: 0;
}

.main__msg-text {
	display: none;
	color: #2a292d;
	font-size: 3.88889vw;
}

.main__msg-text.active {
	display: block;
}

.main__msg::after {
	content: '';
	position: absolute;
	top: 0;
	right: -1.94444vw;
	width: 2.22222vw;
	height: 2.5vw;
	background-image: url("../img/main/msg-border.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right top;
}

.main__wrap {
	display: flex;
	flex-direction: column;
	gap: 11.11111vw;
	position: relative;
	padding: 25vw 4.44444vw 80.55556vw;
	background-color: #005eff;
	background-repeat: no-repeat;
	background-position: -11.11111vw 91.66667vw;
	background-size: 170%;
	color: #fff;
}

.main__wrap::after {
	content: '';
	position: absolute;
	bottom: 0;
	width: 100vw;
	height: 69.44444vw;
	background-image: url("../img/main/logo-bg.webp");
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: cover;
}

.main__wrap .bot {
	position: absolute;
	bottom: -18.05556vw;
	right: 0;
	width: 72.22222vw;
	height: 97.22222vw;
}

.main .container {
	display: contents;
}

.main__inner {
	display: flex;
	flex-direction: column;
}

.main__suptitle {
	font-size: 5.55556vw;
	line-height: 1.2;
	color: #8DB7FF;
	text-transform: uppercase;
}

.main__suptitle svg {
	display: none;
}

.main__title {
	margin: 6.66667vw 0 11.11111vw;
	font-size: 13.33333vw;
	line-height: 1;
}

.main__buttons {
	display: flex;
	flex-direction: column;
	gap: 4.44444vw;
}

.main__button-blue {
	border: 0.55556vw solid #fff;
	--on-hover-rect-width: 80%;
	--on-hover-text-move: 50%;
	--on-hover-left-arrow: 10%;
}

.main__button-white {
	--on-hover-rect-width: 80%;
	--on-hover-text-move: 50%;
	--on-hover-left-arrow: 10%;
}

.about {
	margin: 17.77778vw 0 0;
}

.about__slides {
	display: none;
}

.about__accordion-item {
	margin-bottom: 2.22222vw;
	border: none;
}

.about__accordion-head {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 2;
	overflow: hidden;
	height: 18.33333vw;
	transition: 0.65s cubic-bezier(0.579, 0.001, 0, 1.007);
	background: #fff;
	border: 1px solid #CBD9FF;
	border-radius: 4.44444vw;
	font-size: 5.55556vw;
	line-height: 1.4;
	color: #2a292d;
}

.about__accordion-head * {
	z-index: 2;
}

.about__accordion-head span {
	padding-left: 22.22222vw;
}

.about__accordion-head.active {
	background: #005eff;
	border-color: #005eff;
	color: #fff;
}

.about__accordion-icon {
	inset: 1.11111vw auto 1.11111vw 1.11111vw;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	background: #fff;
	border-radius: 4.44444vw;
}

.about__accordion-icon img {
	width: 65%;
}

.about__accordion-body {
	display: flex;
	flex-direction: column;
	gap: 8.88889vw;
	position: relative;
	z-index: 1;
	overflow: hidden;
	height: 100%;
	max-height: 0;
	padding: 0 2.77778vw 0;
	transition: 0.65s cubic-bezier(0.579, 0.001, 0, 1.007);
	background: #f0f4ff;
	border-radius: 0 0 4.44444vw 4.44444vw;
}

.about__accordion-body * {
	z-index: 2;
}

.about__accordion-body span {
	font-size: 5.55556vw;
	font-weight: 400;
	line-height: 140%;
}

.about__accordion-body .lottie {
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: 0;
	opacity: 0;
	transition: 0.65s cubic-bezier(0.579, 0.001, 0, 1.007);
	height: auto;
}

.about__accordion-body-0 .lottie {
	width: 150%;
}

.about__accordion-body-0.show {
	padding: 16.66667vw 0 0;
}

.about__accordion-body-1 .lottie {
	width: 160%;
}

.about__accordion-body-1.show {
	padding: 16.66667vw 0 0;
}

.about__accordion-body-2 .lottie {
	width: 140%;
}

.about__accordion-body-2.show {
	padding: 16.66667vw 0 0;
}

.about__accordion-body-3 .lottie {
	width: 140%;
}

.about__accordion-body-3.show {
	padding: 16.66667vw 0 0;
}

.about__accordion-body.show {
	max-height: 222.22222vw;
	margin-top: -5.55556vw;
}

.about__accordion-body.show .lottie {
	opacity: 1;
}

.about__accordion-body .pulse {
	position: absolute;
}

.about__accordion-body .pulse--telegram {
	bottom: 39.44444vw;
	right: 22.22222vw;
	background: url("../img/about/icon-telegram.svg") no-repeat center/cover;
}

.about__accordion-body .pulse--vkontakte {
	bottom: 40vw;
	right: 5vw;
	background: url("../img/about/icon-vkontakte.svg") no-repeat center/cover;
}

.about__accordion-body .pulse--avito {
	bottom: 29.16667vw;
	left: 47.22222vw;
	background: url("../img/about/icon-avito.svg") no-repeat center/cover;
}

.about__accordion-body .pulse--instagram {
	bottom: 17.5vw;
	left: 35.83333vw;
	background: url("../img/about/icon-instagram.svg") no-repeat center/cover;
}

.about__accordion-body .pulse--whatsapp {
	bottom: 5.55556vw;
	left: 25vw;
	background: url("../img/about/icon-whatsapp.svg") no-repeat center/cover;
}

.accordion-pulse {
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
}

.decision {
	padding: 17.77778vw 0;
}

.decision__inner {
	display: flex;
	flex-direction: column;
	gap: 17.77778vw;
}

.decision__text {
	display: flex;
	flex-direction: column;
	gap: 8.88889vw;
}

.decision__subtitle {
	max-width: 80.55556vw;
	font-size: 5.55556vw;
	font-weight: 400;
	line-height: 1.4;
}

.decision__button {
	display: none;
}

.decision__img {
	display: flex;
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.decision__img .phone {
	z-index: 2;
	width: 100%;
}

.decision__img .bg-logo {
	-o-object-fit: contain;
	   object-fit: contain;
	position: absolute;
	z-index: 1;
	width: 83.33333vw;
	max-width: unset;
	height: 88.88889vw;
	top: 0;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	left: calc(50% + 25vw);
}

.cases {
	scroll-margin-top: 30.55556vw;
	padding: 15.55556vw 0;
	background: #f0f4ff;
}

.cases__inner {
	display: flex;
	flex-direction: column;
	gap: 7.77778vw;
}

.cases__top {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5vw;
}

.cases__title {
	max-width: 211.11111vw;
}

.cases__subtitle {
	max-width: 200vw;
	font-size: 5vw;
	font-weight: 400;
	line-height: 1.4;
	opacity: 0.78;
}

.cases__showcase {
	display: grid;
	gap: 5vw;
}

.cases__builder {
	position: relative;
	min-height: 100vw;
	overflow: hidden;
	padding: 5.55556vw;
	border-radius: 7.77778vw;
	background: #005eff;
	color: #fff;
}

.cases__builder::before {
	content: "";
	position: absolute;
	inset: 4.44444vw;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6.11111vw;
	pointer-events: none;
}

.cases__builder::after {
	content: "";
	position: absolute;
	right: -22.77778vw;
	bottom: -22.77778vw;
	width: 58.33333vw;
	height: 58.33333vw;
	border-radius: 50%;
	background: rgba(141, 183, 255, 0.32);
	pointer-events: none;
}

.cases__builder-head {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3.33333vw;
}

.cases__builder-label, .cases__builder-status {
	display: inline-flex;
	align-items: center;
	min-height: 8.88889vw;
	padding: 2.22222vw 3.33333vw;
	border-radius: 27.77778vw;
	font-size: 3.61111vw;
	font-weight: 700;
	line-height: 1;
}

.cases__builder-label {
	background: #fff;
	color: #005eff;
}

.cases__builder-status {
	border: 1px solid rgba(255, 255, 255, 0.28);
	color: #fff;
}

.cases__chat {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 2.77778vw;
	margin-top: 6.11111vw;
}

.cases__message {
	max-width: 77.77778vw;
	margin: 0;
	padding: 3.61111vw 3.88889vw;
	border-radius: 5vw;
	font-size: 4.16667vw;
	font-weight: 500;
	line-height: 1.35;
}

.cases__message--user {
	align-self: flex-end;
	background: #fff;
	color: #2a292d;
}

.cases__message--ai {
	align-self: flex-start;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.cases__builder-result {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 3.88889vw;
	margin-top: 5vw;
	padding: 4.44444vw;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 6.66667vw;
	background: rgba(255, 255, 255, 0.12);
}

.cases__builder-arrow {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 12.22222vw;
	height: 12.22222vw;
	margin: 0 auto;
	border-radius: 4.44444vw;
	background: #fff;
	box-shadow: 0 3.33333vw 8.88889vw rgba(0, 34, 95, 0.16);
}

.cases__builder-arrow img {
	display: block;
	width: 7.5vw;
	height: auto;
}

.cases__result-card {
	display: grid;
	grid-template-columns: 15.55556vw 1fr;
	gap: 3.88889vw;
	align-items: center;
	padding: 4.44444vw;
	border-radius: 5.55556vw;
	background: #fff;
	color: #2a292d;
}

.cases__result-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 15.55556vw;
	height: 15.55556vw;
	border-radius: 5vw;
	background: #005eff;
	color: #fff;
	font-size: 5vw;
	font-weight: 800;
	line-height: 1;
}

.cases__result-copy {
	display: flex;
	flex-direction: column;
	gap: 1.38889vw;
}

.cases__result-copy strong {
	font-size: 6.66667vw;
	font-weight: 800;
	line-height: 1.05;
}

.cases__result-copy span {
	font-size: 3.88889vw;
	font-weight: 500;
	line-height: 1.25;
	opacity: 0.7;
}

.cases__result-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.22222vw;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cases__result-list li {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 10.55556vw;
	padding: 2.5vw 2.77778vw;
	border-radius: 3.88889vw;
	background: #fff;
	color: #2a292d;
	font-size: 3.61111vw;
	font-weight: 800;
	line-height: 1;
}

.cases__agents {
	display: flex;
	flex-direction: column;
	gap: 3.88889vw;
	padding: 5vw;
	border: 1px solid #cbd9ff;
	border-radius: 7.77778vw;
	background: #fff;
}

.cases__agents-title {
	font-size: 6.11111vw;
	font-weight: 800;
	line-height: 1.15;
}

.cases__agents-list {
	display: grid;
	gap: 2.77778vw;
}

.cases__agent-card {
	display: flex;
	flex-direction: column;
	gap: 3.33333vw;
	padding: 4.44444vw;
	border: 1px solid #EDEDED;
	border-radius: 5.55556vw;
	background: #fff;
}

.cases__agent-main {
	display: grid;
	grid-template-columns: 11.66667vw 1fr;
	gap: 3.33333vw;
	align-items: center;
}

.cases__agent-index {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 11.66667vw;
	height: 11.66667vw;
	border-radius: 3.88889vw;
	background: #f0f4ff;
	color: #005eff;
	font-size: 3.88889vw;
	font-weight: 800;
	line-height: 1;
}

.cases__agent-copy {
	display: flex;
	flex-direction: column;
	gap: 1.11111vw;
	min-width: 0;
}

.cases__agent-badge {
	color: #005eff;
	font-size: 3.33333vw;
	font-weight: 800;
	line-height: 1;
}

.cases__agent-title {
	font-size: 5.27778vw;
	font-weight: 800;
	line-height: 1.12;
}

.cases__agent-text {
	margin: 0;
	font-size: 3.88889vw;
	font-weight: 400;
	line-height: 1.35;
	opacity: 0.76;
}

.cases__agent-tools {
	display: flex;
	flex-wrap: wrap;
	gap: 1.66667vw;
}

.cases__agent-tools span {
	display: inline-flex;
	align-items: center;
	min-height: 7.77778vw;
	padding: 1.94444vw 2.77778vw;
	border-radius: 27.77778vw;
	background: #f0f4ff;
	color: #2a292d;
	font-size: 3.33333vw;
	font-weight: 700;
	line-height: 1;
}

.price {
	padding: 17.77778vw 0;
	background: #f0f4ff;
}

.price__inner {
	display: flex;
	flex-direction: column;
	gap: 13.33333vw;
}

.price__top {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8.88889vw;
	text-align: center;
}

.price__title {
	letter-spacing: -2%;
}

.price__subtitle {
	opacity: 0.8;
	font-size: 5.55556vw;
	line-height: 1.4;
}

.price__counter {
	display: flex;
	flex-direction: column;
	gap: 4.44444vw;
}

.price__counter-suptitle {
	order: 1;
	font-size: 4.44444vw;
	font-weight: 400;
	line-height: 1.2;
	color: #3f3f46;
}

.price__counter-value {
	order: 3;
	font-size: 7.77778vw;
	font-weight: 600;
	line-height: 1.2;
}

.price__counter-subtitle {
	order: 4;
	font-size: 4.44444vw;
	font-weight: 400;
	line-height: 1.2;
	color: #3f3f46;
}

.price__counter-slider {
	display: flex;
	flex-direction: column;
	gap: 4.44444vw;
	order: 5;
	width: 100%;
	text-transform: capitalize;
}

.price__counter-slider-item {
	display: flex;
	flex-direction: column;
	gap: 4.44444vw;
}

.price__counter-slider-item span {
	font-size: 4.16667vw;
	line-height: 1.2;
}

.price__counter-addon {
	-webkit-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	order: 2;
	padding: 4.44444vw 3.88889vw;
	border: 1px solid #e4e4e7;
	border-radius: 4.44444vw;
}

.price__counter-addon label {
	display: flex;
	align-items: center;
	gap: 3.61111vw;
}

.price__counter-addon-checkbox {
	position: relative;
	width: 12.77778vw;
	height: 6.94444vw;
	transition: 0.3s;
	background: #e4e4e7;
	border: 0.55556vw solid #e4e4e7;
	border-radius: 27.77778vw;
}

.price__counter-addon-checkbox::after {
	display: block;
	aspect-ratio: 1;
	top: 0;
	left: 0;
	bottom: 0;
	content: "";
	position: absolute;
	height: 100%;
	transition: 0.3s;
	background: #fff;
	border-radius: 50%;
}

.price__counter-addon-checkbox.active {
	background: #31c757;
	border-color: #31c757;
}

.price__counter-addon-checkbox.active::after {
	translate: 100% 0;
}

.price__bottom {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6.66667vw;
}

.price__month {
	display: flex;
	gap: 2.5vw;
	padding: 2.22222vw;
	background: #fff;
	border: 1px solid #e4e4e7;
	border-radius: 27.77778vw;
}

.price__month-button {
	padding: 1.38889vw 4.72222vw;
	background: #f0f4ff;
	border-radius: 27.77778vw;
	font-size: 4.44444vw;
	line-height: 1.2;
	color: #2a292d;
}

.price__month-button.active {
	background: #10b981;
	color: #fff;
}

.price__cards {
	display: flex;
	flex-direction: column;
	gap: 6.66667vw;
}

.price__card {
	display: flex;
	flex-direction: column;
	gap: 6.66667vw;
	position: relative;
	padding: 6.66667vw;
	background: #fff;
	border: 1px solid #e4e4e7;
	border-radius: 6.66667vw;
}

.price__card::after {
	content: "🤝🏻";
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 2.77778vw;
	right: 2.77778vw;
	width: 12.22222vw;
	height: 12.22222vw;
	background: rgba(250, 143, 33, 0.16);
	border-radius: 50%;
	font-size: 5.55556vw;
}

.price__card-tag {
	position: absolute;
	top: 0;
	left: 6.94444vw;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	padding: 2.77778vw;
	background: #d1fae5;
	border-radius: 2.5vw;
	font-size: 3.88889vw;
	line-height: 0.9;
	color: #047857;
}

.price__card-top {
	display: flex;
	flex-direction: column;
	gap: 2.22222vw;
}

.price__card-name {
	font-size: 6.11111vw;
	font-weight: 600;
	line-height: 1.4;
}

.price__card-cost {
	font-size: 9.44444vw;
	font-weight: 600;
}

.price__card-cost span.price__card-cost-month {
	font-size: 5.55556vw;
	font-weight: 400;
	color: #a1a1aa;
}

.price__card-description {
	font-size: 4.44444vw;
	font-weight: 400;
	line-height: 1.2;
}

.price__card-list {
	display: flex;
	flex-direction: column;
	gap: 2.22222vw;
	font-size: 4.44444vw;
	line-height: 1.4;
	color: #a1a1aa;
}

.price__card-list li {
	display: flex;
	gap: 1.11111vw;
	list-style: none;
}

.price__card-list li img {
	translate: 0% 15%;
	width: 5vw;
	height: 5vw;
}

body.lang-ru .price__card-button {
	--on-hover-rect-width: 41.66667vw;
	--on-hover-text-move: 260%;
	--on-hover-left-arrow: 10%;
}

body.lang-en .price__card-button {
	--on-hover-rect-width: 41.66667vw;
	--on-hover-text-move: 535%;
	--on-hover-left-arrow: 10%;
}

body.lang-tj .price__card-button {
	--on-hover-rect-width: 41.66667vw;
	--on-hover-text-move: 280%;
	--on-hover-left-arrow: 10%;
}

.extra {
	padding: 17.77778vw 0;
}

.extra__inner {
	display: flex;
	flex-direction: column;
	gap: 8.88889vw;
}

.extra__trigger {
	margin: 0 auto;
}

.extra__title {
	line-height: 1.2;
	text-align: center;
	letter-spacing: -4%;
}

.extra__swiper {
	height: 111.11111vw;
}

.extra__swiper .swiper-wrapper {
	align-items: center;
}

.extra__slide {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	gap: 6.66667vw;
	width: 72.22222vw;
	height: 94.44444vw;
	transition: 0.6s all;
	padding: 8.88889vw 4.44444vw;
	border-radius: 6.66667vw;
	text-align: center;
	color: #fff;
	background: url("../img/extra/half-logo.webp") no-repeat;
	background-size: 85%;
	background-position: bottom right;
	overflow: hidden;
	position: relative;
}

.extra__slide-lottie {
	position: absolute;
	bottom: -13.88889vw;
	-webkit-transform: translateX(-50%) scale(0.8);
	        transform: translateX(-50%) scale(0.8);
	left: 50%;
}

.extra__slide-lottie.templates {
	-webkit-transform: translateX(-50%) scale(1.2);
	        transform: translateX(-50%) scale(1.2);
	bottom: -5.55556vw;
}

.extra__slide-title {
	font-size: 6.66667vw;
	font-weight: 600;
	line-height: 1.4;
	transition: 0.1s;
}

.extra__slide-description {
	font-size: 4.44444vw;
	font-weight: 400;
	line-height: 1.2;
	transition: 0.1s;
}

.extra__slide-active {
	width: 83.33333vw;
	height: 111.11111vw;
	background: #005eff;
	color: #fff;
}

.extra__navigation {
	max-width: -webkit-fit-content;
	max-width: fit-content;
	display: flex;
	justify-content: center;
	gap: 2.22222vw;
	margin: 1.38889vw auto 0;
	padding: 2.22222vw;
	background: #f0f4ff;
	border-radius: 13.88889vw;
	-webkit-transform: scale(0.6);
	        transform: scale(0.6);
}

.extra__button {
	border-radius: 13.88889vw;
	background: #fff;
	width: 11.11111vw;
	height: 11.11111vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.extra__button svg {
	width: 2.77778vw;
}

.extra__button-next {
	scale: -1 1;
}

.create__block {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: #005eff;
	border-radius: 6.66667vw;
	padding: 2.22222vw;
}

.create__text {
	display: flex;
	flex-direction: column;
	gap: 8.88889vw;
	margin-bottom: 15.55556vw;
	padding: 6.66667vw 3.61111vw 0;
	color: #fff;
	text-align: center;
}

.create__title {
	font-size: 8.88889vw;
}

.create__description {
	font-size: 5vw;
	font-weight: 300;
	line-height: 1.4;
}

.create__button {
	height: -webkit-fit-content;
	height: fit-content;
}

.create__button-text {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 25vw;
	background: #fff;
	border-radius: 5.55556vw;
	font-size: 7.77778vw;
	font-weight: 600;
	line-height: 1.2;
	color: #2a292d;
}

.create__button-arrow {
	display: none;
}

.footer {
	margin-top: 13.88889vw;
	padding: 13.88889vw 0 5.55556vw;
	background: #2a292d;
}

.footer__inner {
	display: grid;
	gap: 11.11111vw;
	grid-template-columns: repeat(2, 1fr);
	color: #fff;
}

.footer__logo {
	grid-area: 1 / 1 / 2 / 2;
	max-width: 55.55556vw;
}

.footer__text {
	grid-area: 2 / 1 / 3 / 2;
	max-width: 84.72222vw;
	font-size: 3.88889vw;
	font-weight: 400;
	line-height: 1.2;
}

.footer__contact {
	justify-self: end;
	display: flex;
	flex-direction: column;
	align-items: end;
	gap: 1.66667vw;
	grid-area: 1 / 2 / 2 / 3;
	font-size: 3.88889vw;
	font-weight: 400;
	line-height: 1.2;
}

.footer__contact a {
	position: relative;
	max-width: -webkit-fit-content;
	max-width: fit-content;
}

.footer__contact a::after {
	content: '';
	position: absolute;
	bottom: -1.38889vw;
	left: 0;
	width: 0%;
	height: 1px;
	transition: 0.65s cubic-bezier(0.579, 0.001, 0, 1.007);
	background: #fff;
}

.footer__contact a:hover::after {
	width: 100%;
}

.footer__privacy {
	justify-self: end;
	align-self: end;
	grid-area: 2 / 2 / 3 / 3;
	font-size: 3.88889vw;
	font-weight: 400;
	line-height: 1.2;
}

.footer__legal {
	justify-self: end;
	align-self: end;
	grid-area: 2 / 2 / 3 / 3;
	display: flex;
	flex-direction: column;
	align-items: end;
	gap: 2.22222vw;
	font-size: 3.88889vw;
	font-weight: 400;
	line-height: 1.2;
	text-align: right;
}

.footer__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	gap: 3.33333vw;
}

.footer__links a {
	position: relative;
	max-width: -webkit-fit-content;
	max-width: fit-content;
}

.footer__links a::after {
	content: '';
	position: absolute;
	bottom: -1.38889vw;
	left: 0;
	width: 0%;
	height: 1px;
	transition: 0.65s cubic-bezier(0.579, 0.001, 0, 1.007);
	background: #fff;
}

.footer__links a:hover::after {
	width: 100%;
}

.header-widget {
	inset: 0;
	position: fixed;
	z-index: 5;
	top: 0;
	padding: 24.44444vw 4.44444vw 8.88889vw;
	background: #005eff;
	-webkit-transform: translateY(-100%);
	        transform: translateY(-100%);
	transition: 0.65s cubic-bezier(0.579, 0.001, 0, 1.007);
}

.header-widget.active {
	-webkit-transform: translateY(0%);
	        transform: translateY(0%);
}

.header-widget__inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	max-width: 166.66667vw;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

.header-widget__list {
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 4.44444vw;
	padding: 0 4.44444vw;
	z-index: 4;
}

.header-widget__list-item {
	height: 18.88889vw;
	border-radius: 0;
	padding: 0;
	z-index: 4;
	background: transparent !important;
	border: none !important;
}

.header-widget__list-item .rectangle {
	background: transparent !important;
	justify-content: end;
}

.header-widget__list-item .button-base__arrow path {
	fill: #fff !important;
}

.header-widget__list-item-1 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.header-widget__list-item-2 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.header-widget__list-item-3 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
}

body.lang-ru .header-widget__list-item-1 {
	--on-hover-text-move: 125%;
}

body.lang-ru .header-widget__list-item-2 {
	--on-hover-text-move: 525%;
}

body.lang-ru .header-widget__list-item-3 {
	--on-hover-text-move: 340%;
}

body.lang-ru .header-widget__list-item-4 {
	--on-hover-text-move: 360%;
}

body.lang-en .header-widget__list-item-1 {
	--on-hover-text-move: 340%;
}

body.lang-en .header-widget__list-item-2 {
	--on-hover-text-move: 420%;
}

body.lang-en .header-widget__list-item-3 {
	--on-hover-text-move: 335%;
}

body.lang-en .header-widget__list-item-4 {
	--on-hover-text-move: 245%;
}

body.lang-tj .header-widget__list-item-1 {
	--on-hover-text-move: 315%;
}

body.lang-tj .header-widget__list-item-2 {
	--on-hover-text-move: 570%;
}

body.lang-tj .header-widget__list-item-3 {
	--on-hover-text-move: 270%;
}

body.lang-tj .header-widget__list-item-4 {
	--on-hover-text-move: 265%;
}

.header-widget__list-item:hover .button-base__text {
	color: #fff !important;
}

.header-widget__image {
	display: block;
	position: absolute;
	max-width: unset;
	width: 100vw;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	left: 50%;
	bottom: -13.88889vw;
	z-index: 1;
}

.header-widget__button {
	z-index: 2;
}

body.lang-ru .header-widget__button {
	--on-hover-rect-width: 66.66667vw;
	--on-hover-text-move: 40%;
}

body.lang-en .header-widget__button {
	--on-hover-rect-width: 48.61111vw;
	--on-hover-text-move: 170%;
}

body.lang-tj .header-widget__button {
	--on-hover-rect-width: 66.66667vw;
	--on-hover-text-move: 55%;
}

.popup {
	position: fixed;
	inset: 0;
	z-index: 1000;
	align-items: center;
	justify-content: center;
	padding: 4.44444vw;
	display: none;
	backdrop-filter: blur(5.55556vw);
	background: rgba(42, 41, 45, 0.5);
}

.popup__container {
	position: relative;
	z-index: 1001;
	width: 100%;
	max-width: 133.33333vw;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 6.66667vw;
	box-shadow: 0 2.22222vw 8.88889vw rgba(42, 41, 45, 0.15);
	-webkit-transform: scale(0.95) translateY(5.55556vw);
	        transform: scale(0.95) translateY(5.55556vw);
}

.popup__close {
	position: absolute;
	top: 4.44444vw;
	right: 4.44444vw;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 8.88889vw;
	height: 8.88889vw;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 2.22222vw;
	color: #2a292d;
	cursor: pointer;
	transition: 0.65s cubic-bezier(0.579, 0.001, 0, 1.007);
}

.popup__close:hover {
	background: #f0f4ff;
	color: #005eff;
}

.popup__close:active {
	-webkit-transform: scale(0.95);
	        transform: scale(0.95);
}

.popup__close svg {
	width: 5.55556vw;
	height: 5.55556vw;
}

.popup__content {
	padding: 8.88889vw 6.66667vw 6.66667vw;
}

.popup__title {
	font-size: 6.66667vw;
	font-weight: 700;
	line-height: 1.3;
	color: #2a292d;
}

.popup__description {
	margin: 0 0 6.66667vw;
	font-size: 3.88889vw;
	line-height: 1.5;
	color: rgba(42, 41, 45, 0.7);
}

.popup__form {
	display: flex;
	flex-direction: column;
	gap: 4.44444vw;
}

.popup__field {
	display: flex;
	flex-direction: column;
}

.popup__input {
	width: 100%;
	padding: 4.44444vw 5.55556vw;
	background: #fff;
	border: 1px solid #EDEDED;
	border-radius: 4.44444vw;
	font-family: "SF Pro Display";
	font-size: 4.44444vw;
	line-height: 1.5;
	color: #2a292d;
	transition: 0.65s cubic-bezier(0.579, 0.001, 0, 1.007);
}

.popup__input::-webkit-input-placeholder {
	color: rgba(42, 41, 45, 0.5);
}

.popup__input::-ms-input-placeholder {
	color: rgba(42, 41, 45, 0.5);
}

.popup__input::placeholder {
	color: rgba(42, 41, 45, 0.5);
}

.popup__input:focus {
	outline: none;
	border-color: #005eff;
	box-shadow: 0 0 0 0.83333vw rgba(0, 94, 255, 0.1);
}

.popup__input:hover:not(:focus) {
	border-color: rgba(0, 94, 255, 0.5);
}

.popup__submit {
	margin-top: 2.22222vw;
}

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

.popup__button {
	--on-hover-rect-width: 83%;
	--on-hover-text-move: 50%;
	max-width: 100%;
}

.popup__loader {
	position: absolute;
	width: 11.11111vw;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(farthest-side, #005eff 94%, transparent) top/2.22222vw 2.22222vw no-repeat, conic-gradient(transparent 30%, #005eff);
	-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2.22222vw), #000 0);
	mask: radial-gradient(farthest-side, transparent calc(100% - 2.22222vw), #000 0);
	-webkit-animation: popup-loader-rotate 1s infinite linear;
	        animation: popup-loader-rotate 1s infinite linear;
}

.popup__loader.hidden {
	display: none;
}

@-webkit-keyframes popup-loader-rotate {
	100% {
		-webkit-transform: rotate(1turn);
		        transform: rotate(1turn);
	}
}

@keyframes popup-loader-rotate {
	100% {
		-webkit-transform: rotate(1turn);
		        transform: rotate(1turn);
	}
}

.legal__hero {
	padding: 22.22222vw 0;
	background-color: #005eff;
}

.legal__hero-inner {
	text-align: center;
}

.legal__title {
	font-size: 7.77778vw;
	font-weight: 700;
	margin-bottom: 3.33333vw;
	color: #fff;
}

.legal__updated {
	font-size: 3.88889vw;
	color: #EDEDED;
}

.legal__content {
	padding: 11.11111vw 0;
}

.legal__body {
	font-size: 4.44444vw;
	color: #333;
	max-width: 222.22222vw;
	margin: 0 auto;
}

.legal__body h1, .legal__body h2, .legal__body h3, .legal__body h4, .legal__body h5, .legal__body h6 {
	font-weight: 600;
	margin-bottom: 1.38889vw;
	color: #1a1a1a;
}

.legal__body h1 {
	font-size: 7.77778vw;
}

.legal__body h2 {
	font-size: 6.66667vw;
}

.legal__body h3 {
	font-size: 5.55556vw;
}

.legal__body p {
	margin-bottom: 4.44444vw;
}

.legal__body ul, .legal__body ol {
	margin-bottom: 4.44444vw;
	padding-left: 6.66667vw;
}

.legal__body li {
	margin-bottom: 2.22222vw;
}

.legal__body a {
	color: #005eff;
	text-decoration: underline;
}

.legal__back {
	margin-top: 11.11111vw;
	padding-top: 6.66667vw;
	border-top: 1px solid #e5e5e5;
}

.legal__back-link {
	display: inline-flex;
	align-items: center;
	gap: 2.22222vw;
	font-size: 3.88889vw;
	color: #005eff;
	text-decoration: none;
}

.legal__back-link:hover {
	opacity: 0.8;
}
