/* Values under “О компании” (was Tilda T899) */

.stk-values {
	--stk-values-ink: #12151a;
	--stk-values-muted: rgba(18, 21, 26, 0.1);
	--stk-values-blue: #66bbf0;
	width: 100%;
	padding: 24px 0 88px;
	background: #f1f9fe;
	font-family: TildaSans, SiteSans, Arial, sans-serif;
	color: var(--stk-values-ink);
	box-sizing: border-box;
}

.stk-values__inner {
	width: min(1100px, calc(100% - 48px));
	margin: 0 auto;
}

.stk-values__track {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 42px 56px;
}

.stk-values__card {
	position: relative;
	min-width: 0;
	padding: 18px 8px 8px 0;
	box-sizing: border-box;
}

.stk-values__num {
	position: absolute;
	left: -6px;
	top: -8px;
	z-index: 0;
	font-size: clamp(96px, 12vw, 140px);
	line-height: 0.8;
	font-weight: 700;
	color: var(--stk-values-muted);
	pointer-events: none;
	user-select: none;
}

.stk-values__title {
	position: relative;
	z-index: 1;
	margin: 28px 0 12px;
	font-size: 22px;
	line-height: 1.25;
	font-weight: 700;
	color: #000;
}

.stk-values__text {
	position: relative;
	z-index: 1;
	margin: 0;
	max-width: 460px;
	font-size: 15px;
	line-height: 1.55;
	color: #12151a;
}

.stk-values__nav {
	display: none;
}

@media screen and (max-width: 900px) {
	.stk-values {
		padding: 12px 0 48px;
	}

	.stk-values__inner {
		width: min(1100px, calc(100% - 32px));
	}

	.stk-values__viewport {
		overflow: hidden;
		width: 100%;
	}

	.stk-values__track {
		display: flex;
		flex-wrap: nowrap;
		gap: 0;
		width: 100%;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		overscroll-behavior-x: contain;
	}

	.stk-values__track::-webkit-scrollbar {
		display: none;
	}

	.stk-values__card {
		flex: 0 0 100%;
		width: 100%;
		min-width: 100%;
		max-width: 100%;
		min-height: 220px;
		padding: 28px 20px 24px;
		border-radius: 18px;
		background: rgba(255, 255, 255, 0.72);
		box-shadow: 0 10px 28px rgba(36, 151, 220, 0.08);
		scroll-snap-align: start;
		scroll-snap-stop: always;
		box-sizing: border-box;
	}

	.stk-values__num {
		left: 12px;
		top: 8px;
		font-size: 110px;
		color: rgba(18, 21, 26, 0.08);
	}

	.stk-values__title {
		margin: 36px 0 12px;
		font-size: 20px;
	}

	.stk-values__text {
		max-width: none;
		font-size: 14.5px;
	}

	.stk-values__nav[hidden] {
		display: none !important;
	}

	.stk-values__nav:not([hidden]) {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 12px;
		margin-top: 16px;
	}

	.stk-values__arrow {
		flex: 0 0 auto;
		width: 36px;
		height: 36px;
		border: 0;
		border-radius: 50%;
		background: var(--stk-values-blue);
		color: #fff;
		font-family: Arial, sans-serif;
		font-size: 28px;
		line-height: 28px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 0 0 3px;
		cursor: pointer;
		box-shadow: 0 8px 18px rgba(37, 151, 220, 0.22);
	}

	.stk-values__arrow:disabled {
		opacity: 0.35;
		cursor: default;
	}

	.stk-values__dots {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
	}

	.stk-values__dot {
		width: 9px;
		height: 9px;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: rgba(102, 187, 240, 0.35);
		cursor: pointer;
		transition: background 0.15s ease, transform 0.15s ease;
	}

	.stk-values__dot.is-active {
		background: var(--stk-values-blue);
		transform: scale(1.2);
	}
}

@media screen and (min-width: 901px) {
	.stk-values__nav {
		display: none !important;
	}
}
