body.stk-site {
	margin: 0;
	background: #fff;
}

.stk-site-header a,
.stk-site-header a:hover,
.stk-site-header a:focus,
.stk-site-header a:visited,
.stk-site-footer a,
.stk-site-footer a:hover,
.stk-site-footer a:focus,
.stk-site-footer a:visited,
.stk-breadcrumbs a,
.stk-breadcrumbs a:hover,
.stk-breadcrumbs a:focus,
.stk-breadcrumbs a:visited {
	border-bottom: 0 !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

.stk-site-header {
	--stk-header-ink: #15202b;
	--stk-header-muted: #5b6b7c;
	--stk-header-line: rgba(21, 32, 43, 0.08);
	--stk-header-blue: #2497dc;
	--stk-header-blue-soft: #66bbf0;
	--stk-header-ice: #eef7fc;
	position: sticky;
	top: 0;
	z-index: 9999;
	width: 100%;
	background: #fff !important;
	font-family: TildaSans, Arial, sans-serif;
	isolation: isolate;
	box-shadow: 0 10px 30px rgba(21, 32, 43, 0.06);
}

body.admin-bar .stk-site-header {
	top: 32px;
}

.stk-site-header__shell {
	width: min(1240px, calc(100% - 48px));
	margin: 0 auto;
	box-sizing: border-box;
}

.stk-site-header__top {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 70%),
		linear-gradient(90deg, #f4fbff 0%, var(--stk-header-ice) 45%, #f7fbfe 100%);
	border-bottom: 1px solid var(--stk-header-line);
}

.stk-site-header__top .stk-site-header__shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 42px;
}

.stk-site-header__top-right {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-left: auto;
}

.stk-site-phone {
	color: #1f4e79;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.stk-site-phone:hover {
	color: #2497dc;
	text-decoration: underline;
}

.stk-site-phone_main {
	font-size: 14px;
	margin-right: 4px;
}

.stk-site-footer__info a {
	color: inherit;
	text-decoration: none;
}

.stk-site-footer__info a:hover {
	color: #2497dc;
	text-decoration: underline;
}

.stk-site-header__main {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--stk-header-line);
}

.stk-site-header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	column-gap: 28px;
	min-height: 78px;
}

.stk-site-header__logo {
	display: inline-flex;
	align-items: center;
	width: 186px;
	text-decoration: none;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.stk-site-header__logo:hover {
	transform: translateY(-1px);
}

.stk-site-header__logo img {
	display: block;
	width: 186px;
	height: auto;
}

.stk-site-nav {
	min-width: 0;
	justify-self: stretch;
	width: 100%;
	overflow: hidden;
}

.stk-site-nav__list {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.stk-site-nav__list li {
	margin: 0;
	padding: 0;
	flex-shrink: 0;
}

.stk-site-nav__list a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 11px;
	color: var(--stk-header-ink) !important;
	font-size: 14.5px;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: -0.015em;
	text-decoration: none;
	white-space: nowrap;
	border-radius: 999px;
	transition: color 0.18s ease, background 0.18s ease;
}

.stk-site-nav__list a::after {
	content: '';
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 8px;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--stk-header-blue), var(--stk-header-blue-soft));
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.stk-site-nav__list a:hover {
	color: var(--stk-header-blue) !important;
	background: rgba(36, 151, 220, 0.08);
}

.stk-site-nav__list a:hover::after,
.stk-site-nav__list .current-menu-item > a::after,
.stk-site-nav__list .current_page_item > a::after {
	transform: scaleX(1);
}

.stk-site-nav__list .current-menu-item > a,
.stk-site-nav__list .current_page_item > a {
	color: var(--stk-header-blue) !important;
	background: rgba(36, 151, 220, 0.1);
}

.stk-site-social {
	display: flex;
	align-items: center;
	gap: 8px;
}

.stk-site-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #fff;
	color: var(--stk-header-blue);
	border: 1px solid rgba(36, 151, 220, 0.18);
	box-shadow: 0 4px 12px rgba(36, 151, 220, 0.08);
	text-decoration: none;
	line-height: 0;
	transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.stk-site-social__link:hover {
	transform: translateY(-1px);
	background: var(--stk-header-blue);
	border-color: var(--stk-header-blue);
	color: #fff;
}

.stk-site-social__svg {
	display: block;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.stk-site-hours {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--stk-header-muted);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.stk-site-hours__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #2ecc71;
	box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.16);
}

.stk-site-search {
	position: relative;
	display: inline-flex;
	align-items: center;
	height: 32px;
	padding-left: 32px;
	border: 1px solid rgba(31, 37, 48, 0.1);
	border-radius: 999px;
	background: #fff;
	overflow: hidden;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.stk-site-search:focus-within {
	border-color: rgba(36, 151, 220, 0.45);
	box-shadow: 0 0 0 3px rgba(36, 151, 220, 0.12);
}

.stk-site-search__icon {
	position: absolute;
	left: 11px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--stk-header-muted);
	pointer-events: none;
}

.stk-site-search input {
	width: 150px;
	height: 30px;
	border: 0;
	padding: 0 4px 0 0;
	box-sizing: border-box;
	font: 500 13px/1.2 TildaSans, Arial, sans-serif;
	color: var(--stk-header-ink);
	background: transparent;
	outline: none;
}

.stk-site-search button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	padding: 0 14px;
	border: 0;
	border-left: 1px solid rgba(31, 37, 48, 0.08);
	background: transparent;
	color: var(--stk-header-blue);
	font: 700 12px/1 TildaSans, Arial, sans-serif;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	cursor: pointer;
	transition: color 0.15s ease, background 0.15s ease;
}

.stk-site-search button:hover {
	background: rgba(36, 151, 220, 0.08);
	color: #1a7eb8;
}

.stk-site-consult,
.stk-site-footer__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 22px;
	border-radius: 999px;
	background: linear-gradient(135deg, #2aa3e6 0%, #2497dc 55%, #1f86c5 100%);
	color: #fff !important;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.01em;
	text-decoration: none;
	box-shadow:
		0 10px 22px rgba(36, 151, 220, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.28);
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.stk-site-consult:hover,
.stk-site-footer__cta:hover {
	transform: translateY(-1px);
	filter: brightness(1.03);
	box-shadow:
		0 14px 28px rgba(36, 151, 220, 0.34),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	color: #fff !important;
}

.stk-site-consult_desktop {
	justify-self: end;
	align-self: center;
	width: max-content;
	max-width: 100%;
	flex-shrink: 0;
	grid-area: auto;
}

.stk-site-consult_mobile {
	display: none !important;
}

.stk-site-header__toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 0;
	background: transparent;
	padding: 8px;
	cursor: pointer;
}

.stk-site-header__toggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 5px auto;
	border-radius: 2px;
	background: var(--stk-header-ink);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.stk-site-header__toggle[aria-expanded='true'] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.stk-site-header__toggle[aria-expanded='true'] span:nth-child(2) {
	opacity: 0;
}

.stk-site-header__toggle[aria-expanded='true'] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

#rec1787992061 .stk-block-997__title,
#rec1787992061 .stk-block-997__descr,
#rec1787992061 .stk-block-997__card-title,
#rec1787992061 .stk-block-997__card-desc {
	color: #fff !important;
}

/* Hero cover lead (T148) — white on dark photo, not black .stk-text */
.stk-block-148__title,
.stk-cover-lead {
	color: #fff !important;
}

/*
 * "Типы станков" (T979): images are display:none until masonry JS runs,
 * but JS still looks for legacy .t979 selectors after stk-* rename.
 * Show a simple responsive photo grid instead.
 */

/* Header spacing (stripped from Tilda inline styles on import) */
#rec1798373411 .stk-section__title,
#rec1798373411 .t-section__title {
	margin-bottom: 40px;
	text-align: center;
}

#rec1798373411 .stk-section__descr,
#rec1798373411 .t-section__descr {
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 90px;
	text-align: center;
	line-height: 1.55;
}

@media screen and (max-width: 960px) {
	#rec1798373411 .stk-section__title,
	#rec1798373411 .t-section__title {
		margin-bottom: 20px;
	}

	#rec1798373411 .stk-section__descr,
	#rec1798373411 .t-section__descr {
		margin-bottom: 45px;
	}
}

.stk-block-979__grid {
	display: flex !important;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 8px;
	height: auto !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 10px 40px;
	position: relative !important;
	overflow: visible !important;
	box-sizing: border-box;
}

.stk-block-979__grid-item {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	width: calc(25% - 6px) !important;
	height: auto !important;
	margin: 0 !important;
	flex: 0 0 calc(25% - 6px);
	box-sizing: border-box;
	overflow: hidden;
}

.stk-block-979__image {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	max-width: 100%;
	object-fit: cover;
	vertical-align: top;
}

.stk-block-979__overlay {
	pointer-events: none;
}

@media screen and (max-width: 1200px) {
	.stk-block-979__grid-item {
		width: calc(33.333% - 6px) !important;
		flex-basis: calc(33.333% - 6px);
	}
}

@media screen and (max-width: 960px) {
	.stk-block-979__grid-item {
		width: calc(50% - 4px) !important;
		flex-basis: calc(50% - 4px);
	}
}

@media screen and (max-width: 640px) {
	.stk-block-979__grid {
		padding: 0 8px 28px;
		gap: 6px;
	}

	.stk-block-979__grid-item {
		width: 100% !important;
		flex-basis: 100%;
	}
}

.stk-site-footer {
	background: #f1f9fe;
	font-family: TildaSans, Arial, sans-serif;
	color: #1f2530;
}

.stk-site-footer__inner {
	display: grid;
	grid-template-columns: 225px minmax(280px, 1fr) minmax(260px, auto);
	align-items: center;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 34px 20px;
	box-sizing: border-box;
}

.stk-site-footer__logo img {
	display: block;
	width: 190px;
	height: auto;
}

.stk-site-footer__center {
	text-align: center;
}

.stk-site-footer__center p {
	margin: 0 0 6px;
	font-size: 16px;
	line-height: 1.35;
}

.stk-site-footer__docs {
	display: block;
	margin-top: 12px;
}

.stk-site-footer__docs-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.stk-site-footer__docs-list li {
	margin: 0;
	padding: 0;
}

.stk-site-footer__docs-list a {
	color: #ff7a59;
	font-size: 15px;
	text-decoration: none;
}

.stk-site-footer__docs-list a:hover {
	color: #2497dc;
}

.stk-site-footer__info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
}

.stk-site-footer__info div {
	display: flex;
	gap: 8px;
}

.stk-site-footer__info span {
	color: #6d7784;
}

.stk-site-footer__info strong {
	font-weight: 700;
}

.stk-site-footer__cta {
	min-height: 44px;
	padding: 0 20px;
	font-size: 14px;
}

.stk-legal-page {
	padding: 72px 20px 86px;
	background: #fff;
	font-family: TildaSans, Arial, sans-serif;
	color: #1f2530;
}

.stk-legal-page__inner {
	max-width: 900px;
	margin: 0 auto;
}

.stk-legal-page h1 {
	margin: 0 0 20px;
	font-size: 46px;
	line-height: 1.15;
	font-weight: 700;
}

.stk-legal-page h2 {
	margin: 36px 0 12px;
	font-size: 26px;
	line-height: 1.25;
}

.stk-legal-page p {
	margin: 0 0 16px;
	font-size: 18px;
	line-height: 1.65;
}

.stk-legal-page ul {
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.stk-legal-page li {
	margin: 0 0 12px;
}

.stk-legal-page a {
	color: #2497dc;
	font-size: 18px;
	text-decoration: none;
}

.stk-legal-page a:hover {
	color: #ff7a59;
}

@media screen and (max-width: 1280px) {
	.stk-site-search {
		display: none;
	}
}

@media screen and (max-width: 1180px) {
	.stk-site-header__shell {
		width: min(1240px, calc(100% - 36px));
	}

	.stk-site-header__inner {
		column-gap: 18px;
	}

	.stk-site-header__logo,
	.stk-site-header__logo img {
		width: 164px;
	}

	.stk-site-nav__list a {
		padding: 0 9px;
		font-size: 13.5px;
	}
}

@media screen and (max-width: 1024px) {
	.stk-site-header__top .stk-site-header__shell {
		min-height: 38px;
	}

	.stk-site-hours span {
		font-size: 12px;
	}

	.stk-site-phone {
		font-size: 12px;
	}

	.stk-site-phone_main {
		font-size: 12px;
	}

	.stk-site-consult_desktop {
		min-height: 40px;
		padding: 0 16px;
		font-size: 13px;
	}
}

@media screen and (max-width: 960px) {
	.stk-site-header__top {
		display: none;
	}

	.stk-site-header__shell {
		width: min(1240px, calc(100% - 32px));
	}

	.stk-site-header__inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto 42px;
		min-height: 70px;
		column-gap: 12px;
	}

	.stk-site-header__logo {
		grid-column: 1;
		grid-row: 1;
		width: 158px;
	}

	.stk-site-header__logo img {
		width: 158px;
	}

	.stk-site-header__toggle {
		display: block;
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
	}

	.stk-site-consult_desktop {
		display: inline-flex;
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
		min-height: 40px;
		padding: 0 14px;
		font-size: 13px;
	}

	.stk-site-phone_main {
		display: none;
	}

	.stk-site-nav {
		display: none;
		grid-column: 1 / -1;
		width: 100%;
		padding: 8px 0 18px;
	}

	.stk-site-nav_open {
		display: block;
	}

	.stk-site-nav__list {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		margin-bottom: 14px;
	}

	.stk-site-nav__list a {
		justify-content: flex-start;
		width: 100%;
		min-height: 46px;
		padding: 0 14px;
		font-size: 17px;
		border-radius: 12px;
		background: #f5fafd;
	}

	.stk-site-nav__list a::after {
		display: none;
	}

	.stk-site-footer__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.stk-site-footer__logo img {
		margin: 0 auto;
	}

	.stk-site-footer__info {
		align-items: center;
	}

	.stk-legal-page {
		padding: 54px 20px 68px;
	}

	.stk-legal-page h1 {
		font-size: 34px;
	}
}

@media screen and (max-width: 560px) {
	.stk-site-header__shell {
		width: min(1240px, calc(100% - 24px));
	}

	.stk-site-header__logo,
	.stk-site-header__logo img {
		width: 146px;
	}
}
