@font-face {
	font-family: Book;
	src: url('fonts/GolosText-Regular.woff') format('woff'),
	url('fonts/GolosText-Regular.woff') format('woff');
	font-style: normal;
}

@font-face {
	font-family: Regular;
	src: url('fonts/GolosText-Medium.woff') format('woff'),
	url('fonts/Gilroy-Medium.woff') format('woff');
	font-style: normal;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

iframe {
	display: none;
}

body {
	font-family: Book;
	background: #EEECEA;
	color: #1E1E2A;
	line-height: 1.6;
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
}

body::before,
body::after {
	content: '';
	position: fixed;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.3;
	z-index: 0;
	pointer-events: none;
}

body::before {
	width: 500px;
	height: 500px;
	background: #F16F52;
	top: -100px;
	right: -100px;
}

body::after {
	width: 400px;
	height: 400px;
	background: #F16F52;
	bottom: -80px;
	left: -80px;
	opacity: 0.15;
}

input {
	font-size: 16px;
	line-height: 140%;
	border-radius: 32px;
	appearance: none;
	-webkit-appearance: none;
	outline: none;
	transition: .3s;
}

input:focus {
	outline: none;
}

.itemWrapper.error input {
	border: 1px solid #EB5757;
}

.errorMessage {
	font-size: 12px;
	line-height: 140%;
	color: #EB5757;
}

span.error {
	font-size: 12px;
	line-height: 140%;
	color: #EB5757;
}

.anchor {
	display: block;
	position: relative;
	top: -82px;
	visibility: hidden;
}

textarea {
	font-size: 16px;
	line-height: 140%;
	border: none;
	outline: none;
	resize: none;
	transition: .3s;
}

textarea:focus {
	outline: none;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.header {
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 24px;
	margin: 16px 20px 0;
	padding: 18px 28px;
	position: sticky;
	top: 16px;
	z-index: 100;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.header__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: Regular;
	font-size: 26px;
	color: #1E1E2A;
	text-decoration: none;
}

.logo__icon {
	width: 38px;
	height: 38px;
	background: #F16F52;
	border-radius: 10px;
	flex-shrink: 0;
	box-shadow: 0 4px 16px rgba(241, 111, 82, 0.3);
}

.nav__list {
	display: flex;
	list-style: none;
	gap: 28px;
}

.nav__link {
	text-decoration: none;
	color: #1E1E2A;
	font-size: 16px;
	font-weight: 500;
	transition: color 0.2s;
	position: relative;
}

.nav__link:hover {
	color: #F16F52;
}

.header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.button {
	display: inline-block;
	padding: 12px 32px;
	border-radius: 34px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: inherit;
	position: relative;
	overflow: hidden;
}

.button--primary {
	background: #F16F52;
	color: #FFFFFF;
	box-shadow: 0 4px 20px rgba(241, 111, 82, 0.3);
}

.button--primary:hover {
	background: #D95A3E;
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(241, 111, 82, 0.4);
}

.button--outline {
	background: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: #1E1E2A;
}

.button--outline:hover {
	background: rgba(255, 255, 255, 0.6);
	transform: translateY(-2px);
}

.hero {
	padding: 12px 0;
	background: transparent;
}

.hero__container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	background: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 24px;
	padding: 48px 48px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
	margin: 0 20px;
}

.hero__content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hero__badge {
	display: inline-block;
	background: #F16F52;
	color: #FFFFFF;
	font-weight: 600;
	font-size: 14px;
	padding: 6px 20px;
	border-radius: 34px;
	width: fit-content;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 16px rgba(241, 111, 82, 0.3);
}

.hero__title {
	font-size: 52px;
	font-family: Regular;
	line-height: 1.1;
	letter-spacing: -1.5px;
	color: #1E1E2A;
}

.hero__title span {
	color: #F16F52;
}

.hero__subtitle {
	font-size: 20px;
	color: #4A4A5A;
	max-width: 480px;
	line-height: 1.7;
}

.hero__buttons {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 6px;
}

.hero__image-placeholder {
	border-radius: 16px;
	height: 420px;
	min-height: 320px;
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	background-size: contain;
	-o-background-size: contain;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .hero__image-placeholder {
	background: rgba(238, 236, 234, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 16px;
	height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #F16F52;
	font-weight: 500;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero__image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
} */

.block {
	padding: 16px 0;
	background: transparent;
}

.block--white {
	background: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 24px;
	padding: 48px 48px;
	margin: 0 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.block__header {
	text-align: center;
	margin-bottom: 32px;
}

.block__title {
	font-size: 38px;
	font-family: Regular;
	letter-spacing: -0.5px;
	color: #1E1E2A;
}

.block__title span {
	color: #F16F52;
}

.block__subtitle {
	color: #4A4A5A;
	font-size: 20px;
	margin-top: 8px;
}

.split-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.split-block--reverse .split-block__image {
	order: -1;
}

.split-block__content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.split-block__title {
	font-size: 38px;
	font-family: Regular;
	color: #1E1E2A;
	letter-spacing: -0.5px;
	line-height: 1.2;
}

.split-block__subtitle {
	font-size: 19px;
	color: #4A4A5A;
	line-height: 1.7;
}

.split-block__features {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 6px 0;
}

.split-block__feature {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 17px;
	color: #1E1E2A;
}

.split-block__feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	background: #F16F52;
	color: #FFFFFF;
	border-radius: 50%;
	font-size: 15px;
	font-family: Regular;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(241, 111, 82, 0.3);
}

.split-block__button {
	margin-top: 6px;
	align-self: flex-start;
}

.split-block__image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.image-placeholder {
	width: 100%;
	/* background: rgba(238, 236, 234, 0.4);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px); */
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	color: #F16F52;
	font-weight: 500;
	min-height: 220px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;

	background-attachment: scroll;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	background-size: contain;
	-o-background-size: contain;
}

.image-placeholder--glass {
	background: rgba(238, 236, 234, 0.3);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 16px;
	min-height: 280px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #F16F52;
	font-weight: 500;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.advantages__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.advantage-card {
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 32px 28px 28px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
}

.advantage-card:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.6);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.advantage-card__icon {
	width: 52px;
	height: 52px;
	background: #F16F52;
	border-radius: 12px;
	margin-bottom: 18px;
	box-shadow: 0 4px 16px rgba(241, 111, 82, 0.3);
}

.advantage-card__title {
	font-size: 20px;
	font-family: Regular;
	margin-bottom: 10px;
	color: #1E1E2A;
}

.advantage-card__text {
	font-size: 16px;
	color: #4A4A5A;
	line-height: 1.7;
}

.features__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 40px;
	max-width: 920px;
	margin: 0 auto;
}

.features__item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	font-size: 16px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	color: #1E1E2A;
	transition: all 0.2s ease;
	padding: 8px 10px;
	border-radius: 8px;
	line-height: 1.6;
}

.features__item:hover {
	background: rgba(255, 255, 255, 0.3);
}

.features__number {
	font-family: Regular;
	color: #F16F52;
	font-size: 16px;
	min-width: 36px;
}

.stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	max-width: 820px;
	margin: 32px auto 0;
}

.stats__card {
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 28px 24px 24px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
}

.stats__card:hover {
	background: rgba(255, 255, 255, 0.6);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.stats__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 4px;
}

.stats__label {
	font-size: 14px;
	color: #9CA3AF;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 500;
}

.stats__value {
	font-size: 36px;
	font-weight: 700;
	margin: 6px 0 14px;
	color: #1E1E2A;
}

.stats__change {
	font-weight: 600;
	font-size: 14px;
	padding: 2px 12px;
	border-radius: 20px;
}

.stats__change--up {
	color: #22A65E;
	background: rgba(34, 166, 94, 0.1);
}

.stats__change--down {
	color: #EF4444;
	background: rgba(239, 68, 68, 0.1);
}

/* ===== ГИСТОГРАММЫ ===== */
.stats__bars {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 6px;
	height: 70px;
	padding-top: 6px;
}

.stats__bar-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	flex: 1;
}

.stats__bar {
	width: 100%;
	max-width: 24px;
	height: 50px;
	background: rgba(238, 236, 234, 0.5);
	border-radius: 4px 4px 0 0;
	overflow: hidden;
	position: relative;
}

.stats__bar-fill {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #F16F52;
	border-radius: 4px 4px 0 0;
	transition: height 0.6s ease;
	min-height: 4px;
}

.stats__bar-label {
	font-size: 10px;
	color: #9CA3AF;
	font-weight: 500;
	text-transform: uppercase;
}

.stats__card:hover .stats__bar-fill {
	opacity: 0.8;
}

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

.opportunity-card {
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 28px 24px 24px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.opportunity-card:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.6);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.opportunity-card__number {
	position: absolute;
	top: 8px;
	right: 16px;
	font-size: 52px;
	font-weight: 800;
	color: rgba(241, 111, 82, 0.06);
	line-height: 1;
	letter-spacing: -2px;
	pointer-events: none;
}

.opportunity-card__icon {
	font-size: 32px;
	margin-bottom: 12px;
	display: block;
}

.opportunity-card__title {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 6px;
	color: #1E1E2A;
}

.opportunity-card__text {
	font-size: 14px;
	color: #4A4A5A;
	line-height: 1.6;
}

.footer {
	background: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 24px;
	margin: 0 20px 16px;
	padding: 32px 28px 24px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.footer__container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px 32px;
	text-align: left;
}

.footer__logo {
	font-size: 26px;
	font-family: Regular;
	color: #1E1E2A;
}

.footer__copy {
	font-size: 14px;
	color: #9CA3AF;
}

.footer__contacts {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 40px;
	margin-top: 8px;
}

.footer__contact {
	font-size: 18px;
	color: #1E1E2A;
	text-decoration: none;
	transition: color 0.2s;
}

.footer__contact:hover {
	color: #F16F52;
}

.formWindow {
	position: fixed;
	left: 50%;
	top: 50%;
	display: block;
	width: 500px;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	background-color: #FFFFFF;
	border-radius: 26px;
	transform: translate(-50%, -50%);
	overflow-y: auto;
}

.formWindowWrapper {
	position: relative;
}

.formWindowWrapper .closeWindowLink {
	position: absolute;
	top: 24px;
	right: 24px;
}

.formWindowContentWrapper {
	padding: 56px;
}

.formWindowContentWrapper h2 {
	margin-bottom: 32px;
	text-align: center;
	font-size: 18px;
}

.formWindowContentWrapper .messageBlock {
	margin-bottom: 10px;
	font-size: 14px;
}

.formWindowContentWrapper label {
	display: block;
	margin-bottom: 16px;
}

.formWindowContentWrapper label:last-child {
	margin-bottom: 24px;
}

.formWindowContentWrapper span.title {
	font-size: 14px;
}

.formWindowContentWrapper input {
	width: 100%;
	padding: 10px;
	font-size: 16px;
	border: 1px solid #9CA3AF;
}

.formWindowContentWrapper a.button {
	width: 100%;
	text-align: center;
}

.shadowLayer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(51, 51, 51, 0.7);
	overflow: hidden;
}

.messageBoxWindow {
	position: fixed;
	left: 50%;
	top: 50%;
	display: block;
	width: 500px;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	background-color: #FFFFFF;
	border-radius: 26px;
	transform: translate(-50%, -50%);
	overflow-y: auto;
}

.messageBoxWindowWrapper {
	position: relative;
}

.messageBoxWindowWrapper .closeWindowLink {
	position: absolute;
	top: 24px;
	right: 24px;
}

.messageBoxWindowContentWrapper {
	padding: 56px;
}

.messageBoxWindowContentWrapper h2 {
	margin-bottom: 24px;
	text-align: center;
	font-size: 18px;
}

.messageBoxWindowContentWrapper .textWrapper {
	font-size: 14px;
	margin-bottom: 24px;
}

@media (max-width: 900px) {
	.header {
	margin: 12px 12px 0;
	padding: 14px 18px;
	border-radius: 16px;
	}

	.hero__container {
	grid-template-columns: 1fr;
	text-align: center;
	padding: 36px 28px;
	border-radius: 16px;
	gap: 30px;
	margin: 0 12px;
	}

	.hero__subtitle {
	margin: 0 auto;
	}

	.hero__buttons {
	justify-content: center;
	}

	.hero__image-placeholder {
	height: 200px;
	order: -1;
	}

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

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

	.split-block {
	grid-template-columns: 1fr;
	gap: 30px;
	text-align: center;
	}

	.split-block--reverse .split-block__image {
	order: 0;
	}

	.split-block__button {
	align-self: center;
	}

	.split-block__features {
	align-items: center;
	}

	.split-block__feature {
	text-align: left;
	width: 100%;
	max-width: 400px;
	}

	.image-placeholder--glass {
	min-height: 200px;
	}

	.block--white {
	padding: 32px 24px;
	margin: 0 12px;
	border-radius: 16px;
	}

	.footer {
	margin: 0 12px 12px;
	padding: 24px 18px 18px;
	border-radius: 16px;
	}

	.footer__contacts {
	gap: 12px 24px;
	}

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

@media (max-width: 700px) {
	.header__container {
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	padding: 0;
	}

	.nav__list {
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	}

	.hero__title {
	font-size: 34px;
	}

	.block__title {
	font-size: 30px;
	}

	.split-block__title {
	font-size: 30px;
	}

	.features__list {
	grid-template-columns: 1fr;
	gap: 6px;
	}

	.stats {
	grid-template-columns: 1fr;
	max-width: 400px;
	}

	.advantages__grid {
	grid-template-columns: 1fr;
	max-width: 500px;
	margin: 0 auto;
	}

	.opportunities__grid {
	grid-template-columns: 1fr;
	max-width: 500px;
	margin: 0 auto;
	}

	.footer__contacts {
	flex-direction: column;
	gap: 8px;
	}
}

@media (max-width: 480px) {
	.hero__title {
	font-size: 28px;
	}

	.button {
	padding: 10px 20px;
	font-size: 14px;
	}

	.block {
	padding: 12px 0;
	}

	.block--white {
	padding: 24px 16px;
	margin: 0;
	}

	.split-block__title {
	font-size: 26px;
	}

	.split-block__subtitle {
	font-size: 17px;
	}

	.image-placeholder--glass {
	min-height: 150px;
	font-size: 16px;
	}

	.opportunity-card {
	padding: 20px 18px 18px;
	}

	.opportunity-card__title {
	font-size: 16px;
	}

	.opportunity-card__text {
	font-size: 13px;
	}

	.opportunity-card__number {
	font-size: 32px;
	top: 4px;
	right: 10px;
	}

	.opportunity-card__icon {
	font-size: 26px;
	margin-bottom: 8px;
	}

	.integrations__logos {
	gap: 16px 24px;
	}

	.integrations__logo-placeholder {
	padding: 14px 20px;
	font-size: 16px;
	min-width: 70px;
	}

	.pagination {
	gap: 8px;
	}

	.pagination__link {
	font-size: 13px;
	padding: 6px 14px;
	}

	.image-placeholder {
	min-height: 120px;
	font-size: 14px;
	}

	.hero__container {
	padding: 24px 16px;
	margin: 0;
	}

	.hero__subtitle {
	font-size: 17px;
	}

	.advantage-card__title {
	font-size: 18px;
	}

	.advantage-card__text {
	font-size: 14px;
	}

	.features__item {
	font-size: 14px;
	}

	.footer__contact {
	font-size: 15px;
	}

	.footer__logo {
	font-size: 22px;
	}
}