:root {
	--color-dark: #202E34;
	--color-dark-2: #17252b;
	--color-steel: #546473;
	--color-muted: #7b8793;
	--color-line: #e7eaee;
	--color-bg: #f5f7f9;
	--color-white: #ffffff;
	--color-red: #e0322d;
	--color-red-dark: #ba2420;
	--shadow-card: 0 18px 45px rgba(12, 30, 48, 0.08);
	--container: 1180px;
	--radius: 2px;
	--font-main: "Roboto", "Segoe UI", Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--color-dark);
	font-family: var(--font-main);
	font-size: 16px;
	line-height: 1.55;
	background: var(--color-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: auto;
}

body.menu-open {
	overflow: hidden;
}

body.modal-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

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

.container {
	width: min(100% - 32px, var(--container));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 14px 26px;
	color: var(--color-white);
	font-weight: 700;
	font-size: 14px;
	background: var(--color-red);
	border: 1px solid var(--color-red);
	border-radius: var(--radius);
	transition: 0.2s ease;
}

.button:hover,
.button:focus-visible {
	background: var(--color-red-dark);
	border-color: var(--color-red-dark);
}

.button--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.48);
}

.button--ghost:hover,
.button--ghost:focus-visible {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--color-white);
}

.button--small {
	min-height: 40px;
	padding: 10px 18px;
	font-size: 13px;
}

.button--outline-light {
	min-height: 42px;
	color: var(--color-white);
	background: transparent;
	border-color: rgba(255, 255, 255, 0.3);
}

.section {
	padding: 74px 0;
}

.section--light {
	background: var(--color-white);
}

.section-kicker {
	margin: 0 0 12px;
	color: var(--color-red);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: none;
}

.section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 30px;
}

.section-head h2,
.about h2,
.cta h2,
.contact-form-section h2 {
	margin: 0;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.15;
	letter-spacing: 0;
}

.section-link,
.more-link {
	color: var(--color-red);
	font-size: 14px;
	font-weight: 700;
}

.section-link::after,
.more-link::after {
	content: " ->";
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--color-line);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 26px;
	min-height: 76px;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
	padding: 10px 0;
}

.site-logo__image {
	display: block;
	width: 165px;
	max-width: 100%;
	height: auto;
}

.site-logo__mark {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	color: var(--color-white);
	font-weight: 900;
	background: linear-gradient(135deg, #e53b35, #9d1715);
	border-radius: 6px;
	box-shadow: 0 8px 18px rgba(224, 50, 45, 0.28);
}

.site-logo__text {
	display: grid;
	color: var(--color-dark);
	line-height: 1.02;
	text-transform: none;
}

.site-logo__text strong {
	font-size: 15px;
	letter-spacing: 0;
}

.site-logo__text small {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
}

.custom-logo {
	width: auto;
	max-height: 56px;
}

.primary-nav {
	flex: 1 1 auto;
}

.primary-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-nav a {
	color: var(--color-dark);
	font-size: 14px;
	font-weight: 700;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
	color: var(--color-red);
}

.site-header__phone {
	flex: 0 0 auto;
	color: var(--color-dark);
	font-size: 14px;
	font-weight: 800;
}

.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 10px;
	background: transparent;
	border: 1px solid var(--color-line);
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 4px 0;
	background: var(--color-dark);
}

body.home .site-header,
body.page-template-template-home .site-header,
.site-header--transparent {
	position: absolute;
	right: 0;
	left: 0;
	background: transparent;
	border-bottom-color: rgba(255, 255, 255, 0.16);
	backdrop-filter: none;
}

body.home .primary-nav a,
body.home .site-header__phone,
body.page-template-template-home .primary-nav a,
body.page-template-template-home .site-header__phone,
.site-header--transparent .primary-nav a,
.site-header--transparent .site-header__phone {
	color: var(--color-white);
}

body.home .primary-nav a:hover,
body.home .primary-nav a:focus-visible,
body.page-template-template-home .primary-nav a:hover,
body.page-template-template-home .primary-nav a:focus-visible,
.site-header--transparent .primary-nav a:hover,
.site-header--transparent .primary-nav a:focus-visible {
	color: var(--color-red);
}

body.home .menu-toggle,
body.page-template-template-home .menu-toggle,
.site-header--transparent .menu-toggle {
	border-color: rgba(255, 255, 255, 0.34);
}

body.home .menu-toggle span:not(.screen-reader-text),
body.page-template-template-home .menu-toggle span:not(.screen-reader-text),
.site-header--transparent .menu-toggle span:not(.screen-reader-text) {
	background: var(--color-white);
}

.hero {
	position: relative;
	min-height: 100vh;
	color: var(--color-white);
	background:
		linear-gradient(90deg, rgba(32, 46, 52, 0.9) 0%, rgba(32, 46, 52, 0.66) 43%, rgba(32, 46, 52, 0.18) 100%),
		url("../images/home-banner.png") center / cover no-repeat;
	overflow: hidden;
}

.hero__media {
	display: none;
}

.hero__media::before {
	content: "";
	position: absolute;
	inset: 0 0 0 42%;
	background:
		linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06)),
		repeating-linear-gradient(90deg, transparent 0 72px, rgba(255, 255, 255, 0.07) 72px 75px),
		repeating-linear-gradient(0deg, transparent 0 56px, rgba(255, 255, 255, 0.04) 56px 58px);
	transform: skewX(-7deg);
	transform-origin: bottom;
}

.hero__machine {
	position: absolute;
	right: 13%;
	bottom: 104px;
	width: 270px;
	height: 190px;
	background:
		linear-gradient(#384b58, #1e2b34),
		linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.15) 50%, transparent 52%);
	border: 12px solid rgba(19, 33, 45, 0.9);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.hero__flame {
	position: absolute;
	right: 20%;
	bottom: 0;
	width: 150px;
	height: 210px;
	background: radial-gradient(circle at 50% 88%, #ffd15c 0 12%, #ff7b22 25%, #e0322d 42%, transparent 70%);
	filter: blur(1px);
	opacity: 0.9;
}

.hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100vh;
	padding: 136px 0 128px;
}

.hero h1 {
	max-width: 690px;
	margin: 0;
	font-size: clamp(40px, 6vw, 72px);
	line-height: 0.98;
	letter-spacing: 0;
}

.hero__text {
	max-width: 560px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 18px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.features {
	position: relative;
	z-index: 2;
	margin-top: -42px;
}

.features__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: var(--color-white);
	box-shadow: var(--shadow-card);
}

.feature-card {
	display: flex;
	gap: 16px;
	min-height: 145px;
	padding: 26px 24px;
	border-right: 1px solid var(--color-line);
}

.feature-card:last-child {
	border-right: 0;
}

.feature-card__icon {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	color: var(--color-red);
	font-weight: 900;
	background: #fff1f1;
	border-radius: 50%;
}

.feature-card__icon img {
	display: block;
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.feature-card h2 {
	margin: 0 0 6px;
	font-size: 17px;
	line-height: 1.25;
}

.feature-card p,
.catalog-card p,
.preview-card p,
.about p,
.cta p,
.site-footer p {
	margin: 0;
	color: var(--color-muted);
	font-size: 14px;
}

.catalog-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--color-line);
	border-left: 1px solid var(--color-line);
}

.catalog-card {
	min-height: 300px;
	background: var(--color-white);
	border-right: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
	transition: 0.2s ease;
}

.catalog-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
}

.catalog-card__image {
	display: block;
	height: 140px;
	margin: 20px 20px 0;
	background-color: #f0f3f6;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.catalog-card__image:not([style]) {
	background-size: 70% 70%, cover;
}

.catalog-card__image--1,
.preview-card__image--1 {
	background-image: linear-gradient(135deg, transparent 44%, rgba(224, 50, 45, 0.8) 45% 55%, transparent 56%), radial-gradient(circle at 58% 45%, #2d6690 0 16%, transparent 17%), linear-gradient(135deg, #dbe7ef, #eef3f6);
}

.catalog-card__image--2,
.preview-card__image--2 {
	background-image: radial-gradient(circle at 48% 42%, #dc9228 0 15%, transparent 16%), linear-gradient(90deg, transparent 42%, #263747 43% 50%, transparent 51%), linear-gradient(135deg, #e9eef2, #f7f8f9);
}

.catalog-card__image--3,
.preview-card__image--3 {
	background-image: radial-gradient(circle at 35% 48%, #d64f34 0 13%, transparent 14%), radial-gradient(circle at 65% 48%, #d64f34 0 13%, transparent 14%), linear-gradient(135deg, #dae3eb, #f4f6f8);
}

.catalog-card__image--4,
.preview-card__image--4 {
	background-image: linear-gradient(90deg, transparent 34%, #1e5a86 35% 45%, transparent 46% 54%, #1e5a86 55% 65%, transparent 66%), linear-gradient(135deg, #edf2f5, #dfe9f0);
}

.catalog-card__image--5 {
	background-image: linear-gradient(160deg, transparent 35%, #718394 36% 45%, transparent 46%), linear-gradient(20deg, transparent 40%, #c54a36 41% 48%, transparent 49%), linear-gradient(135deg, #edf2f5, #f8fafb);
}

.catalog-card__image--6 {
	background-image: linear-gradient(135deg, transparent 30%, #1f6b9d 31% 40%, transparent 41%), linear-gradient(45deg, transparent 44%, #1f6b9d 45% 52%, transparent 53%), linear-gradient(135deg, #e6edf2, #fafafa);
}

.catalog-card__image--7 {
	background-image: radial-gradient(ellipse at 50% 60%, #3d7ba6 0 22%, transparent 23%), linear-gradient(90deg, transparent 35%, #143b58 36% 66%, transparent 67%), linear-gradient(135deg, #edf2f5, #f8fafb);
}

.catalog-card__image--8 {
	background-image: radial-gradient(circle at 35% 45%, transparent 0 10%, #8d99a5 11% 17%, transparent 18%), radial-gradient(circle at 55% 55%, transparent 0 10%, #8d99a5 11% 17%, transparent 18%), radial-gradient(circle at 68% 40%, transparent 0 10%, #8d99a5 11% 17%, transparent 18%), linear-gradient(135deg, #edf2f5, #f8fafb);
}

.catalog-card__body {
	padding: 20px;
}

.catalog-card h3,
.preview-card h3,
.about-point h3 {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.24;
	letter-spacing: 0;
}

.catalog-card .more-link,
.preview-card .more-link {
	display: inline-block;
	margin-top: 14px;
}

.about {
	position: relative;
	padding: 92px 0;
	color: var(--color-white);
	background:
		linear-gradient(90deg, rgba(32, 46, 52, 0.96), rgba(32, 46, 52, 0.8) 46%, rgba(32, 46, 52, 0.42)),
		url("../images/home-banner2.png") center / cover no-repeat;
	overflow: hidden;
}

.about__media {
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(90deg, transparent 0 84px, rgba(255, 255, 255, 0.035) 84px 86px),
		linear-gradient(180deg, rgba(32, 46, 52, 0.18), rgba(32, 46, 52, 0.34));
	opacity: 0.9;
}

.about__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 68px;
	align-items: center;
}

.about__content p {
	max-width: 650px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 16px;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 38px;
}

.about-stat strong {
	display: block;
	color: var(--color-white);
	font-size: 42px;
	line-height: 1;
}

.about-stat span {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 13px;
}

.about-panel {
	padding: 34px;
	background: rgba(7, 23, 38, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.about-point {
	display: flex;
	gap: 16px;
	padding: 0 0 22px;
	margin-bottom: 22px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-point span {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	color: var(--color-white);
	background: rgba(224, 50, 45, 0.95);
	border-radius: 50%;
}

.about-point p {
	color: rgba(255, 255, 255, 0.65);
}

.preview-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.preview-card {
	padding-bottom: 18px;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	transition: 0.2s ease;
}

.preview-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
}

.preview-card__image {
	display: block;
	height: 152px;
	margin-bottom: 18px;
	background-color: #e9eef2;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.preview-card__image:not([style]) {
	background-size: cover;
}

.preview-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.preview-card h3,
.preview-card p,
.preview-card time,
.preview-card .more-link {
	display: block;
	margin-right: 18px;
	margin-left: 18px;
}

.preview-card time {
	margin-bottom: 8px;
	color: var(--color-muted);
	font-size: 12px;
}

.preview-card--news h3 {
	min-height: 66px;
}

.news-page {
	padding: 64px 0;
	background: var(--color-white);
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.news-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	transition: 0.2s ease;
}

.news-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
}

.news-card__image {
	display: block;
	height: 220px;
	background: #e9eef2;
	overflow: hidden;
}

.news-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 22px;
}

.news-card time,
.single-news-hero time,
.single-news__related time {
	display: block;
	color: var(--color-muted);
	font-size: 13px;
}

.news-card h2 {
	margin: 10px 0 12px;
	font-size: 22px;
	line-height: 1.2;
}

.news-card p {
	margin: 0;
	color: var(--color-steel);
}

.news-card .more-link {
	margin-top: auto;
	padding-top: 18px;
}

.news-pagination {
	margin-top: 34px;
}

.single-news {
	padding: 64px 0;
	background: var(--color-white);
}

.single-news__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 54px;
	align-items: start;
}

.single-news__image {
	margin-bottom: 34px;
	background: #e9eef2;
}

.single-news__image img {
	display: block;
	width: 100%;
	height: auto;
}

.single-news__text {
	color: var(--color-steel);
	font-size: 17px;
}

.single-news__text > *:first-child {
	margin-top: 0;
}

.single-news__text h2,
.single-news__text h3 {
	color: var(--color-dark);
	line-height: 1.2;
}

.single-news__back {
	display: inline-block;
	margin-top: 30px;
}

.single-news__aside {
	position: sticky;
	top: 104px;
	padding: 24px;
	background: #fbfcfd;
	border: 1px solid var(--color-line);
}

.single-news__aside h2 {
	margin: 0 0 18px;
	font-size: 22px;
	line-height: 1.2;
}

.single-news__related {
	display: grid;
	gap: 16px;
}

.single-news__related a {
	display: block;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--color-line);
}

.single-news__related a:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.single-news__related strong {
	display: block;
	margin-top: 6px;
	line-height: 1.25;
}

.cta {
	color: var(--color-white);
	background:
		linear-gradient(90deg, rgba(5, 16, 28, 0.98), rgba(5, 16, 28, 0.8)),
		linear-gradient(135deg, var(--color-dark), var(--color-dark-2));
}

.cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	min-height: 210px;
}

.cta p {
	max-width: 650px;
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.72);
}

.contact-form-section {
	padding: 70px 0;
	background: var(--color-bg);
}

.contact-form-section__inner {
	max-width: 820px;
}

.wpcf7-form {
	display: grid;
	gap: 16px;
	margin-top: 24px;
}

.wpcf7-form p {
	margin: 0;
}

.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
	width: 100%;
	min-height: 48px;
	padding: 13px 16px;
	color: var(--color-dark);
	background: var(--color-white);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
}

.wpcf7 textarea {
	min-height: 130px;
	resize: vertical;
}

.wpcf7-submit {
	width: auto !important;
	color: var(--color-white) !important;
	font-weight: 700;
	background: var(--color-red) !important;
	border-color: var(--color-red) !important;
	cursor: pointer;
}

.site-footer {
	color: rgba(255, 255, 255, 0.72);
	background: var(--color-dark);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 0.8fr 1fr;
	gap: 48px;
	padding: 64px 0 44px;
}

.site-logo--footer .site-logo__text {
	color: var(--color-white);
}

.site-logo--footer {
	padding: 10px 12px;
	background: var(--color-white);
	border-radius: 4px;
}

.site-logo--footer .site-logo__image {
	width: 180px;
}

.site-footer h2 {
	margin: 0 0 18px;
	color: var(--color-white);
	font-size: 16px;
}

.site-footer__brand p {
	max-width: 310px;
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.62);
}

.footer-list,
.footer-contacts {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-list a,
.footer-contacts a {
	color: rgba(255, 255, 255, 0.7);
}

.footer-list a:hover,
.footer-contacts a:hover {
	color: var(--color-white);
}

.socials {
	display: flex;
	gap: 10px;
	margin-top: 22px;
}

.socials a {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	color: var(--color-white);
	font-size: 12px;
	font-weight: 800;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px 0;
	color: rgba(255, 255, 255, 0.46);
	font-size: 13px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 285px;
	color: var(--color-white);
	background:
		linear-gradient(90deg, rgba(5, 16, 28, 0.92), rgba(5, 16, 28, 0.62)),
		url("../images/page-hero-bg.png") center / cover no-repeat;
	overflow: hidden;
}

.page-hero::after {
	content: "";
	position: absolute;
	inset: 0 0 0 42%;
	background: linear-gradient(90deg, transparent, rgba(224, 50, 45, 0.12));
	opacity: 0.45;
}

.page-hero .container {
	position: relative;
	z-index: 1;
}

.page-hero h1 {
	margin: 14px 0 0;
	font-size: clamp(38px, 5vw, 64px);
	line-height: 1.02;
	letter-spacing: 0;
}

.page-hero__lead {
	max-width: 520px;
	margin: 14px 0 20px;
	color: rgba(255, 255, 255, 0.82);
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
}

.breadcrumbs a:hover {
	color: var(--color-white);
}

.about-page,
.about-advantages,
.production-block,
.partners-section,
.certificates-section,
.contacts-page,
.contact-write {
	padding: 64px 0;
	background: var(--color-white);
}

.about-page__intro {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 64px;
	align-items: start;
}

.about-page__content h2,
.about-advantages h2,
.production-block h2,
.partners-section h2,
.certificates-section h2,
.contacts-info h2,
.contact-write h2 {
	margin: 0 0 22px;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.15;
	letter-spacing: 0;
}

.about-page__content p,
.production-block p,
.contact-write p,
.certificates-note p {
	margin: 0 0 18px;
	color: var(--color-steel);
}

.about-page__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 34px;
	border-top: 1px solid var(--color-line);
	border-left: 1px solid var(--color-line);
}

.about-page__stats div {
	padding: 24px;
	border-right: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
}

.about-page__stats strong {
	display: block;
	font-size: 32px;
	line-height: 1;
}

.about-page__stats span {
	display: block;
	margin-top: 8px;
	color: var(--color-muted);
	font-size: 13px;
}

.about-page__visual {
	position: relative;
	padding-bottom: 54px;
}

.factory-visual,
.production-block__image {
	min-height: 360px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(6, 20, 33, 0.08)),
		repeating-linear-gradient(90deg, transparent 0 78px, rgba(6, 20, 33, 0.12) 78px 82px),
		linear-gradient(135deg, #d9e1e7, #f4f7f9 46%, #b8c5ce);
	border: 1px solid var(--color-line);
}

.factory-visual::after,
.production-block__image::after {
	content: "";
	display: block;
	width: 46%;
	height: 74px;
	margin: 210px 0 0 14%;
	background: linear-gradient(90deg, #8a1515 0 18%, #2e3b45 18% 100%);
	box-shadow: 180px -56px 0 #31414e;
}

.mission-card {
	position: absolute;
	right: 36px;
	bottom: 0;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 14px;
	max-width: 380px;
	padding: 24px;
	background: var(--color-white);
	box-shadow: var(--shadow-card);
}

.mission-card span {
	color: var(--color-red);
	font-size: 28px;
}

.mission-card h3,
.mission-card p {
	margin: 0;
}

.mission-card h3 {
	margin-bottom: 8px;
}

.mission-card p,
.about-advantages p {
	color: var(--color-muted);
	font-size: 14px;
}

.about-advantages {
	background: var(--color-bg);
}

.about-advantages__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 28px;
	margin-top: 30px;
}

.about-advantages article span {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 16px;
	color: var(--color-red);
	background: var(--color-white);
	border-radius: 50%;
}

.about-advantages article span img {
	display: block;
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.about-advantages h3 {
	margin: 0 0 10px;
	font-size: 17px;
}

.production-block__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 58px;
	align-items: center;
}

.check-list {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 22px 0 28px;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 26px;
	color: var(--color-steel);
}

.check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--color-red);
	font-weight: 900;
}

.partners-section {
	padding-top: 28px;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	border-top: 1px solid var(--color-line);
	border-left: 1px solid var(--color-line);
}

.partners-grid div {
	display: grid;
	place-items: center;
	min-height: 76px;
	padding: 14px;
	color: var(--color-steel);
	font-weight: 800;
	text-align: center;
	background: var(--color-white);
	border-right: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
}

.certificates-section {
	padding-top: 24px;
}

.certificates-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 44px;
	align-items: end;
}

.certificates-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.certificate-card {
	display: grid;
	place-items: center;
	min-height: 170px;
	padding: 14px;
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(135deg, #cfd7df, #f0d8c2) border-box;
	border: 6px solid transparent;
	box-shadow: inset 0 0 0 1px var(--color-line);
}

.certificate-card span {
	color: var(--color-muted);
	font-size: 12px;
	text-align: center;
}

.contacts-page__grid {
	display: grid;
	grid-template-columns: 285px minmax(0, 1fr);
	gap: 56px;
}

.contact-item {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 16px;
	margin-bottom: 24px;
}

.contact-item > span {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	color: var(--color-steel);
	background: var(--color-bg);
	border: 1px solid var(--color-line);
}

.contact-item > span img {
	display: block;
	width: 26px;
	height: 26px;
	object-fit: contain;
}

.contact-item strong {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
}

.contact-item p {
	margin: 0;
	color: var(--color-steel);
	font-size: 14px;
}

.contacts-map {
	position: relative;
	min-height: 440px;
	border: 1px solid var(--color-line);
	overflow: hidden;
}

.contacts-map iframe {
	display: block;
	width: 100%;
	height: 440px;
	border: 0;
}

.contact-write {
	padding-top: 42px;
	background: var(--color-bg);
}

.contact-write__grid {
	display: grid;
	grid-template-columns: 0.45fr 1fr;
	gap: 54px;
	padding: 42px;
	background: var(--color-white);
	border: 1px solid var(--color-line);
}

.immash-form {
	display: grid;
	gap: 16px;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.immash-form input,
.immash-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 13px 16px;
	color: var(--color-dark);
	background: var(--color-white);
	border: 1px solid var(--color-line);
}

.immash-form textarea {
	min-height: 130px;
	resize: vertical;
}

.form-policy {
	display: flex;
	gap: 9px;
	align-items: center;
	color: var(--color-muted);
	font-size: 13px;
}

.form-policy input {
	width: 15px;
	min-height: 15px;
	padding: 0;
	accent-color: var(--color-red);
}

.contacts-cta {
	color: var(--color-white);
	background:
		linear-gradient(90deg, rgba(5, 16, 28, 0.98), rgba(5, 16, 28, 0.76)),
		radial-gradient(circle at 68% 55%, rgba(224, 50, 45, 0.36), transparent 18%),
		linear-gradient(135deg, var(--color-dark), var(--color-dark-2));
}

.request-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.request-modal.is-open {
	display: flex;
}

.request-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(6, 17, 24, 0.72);
	backdrop-filter: blur(4px);
}

.request-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 620px);
	max-height: calc(100vh - 48px);
	overflow: auto;
	padding: 38px;
	background: var(--color-white);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.request-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	color: var(--color-dark);
	font-size: 28px;
	line-height: 1;
	background: var(--color-bg);
	border: 0;
	cursor: pointer;
}

.request-modal h2 {
	margin: 0 42px 10px 0;
	font-size: 32px;
	line-height: 1.15;
}

.request-modal p {
	margin: 0 0 24px;
	color: var(--color-steel);
}

.request-modal .wpcf7-form,
.request-modal__fallback-form {
	display: grid;
	gap: 16px;
	margin-top: 20px;
}

.request-modal .wpcf7-form p {
	margin: 0;
}

.catalog-page {
	padding: 44px 0 76px;
	background: var(--color-white);
}

.catalog-page__intro {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 28px;
	padding-bottom: 36px;
	border-bottom: 1px solid var(--color-line);
}

.catalog-page__intro h2 {
	margin: 0 0 10px;
	font-size: 28px;
	line-height: 1.2;
}

.catalog-page__intro p {
	max-width: 760px;
	margin: 0;
	color: var(--color-muted);
}

.catalog-help {
	display: grid;
	grid-template-columns: 40px auto;
	gap: 4px 12px;
	align-items: center;
	min-width: 230px;
	padding-top: 4px;
}

.catalog-help span {
	display: grid;
	grid-row: span 2;
	place-items: center;
	width: 40px;
	height: 40px;
	color: var(--color-red);
	background: #fff1f1;
	border-radius: 50%;
}

.catalog-help strong {
	font-size: 13px;
}

.catalog-help em {
	color: var(--color-red);
	font-size: 13px;
	font-style: normal;
	font-weight: 700;
}

.catalog-layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 32px;
	padding-top: 28px;
}

.catalog-filter {
	align-self: start;
	padding: 24px;
	background: #fbfcfd;
	border: 1px solid var(--color-line);
}

.catalog-filter h2 {
	margin: 0 0 24px;
	font-size: 18px;
}

.filter-group {
	padding-bottom: 24px;
	margin-bottom: 24px;
	border-bottom: 1px solid var(--color-line);
}

.filter-group h3 {
	margin: 0 0 14px;
	font-size: 14px;
}

.filter-radio,
.filter-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 12px;
	color: #4f5e6b;
	font-size: 13px;
	cursor: pointer;
}

.filter-radio--child {
	padding-left: 22px;
	color: #6f7d88;
}

.filter-radio input,
.filter-checkbox input {
	width: 15px;
	height: 15px;
	margin-top: 2px;
	accent-color: var(--color-red);
}

.filter-group select {
	width: 100%;
	min-height: 42px;
	padding: 9px 12px;
	color: var(--color-dark);
	background: var(--color-white);
	border: 1px solid var(--color-line);
}

.catalog-filter__submit {
	width: 100%;
	min-height: 44px;
	margin-bottom: 12px;
}

.catalog-filter__reset {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	color: var(--color-steel);
	font-size: 13px;
	font-weight: 700;
	border: 1px solid var(--color-line);
}

.catalog-results__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
	color: var(--color-steel);
	font-size: 13px;
}

.catalog-products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--color-line);
	border-left: 1px solid var(--color-line);
}

.catalog-products--home {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 390px;
	background: var(--color-white);
	border-right: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
	transition: 0.2s ease;
}

.product-card:hover {
	z-index: 1;
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
}

.product-card__image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 220px;
	margin: 18px 18px 0;
	background-color: #f0f3f6;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.product-card__image--has-image {
	background: #f7f9fb;
}

.product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 8px;
	mix-blend-mode: normal;
}

.product-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 18px;
}

.product-card h3 {
	margin: 0 0 10px;
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: 0;
	min-height: 62px;
}

.product-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 4px 8px;
	min-height: 42px;
	margin-bottom: 14px;
	color: var(--color-muted);
	font-size: 16px;
	line-height: 1.35;
}

.product-card__meta strong {
	color: var(--color-dark);
	font-size: 17px;
	font-weight: 700;
}

.product-card p {
	min-height: 64px;
	margin: 0;
	color: var(--color-muted);
	font-size: 13px;
}

.product-card .more-link {
	display: inline-block;
	margin-top: auto;
}

.catalog-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 26px;
}

.catalog-pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	color: var(--color-dark);
	font-size: 13px;
	border: 1px solid var(--color-line);
}

.catalog-pagination .current {
	color: var(--color-white);
	background: var(--color-red);
	border-color: var(--color-red);
}

.catalog-empty {
	padding: 44px;
	background: var(--color-bg);
	border: 1px solid var(--color-line);
}

.catalog-empty h2 {
	margin: 0 0 10px;
}

.catalog-empty p {
	margin: 0;
	color: var(--color-muted);
}

.single-product {
	padding: 52px 0 74px;
	background: var(--color-white);
}

.single-product__top {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 64px;
	align-items: start;
}

.product-gallery__main {
	display: grid;
	place-items: center;
	min-height: 420px;
	padding: 12px;
	background: var(--color-white);
}

.product-gallery__main img {
	width: 100%;
	max-height: 440px;
	object-fit: contain;
}

.single-product__placeholder {
	width: 100%;
	min-height: 360px;
	background-color: #edf2f5;
	background-position: center;
	background-size: cover;
}

.product-gallery__thumbs {
	display: grid;
	grid-template-columns: 30px repeat(5, minmax(0, 1fr)) 30px;
	gap: 10px;
	align-items: center;
	margin-top: 18px;
}

.product-gallery__thumb,
.product-gallery__arrow {
	display: grid;
	place-items: center;
	min-width: 0;
	height: 64px;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	cursor: pointer;
}

.product-gallery__thumb.is-active {
	border-color: var(--color-red);
	box-shadow: inset 0 0 0 1px var(--color-red);
}

.product-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 5px;
}

.product-gallery__arrow {
	height: 40px;
	color: var(--color-steel);
	font-size: 22px;
	border: 0;
}

.single-product__summary {
	padding-top: 8px;
}

.single-product__terms {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
}

.single-product__terms a {
	padding: 7px 10px;
	color: var(--color-red);
	font-size: 12px;
	font-weight: 800;
	background: #fff1f1;
}

.single-product__summary h2 {
	margin: 0 0 18px;
	font-size: clamp(30px, 4vw, 42px);
	line-height: 1.12;
	letter-spacing: 0;
}

.single-product__lead {
	max-width: 680px;
	margin: 0 0 32px;
	color: var(--color-steel);
}

.single-product__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: -4px 0 18px;
}

.single-product__meta span {
	padding: 7px 10px;
	color: var(--color-steel);
	font-size: 13px;
	background: var(--color-bg);
	border: 1px solid var(--color-line);
}

.single-product__meta strong {
	color: var(--color-dark);
}

.product-highlights {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-bottom: 32px;
}

.product-highlight span {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 12px;
	color: var(--color-red);
	background: #fff1f1;
	border-radius: 50%;
}

.product-highlight strong,
.product-highlight small {
	display: block;
}

.product-highlight strong {
	margin-bottom: 4px;
	font-size: 15px;
	line-height: 1.25;
}

.product-highlight small {
	color: var(--color-muted);
	font-size: 13px;
	line-height: 1.35;
}

.single-product__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.button--download {
	color: var(--color-dark);
	background: var(--color-white);
	border-color: var(--color-line);
}

.button--download:hover,
.button--download:focus-visible {
	color: var(--color-white);
	background: var(--color-dark);
	border-color: var(--color-dark);
}

.product-details {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
	gap: 64px;
	align-items: start;
}

.product-details__text h2 {
	margin: 0 0 18px;
	font-size: 20px;
}

.product-details__text h2:not(:first-child) {
	margin-top: 34px;
}

.single-product__text {
	color: var(--color-steel);
}

.single-product__text > *:first-child {
	margin-top: 0;
}

.product-specs {
	margin: 0;
}

.product-specs table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.product-specs th,
.product-specs td {
	padding: 14px 18px;
	text-align: left;
	border: 1px solid var(--color-line);
}

.product-specs th {
	width: 48%;
	color: var(--color-steel);
	font-weight: 500;
	background: #fbfcfd;
}

.product-specs td {
	font-weight: 800;
}

.product-specs__note {
	margin: 16px 0 0;
	color: var(--color-muted);
	font-size: 13px;
}

.product-specs__note::before {
	content: "ⓘ ";
}

.product-docs,
.related-products {
	margin-top: 56px;
}

.product-docs h2,
.related-products h2 {
	margin: 0 0 22px;
	font-size: 28px;
	line-height: 1.2;
}

.product-docs__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.document-card {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 3px 14px;
	align-items: center;
	min-height: 88px;
	padding: 18px;
	background: var(--color-white);
	border: 1px solid var(--color-line);
	transition: 0.2s ease;
}

.document-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-card);
}

.document-card span {
	display: grid;
	grid-row: span 2;
	place-items: center;
	width: 38px;
	height: 44px;
	color: var(--color-red);
	font-size: 10px;
	font-weight: 900;
	border: 1px solid #ffd3d1;
}

.document-card span img {
	display: block;
	width: 22px;
	height: 28px;
	object-fit: contain;
}

.document-card strong {
	font-size: 13px;
	line-height: 1.25;
}

.document-card small {
	color: var(--color-muted);
	font-size: 12px;
}

.catalog-products--related {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
	.site-header__phone,
	.site-header__inner > .button {
		display: none;
	}

	.features__grid,
	.catalog-grid,
	.preview-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.feature-card:nth-child(2n) {
		border-right: 0;
	}

	.about__inner,
	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.catalog-layout {
		grid-template-columns: 230px 1fr;
	}

	.catalog-products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-advantages__grid,
	.partners-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.certificates-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.site-header__inner {
		min-height: 70px;
	}

	.site-logo__image {
		width: 145px;
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
	}

	.primary-nav {
		position: fixed;
		inset: 70px 0 auto;
		display: none;
		padding: 24px 16px;
		background: var(--color-white);
		border-bottom: 1px solid var(--color-line);
		box-shadow: var(--shadow-card);
	}

	.menu-open .primary-nav {
		display: block;
	}

	.primary-nav__list {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.primary-nav a {
		display: block;
		padding: 14px 0;
		border-bottom: 1px solid var(--color-line);
	}

	body.home .primary-nav a,
	body.page-template-template-home .primary-nav a {
		color: var(--color-dark);
	}

	.hero,
	.hero__inner {
		min-height: 100vh;
	}

	.hero__media::before,
	.hero__machine {
		opacity: 0.45;
	}

	.section {
		padding: 54px 0;
	}

	.section-head,
	.cta__inner,
	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.about {
		padding: 64px 0;
	}

	.about__inner,
	.about-stats,
	.site-footer__grid,
	.catalog-layout,
	.single-product__top,
	.product-details,
	.single-news__grid,
	.about-page__intro,
	.production-block__grid,
	.certificates-section__grid,
	.contacts-page__grid,
	.contact-write__grid {
		grid-template-columns: 1fr;
	}

	.product-docs__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.catalog-page__intro {
		flex-direction: column;
	}

	.catalog-filter {
		position: static;
	}

	.catalog-products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.single-news__aside {
		position: static;
	}

	.about-advantages__grid,
	.partners-grid,
	.certificates-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.contact-write__grid {
		padding: 28px;
	}
}

@media (max-width: 580px) {
	.container {
		width: min(100% - 24px, var(--container));
	}

	.hero__actions,
	.hero__actions .button,
	.cta .button {
		width: 100%;
	}

	.features {
		margin-top: 0;
	}

	.features__grid,
	.catalog-grid,
	.preview-grid,
	.news-grid,
	.catalog-products,
	.about-page__stats,
	.about-advantages__grid,
	.partners-grid,
	.certificates-grid,
	.form-row {
		grid-template-columns: 1fr;
	}

	.feature-card,
	.feature-card:nth-child(2n) {
		border-right: 0;
		border-bottom: 1px solid var(--color-line);
	}

	.catalog-card {
		min-height: auto;
	}

	.catalog-results__bar {
		align-items: flex-start;
		flex-direction: column;
	}

	.product-gallery__main {
		min-height: 280px;
		padding: 18px;
	}

	.product-highlights,
	.product-docs__grid {
		grid-template-columns: 1fr;
	}

	.product-gallery__thumbs {
		grid-template-columns: 28px repeat(3, minmax(0, 1fr)) 28px;
	}

	.product-gallery__thumb:nth-of-type(n+5) {
		display: none;
	}

	.about-page,
	.about-advantages,
	.production-block,
	.partners-section,
	.certificates-section,
	.contacts-page,
	.contact-write {
		padding: 44px 0;
	}

	.mission-card {
		position: static;
		max-width: none;
		margin-top: 18px;
	}

	.contacts-map {
		min-height: 320px;
	}

	.contacts-map iframe {
		height: 320px;
	}
}
