﻿@font-face {
	font-family: "Manrope Local";
	src: url("../fonts/manrope.woff2") format("woff2");
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
}

@font-face {
	font-family: "Roboto Slab Local";
	src: url("../fonts/roboto-slab.woff2") format("woff2");
	font-style: normal;
	font-weight: 300 900;
	font-display: swap;
}

:root {
	--yc-blue: #e3342f;
	--yc-blue-soft: #ff5a52;
	--yc-gold: #e3342f;
	--yc-ink: #171717;
	--yc-dark: #08111d;
	--yc-dark-2: #0d1b2c;
	--yc-text: #444b55;
	--yc-muted: #7b838e;
	--yc-line: #e3e7ed;
	--yc-bg: #f2f4f7;
	--yc-white: #ffffff;
	--yc-panel: #ffffff;
	--yc-red-dark: #a91f1b;
	--yc-frame: min(1600px, calc(100% - 80px));
	--yc-shadow: 0 18px 40px rgba(8, 17, 29, 0.12);
	--yc-transition: 260ms ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope Local", "Segoe UI", Arial, sans-serif;
	color: var(--yc-text);
	background: var(--yc-white);
	line-height: 1.6;
	overflow-x: hidden;
}

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

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

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

button {
	cursor: pointer;
}

section[id] {
	scroll-margin-top: 92px;
}

.site-shell {
	min-height: 100vh;
}

.page-frame {
	width: var(--yc-frame);
	margin: 0 auto;
}

.screen-section {
	position: relative;
	min-height: 100svh;
	padding: 108px 0;
	overflow: hidden;
}

.section-rule {
	width: 38px;
	height: 4px;
	margin: 18px 0 22px;
	background: var(--yc-blue);
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	color: var(--yc-ink);
	line-height: 1.08;
}

h1,
h2 {
	font-weight: 800;
}

h1 {
	margin-bottom: 22px;
	font-size: clamp(2.65rem, 5vw, 6rem);
	letter-spacing: 0;
}

h2 {
	margin-bottom: 20px;
	font-size: clamp(2rem, 3.1vw, 3.25rem);
}

h3 {
	margin-bottom: 10px;
	font-size: 1.18rem;
}

.company-screen__content h2,
.products-screen__head h2,
.advantage-screen__head h2,
.applications-screen__content h2,
.market-screen__head h2,
.certificates-screen .split-head h2,
.news-screen .split-head h2 {
	color: var(--yc-blue);
}

p {
	color: var(--yc-muted);
}

.yc-more {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	text-transform: uppercase;
	transition: color var(--yc-transition), transform var(--yc-transition), border-color var(--yc-transition), background var(--yc-transition);
}

.yc-more:hover {
	transform: translateY(-2px);
}

.yc-more {
	color: var(--yc-muted);
	font-size: 0.86rem;
	letter-spacing: 0.05em;
}

.yc-more span {
	width: 30px;
	height: 30px;
	background: var(--yc-blue);
	position: relative;
	flex: 0 0 30px;
}

.yc-more span::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 9px;
	height: 9px;
	border-top: 2px solid var(--yc-white);
	border-right: 2px solid var(--yc-white);
	transform: translate(-62%, -50%) rotate(45deg);
}

.yc-more:hover {
	color: var(--yc-blue);
}

.yc-more--round {
	margin-top: 42px;
	color: rgba(23, 23, 23, 0.64);
	font-size: 1rem;
	letter-spacing: 0;
	text-transform: none;
}

.yc-more--round span {
	width: 32px;
	height: 32px;
	border-radius: 50%;
}

.yc-more--round:hover {
	color: var(--yc-blue);
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	color: var(--yc-ink);
	background: transparent;
	box-shadow: none;
	transition: background var(--yc-transition), box-shadow var(--yc-transition), color var(--yc-transition), backdrop-filter var(--yc-transition);
}

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

.site-header.is-scrolled,
.site-header.is-menu-open {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 10px 28px rgba(8, 17, 29, 0.08);
	color: var(--yc-ink);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-height: 88px;
}

.site-header__brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 192px;
	height: 78px;
	padding: 1px 10px;
	background: transparent;
	border: 1px solid transparent;
	box-shadow: none;
	flex: 0 0 192px;
}

.site-header__brand img {
	width: auto;
	max-width: 172px;
	max-height: 76px;
	transition: transform var(--yc-transition);
}

.site-header.is-scrolled .site-header__brand img,
.site-header.is-menu-open .site-header__brand img {
	transform: none;
}

.site-header.is-scrolled .site-header__brand,
.site-header.is-menu-open .site-header__brand {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
}

.site-header__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(18px, 2vw, 36px);
	flex: 1;
	font-size: 0.9rem;
	font-weight: 750;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.86), 0 8px 18px rgba(255, 255, 255, 0.68);
}

.site-header.is-scrolled .site-header__nav,
.site-header.is-menu-open .site-header__nav {
	text-shadow: none;
}

.site-header__nav > a,
.site-header__nav-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 88px;
	white-space: nowrap;
}

.site-header__nav-caret {
	width: 7px;
	height: 7px;
	margin-top: -3px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	opacity: 0.72;
	transform: rotate(45deg);
	transition: transform var(--yc-transition), opacity var(--yc-transition);
}

.site-header__nav > a::after,
.site-header__nav-link::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 24px;
	left: 0;
	height: 3px;
	background: var(--yc-blue);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--yc-transition);
}

.site-header__nav > a:hover::after,
.site-header__nav > a:focus-visible::after,
.site-header__nav > a:first-child::after,
.site-header__nav-link:hover::after,
.site-header__nav-link:focus-visible::after,
.site-header__nav-item:focus-within .site-header__nav-link::after,
.site-header__nav-item:hover .site-header__nav-link::after {
	transform: scaleX(1);
}

.site-header__nav-item:hover .site-header__nav-caret,
.site-header__nav-item:focus-within .site-header__nav-caret {
	opacity: 1;
	transform: translateY(2px) rotate(225deg);
}

.site-header__nav-item {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 88px;
}

.site-header__dropdown {
	position: absolute;
	top: calc(100% - 10px);
	left: 50%;
	z-index: 30;
	display: grid;
	gap: 3px;
	width: 300px;
	max-width: min(300px, calc(100vw - 32px));
	padding: 10px;
	border: 1px solid rgba(48, 67, 84, 0.11);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(227, 52, 47, 0.055) 0 1px, transparent 1px 12px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
	box-shadow: 0 22px 46px rgba(8, 17, 29, 0.13);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 10px);
	transition: opacity var(--yc-transition), transform var(--yc-transition), visibility var(--yc-transition);
	visibility: hidden;
}

.site-header__dropdown::before {
	content: "";
	position: absolute;
	top: -7px;
	left: 50%;
	width: 12px;
	height: 12px;
	border-top: 1px solid rgba(48, 67, 84, 0.1);
	border-left: 1px solid rgba(48, 67, 84, 0.1);
	background: rgba(255, 255, 255, 0.98);
	transform: translateX(-50%) rotate(45deg);
}

.site-header__dropdown::after {
	content: "";
	position: absolute;
	top: 10px;
	right: 10px;
	left: 10px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--yc-blue), rgba(227, 52, 47, 0.16));
	opacity: 0.9;
}

.site-header__nav-item:hover .site-header__dropdown,
.site-header__nav-item:focus-within .site-header__dropdown {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
	visibility: visible;
}

.site-header__dropdown a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 0;
	padding: 12px 30px 12px 34px;
	border-radius: 6px;
	color: var(--yc-ink);
	font-size: 0.82rem;
	font-weight: 820;
	line-height: 1.35;
	white-space: nowrap;
	text-shadow: none;
	transition: color var(--yc-transition), background var(--yc-transition), transform var(--yc-transition);
}

.site-header__dropdown a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 12px;
	width: 12px;
	height: 12px;
	border: 1px solid rgba(227, 52, 47, 0.28);
	border-radius: 4px;
	background: #ffffff;
	box-shadow: inset 0 0 0 3px rgba(227, 52, 47, 0.08);
	opacity: 1;
	transform: translateY(-50%) rotate(45deg);
	transition: border-color var(--yc-transition), background var(--yc-transition), transform var(--yc-transition), box-shadow var(--yc-transition);
}

.site-header__dropdown a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 16px;
	width: 7px;
	height: 7px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	opacity: 0;
	transform: translate(-5px, -50%) rotate(45deg);
	transition: opacity var(--yc-transition), transform var(--yc-transition);
}

.site-header__dropdown a:hover,
.site-header__dropdown a:focus-visible {
	background: linear-gradient(90deg, rgba(227, 52, 47, 0.1), rgba(227, 52, 47, 0.035));
	color: var(--yc-red);
	transform: translateX(3px);
}

.site-header__dropdown a:hover::before,
.site-header__dropdown a:focus-visible::before {
	border-color: rgba(227, 52, 47, 0.72);
	background: var(--yc-blue);
	box-shadow: 0 0 0 4px rgba(227, 52, 47, 0.1);
	transform: translateY(-50%) rotate(45deg) scale(0.92);
}

.site-header__dropdown a:hover::after,
.site-header__dropdown a:focus-visible::after {
	opacity: 0.86;
	transform: translate(0, -50%) rotate(45deg);
}

.site-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	flex: 0 0 auto;
	font-weight: 800;
}

.site-header__search {
	position: relative;
	display: flex;
	align-items: center;
	width: min(18vw, 210px);
	height: 42px;
	overflow: hidden;
	border: 1px solid rgba(28, 39, 52, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: inherit;
	box-shadow: 0 10px 24px rgba(8, 17, 29, 0.08);
	backdrop-filter: blur(12px);
	transition: background var(--yc-transition), border-color var(--yc-transition), color var(--yc-transition), box-shadow var(--yc-transition);
}

.site-header__search input {
	width: 100%;
	min-width: 0;
	height: 100%;
	padding: 0 46px 0 16px;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	font-size: 0.84rem;
	font-weight: 800;
	outline: 0;
}

.site-header__search input::placeholder {
	color: rgba(48, 67, 84, 0.62);
}

.site-header__search button {
	content: "";
	position: absolute;
	right: 5px;
	top: 50%;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(227, 52, 47, 0.08);
	color: inherit;
	transform: translateY(-50%);
}

.site-header__search button::before,
.site-header__search button::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	pointer-events: none;
}

.site-header__search button::before {
	width: 10px;
	height: 10px;
	border: 2px solid currentColor;
	border-radius: 50%;
	transform: translate(-58%, -58%);
}

.site-header__search button::after {
	width: 8px;
	height: 2px;
	background: currentColor;
	transform: translate(2px, 3px) rotate(45deg);
}

.site-header__inquiry {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	border: 1px solid var(--yc-blue);
	border-radius: 999px;
	background: var(--yc-blue);
	color: var(--yc-white);
	font-size: 0.84rem;
	font-weight: 900;
	letter-spacing: 0.02em;
	box-shadow: 0 12px 24px rgba(227, 52, 47, 0.24);
	transition: transform var(--yc-transition), box-shadow var(--yc-transition), background var(--yc-transition), border-color var(--yc-transition);
}

.site-header__inquiry:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 30px rgba(227, 52, 47, 0.3);
}

.site-header.is-scrolled .site-header__search,
.site-header.is-menu-open .site-header__search {
	border-color: rgba(28, 39, 52, 0.14);
	background: #ffffff;
	color: var(--yc-ink);
	box-shadow: 0 8px 18px rgba(8, 17, 29, 0.06);
}

.site-header.is-scrolled .site-header__search input::placeholder,
.site-header.is-menu-open .site-header__search input::placeholder {
	color: rgba(48, 67, 84, 0.58);
}

.site-header.is-scrolled .site-header__search button,
.site-header.is-menu-open .site-header__search button {
	background: rgba(227, 52, 47, 0.08);
}

.site-header__toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid currentColor;
	background: transparent;
	color: inherit;
}

.site-header__toggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 5px auto;
	background: currentColor;
	transition: transform var(--yc-transition), opacity var(--yc-transition);
}

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

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

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

.hero-screen {
	position: relative;
	min-height: 560px;
	height: clamp(560px, 47.9167vw, 92svh);
	padding: 0;
	overflow: hidden;
	background: #f7f8fa;
	color: var(--yc-ink);
	user-select: none;
}

.hero-screen__viewport,
.hero-screen__bg {
	position: absolute;
	inset: 0;
}

.hero-screen__viewport {
	overflow: hidden;
}

.hero-screen__track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
	touch-action: pan-y;
	cursor: grab;
}

.hero-screen.is-dragging .hero-screen__track {
	cursor: grabbing;
}

.hero-screen__slide {
	position: relative;
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
}

.hero-screen__caption-wrap {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: grid;
	align-items: start;
	padding-top: clamp(48px, 10vw, 86px);
	pointer-events: auto;
}

.hero-screen__caption {
	max-width: min(1220px, 90vw);
	margin-inline: auto;
	padding: 0;
	color: #111826;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	user-select: text;
	-webkit-user-select: text;
}

[data-hero-selectable] {
	pointer-events: auto;
	cursor: auto;
	touch-action: auto;
	-webkit-touch-callout: default;
}

[data-hero-selectable],
[data-hero-selectable] * {
	user-select: text !important;
	-webkit-user-select: text !important;
}

.hero-screen__eyebrow {
	margin: 0 0 10px;
	color: rgba(17, 24, 38, 0.72);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.hero-screen__caption h2 {
	margin: 0;
	color: #101722;
	max-width: 1080px;
	font-size: clamp(1.88rem, 2.62vw, 3rem);
	line-height: 0.97;
	font-weight: 900;
	letter-spacing: -0.045em;
	text-wrap: balance;
	text-shadow:
		0 1px 0 rgba(255, 255, 255, 0.72),
		0 16px 28px rgba(74, 106, 146, 0.08);
}

.hero-screen__caption h2 span {
	display: block;
}

.hero-screen__caption h2,
.hero-screen__text,
.hero-screen__text span {
	user-select: text;
	-webkit-user-select: text;
}

.hero-screen__text {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	max-width: none;
	margin: 14px auto 0;
	color: rgba(17, 24, 38, 0.92);
	font-size: clamp(1.18rem, 1.42vw, 1.34rem);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: 0.015em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-screen__text span {
	display: block;
}

.hero-screen__text::before,
.hero-screen__text::after {
	content: "";
	display: block;
	width: 56px;
	height: 1px;
	background: linear-gradient(90deg, rgba(17, 24, 38, 0), rgba(17, 24, 38, 0.34));
}

.hero-screen__caption-wrap--certificate {
	padding-top: clamp(138px, 11.8vw, 178px);
}

.hero-screen__caption-wrap--certificate .page-frame {
	width: 100%;
	max-width: none;
	padding-inline: clamp(72px, 5vw, 106px);
}

.hero-screen__caption--certificate {
	align-items: flex-start;
	text-align: left;
	max-width: min(860px, 46vw);
	margin: 0;
}

.hero-screen__caption--certificate h2 {
	max-width: 100%;
	color: #b30f13;
	font-size: clamp(1.92rem, 3.2vw, 3.54rem);
	line-height: 0.94;
	font-weight: 900;
	letter-spacing: -0.036em;
	text-shadow: none;
}

.hero-screen__caption--certificate h2 span {
	white-space: nowrap;
}

.hero-screen__caption--certificate .hero-screen__text {
	display: block;
	max-width: 700px;
	margin: 30px 0 0;
	color: #1d2530;
	font-size: clamp(1.04rem, 1.24vw, 1.34rem);
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0;
	text-shadow: none;
}

.hero-screen__caption--certificate .hero-screen__text::before {
	content: "";
	display: block;
	width: 48px;
	height: 4px;
	margin: 0 0 30px;
	background: #b30f13;
}

.hero-screen__caption--certificate .hero-screen__text::after {
	content: none;
}

.hero-screen__text::after {
	background: linear-gradient(90deg, rgba(17, 24, 38, 0.34), rgba(17, 24, 38, 0));
}

.hero-screen__slide picture,
.hero-screen__slide img,
.hero-screen__bg img {
	display: block;
	width: 100%;
	height: 100%;
}

.hero-screen__slide img,
.hero-screen__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	-webkit-user-drag: none;
}

.hero-screen__slide img,
.hero-screen__bg img {
	opacity: 1;
	filter: none;
	object-fit: cover;
	object-position: center center;
}

.hero-screen__dots {
	position: absolute;
	left: 50%;
	bottom: clamp(16px, 2.2vw, 28px);
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 10px;
	transform: translateX(-50%);
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(15, 27, 40, 0.16);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.hero-screen__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.34);
	box-shadow: 0 0 0 1px rgba(18, 35, 52, 0.08);
	transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.hero-screen__dot:hover,
.hero-screen__dot:focus-visible {
	background: rgba(255, 255, 255, 0.62);
	border-color: rgba(255, 255, 255, 0.9);
}

.hero-screen__dot.is-active {
	transform: scale(1.15);
	background: #ef3b2d;
	border-color: #ef3b2d;
}

.company-screen,
.applications-screen {
	min-height: 100svh;
	padding: clamp(128px, 15vh, 168px) 0 64px;
	background: #ffffff;
	color: var(--yc-ink);
}

.company-screen__blueprint,
.applications-screen__blueprint {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 35%;
	pointer-events: none;
	background:
		linear-gradient(90deg, transparent 0 12%, rgba(48, 67, 84, 0.08) 12.2% 12.7%, transparent 13% 100%),
		repeating-linear-gradient(90deg, transparent 0 76px, rgba(48, 67, 84, 0.08) 77px, transparent 78px),
		repeating-linear-gradient(0deg, transparent 0 66px, rgba(48, 67, 84, 0.07) 67px, transparent 68px),
		linear-gradient(165deg, transparent 0 40%, rgba(48, 67, 84, 0.08) 40.2% 40.8%, transparent 41% 100%);
	opacity: 0.56;
}

.company-screen__blueprint::before,
.applications-screen__blueprint::before {
	content: "";
	position: absolute;
	right: 10%;
	bottom: 0;
	width: 36%;
	height: 74%;
	border: 2px solid rgba(48, 67, 84, 0.08);
	border-bottom: 0;
	background:
		repeating-linear-gradient(90deg, transparent 0 48px, rgba(48, 67, 84, 0.1) 49px, transparent 50px),
		repeating-linear-gradient(0deg, transparent 0 42px, rgba(48, 67, 84, 0.1) 43px, transparent 44px);
}

.company-screen__blueprint::after,
.applications-screen__blueprint::after {
	content: "";
	position: absolute;
	left: 14%;
	bottom: 0;
	width: 34%;
	height: 45%;
	border: 2px solid rgba(48, 67, 84, 0.08);
	border-bottom: 0;
	transform: skewX(-16deg);
}

.company-screen__grid,
.applications-screen__layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(360px, 0.46fr) minmax(0, 0.54fr);
	gap: clamp(42px, 5vw, 84px);
	align-items: center;
	min-height: calc(100svh - 226px);
}

.company-screen__grid {
	grid-template-columns: minmax(0, 0.54fr) minmax(360px, 0.46fr);
}

.company-screen__media {
	grid-column: 1;
	grid-row: 1;
}

.company-screen__content {
	grid-column: 2;
	grid-row: 1;
}

.company-screen__content h2,
.applications-screen__content h2 {
	max-width: 700px;
	margin-bottom: 24px;
	color: var(--yc-blue);
	font-size: clamp(2rem, 3.1vw, 3.25rem);
	font-weight: 800;
	line-height: 1.18;
}

.company-screen__content p,
.applications-screen__content p {
	max-width: 720px;
	margin-bottom: 0;
	color: rgba(23, 23, 23, 0.62);
	font-size: clamp(0.98rem, 1.05vw, 1.08rem);
	font-weight: 500;
	line-height: 1.9;
}

.company-screen__links,
.application-links {
	display: grid;
	grid-template-columns: repeat(3, minmax(120px, 1fr));
	gap: clamp(22px, 3.5vw, 56px);
	max-width: 650px;
	margin-top: clamp(60px, 9vh, 116px);
}

.company-screen__links a,
.application-links button {
	display: grid;
	gap: 14px;
	justify-items: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(23, 23, 23, 0.82);
	font: inherit;
	text-align: center;
	transition: color var(--yc-transition), transform var(--yc-transition);
}

.company-screen__links a:hover,
.application-links button:hover,
.application-links button.is-active {
	color: var(--yc-blue);
	transform: translateY(-4px);
}

.company-screen__links strong,
.application-links strong {
	font-size: 0.96rem;
	font-weight: 600;
	line-height: 1.35;
}

.company-screen__link-icon,
.application-links span {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	color: var(--yc-blue);
}

.company-screen__link-icon::before,
.company-screen__link-icon::after {
	content: "";
	position: absolute;
	display: block;
}

.company-screen__link-icon--profile::before {
	left: 13px;
	top: 9px;
	width: 22px;
	height: 28px;
	border: 3px solid #40464d;
	border-radius: 2px;
}

.company-screen__link-icon--profile::after {
	right: 10px;
	top: 5px;
	width: 14px;
	height: 22px;
	border: 3px solid currentColor;
	border-left: 0;
	border-radius: 2px;
}

.company-screen__link-icon--workshop::before {
	left: 13px;
	top: 10px;
	width: 26px;
	height: 26px;
	border: 4px solid #40464d;
	border-bottom-color: transparent;
	border-radius: 50%;
}

.company-screen__link-icon--workshop::after {
	left: 21px;
	bottom: 8px;
	width: 12px;
	height: 18px;
	border: 3px solid currentColor;
	border-top: 0;
	transform: rotate(45deg);
}

.company-screen__link-icon--equipment::before {
	left: 13px;
	top: 8px;
	width: 28px;
	height: 28px;
	border: 3px solid #40464d;
	border-radius: 50%;
	box-shadow: inset 0 0 0 5px #ffffff, inset 0 0 0 8px currentColor;
}

.company-screen__link-icon--equipment::after {
	left: 18px;
	bottom: 6px;
	width: 18px;
	height: 16px;
	border-left: 3px solid currentColor;
	border-right: 3px solid currentColor;
	transform: perspective(30px) rotateX(28deg);
}

.company-screen__media {
	position: relative;
	min-height: clamp(420px, 43vw, 560px);
	overflow: visible;
}

.company-screen__image {
	position: absolute;
	top: 9%;
	right: 0;
	width: min(860px, 100%);
	height: clamp(360px, 34vw, 500px);
	margin: 0;
	overflow: hidden;
	background: #ffffff;
	box-shadow: none;
}

.company-screen__image::before,
.company-screen__image::after {
	display: none;
}

.company-screen__image img {
	width: calc(100% + 56px);
	max-width: none;
	height: 100%;
	object-fit: cover;
	object-position: 50% top;
	opacity: 1;
	filter: none;
	transform: translateX(-42px);
}

.products-screen {
	padding-top: clamp(52px, 6vw, 78px);
	padding-bottom: clamp(64px, 7vw, 96px);
	background:
		linear-gradient(135deg, rgba(227, 52, 47, 0.035) 0 1px, transparent 1px 100%) 0 0 / 34px 34px,
		linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.products-screen__head,
.split-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, auto);
	gap: 32px;
	align-items: end;
	margin-bottom: 24px;
}

.products-screen__head {
	align-items: center;
	margin-bottom: clamp(20px, 2.6vw, 34px);
}

.products-screen__head h2,
.split-head h2 {
	margin-bottom: 0;
}

.split-head p {
	max-width: 470px;
	margin: 0;
	align-self: center;
	font-size: 1rem;
	line-height: 1.8;
}

.products-screen__tabs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 16px;
	padding: 0;
	overflow: visible;
}

.products-screen__tabs button {
	position: relative;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 58px;
	padding: 14px 18px;
	overflow: hidden;
	border: 1px solid rgba(28, 39, 52, 0.1);
	border-radius: 8px;
	background: #ffffff;
	color: var(--yc-ink);
	font-size: 0.88rem;
	font-weight: 850;
	line-height: 1.25;
	text-align: left;
	box-shadow: 0 12px 28px rgba(8, 17, 29, 0.05);
	transition: transform var(--yc-transition), background var(--yc-transition), color var(--yc-transition), border-color var(--yc-transition), box-shadow var(--yc-transition);
}

.products-screen__tabs button::before {
	content: "";
	position: relative;
	flex: 0 0 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(48, 67, 84, 0.22);
	box-shadow: 0 0 0 6px rgba(48, 67, 84, 0.05);
	transition: background var(--yc-transition), box-shadow var(--yc-transition), transform var(--yc-transition);
}

.products-screen__tabs button::after {
	content: "";
	flex: 0 0 12px;
	width: 12px;
	height: 12px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	opacity: 0.38;
	transform: rotate(45deg);
	transition: opacity var(--yc-transition), transform var(--yc-transition);
}

.products-screen__tabs button.is-active,
.products-screen__tabs button:hover {
	background: var(--yc-blue);
	border-color: var(--yc-blue);
	color: var(--yc-white);
	box-shadow: 0 18px 36px rgba(227, 52, 47, 0.18);
	transform: translateY(-2px);
}

.products-screen__tabs button.is-active::before,
.products-screen__tabs button:hover::before {
	background: #ffffff;
	box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16);
	transform: scale(1.08);
}

.products-screen__tabs button.is-active::after,
.products-screen__tabs button:hover::after {
	opacity: 0.9;
	transform: translateX(2px) rotate(45deg);
}

.products-screen__stage {
	position: relative;
	padding: 10px 0 0;
}

.products-screen__word {
	position: absolute;
	top: -4px;
	left: 0;
	z-index: 0;
	color: rgba(23, 23, 23, 0.045);
	font-size: clamp(4.8rem, 13vw, 15rem);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
	pointer-events: none;
}

.product-strip {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(22px, 2.4vw, 36px);
	align-items: stretch;
}

.product-tile {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: 100%;
	background: var(--yc-white);
	border: 1px solid rgba(28, 39, 52, 0.07);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 20px 52px rgba(8, 17, 29, 0.09);
	transform-origin: center bottom;
	transition: transform var(--yc-transition), box-shadow var(--yc-transition), border-color var(--yc-transition);
}

.product-tile.is-hidden {
	display: none;
}

.product-tile a {
	display: grid;
	grid-template-rows: auto minmax(118px, auto);
	width: 100%;
	min-height: 100%;
	background: #ffffff;
}

.product-tile:hover {
	z-index: 4;
	transform: translateY(-18px) scale(1.035);
	border-color: rgba(48, 67, 84, 0.28);
	box-shadow: 0 26px 54px rgba(8, 17, 29, 0.16);
}

.product-tile__image {
	height: clamp(300px, 25vw, 420px);
	margin: 14px 14px 0;
	padding: 0;
	overflow: hidden;
	border-radius: 6px;
	background: #eef2f6;
}

.product-tile__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.product-tile__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px 18px;
	align-items: end;
	padding: 20px 26px 24px;
	text-align: left;
	background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.product-tile__body span {
	display: inline-flex;
	grid-column: 1 / -1;
	justify-content: flex-start;
	margin-bottom: 0;
	color: var(--yc-blue);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.product-tile__body h3 {
	min-height: 0;
	margin-bottom: 0;
	font-size: clamp(1.08rem, 1.15vw, 1.32rem);
	line-height: 1.25;
}

.product-tile__body em {
	align-self: center;
	padding: 9px 13px;
	border: 1px solid rgba(227, 52, 47, 0.18);
	border-radius: 999px;
	background: rgba(227, 52, 47, 0.06);
	color: var(--yc-blue);
	font-size: 0.78rem;
	font-style: normal;
	font-weight: 900;
	text-transform: uppercase;
}

.advantage-screen {
	min-height: 100svh;
	padding: 110px 0 92px;
	background: #ffffff;
	color: var(--yc-ink);
}

.advantage-screen::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1;
	height: 1px;
	pointer-events: none;
	background: linear-gradient(90deg, var(--yc-blue), rgba(227, 52, 47, 0));
	opacity: 0.9;
}

.advantage-screen .page-frame {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr;
	gap: 34px;
	align-items: stretch;
	min-height: 0;
}

.advantage-screen__head {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
	gap: 34px;
	align-items: end;
	max-width: none;
	margin-bottom: 0;
}

.advantage-screen__head h2,
.advantage-screen__head p,
.advantage-card h3,
.advantage-card p {
	color: var(--yc-ink);
}

.advantage-screen__head h2 {
	color: var(--yc-blue);
	margin-bottom: 0;
	font-size: clamp(2rem, 3.1vw, 3.25rem);
	line-height: 1.12;
}

.advantage-screen__head p {
	max-width: 500px;
	margin-bottom: 0;
	color: rgba(48, 67, 84, 0.76);
	font-size: 1.02rem;
	font-weight: 600;
	line-height: 1.7;
}

.advantage-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: 260px;
	gap: 18px;
	min-height: 0;
	border: 0;
	background: transparent;
	backdrop-filter: none;
}

.advantage-card {
	position: relative;
	display: grid;
	min-height: 260px;
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: 8px;
	background: #141b24;
	box-shadow: none;
	text-align: left;
	transition: transform var(--yc-transition), border-color var(--yc-transition);
}

.advantage-card:first-child {
	grid-column: span 2;
	grid-row: span 2;
}

.advantage-card::before {
	display: none;
}

.advantage-card:hover::before {
	display: none;
}

.advantage-card::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 2;
	height: 4px;
	background: var(--yc-blue);
	transition: height var(--yc-transition);
}

.advantage-card:hover::after {
	height: 7px;
}

.advantage-card > * {
	position: relative;
	z-index: 3;
}

.advantage-card__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	margin: 0;
	background: #ffffff;
}

.advantage-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.advantage-card:hover .advantage-card__media img {
	transform: scale(1.06);
}

.advantage-card__body {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 100%;
	padding: 28px;
}

.advantage-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	margin-bottom: auto;
	padding: 11px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--yc-blue);
	transition: transform var(--yc-transition), background var(--yc-transition), color var(--yc-transition);
}

.advantage-card:hover .advantage-card__icon {
	background: var(--yc-blue);
	color: var(--yc-white);
	transform: translateY(-3px);
}

.advantage-card__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.advantage-card h3 {
	max-width: 360px;
	margin-top: 0;
	margin-bottom: 12px;
	color: var(--yc-white);
	font-size: 1.18rem;
	font-weight: 900;
	line-height: 1.28;
	text-shadow: 0 2px 8px rgba(8, 17, 29, 0.42);
}

.advantage-card p {
	max-width: 500px;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9rem;
	font-weight: 650;
	line-height: 1.68;
	text-shadow: 0 2px 8px rgba(8, 17, 29, 0.38);
	transform: none;
	opacity: 1;
	transition: color var(--yc-transition);
}

.advantage-card:hover {
	transform: translateY(-6px);
	box-shadow: none;
}

.advantage-card:hover p {
	color: rgba(255, 255, 255, 0.92);
}

.applications-screen {
	background:
		linear-gradient(90deg, #ffffff 0 62%, #f5f7fa 62% 100%);
}

.applications-screen__layout {
	grid-template-columns: minmax(380px, 0.43fr) minmax(0, 0.57fr);
}

.application-links {
	grid-template-columns: repeat(5, minmax(86px, 1fr));
	gap: clamp(14px, 1.6vw, 26px);
	max-width: 760px;
	margin-top: clamp(46px, 7vh, 82px);
}

.application-links span {
	width: 48px;
	height: 48px;
	border: 1px solid rgba(48, 67, 84, 0.18);
	border-radius: 50%;
	background: rgba(48, 67, 84, 0.06);
	font-size: 0.84rem;
	font-weight: 900;
	transition: background var(--yc-transition), color var(--yc-transition), border-color var(--yc-transition);
}

.application-links button:hover span,
.application-links button.is-active span {
	background: var(--yc-blue);
	border-color: var(--yc-blue);
	color: var(--yc-white);
}

.applications-screen__media {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(560px, 48vw, 690px);
	padding-right: clamp(48px, 5vw, 86px);
}

.application-showcase {
	position: relative;
	display: grid;
	align-content: center;
	gap: 18px;
	width: 100%;
	padding: clamp(36px, 4vw, 64px) 0 clamp(24px, 3vw, 42px);
}

.application-showcase::before {
	content: "";
	position: absolute;
	top: clamp(14px, 2vw, 34px);
	right: clamp(12px, 3vw, 54px);
	bottom: clamp(84px, 8vw, 132px);
	width: min(780px, 92%);
	border: 1px solid rgba(48, 67, 84, 0.12);
	background:
		linear-gradient(135deg, rgba(48, 67, 84, 0.08), rgba(255, 255, 255, 0.84) 58%),
		linear-gradient(180deg, rgba(240, 246, 252, 0.82), rgba(255, 255, 255, 0.96));
	box-shadow: 0 30px 80px rgba(8, 17, 29, 0.08);
	z-index: 0;
	pointer-events: none;
}

.application-showcase__hero {
	position: relative;
	justify-self: end;
	z-index: 5;
	width: min(780px, 92%);
	height: clamp(360px, 28vw, 430px);
	margin: 0;
	overflow: hidden;
	border: 10px solid var(--yc-white);
	background: #e8edf2;
	box-shadow: 0 32px 74px rgba(8, 17, 29, 0.18);
}

.application-showcase__hero.is-switching img {
	opacity: 0.18;
	transform: scale(1.015);
}

.application-showcase__hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.94;
	transition: transform 520ms ease, opacity 220ms ease;
}

.application-showcase__hero:hover img {
	transform: scale(1.04);
}

.application-showcase__hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 54%;
	background: linear-gradient(180deg, rgba(8, 17, 29, 0), rgba(8, 17, 29, 0.78));
}

.application-showcase__hero figcaption {
	position: absolute;
	right: 28px;
	bottom: 24px;
	left: 28px;
	z-index: 1;
	color: var(--yc-white);
}

.application-showcase figcaption strong,
.application-showcase figcaption span {
	display: block;
}

.application-showcase figcaption strong {
	font-size: 1.35rem;
	line-height: 1.2;
}

.application-showcase figcaption span {
	max-width: 460px;
	margin-top: 8px;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.92rem;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.application-showcase__rail {
	position: relative;
	justify-self: end;
	z-index: 6;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	width: min(780px, 92%);
	margin-right: 0;
	padding: 12px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 18px 42px rgba(8, 17, 29, 0.12);
}

.application-showcase__rail figure {
	position: relative;
	min-height: clamp(110px, 8.2vw, 142px);
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(48, 67, 84, 0.12);
	background: #e8edf2;
	box-shadow: 0 10px 24px rgba(8, 17, 29, 0.08);
	cursor: pointer;
	transition: transform var(--yc-transition), box-shadow var(--yc-transition), border-color var(--yc-transition);
}

.application-showcase__rail figure:hover,
.application-showcase__rail figure.is-active {
	z-index: 3;
	transform: translateY(-10px) scale(1.08);
	border-color: rgba(48, 67, 84, 0.42);
	box-shadow: 0 18px 34px rgba(8, 17, 29, 0.16);
}

.application-showcase__rail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
}

.application-showcase__rail figure:hover img {
	transform: scale(1.06);
}

.application-showcase__rail figure::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 17, 29, 0.02), rgba(8, 17, 29, 0.62));
}

.application-showcase__rail figure.is-active::after {
	background: linear-gradient(180deg, rgba(48, 67, 84, 0.08), rgba(48, 67, 84, 0.72));
}

.application-showcase__rail figcaption {
	position: absolute;
	right: 14px;
	bottom: 12px;
	left: 14px;
	z-index: 1;
	color: var(--yc-white);
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1.25;
}

.market-screen {
	position: relative;
	isolation: isolate;
	padding: clamp(64px, 6.8vw, 82px) 0 clamp(52px, 5.8vw, 70px);
	overflow: hidden;
	background: #ffffff;
}

.market-screen::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(circle at 73% 44%, rgba(227, 52, 47, 0.1), transparent 15%),
		linear-gradient(180deg, #eef2f6 0%, #ffffff 88%);
	pointer-events: none;
}

.market-screen__head {
	position: relative;
	z-index: 1;
	align-items: end;
	margin-bottom: 22px;
}

.market-screen__head h2 {
	max-width: 700px;
	font-size: clamp(1.9rem, 2.7vw, 2.85rem);
}

.market-screen__head p {
	max-width: 620px;
	margin: 0;
	color: rgba(23, 23, 23, 0.62);
	font-size: clamp(0.98rem, 1.05vw, 1.08rem);
	line-height: 1.85;
}

.market-map {
	position: relative;
	z-index: 1;
	width: min(1320px, calc(100% - 64px));
	margin: 0 auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.market-map__canvas {
	position: relative;
	overflow: hidden;
	min-height: clamp(360px, 38vw, 520px);
	border-radius: 0;
	background: transparent;
}

.market-map__canvas::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.46) 46%, transparent 58% 100%);
	opacity: 0;
	transform: translateX(-24%);
}

.market-map.is-visible .market-map__canvas::after {
	animation: market-sweep 1800ms ease 420ms both;
}

.market-map__canvas svg {
	display: block;
	width: 100%;
	height: clamp(360px, 38vw, 520px);
	min-height: 0;
}

.market-map__world {
	opacity: 0.96;
}

.market-map__land path {
	fill: #dfe4ea;
	opacity: 0.9;
}

.market-map__routes path {
	fill: none;
	stroke: rgba(48, 67, 84, 0.28);
	stroke-width: 1.6;
	stroke-dasharray: var(--route-length, 1);
	stroke-dashoffset: var(--route-length, 1);
	transition: stroke var(--yc-transition), stroke-width var(--yc-transition), opacity var(--yc-transition), filter var(--yc-transition);
}

.market-map.is-visible .market-map__routes path {
	animation: market-route-draw 1200ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation-delay: calc(var(--route-index, 0) * 130ms + 220ms);
}

.market-map__routes path.is-active,
.market-map:hover .market-map__routes path.is-active {
	stroke: rgba(227, 52, 47, 0.78);
	stroke-width: 2.7;
	filter: drop-shadow(0 0 7px rgba(227, 52, 47, 0.32));
	opacity: 1;
}

.market-map.is-dimming .market-map__routes path:not(.is-active) {
	opacity: 0.22;
}

.market-map__pin circle:first-child {
	fill: rgba(48, 67, 84, 0.72);
	transition: fill var(--yc-transition), transform var(--yc-transition), filter var(--yc-transition);
	transform-box: fill-box;
	transform-origin: center;
}

.market-map__pin circle:last-child {
	fill: rgba(48, 67, 84, 0.1);
	stroke: rgba(48, 67, 84, 0.18);
	stroke-width: 1;
	transition: fill var(--yc-transition), stroke var(--yc-transition), transform var(--yc-transition), opacity var(--yc-transition);
	transform-box: fill-box;
	transform-origin: center;
}

.market-map.is-visible .market-map__pin circle:last-child {
	animation: market-pin-pulse 2600ms ease-in-out infinite;
	animation-delay: calc(var(--pin-index, 0) * 160ms);
}

.market-map__pin--base circle:first-child {
	fill: var(--yc-blue);
}

.market-map__pin--base circle:last-child {
	fill: rgba(227, 52, 47, 0.14);
	stroke: rgba(227, 52, 47, 0.22);
}

.market-map__pin {
	cursor: pointer;
	outline: none;
	-webkit-tap-highlight-color: transparent;
}

.market-map__pin:focus,
.market-map__pin:focus-visible {
	outline: none;
}

.market-map__pin.is-active circle:first-child,
.market-map__pin:hover circle:first-child {
	fill: var(--yc-blue);
	filter: drop-shadow(0 0 8px rgba(227, 52, 47, 0.45));
	transform: scale(1.24);
}

.market-map__pin.is-active circle:last-child,
.market-map__pin:hover circle:last-child {
	fill: rgba(227, 52, 47, 0.18);
	stroke: rgba(227, 52, 47, 0.32);
	opacity: 1;
	transform: scale(1.28);
}

.market-map.is-dimming .market-map__pin:not(.is-active):not(.market-map__pin--base) {
	opacity: 0.38;
}

.market-map.is-active .market-map__base {
	transform: translateY(calc(-50% - 4px));
	box-shadow: 0 20px 40px rgba(8, 17, 29, 0.14);
}

.market-map__base {
	position: absolute;
	left: calc(83.45% + 18px);
	top: 38.6%;
	display: grid;
	gap: 3px;
	min-width: 150px;
	padding: 11px 14px 12px 16px;
	border: 1px solid rgba(255, 255, 255, 0.56);
	border-left: 3px solid rgba(227, 52, 47, 0.9);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.62);
	color: var(--yc-ink);
	box-shadow: 0 14px 32px rgba(8, 17, 29, 0.11);
	transition: transform var(--yc-transition), box-shadow var(--yc-transition), background var(--yc-transition);
	transform: translateY(-50%);
	backdrop-filter: blur(16px) saturate(150%);
	-webkit-backdrop-filter: blur(16px) saturate(150%);
}

.market-map__base::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -8px;
	width: 11px;
	height: 11px;
	border: 2px solid rgba(255, 255, 255, 0.92);
	border-radius: 50%;
	background: var(--yc-blue);
	box-shadow: 0 0 0 5px rgba(227, 52, 47, 0.12);
	transform: translateY(-50%);
}

.market-map__base::after {
	content: "";
	position: absolute;
	right: 12px;
	bottom: 9px;
	width: 24px;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(227, 52, 47, 0.55), transparent);
	opacity: 0.66;
}

.market-map__base span {
	color: rgba(23, 23, 23, 0.56);
	font-size: 0.58rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.market-map__base strong {
	color: var(--yc-blue);
	font-size: 0.92rem;
	font-weight: 900;
	line-height: 1.12;
}

@keyframes market-route-draw {
	to {
		stroke-dashoffset: 0;
	}
}

@keyframes market-pin-pulse {
	0%,
	100% {
		opacity: 0.72;
		transform: scale(1);
	}

	50% {
		opacity: 1;
		transform: scale(1.36);
	}
}

@keyframes market-sweep {
	0% {
		opacity: 0;
		transform: translateX(-24%);
	}

	35% {
		opacity: 0.72;
	}

	100% {
		opacity: 0;
		transform: translateX(34%);
	}
}

.certificates-screen {
	isolation: isolate;
	min-height: 100svh;
	padding: 56px 0 44px;
	background: #ffffff;
}

.certificates-screen .split-head {
	align-items: start;
	margin-bottom: 24px;
}

.certificates-screen .split-head h2 {
	max-width: 700px;
	font-size: clamp(2rem, 3.1vw, 3.25rem);
}

.certificates-carousel {
	position: relative;
	max-width: min(1520px, 100%);
	margin: 0 auto;
	padding: 0 78px;
	background: #ffffff;
}

.certificates-carousel__viewport {
	overflow: hidden;
	padding: 4px 4px 6px;
	background: #ffffff;
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}

.certificates-grid {
	display: flex;
	gap: 14px;
	align-items: stretch;
	background: #ffffff;
	transform: translateX(var(--certificate-track-offset, 0px));
	transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.certificates-grid.is-resetting {
	transition: none;
}

.certificate-card {
	--cert-offset: 0px;
	position: relative;
	flex: 0 0 calc((100% - 56px) / 5);
	width: 100%;
	padding: 0;
	overflow: visible;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	transform: translateY(var(--cert-offset));
	transition: transform var(--yc-transition), border-color var(--yc-transition), box-shadow var(--yc-transition), background var(--yc-transition);
}

.certificate-card::before {
	display: none;
}

.certificate-card::after {
	display: none;
}

.certificate-card:hover {
	transform: translateY(-5px);
}

.certificate-card:nth-child(2),
.certificate-card:nth-child(6) {
	--cert-offset: 0px;
}

.certificate-card:nth-child(4),
.certificate-card:nth-child(8) {
	--cert-offset: 0px;
}

.certificate-card figure {
	position: relative;
	z-index: 1;
	margin: 0;
	background: #ffffff;
}

.certificate-card figure::before {
	display: none;
}

.certificate-card img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	background: #ffffff;
	object-fit: contain;
	box-shadow: none;
	transition: transform var(--yc-transition), filter var(--yc-transition);
}

.certificate-card:hover img {
	transform: scale(1.012);
	filter: none;
}

.certificates-carousel__controls {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	z-index: 4;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	transform: translateY(-50%);
}

.certificates-carousel__button {
	position: relative;
	width: 58px;
	height: 58px;
	padding: 0;
	border: 1px solid rgba(227, 52, 47, 0.2);
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 16px 34px rgba(8, 17, 29, 0.12);
	pointer-events: auto;
	transition: transform var(--yc-transition), border-color var(--yc-transition), background var(--yc-transition), box-shadow var(--yc-transition);
}

.certificates-carousel__button::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 14px;
	border-top: 3px solid var(--yc-blue);
	border-right: 3px solid var(--yc-blue);
}

.certificates-carousel__button--prev::before {
	transform: translate(-35%, -50%) rotate(-135deg);
}

.certificates-carousel__button--next::before {
	transform: translate(-65%, -50%) rotate(45deg);
}

.certificates-carousel__button:hover {
	transform: scale(1.06);
	border-color: rgba(227, 52, 47, 0.34);
	background: rgba(227, 52, 47, 0.06);
	box-shadow: 0 20px 42px rgba(8, 17, 29, 0.16);
}

.certificates-carousel__button:disabled {
	cursor: default;
	opacity: 0.42;
	transform: none;
}

.news-screen {
	padding: 64px 0 46px;
	background: #ffffff;
}

.news-screen .split-head {
	align-items: end;
	margin-bottom: 18px;
}

.news-screen .split-head h2 {
	font-size: clamp(2rem, 3.1vw, 3.25rem);
}

.news-screen .split-head p {
	max-width: 500px;
	margin-top: 8px;
	margin-bottom: 0;
	color: rgba(48, 67, 84, 0.72);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.5;
}

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

.news-card {
	overflow: hidden;
	background: var(--yc-white);
	border: 1px solid rgba(28, 39, 52, 0.08);
	border-radius: 8px;
	box-shadow: 0 16px 38px rgba(8, 17, 29, 0.06);
	transition: transform var(--yc-transition), border-color var(--yc-transition), box-shadow var(--yc-transition);
}

.news-card:hover {
	transform: translateY(-6px);
	border-color: rgba(227, 52, 47, 0.2);
	box-shadow: 0 26px 60px rgba(8, 17, 29, 0.12);
}

.news-card a {
	display: grid;
	grid-template-columns: minmax(160px, 0.38fr) minmax(0, 0.62fr);
	min-height: 100%;
}

.news-card__image {
	min-height: 180px;
	height: auto;
	overflow: hidden;
	background: #ffffff;
}

.news-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
}

.news-card:hover img {
	transform: scale(1.05);
}

.news-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 16px 18px;
}

.news-card__tag {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	margin-bottom: 10px;
	padding: 0 9px;
	border-radius: 999px;
	background: rgba(227, 52, 47, 0.08);
	color: var(--yc-blue);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.news-card h3 {
	margin-bottom: 8px;
	font-size: 0.98rem;
	line-height: 1.28;
}

.news-card p {
	margin-bottom: 10px;
	color: rgba(48, 67, 84, 0.72);
	font-size: 0.82rem;
	line-height: 1.45;
}

.news-card__more {
	margin-top: auto;
	color: var(--yc-blue);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.news-card__more::after {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-left: 8px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
}

.site-footer {
	background: url("../images/xinglihui-category-7.webp") center / cover no-repeat;
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__top {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.35fr repeat(4, 1fr);
	gap: 30px;
	padding: 48px 0 34px;
}

.site-footer::before {
	content: "";
	position: absolute;
}

.site-footer {
	position: relative;
}

.site-footer::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(5, 11, 19, 0.9);
}

.site-footer__top,
.site-footer__copy {
	position: relative;
	z-index: 1;
}

.site-footer__brand img {
	width: 154px;
	max-width: 100%;
	height: auto;
	margin-bottom: 16px;
	filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.28));
}

.site-footer__brand p {
	margin-bottom: 8px;
	color: var(--yc-white);
	font-size: 1.05rem;
	font-weight: 800;
}

.site-footer__brand span {
	display: block;
	max-width: 360px;
}

.site-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.site-footer__social a {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	color: rgba(255, 255, 255, 0.82);
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
	border-color: rgba(239, 50, 47, 0.72);
	background: var(--yc-red);
	color: #ffffff;
	transform: translateY(-2px);
	outline: none;
}

.site-footer__social svg {
	width: 15px;
	height: 15px;
	fill: currentColor;
	stroke: none;
}

.site-footer__col h3 {
	margin-bottom: 14px;
	color: var(--yc-white);
	font-size: 1.05rem;
}

.site-footer__col h3::after {
	content: "";
	display: block;
	width: 24px;
	height: 2px;
	margin-top: 10px;
	background: var(--yc-blue);
}

.site-footer__col a {
	display: block;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.9rem;
	transition: color var(--yc-transition);
}

.site-footer__col a:hover {
	color: var(--yc-white);
}

.site-footer__copy {
	background: rgba(0, 0, 0, 0.42);
	padding: 13px 0;
	font-size: 0.86rem;
}

.site-footer__copy .page-frame {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px 22px;
}

.site-footer__copy a {
	color: rgba(255, 255, 255, 0.72);
	font-weight: 800;
	transition: color var(--yc-transition);
}

.site-footer__copy a:hover,
.site-footer__copy a:focus-visible {
	color: #ffffff;
}

.side-contact {
	position: fixed;
	right: 0;
	top: 50%;
	z-index: 46;
	display: grid;
	gap: 6px;
	transform: translateY(-50%);
}

.side-contact a,
.side-contact button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 68px;
	height: 62px;
	padding-left: 10px;
	overflow: visible;
	border: 0;
	border-radius: 34px 0 0 34px;
	background: var(--yc-blue);
	color: #ffffff;
	font: inherit;
	cursor: pointer;
	box-shadow: 0 12px 26px rgba(227, 52, 47, 0.22);
	transition: box-shadow var(--yc-transition), transform var(--yc-transition), opacity var(--yc-transition), height var(--yc-transition), margin var(--yc-transition), visibility var(--yc-transition);
}

.side-contact a:hover,
.side-contact a:focus-visible,
.side-contact button:hover,
.side-contact button:focus-visible {
	box-shadow: 0 18px 42px rgba(227, 52, 47, 0.3);
	transform: translateX(-2px);
}

.side-contact__top {
	height: 0;
	margin-top: -8px;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	background: transparent;
	box-shadow: none;
	pointer-events: none;
	transform: translateX(14px) scale(0.86);
}

.side-contact__top.is-visible {
	height: 62px;
	margin-top: 0;
	overflow: visible;
	opacity: 1;
	visibility: visible;
	background: var(--yc-blue);
	box-shadow: 0 12px 26px rgba(227, 52, 47, 0.22);
	pointer-events: auto;
	transform: translateX(0) scale(1);
}

.side-contact__top.is-visible:hover,
.side-contact__top.is-visible:focus-visible {
	box-shadow: 0 18px 42px rgba(227, 52, 47, 0.3);
	transform: translateX(-2px) scale(1);
}

.side-contact__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #ffffff;
	color: var(--yc-blue);
	flex: 0 0 42px;
}

.side-contact__icon svg {
	display: block;
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.side-contact__icon--phone svg {
	fill: currentColor;
	stroke: none;
}

.side-contact__icon--top svg {
	stroke-width: 2.6;
}

.side-contact strong {
	position: absolute;
	right: calc(100% + 18px);
	top: 50%;
	min-width: 220px;
	padding: 16px 20px;
	opacity: 0;
	visibility: hidden;
	border-radius: 18px;
	background: rgba(169, 31, 27, 0.94);
	box-shadow: 0 18px 45px rgba(8, 17, 29, 0.22);
	color: #ffffff;
	font-size: 0.96rem;
	font-weight: 900;
	line-height: 1.2;
	text-align: left;
	white-space: nowrap;
	transform: translate(12px, -50%);
	transition: opacity var(--yc-transition), transform var(--yc-transition), visibility var(--yc-transition);
}

.side-contact a:hover strong,
.side-contact a:focus-visible strong,
.side-contact button:hover strong,
.side-contact button:focus-visible strong {
	opacity: 1;
	visibility: visible;
	transform: translate(0, -50%);
}

.side-contact strong span {
	display: block;
	margin-bottom: 8px;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.72;
}

.basic-page,
.fallback-page {
	min-height: 60vh;
	padding: 130px 0 90px;
	background: var(--yc-bg);
}

.basic-page__inner,
.fallback-page__inner {
	width: var(--yc-frame);
	margin: 0 auto;
}

.basic-page__title {
	margin: 0 0 24px;
	color: var(--yc-ink);
	font-size: clamp(2rem, 3vw, 3.5rem);
}

.about-page {
	background: #ffffff;
	color: var(--yc-text);
}

.page-about-us .site-header:not(.is-scrolled):not(.is-menu-open),
.page-products .site-header:not(.is-scrolled):not(.is-menu-open),
.page-applications .site-header:not(.is-scrolled):not(.is-menu-open),
.page-news .site-header:not(.is-scrolled):not(.is-menu-open),
.page-contact-us .site-header:not(.is-scrolled):not(.is-menu-open) {
	color: #ffffff;
}

.page-about-us .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__nav,
.page-products .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__nav,
.page-applications .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__nav,
.page-news .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__nav,
.page-contact-us .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__nav {
	text-shadow: 0 8px 22px rgba(0, 0, 0, 0.36);
}

.page-about-us .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__search,
.page-products .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__search,
.page-applications .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__search,
.page-news .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__search,
.page-contact-us .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__search {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.16);
	color: #ffffff;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.page-about-us .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__search input::placeholder,
.page-products .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__search input::placeholder,
.page-applications .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__search input::placeholder,
.page-news .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__search input::placeholder,
.page-contact-us .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__search input::placeholder {
	color: rgba(255, 255, 255, 0.74);
}

.page-about-us .site-header__nav > a:first-child::after {
	transform: scaleX(0);
}

.page-products .site-header__nav > a:first-child::after,
.page-product-detail .site-header__nav > a:first-child::after {
	transform: scaleX(0);
}

.page-applications .site-header__nav > a:first-child::after {
	transform: scaleX(0);
}

.page-contact-us .site-header__nav > a:first-child::after {
	transform: scaleX(0);
}

.page-news .site-header__nav > a:first-child::after {
	transform: scaleX(0);
}

.page-about-us .site-header__nav > a:nth-child(2)::after,
.page-about-us .site-header__nav > a:nth-child(2):hover::after,
.page-about-us .site-header__nav > a:nth-child(2):focus-visible::after {
	transform: scaleX(1);
}

.page-products .site-header__nav-link--products::after,
.page-products .site-header__nav-link--products:hover::after,
.page-products .site-header__nav-link--products:focus-visible::after,
.page-product-detail .site-header__nav-link--products::after,
.page-product-detail .site-header__nav-link--products:hover::after,
.page-product-detail .site-header__nav-link--products:focus-visible::after {
	transform: scaleX(1);
}

.page-applications .site-header__nav > a:nth-child(4)::after,
.page-applications .site-header__nav > a:nth-child(4):hover::after,
.page-applications .site-header__nav > a:nth-child(4):focus-visible::after {
	transform: scaleX(1);
}

.page-news .site-header__nav > a:nth-child(5)::after,
.page-news .site-header__nav > a:nth-child(5):hover::after,
.page-news .site-header__nav > a:nth-child(5):focus-visible::after {
	transform: scaleX(1);
}

.page-contact-us .site-header__nav > a:nth-child(6)::after,
.page-contact-us .site-header__nav > a:nth-child(6):hover::after,
.page-contact-us .site-header__nav > a:nth-child(6):focus-visible::after {
	transform: scaleX(1);
}

.about-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 360px;
	padding: 118px 0 54px;
	overflow: hidden;
	background: #111923;
	color: #ffffff;
}

.about-page .about-hero {
	height: clamp(300px, 19.05vw, 390px);
	min-height: clamp(300px, 19.05vw, 390px);
}

.about-hero__bg {
	position: absolute;
	inset: 0;
}

.about-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(5, 11, 19, 0.76) 0%, rgba(5, 11, 19, 0.4) 46%, rgba(5, 11, 19, 0.1) 100%),
		linear-gradient(0deg, rgba(5, 11, 19, 0.32), rgba(5, 11, 19, 0.02) 54%);
}

.about-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transform: translateY(calc(var(--hero-offset, 0px) * 0.45)) scale(1.035);
	transform-origin: center top;
	transition: transform 180ms linear;
	will-change: transform;
}

.about-page .about-hero__bg img {
	object-fit: cover;
	object-position: center center;
	transform: none;
}

.about-hero__inner {
	position: relative;
	z-index: 1;
	max-width: min(760px, var(--yc-frame));
	margin-left: calc((100% - var(--yc-frame)) / 2);
}

.about-hero h1 {
	max-width: 720px;
	margin-bottom: 14px;
	color: #ffffff;
	font-size: clamp(2.5rem, 4.2vw, 4.8rem);
}

.about-hero__breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.98rem;
	font-weight: 750;
}

.about-hero__breadcrumb a {
	color: #ffffff;
}

.about-hero__breadcrumb a::after {
	content: "/";
	margin-left: 10px;
	color: rgba(255, 255, 255, 0.58);
}

.about-profile {
	position: relative;
	min-height: 0;
	padding: clamp(28px, 3.2vw, 44px) 0;
	background: linear-gradient(180deg, #f9fbfd 0%, #ffffff 100%);
}

.about-profile__shell {
	position: relative;
	padding: clamp(24px, 2.6vw, 34px);
	border-radius: 34px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 252, 0.94) 100%);
	box-shadow: 0 26px 70px rgba(10, 30, 52, 0.08);
	overflow: hidden;
}

.about-profile__shell::after {
	content: "";
	position: absolute;
	top: 28px;
	right: 28px;
	width: 180px;
	height: 180px;
	border-radius: 28px;
	border: 1px solid rgba(0, 102, 179, 0.08);
	opacity: 0.65;
}

.about-profile__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
	gap: clamp(24px, 3vw, 40px);
	align-items: center;
}

.about-scope__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
	gap: clamp(34px, 4.6vw, 74px);
	align-items: center;
}

.about-profile__content {
	position: relative;
	z-index: 1;
}

.about-profile__eyebrow {
	display: inline-flex;
	align-items: center;
	margin-bottom: 12px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(0, 102, 179, 0.08);
	color: var(--yc-blue);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.about-profile__content h2 {
	max-width: 720px;
	margin-bottom: 16px;
	color: #1d2734;
	font-size: clamp(1.72rem, 2.5vw, 2.82rem);
	line-height: 1.02;
	text-transform: uppercase;
}

.about-profile__content h2 span {
	color: var(--yc-blue);
}

.about-profile__lead {
	font-size: clamp(0.98rem, 1vw, 1.08rem);
	color: rgba(33, 48, 63, 0.86);
}

.about-scope__content h2,
.about-certificates h2 {
	color: var(--yc-blue);
}

.about-profile__content p,
.about-scope__content p {
	max-width: 760px;
	margin-bottom: 12px;
	color: rgba(48, 67, 84, 0.76);
	font-size: clamp(0.94rem, 0.96vw, 1.02rem);
	font-weight: 550;
	line-height: 1.72;
}

.about-profile__numbers {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin-top: 18px;
	max-width: none;
	padding-top: 16px;
	border-top: 1px solid rgba(0, 102, 179, 0.1);
}

.about-profile__number {
	position: relative;
	padding: 10px 18px 6px;
	background: transparent;
}

.about-profile__number strong {
	display: block;
	margin-bottom: 6px;
	color: var(--yc-blue);
	font-size: clamp(1.42rem, 1.85vw, 2.1rem);
	line-height: 1;
}

.about-profile__number span {
	display: block;
	color: rgba(33, 48, 63, 0.76);
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.about-profile__number + .about-profile__number::before {
	content: "";
	position: absolute;
	top: 8px;
	bottom: 8px;
	left: 0;
	width: 1px;
	background: rgba(0, 102, 179, 0.12);
}

.about-profile__media {
	--tilt-x: 0deg;
	--tilt-y: 0deg;
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: 34px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	background: #eef2f6;
	box-shadow: 0 28px 68px rgba(10, 30, 52, 0.12);
	transform: perspective(1000px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
	transition: transform 360ms ease, box-shadow 360ms ease;
	will-change: transform;
}

.about-profile__media::after,
.about-scope__media::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.3) 46%, transparent 56% 100%);
	opacity: 0;
	transform: translateX(-32%);
	transition: opacity 360ms ease, transform 520ms ease;
}

.about-profile__media img {
	width: 100%;
	height: clamp(340px, 31vw, 500px);
	object-fit: cover;
	object-position: center center;
	transition: transform 620ms ease, filter 620ms ease;
}

.about-profile__media-caption {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	display: grid;
	align-content: center;
	gap: 6px;
	min-height: 92px;
	padding: 18px 20px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.1) 100%);
	backdrop-filter: blur(18px);
	color: #ffffff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.about-profile__media-caption strong {
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-shadow: 0 2px 10px rgba(8, 17, 29, 0.28);
}

.about-profile__media-caption span {
	font-size: 0.86rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.86);
	text-shadow: 0 2px 10px rgba(8, 17, 29, 0.24);
}

.about-profile__media:hover,
.about-profile__media.is-tilting,
.about-scope__media:hover,
.about-scope__media.is-tilting {
	box-shadow: 0 22px 54px rgba(8, 17, 29, 0.12);
}

.about-profile__media:hover img,
.about-profile__media.is-tilting img,
.about-scope__media:hover img,
.about-scope__media.is-tilting img {
	transform: scale(1.045);
	filter: saturate(1.04) contrast(1.02);
}

.about-profile__media:hover::after,
.about-profile__media.is-tilting::after,
.about-scope__media:hover::after,
.about-scope__media.is-tilting::after {
	opacity: 1;
	transform: translateX(28%);
}

.about-history {
	min-height: 0;
	padding: clamp(34px, 4vw, 60px) 0 clamp(56px, 6vw, 88px);
	background:
		linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.about-history__shell {
	position: relative;
	padding: clamp(28px, 4vw, 46px);
	border: 1px solid rgba(48, 67, 84, 0.08);
	border-radius: 30px;
	background:
		radial-gradient(circle at top left, rgba(227, 52, 47, 0.08), rgba(227, 52, 47, 0) 32%),
		linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	box-shadow: 0 24px 56px rgba(8, 17, 29, 0.08);
	overflow: hidden;
}

.about-history__head {
	display: grid;
	grid-template-columns: minmax(280px, 1fr) minmax(280px, 420px);
	gap: 20px clamp(24px, 3vw, 46px);
	align-items: end;
	margin-bottom: 24px;
}

.about-history__head h2 {
	color: var(--yc-blue);
}

.about-history__head p {
	margin: 0;
	justify-self: end;
	color: rgba(48, 67, 84, 0.72);
	font-size: 0.96rem;
	font-weight: 550;
	line-height: 1.72;
}

.about-history__stage {
	position: relative;
	min-height: clamp(360px, 34vw, 470px);
}

.about-history__slide {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: minmax(320px, 0.78fr) minmax(0, 0.94fr);
	gap: clamp(28px, 4vw, 76px);
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transform: translateX(24px);
	transition: opacity 360ms ease, transform 360ms ease, visibility 360ms ease;
	pointer-events: none;
}

.about-history__slide.is-active {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	pointer-events: auto;
}

.about-history__media {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: 28px;
	background: #dde4ea;
	box-shadow: 0 20px 48px rgba(8, 17, 29, 0.12);
}

.about-history__media::after {
	display: none;
}

.about-history__media img {
	display: block;
	width: 100%;
	height: clamp(260px, 27vw, 380px);
	object-fit: cover;
	filter: none;
}

.about-history__body {
	max-width: 720px;
}

.about-history__index {
	margin: 0 0 14px;
	color: var(--yc-blue);
	font-size: clamp(4.8rem, 9vw, 7.8rem);
	font-weight: 900;
	line-height: 0.88;
	letter-spacing: -0.06em;
}

.about-history__body h3 {
	margin: 0 0 16px;
	color: var(--yc-ink);
	font-size: clamp(1.5rem, 2.3vw, 2.35rem);
	line-height: 1.06;
}

.about-history__body p:last-child {
	margin: 0;
	color: rgba(48, 67, 84, 0.78);
	font-size: clamp(1rem, 1.08vw, 1.12rem);
	font-weight: 550;
	line-height: 1.84;
}

.about-history__footer {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	margin-top: 28px;
}

.about-history__nav {
	position: relative;
	width: 54px;
	height: 54px;
	border: 0;
	border-radius: 999px;
	background: var(--yc-blue);
	box-shadow: none;
	transition: transform var(--yc-transition), background var(--yc-transition), opacity var(--yc-transition);
}

.about-history__nav:hover,
.about-history__nav:focus-visible {
	background: var(--yc-red-dark);
	transform: translateY(-2px);
}

.about-history__nav::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 12px;
	border-top: 3px solid #ffffff;
	border-right: 3px solid #ffffff;
	transform: translate(-60%, -50%) rotate(225deg);
}

.about-history__nav--next::before {
	transform: translate(-40%, -50%) rotate(45deg);
}

.about-history__points {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	align-items: start;
}

.about-history__points::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
	right: 0;
	height: 1px;
	background: rgba(48, 67, 84, 0.14);
}

.about-history__point {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
	gap: 14px;
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(48, 67, 84, 0.44);
	font: inherit;
	text-align: center;
	transition: color var(--yc-transition), transform var(--yc-transition);
}

.about-history__point:hover,
.about-history__point:focus-visible {
	color: var(--yc-ink);
	transform: translateY(-2px);
}

.about-history__point.is-active {
	color: var(--yc-ink);
}

.about-history__point-dot {
	width: 12px;
	height: 12px;
	border: 3px solid var(--yc-blue);
	border-radius: 999px;
	background: #ffffff;
	transition: transform var(--yc-transition), background var(--yc-transition), box-shadow var(--yc-transition);
}

.about-history__point.is-active .about-history__point-dot {
	background: var(--yc-blue);
	box-shadow: 0 0 0 7px rgba(227, 52, 47, 0.14);
	transform: scale(1.08);
}

.about-history__point-label {
	font-size: 0.94rem;
	font-weight: 800;
	line-height: 1.34;
}

.about-manufacturing {
	min-height: 0;
	padding: clamp(20px, 2.8vw, 40px) 0 clamp(56px, 6vw, 82px);
	background: #eef3f8;
}

.about-manufacturing__head {
	display: grid;
	grid-template-columns: minmax(280px, 1fr) minmax(280px, 430px);
	gap: 18px clamp(24px, 3vw, 44px);
	align-items: end;
	margin-bottom: 26px;
}

.about-manufacturing__head h2 {
	color: var(--yc-blue);
}

.about-manufacturing__head p {
	margin: 0;
	justify-self: end;
	color: rgba(48, 67, 84, 0.72);
	font-size: 0.96rem;
	font-weight: 550;
	line-height: 1.72;
}

.about-manufacturing__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.62fr);
	gap: clamp(22px, 2.4vw, 32px);
	align-items: stretch;
}

.about-manufacturing__media {
	--tilt-x: 0deg;
	--tilt-y: 0deg;
	position: relative;
	margin: 0;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	border-radius: 26px;
	background: #dbe5ee;
	box-shadow: 0 22px 52px rgba(8, 17, 29, 0.1);
	transform: perspective(1000px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
	transition: transform 360ms ease, box-shadow 360ms ease;
	will-change: transform;
}

.about-manufacturing__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 420ms ease, opacity 220ms ease;
}

.about-manufacturing__media:hover img,
.about-manufacturing__media.is-tilting img {
	transform: scale(1.03);
}

.about-manufacturing__media.is-switching img {
	opacity: 0.72;
	transform: scale(1.02);
}

.about-manufacturing__stack {
	display: grid;
	grid-template-rows: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.about-manufacturing__card {
	position: relative;
	display: grid;
	align-content: center;
	gap: 10px;
	min-height: 0;
	padding: 26px 26px 26px 28px;
	border: 0;
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 14px 34px rgba(8, 17, 29, 0.07);
	color: inherit;
	cursor: pointer;
	font: inherit;
	text-align: left;
	appearance: none;
	transition: transform var(--yc-transition), box-shadow var(--yc-transition), background var(--yc-transition);
}

.about-manufacturing__card::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 10px;
	border-radius: 0 22px 22px 0;
	background: var(--yc-blue);
}

.about-manufacturing__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(8, 17, 29, 0.1);
}

.about-manufacturing__card:focus-visible {
	outline: 2px solid rgba(227, 52, 47, 0.28);
	outline-offset: 3px;
}

.about-manufacturing__card h3 {
	margin: 0;
	color: var(--yc-blue);
	font-size: clamp(1.14rem, 1.5vw, 1.48rem);
	line-height: 1.16;
}

.about-manufacturing__card p {
	margin: 0;
	color: rgba(48, 67, 84, 0.78);
	font-size: 1rem;
	font-weight: 550;
	line-height: 1.68;
}

.about-manufacturing__card.is-active {
	background: var(--yc-blue);
	box-shadow: 0 18px 42px rgba(227, 52, 47, 0.18);
}

.about-manufacturing__card.is-active::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -16px;
	width: 0;
	height: 0;
	border-top: 14px solid transparent;
	border-right: 16px solid var(--yc-blue);
	border-bottom: 14px solid transparent;
	transform: translateY(-50%);
}

.about-manufacturing__card.is-active::after {
	background: var(--yc-red-dark);
}

.about-manufacturing__card.is-active h3,
.about-manufacturing__card.is-active p {
	color: #ffffff;
}

.about-culture {
	min-height: 0;
	padding: clamp(18px, 2.4vw, 34px) 0 clamp(58px, 6vw, 84px);
	background:
		linear-gradient(180deg, #f6f8fb 0%, #eef3f8 100%);
}

.about-culture__head {
	display: grid;
	grid-template-columns: minmax(280px, 1fr) minmax(280px, 430px);
	gap: 18px clamp(24px, 3vw, 44px);
	align-items: end;
	margin-bottom: 24px;
}

.about-culture__head h2 {
	color: var(--yc-blue);
}

.about-culture__head p {
	margin: 0;
	justify-self: end;
	color: rgba(48, 67, 84, 0.72);
	font-size: 0.96rem;
	font-weight: 550;
	line-height: 1.72;
}

.about-culture__shell {
	position: relative;
	overflow: hidden;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	border-radius: 0;
	min-height: clamp(420px, 34vw, 560px);
	background: #0d213d;
	box-shadow: 0 28px 72px rgba(8, 17, 29, 0.18);
	isolation: isolate;
}

.about-culture__shell::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(8, 17, 29, 0.16) 0%, rgba(8, 17, 29, 0.3) 44%, rgba(8, 17, 29, 0.52) 100%);
	z-index: 1;
}

.about-culture__background {
	position: absolute;
	inset: 0;
}

.about-culture__background::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 50% 24%, rgba(126, 178, 255, 0.18), transparent 34%),
		linear-gradient(90deg, rgba(5, 22, 46, 0.34) 0%, rgba(8, 29, 58, 0.12) 46%, rgba(5, 22, 46, 0.34) 100%);
}

.about-culture__background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.about-culture__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	min-height: inherit;
}

.about-culture__panel {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: inherit;
	padding: clamp(30px, 3vw, 46px) clamp(18px, 1.8vw, 28px);
	border-left: 1px solid rgba(255, 255, 255, 0.14);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(10, 23, 43, 0.26) 100%);
	outline: none;
	transition: background var(--yc-transition), transform var(--yc-transition), box-shadow var(--yc-transition);
}

.about-culture__panel::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(28, 109, 224, 0) 0%, rgba(28, 109, 224, 0.2) 100%);
	opacity: 0;
	z-index: 0;
	transition: opacity var(--yc-transition), background var(--yc-transition);
}

.about-culture__panel:first-child {
	border-left: 0;
}

.about-culture__panel:hover,
.about-culture__panel:focus-visible {
	transform: translateY(-2px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(12, 32, 58, 0.34) 100%);
}

.about-culture__panel:hover::after,
.about-culture__panel:focus-visible::after {
	opacity: 0.32;
}

.about-culture__panel.is-active {
	background: linear-gradient(180deg, rgba(210, 118, 132, 0.1) 0%, rgba(122, 59, 83, 0.18) 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 214, 218, 0.14);
}

.about-culture__panel.is-active::after {
	background: linear-gradient(180deg, rgba(255, 232, 236, 0.02) 0%, rgba(214, 119, 138, 0.07) 34%, rgba(101, 58, 84, 0.16) 100%);
	opacity: 1;
}

.about-culture__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	width: min(100%, 220px);
	text-align: center;
}

.about-culture__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 999px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.04);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.about-culture__icon svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.about-culture__icon img {
	width: 28px;
	height: 28px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.about-culture__panel h3 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(1.12rem, 1.35vw, 1.42rem);
	font-weight: 800;
	line-height: 1.3;
	text-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.about-culture__panel p {
	margin: 0;
	max-height: 0;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.92rem;
	font-weight: 500;
	line-height: 1.7;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity var(--yc-transition), transform var(--yc-transition), max-height var(--yc-transition);
}

.about-culture__panel.is-active p {
	max-height: 180px;
	opacity: 1;
	transform: translateY(0);
}

.about-environment {
	min-height: 0;
	padding: clamp(42px, 4.6vw, 68px) 0;
	background:
		linear-gradient(180deg, #f6f8fb 0%, #eef3f8 100%);
}

.about-environment__shell {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto minmax(0, 1fr);
	gap: clamp(20px, 2.2vw, 28px);
	min-height: clamp(560px, calc(100vh - 220px), 700px);
	padding: clamp(28px, 3.8vw, 46px);
	border: 1px solid rgba(48, 67, 84, 0.08);
	border-radius: 30px;
	background:
		linear-gradient(135deg, rgba(28, 95, 154, 0.04), rgba(255, 255, 255, 0) 42%),
		#ffffff;
	box-shadow: 0 24px 56px rgba(8, 17, 29, 0.08);
}

.about-environment__heading {
	display: grid;
	grid-template-columns: minmax(320px, 1fr) minmax(280px, 420px);
	gap: 24px clamp(28px, 3vw, 54px);
	align-items: end;
	padding: 0;
}

.about-environment__intro-block {
	max-width: 420px;
}

.about-environment__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	color: var(--yc-red);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.about-environment__eyebrow::before {
	content: "";
	width: 34px;
	height: 2px;
	border-radius: 999px;
	background: rgba(227, 52, 47, 0.4);
}

.about-environment__heading h2 {
	max-width: none;
	color: var(--yc-blue);
	font-size: clamp(2rem, 3.2vw, 3.4rem);
	line-height: 0.92;
	letter-spacing: -0.035em;
	white-space: nowrap;
}

.about-environment__copy {
	display: grid;
	gap: 18px;
	max-width: 420px;
	justify-self: end;
}

.about-environment__copy p {
	margin: 0;
	color: rgba(48, 67, 84, 0.7);
	font-size: 0.98rem;
	font-weight: 550;
	line-height: 1.74;
}

.about-environment__copy .yc-more {
	justify-self: start;
}

.about-environment__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: clamp(16px, 1.8vw, 22px);
	min-height: 100%;
}

.about-environment__card {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: 24px;
	background: #e6ebf1;
	box-shadow: 0 20px 44px rgba(8, 17, 29, 0.1);
	aspect-ratio: 16 / 11;
}

.about-environment__card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 520ms ease, filter 520ms ease;
}

.about-environment__card::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(5, 11, 19, 0.02) 0%, rgba(5, 11, 19, 0.34) 100%);
	opacity: 1;
}

.about-environment__card figcaption {
	position: absolute;
	right: 18px;
	bottom: 18px;
	left: 18px;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.about-environment__card figcaption span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(10px);
	color: #ffffff;
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.about-environment__card:hover img {
	transform: scale(1.045);
	filter: saturate(1.04) contrast(1.02);
}

.about-scope {
	min-height: 0;
	padding: clamp(72px, 7vw, 104px) 0;
	background: #f7f8fa;
}

.about-scope__grid {
	grid-template-columns: minmax(360px, 0.74fr) minmax(0, 0.86fr);
}

.about-scope__media {
	--tilt-x: 0deg;
	--tilt-y: 0deg;
	position: relative;
	min-height: clamp(330px, 30vw, 470px);
	overflow: hidden;
	border-radius: 2px;
	background: #dfe5ec;
	box-shadow: none;
	transform: perspective(1000px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
	transition: transform 360ms ease, box-shadow 360ms ease;
	will-change: transform;
}

.about-scope__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 620ms ease, filter 620ms ease;
}

.about-list-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 34px;
}

.about-list-grid > div {
	position: relative;
	padding: 24px;
	border: 1px solid rgba(28, 39, 52, 0.08);
	border-radius: 2px;
	background: #ffffff;
	box-shadow: none;
	overflow: hidden;
	transition: border-color 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.about-list-grid > div::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 3px;
	background: var(--yc-blue);
	opacity: 0;
	transform: scaleY(0);
	transform-origin: top;
	transition: opacity 260ms ease, transform 260ms ease;
}

.about-list-grid > div:hover {
	border-color: rgba(227, 52, 47, 0.18);
	box-shadow: 0 16px 36px rgba(8, 17, 29, 0.08);
	transform: translateY(-4px);
}

.about-list-grid > div:hover::before {
	opacity: 1;
	transform: scaleY(1);
}

.about-list-grid h3 {
	margin-bottom: 16px;
	color: var(--yc-ink);
	font-size: 1.06rem;
}

.about-list-grid ul {
	display: grid;
	gap: 11px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.about-list-grid li {
	position: relative;
	padding-left: 18px;
	color: rgba(48, 67, 84, 0.78);
	font-size: 0.95rem;
	font-weight: 650;
	line-height: 1.48;
}

.about-list-grid li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.72em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--yc-blue);
	transform: translateY(-50%);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.about-list-grid li:hover::before {
	transform: translateY(-50%) scale(1.35);
	box-shadow: 0 0 0 5px rgba(227, 52, 47, 0.08);
}

.about-certificates {
	min-height: 0;
	padding: clamp(72px, 7vw, 102px) 0;
	background: #ffffff;
}

.about-certificates__carousel {
	margin-top: 34px;
	padding: 0 68px;
}

.about-certificate-strip {
	display: flex;
	gap: 18px;
	align-items: stretch;
	margin-top: 0;
	transform: translateX(var(--certificate-track-offset, 0px));
	transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.about-certificate-strip.is-resetting {
	transition: none;
}

.about-certificate-card {
	--tilt-x: 0deg;
	--tilt-y: 0deg;
	position: relative;
	flex: 0 0 calc((100% - 54px) / 4);
	padding: 14px;
	border: 1px solid rgba(28, 39, 52, 0.08);
	border-radius: 2px;
	background: #ffffff;
	box-shadow: none;
	overflow: hidden;
	transform: perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
	transition: border-color 260ms ease, transform 260ms ease, box-shadow 260ms ease;
	will-change: transform;
}

.about-certificate-card::before {
	content: "";
	position: absolute;
	top: 0;
	right: 14px;
	left: 14px;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--yc-blue), transparent);
	opacity: 0;
	transform: translateX(-22px);
	transition: opacity 260ms ease, transform 260ms ease;
}

.about-certificate-card img {
	width: 100%;
	aspect-ratio: 3 / 4;
	height: auto;
	object-fit: contain;
	background: #f5f7fa;
	transition: transform 360ms ease, filter 360ms ease;
}

.about-certificate-card strong {
	display: block;
	margin-top: 14px;
	color: var(--yc-ink);
	font-size: 0.92rem;
	text-align: center;
	transition: color 260ms ease;
}

.about-certificate-card:hover,
.about-certificate-card.is-tilting {
	border-color: rgba(227, 52, 47, 0.18);
	box-shadow: 0 18px 38px rgba(8, 17, 29, 0.09);
}

.about-certificate-card:hover::before,
.about-certificate-card.is-tilting::before {
	opacity: 1;
	transform: translateX(0);
}

.about-certificate-card:hover img,
.about-certificate-card.is-tilting img {
	transform: translateY(-4px) scale(1.025);
	filter: saturate(1.03);
}

.about-certificate-card:hover strong,
.about-certificate-card.is-tilting strong {
	color: var(--yc-blue);
}

.applications-page {
	background: #ffffff;
	color: var(--yc-text);
}

.applications-hero .about-hero__bg::after {
	background:
		linear-gradient(90deg, rgba(5, 11, 19, 0.78) 0%, rgba(5, 11, 19, 0.46) 48%, rgba(5, 11, 19, 0.16) 100%),
		linear-gradient(0deg, rgba(5, 11, 19, 0.34), rgba(5, 11, 19, 0.02) 58%);
}

.applications-hero .about-hero__bg img {
	object-position: center center;
}

.applications-overview {
	min-height: 0;
	padding: clamp(64px, 6.6vw, 96px) 0;
	background: #ffffff;
}

.applications-overview__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
	gap: clamp(34px, 5vw, 86px);
	align-items: center;
}

.applications-overview__content h2,
.applications-detail h2,
.applications-support__content h2 {
	color: var(--yc-blue);
}

.applications-overview__content p,
.applications-support__content p {
	max-width: 760px;
	margin-bottom: 18px;
	color: rgba(48, 67, 84, 0.76);
	font-size: clamp(1rem, 1.08vw, 1.12rem);
	font-weight: 550;
	line-height: 1.88;
}

.applications-overview__list {
	display: grid;
	gap: 12px;
}

.applications-overview__list a {
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 16px;
	align-items: center;
	min-height: 72px;
	padding: 16px 18px;
	border: 1px solid rgba(28, 39, 52, 0.08);
	border-radius: 8px;
	background: #f7f8fa;
	color: var(--yc-ink);
	box-shadow: none;
	transition: transform var(--yc-transition), border-color var(--yc-transition), background var(--yc-transition);
}

.applications-overview__list a:hover,
.applications-overview__list a:focus-visible {
	border-color: rgba(227, 52, 47, 0.22);
	background: #ffffff;
	transform: translateY(-3px);
}

.applications-overview__list span,
.application-detail-card__body span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--yc-blue);
	color: #ffffff;
	font-size: 0.82rem;
	font-weight: 900;
}

.applications-overview__list strong {
	color: var(--yc-ink);
	font-size: 0.98rem;
	font-weight: 850;
	line-height: 1.32;
}

.applications-detail {
	min-height: 0;
	padding: clamp(72px, 7vw, 104px) 0;
	background:
		linear-gradient(135deg, rgba(227, 52, 47, 0.035) 0 1px, transparent 1px 100%) 0 0 / 34px 34px,
		linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.applications-detail__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-top: 34px;
}

.application-detail-card {
	display: grid;
	grid-template-columns: minmax(210px, 0.44fr) minmax(0, 0.56fr);
	min-height: 310px;
	overflow: hidden;
	border: 1px solid rgba(28, 39, 52, 0.08);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 44px rgba(8, 17, 29, 0.06);
}

.application-detail-card:first-child {
	grid-column: span 2;
	grid-template-columns: minmax(360px, 0.48fr) minmax(0, 0.52fr);
}

.application-detail-card figure {
	min-height: 100%;
	margin: 0;
	overflow: hidden;
	background: #dfe5ec;
}

.application-detail-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 460ms ease;
}

.application-detail-card:hover img {
	transform: scale(1.045);
}

.application-detail-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(24px, 3vw, 42px);
}

.application-detail-card__body h3 {
	margin: 20px 0 14px;
	color: var(--yc-ink);
	font-size: clamp(1.28rem, 1.6vw, 2rem);
	line-height: 1.22;
}

.application-detail-card__body p {
	margin: 0;
	color: rgba(48, 67, 84, 0.75);
	font-size: 0.98rem;
	font-weight: 540;
	line-height: 1.78;
}

.applications-support {
	min-height: 0;
	padding: clamp(72px, 7vw, 104px) 0;
	background: #ffffff;
}

.applications-support__grid {
	display: grid;
	grid-template-columns: minmax(360px, 0.72fr) minmax(0, 0.88fr);
	gap: clamp(34px, 4.8vw, 78px);
	align-items: center;
}

.applications-support__media {
	min-height: clamp(330px, 30vw, 470px);
	margin: 0;
	overflow: hidden;
	border-radius: 8px;
	background: #e4e9ef;
}

.applications-support__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.applications-support__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 28px 0 30px;
}

.applications-support__chips span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 14px;
	border: 1px solid rgba(48, 67, 84, 0.12);
	border-radius: 999px;
	background: #f7f8fa;
	color: rgba(48, 67, 84, 0.86);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.25;
}

.products-page {
	background: #f6f8fb;
	color: var(--yc-text);
}

.page-products .site-header:not(.is-scrolled):not(.is-menu-open) {
	background: rgba(255, 255, 255, 0.98);
	color: var(--yc-ink);
	box-shadow: 0 10px 28px rgba(8, 17, 29, 0.08);
}

.page-products .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__nav {
	text-shadow: none;
}

.page-products .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__search {
	border-color: rgba(28, 39, 52, 0.14);
	background: #ffffff;
	color: var(--yc-ink);
	box-shadow: 0 8px 18px rgba(8, 17, 29, 0.06);
}

.page-products .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__search input::placeholder {
	color: rgba(48, 67, 84, 0.58);
}

.products-page-head {
	padding: 132px 0 42px;
	background:
		linear-gradient(135deg, rgba(227, 52, 47, 0.08), transparent 36%),
		#f6f8fb;
}

.products-page-head__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.36fr);
	gap: clamp(24px, 4vw, 64px);
	align-items: end;
}

.products-page-head__inner h1 {
	margin-bottom: 12px;
	color: var(--yc-ink);
	font-size: clamp(2.1rem, 3.6vw, 4rem);
	line-height: 1.08;
}

.products-page-head__inner p {
	max-width: 520px;
	margin: 0;
	color: rgba(48, 67, 84, 0.72);
	font-size: 0.98rem;
	font-weight: 650;
	line-height: 1.66;
}

.products-page-head__breadcrumb {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	width: auto;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: rgba(48, 67, 84, 0.72);
	font-size: 0.92rem;
	font-weight: 780;
	text-shadow: none;
	box-shadow: none;
}

.products-page-head__breadcrumb a {
	color: var(--yc-ink);
	transition: color var(--yc-transition);
}

.products-page-head__breadcrumb a:hover,
.products-page-head__breadcrumb a:focus-visible {
	color: var(--yc-red);
}

.products-page-head__breadcrumb a::after {
	content: "/";
	margin-left: 10px;
	color: rgba(48, 67, 84, 0.36);
}

.products-page-head__breadcrumb span::before {
	content: none;
	display: none;
}

.products-page-head__breadcrumb span {
	color: rgba(48, 67, 84, 0.68);
}

.products-catalog {
	min-height: 0;
	padding: clamp(46px, 5vw, 76px) 0;
	background:
		linear-gradient(180deg, #edf2f7 0%, #f7f9fb 100%);
}

.products-catalog__layout {
	position: relative;
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: clamp(20px, 2.6vw, 38px);
	align-items: start;
}

.products-sidebar {
	position: relative;
	grid-column: 1;
	grid-row: 1;
	align-self: start;
	margin-top: 0;
	padding: 24px 20px;
	border: 0;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 16px 38px rgba(8, 17, 29, 0.07);
}

.products-sidebar.is-fixed {
	position: fixed;
	top: 96px;
	z-index: 20;
	max-height: calc(100vh - 120px);
	overflow-y: auto;
}

.products-sidebar.is-locked {
	position: absolute;
	z-index: 20;
	max-height: none;
	overflow: visible;
}

.products-sidebar .section-rule {
	display: none;
}

.products-sidebar__eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	color: var(--yc-red);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.products-sidebar__eyebrow::before {
	content: "";
	width: 34px;
	height: 2px;
	border-radius: 999px;
	background: rgba(227, 52, 47, 0.42);
}

.products-sidebar h2,
.products-catalog__head h2 {
	color: var(--yc-ink);
	font-size: clamp(1.45rem, 2vw, 2.35rem);
	line-height: 1.14;
}

.products-sidebar h2 {
	margin-bottom: 20px;
	font-size: 1.22rem;
	line-height: 1.16;
}

.products-catalog__head p {
	color: rgba(48, 67, 84, 0.7);
	font-size: 0.92rem;
	font-weight: 650;
	line-height: 1.55;
}

.products-sidebar p {
	display: none;
}

.products-sidebar__nav {
	display: grid;
	gap: 8px;
}

.products-sidebar__nav a {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
	align-items: center;
	min-height: 44px;
	padding: 9px 12px 9px 14px;
	border: 0;
	border-radius: 11px;
	background: #ffffff;
	transition: border-color var(--yc-transition), background var(--yc-transition), transform var(--yc-transition);
}

.products-sidebar__nav a:hover,
.products-sidebar__nav a:focus-visible,
.products-sidebar__nav a.is-active {
	background: rgba(227, 52, 47, 0.08);
	transform: translateX(3px);
}

.products-sidebar__nav span {
	order: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 24px;
	padding: 0 8px;
	border-radius: 999px;
	background: #f3f5f7;
	color: rgba(48, 67, 84, 0.72);
	font-size: 0.7rem;
	font-weight: 900;
}

.products-sidebar__nav a.is-active span,
.products-sidebar__nav a:hover span,
.products-sidebar__nav a:focus-visible span {
	background: var(--yc-red);
	color: #ffffff;
}

.products-sidebar__nav strong {
	color: var(--yc-ink);
	font-size: 0.86rem;
	line-height: 1.28;
}

.products-card__body span {
	display: inline-flex;
	margin-bottom: 9px;
	color: var(--yc-red);
	font-size: 0.74rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.products-catalog__head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
	gap: 22px;
	align-items: end;
	margin-bottom: 26px;
}

.products-catalog__head p {
	margin: 0;
}

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

.products-catalog__main {
	grid-column: 2;
	grid-row: 1;
	padding: clamp(20px, 2.4vw, 30px);
	border: 1px solid rgba(48, 67, 84, 0.08);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 46px rgba(8, 17, 29, 0.07);
}

.products-card {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	overflow: hidden;
	border: 1px solid rgba(48, 67, 84, 0.1);
	border-radius: 10px;
	background: #ffffff;
	box-shadow: 0 10px 28px rgba(8, 17, 29, 0.04);
	transition: border-color var(--yc-transition), transform var(--yc-transition), box-shadow var(--yc-transition);
}

.products-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--yc-red);
	opacity: 0;
	transition: opacity var(--yc-transition);
}

.products-card:hover {
	border-color: rgba(227, 52, 47, 0.18);
	transform: translateY(-4px);
	box-shadow: 0 18px 38px rgba(8, 17, 29, 0.1);
}

.products-card:hover::before {
	opacity: 1;
}

.products-card__media {
	aspect-ratio: 1 / 1;
	height: auto;
	min-height: 0;
	margin: 0;
	border-bottom: 1px solid rgba(48, 67, 84, 0.07);
	background: #f7f9fb;
	overflow: hidden;
}

.products-card__media a {
	display: block;
	height: 100%;
}

.products-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	padding: 0;
}

.products-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 142px;
	padding: 16px 18px 18px;
}

.products-card__body h3 {
	margin: 0 0 8px;
	color: var(--yc-ink);
	font-size: clamp(0.98rem, 0.92vw, 1.08rem);
	line-height: 1.18;
}

.products-card__body h3 a {
	color: inherit;
}

.products-card__body h3 a:hover,
.products-card__body h3 a:focus-visible {
	color: var(--yc-red);
}

.products-card__body p {
	display: -webkit-box;
	margin-bottom: 12px;
	overflow: hidden;
	color: rgba(48, 67, 84, 0.76);
	font-size: 0.78rem;
	font-weight: 550;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.products-card__body ul {
	display: grid;
	gap: 5px;
	margin: 0 0 14px;
	padding: 0;
	list-style: none;
}

.products-card__body li {
	position: relative;
	padding-left: 13px;
	color: rgba(48, 67, 84, 0.72);
	font-size: 0.78rem;
	font-weight: 650;
	line-height: 1.45;
}

.products-card__body li::before {
	content: "";
	position: absolute;
	top: 0.68em;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--yc-red);
	transform: translateY(-50%);
}

.products-card__body .yc-more {
	gap: 9px;
	font-size: 0.76rem;
}

.products-card__body .yc-more span {
	width: 24px;
	height: 24px;
	flex-basis: 24px;
}

.products-card__body .yc-more span::after {
	width: 7px;
	height: 7px;
}

.products-pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid rgba(48, 67, 84, 0.08);
}

.products-pagination__count {
	color: rgba(48, 67, 84, 0.68);
	font-size: 0.84rem;
	font-weight: 750;
}

.products-pagination__links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.products-pagination__links a,
.products-pagination__links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	padding: 0 12px;
	border: 1px solid rgba(48, 67, 84, 0.12);
	border-radius: 8px;
	background: #ffffff;
	color: rgba(48, 67, 84, 0.76);
	font-size: 0.82rem;
	font-weight: 850;
	line-height: 1;
	transition: border-color var(--yc-transition), background var(--yc-transition), color var(--yc-transition), transform var(--yc-transition);
}

.products-pagination__links a:hover,
.products-pagination__links a:focus-visible,
.products-pagination__links .is-current {
	border-color: var(--yc-blue);
	background: var(--yc-blue);
	color: #ffffff;
}

.products-pagination__links a:hover {
	transform: translateY(-2px);
}

.products-pagination__links .is-disabled {
	opacity: 0.42;
	cursor: not-allowed;
}

.products-support {
	min-height: 0;
	padding: 0 0 clamp(66px, 7vw, 108px);
	background: #f6f8fb;
}

.products-support__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	padding: clamp(28px, 4vw, 52px);
	border: 1px solid rgba(48, 67, 84, 0.1);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(48, 67, 84, 0.06), rgba(227, 52, 47, 0.06)),
		#ffffff;
	box-shadow: 0 18px 42px rgba(8, 17, 29, 0.06);
}

.products-support__panel h2 {
	margin-bottom: 12px;
	color: var(--yc-ink);
	font-size: clamp(1.45rem, 2vw, 2.25rem);
	line-height: 1.18;
}

.products-support__panel p {
	max-width: 780px;
	margin: 0;
	color: rgba(48, 67, 84, 0.74);
	font-size: 0.96rem;
	font-weight: 550;
	line-height: 1.72;
}

.product-detail-page {
	background: #f6f8fb;
	color: var(--yc-text);
}

.product-detail-head .products-page-head__inner h1 {
	max-width: 1180px;
	font-size: clamp(1.6rem, 2.15vw, 2.62rem);
	line-height: 1.08;
}

.product-detail-content {
	min-height: 0;
	padding: clamp(22px, 2.4vw, 34px) 0;
	background: #ffffff;
}

.product-detail-content__grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.84fr);
	gap: clamp(22px, 2.4vw, 36px);
	align-items: start;
}

.product-detail-gallery {
	display: grid;
	gap: 18px;
	height: auto;
	min-height: 0;
	margin: 0;
	align-content: start;
}

.product-detail-gallery__stage {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	border: 1px solid rgba(48, 67, 84, 0.12);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(8, 17, 29, 0.07);
	overflow: hidden;
}

.product-detail-gallery__stage img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	padding: clamp(16px, 2vw, 28px);
}

.product-detail-gallery__controls {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) 44px;
	gap: 12px;
	align-items: center;
}

.product-detail-gallery__thumbs {
	display: flex;
	gap: 12px;
	min-width: 0;
	margin: -4px;
	padding: 4px;
	overflow-x: hidden;
	overflow-y: visible;
	scroll-behavior: smooth;
	scrollbar-width: none;
}

.product-detail-gallery__thumbs::-webkit-scrollbar {
	display: none;
}

.product-detail-gallery__thumb {
	position: relative;
	flex: 0 0 calc((100% - 36px) / 4);
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	padding: 6px;
	border: 1px solid rgba(48, 67, 84, 0.16);
	border-radius: 8px;
	background: #ffffff;
	cursor: pointer;
	overflow: hidden;
	transition: border-color var(--yc-transition), box-shadow var(--yc-transition), transform var(--yc-transition);
}

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

.product-detail-gallery__thumb:hover,
.product-detail-gallery__thumb:focus-visible,
.product-detail-gallery__thumb.is-active {
	border-color: rgba(227, 52, 47, 0.82);
	box-shadow: 0 0 0 1px rgba(227, 52, 47, 0.18), 0 8px 18px rgba(8, 17, 29, 0.07);
	transform: translateY(-2px);
}

.product-detail-gallery__arrow {
	position: relative;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(48, 67, 84, 0.12);
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 12px 26px rgba(8, 17, 29, 0.08);
	cursor: pointer;
	transition: border-color var(--yc-transition), background var(--yc-transition), transform var(--yc-transition);
}

.product-detail-gallery__arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	border-top: 3px solid currentColor;
	border-left: 3px solid currentColor;
	color: var(--yc-ink);
}

.product-detail-gallery__arrow--prev::before {
	transform: translate(-35%, -50%) rotate(-45deg);
}

.product-detail-gallery__arrow--next::before {
	transform: translate(-65%, -50%) rotate(135deg);
}

.product-detail-gallery__arrow:hover,
.product-detail-gallery__arrow:focus-visible {
	border-color: rgba(227, 52, 47, 0.34);
	background: rgba(227, 52, 47, 0.08);
	transform: translateY(-2px);
}

.product-detail-main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 0;
	padding: clamp(20px, 2.4vw, 34px);
	border: 1px solid rgba(48, 67, 84, 0.1);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 24px 58px rgba(8, 17, 29, 0.08);
}

.product-detail-main__tag {
	display: inline-flex;
	margin-bottom: 10px;
	color: var(--yc-red);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.product-detail-main h2 {
	margin: 0 0 12px;
	color: var(--yc-ink);
	font-size: clamp(1.45rem, 2vw, 2.3rem);
	line-height: 1.12;
}

.product-detail-main__lead {
	margin-bottom: 16px;
	color: rgba(48, 67, 84, 0.76);
	font-size: clamp(1rem, 1.08vw, 1.12rem);
	font-weight: 560;
	line-height: 1.74;
}

.product-detail-features {
	display: grid;
	gap: 8px;
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}

.product-detail-features li {
	position: relative;
	padding: 11px 14px 11px 38px;
	border: 1px solid rgba(48, 67, 84, 0.1);
	border-radius: 8px;
	background: #f7f9fc;
	color: rgba(48, 67, 84, 0.78);
	font-size: 0.93rem;
	font-weight: 700;
	line-height: 1.46;
}

.product-detail-features li::before {
	content: "";
	position: absolute;
	top: 17px;
	left: 18px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--yc-red);
	box-shadow: 0 0 0 5px rgba(227, 52, 47, 0.12);
}

.product-detail-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.product-detail-text {
	min-height: 0;
	padding: 0 0 clamp(66px, 7vw, 108px);
	background: #f6f8fb;
}

.product-detail-text__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(24px, 3vw, 42px);
	align-items: start;
}

.product-detail-article,
.product-detail-sidebar {
	border: 1px solid rgba(48, 67, 84, 0.1);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(8, 17, 29, 0.06);
}

.product-detail-article {
	padding: clamp(28px, 4vw, 58px);
}

.product-detail-article .news-detail-rich-content img.alignnone,
.product-detail-article .news-detail-rich-content img.size-full {
	display: block;
	margin-right: auto;
	margin-left: auto;
	box-shadow: none;
}

.product-detail-article h2,
.product-detail-sidebar h2 {
	margin-bottom: 16px;
	color: var(--yc-ink);
	font-size: clamp(1.25rem, 1.8vw, 2rem);
	line-height: 1.16;
}

.product-detail-sidebar {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
	padding: clamp(24px, 3vw, 34px);
}

.product-detail-sidebar h2 {
	grid-column: 1 / -1;
	margin-bottom: 4px;
}

.product-detail-related {
	display: grid;
	gap: 10px;
	padding: 14px;
	border: 1px solid rgba(48, 67, 84, 0.1);
	border-radius: 8px;
	background: #ffffff;
	transition: border-color var(--yc-transition), transform var(--yc-transition), box-shadow var(--yc-transition);
}

.product-detail-related:hover,
.product-detail-related:focus-visible {
	border-color: rgba(227, 52, 47, 0.26);
	box-shadow: 0 14px 30px rgba(8, 17, 29, 0.08);
	transform: translateY(-3px);
}

.product-detail-related img {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 8px;
	background: #eef2f6;
	object-fit: cover;
	object-position: center;
	padding: 0;
}

.product-detail-related span {
	color: var(--yc-red);
	font-size: 0.74rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.product-detail-related strong {
	color: var(--yc-ink);
	font-size: 0.96rem;
	line-height: 1.35;
}

.news-page {
	background: #f6f8fb;
	color: var(--yc-text);
}

.page-news .site-header:not(.is-scrolled):not(.is-menu-open) {
	background: rgba(255, 255, 255, 0.98);
	color: var(--yc-ink);
	box-shadow: 0 10px 28px rgba(8, 17, 29, 0.08);
}

.page-news .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__nav {
	text-shadow: none;
}

.page-news .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__search {
	border-color: rgba(28, 39, 52, 0.14);
	background: #ffffff;
	color: var(--yc-ink);
	box-shadow: 0 8px 18px rgba(8, 17, 29, 0.06);
}

.page-news .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__search input::placeholder {
	color: rgba(48, 67, 84, 0.58);
}

.news-hero .about-hero__bg::after {
	background:
		linear-gradient(90deg, rgba(5, 11, 19, 0.78) 0%, rgba(5, 11, 19, 0.42) 50%, rgba(5, 11, 19, 0.12) 100%),
		linear-gradient(0deg, rgba(5, 11, 19, 0.34), rgba(5, 11, 19, 0.02) 58%);
}

.news-page-head {
	padding: 132px 0 36px;
	background: #f6f8fb;
}

.news-page-head__inner h1 {
	margin-bottom: 12px;
	color: var(--yc-ink);
	font-size: clamp(2.1rem, 3.6vw, 4rem);
	line-height: 1.08;
}

.news-page-head__breadcrumb {
	color: rgba(48, 67, 84, 0.72);
	font-size: 0.98rem;
	font-weight: 750;
	text-shadow: none;
}

.news-page-head__breadcrumb a {
	color: var(--yc-ink);
}

.news-page-head__breadcrumb a::after {
	color: rgba(48, 67, 84, 0.34);
}

.news-page-head__breadcrumb span {
	color: rgba(48, 67, 84, 0.68);
}

.news-detail-head .news-page-head__inner h1 {
	max-width: 860px;
	font-size: clamp(1.55rem, 2.35vw, 2.55rem);
	line-height: 1.14;
}

.news-overview {
	min-height: 0;
	padding: clamp(54px, 5.8vw, 86px) 0;
	background: #ffffff;
}

.news-overview__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.66fr);
	gap: clamp(30px, 4.6vw, 72px);
	align-items: center;
}

.news-overview__content h2,
.news-support__panel h2 {
	color: var(--yc-blue);
}

.news-overview__content p,
.news-support__panel p {
	max-width: 760px;
	margin-bottom: 16px;
	color: rgba(48, 67, 84, 0.75);
	font-size: 0.98rem;
	font-weight: 540;
	line-height: 1.74;
}

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

.news-overview__topics a {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 14px;
	align-items: center;
	min-height: 92px;
	padding: 18px;
	border: 1px solid rgba(48, 67, 84, 0.1);
	border-radius: 8px;
	background: #f7f9fc;
	box-shadow: 0 18px 40px rgba(8, 17, 29, 0.06);
}

.news-overview__topics span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 8px;
	background: var(--yc-blue);
	color: #ffffff;
	font-size: 0.86rem;
	font-weight: 900;
}

.news-overview__topics strong {
	color: var(--yc-ink);
	font-size: 0.96rem;
	line-height: 1.35;
}

.news-articles {
	min-height: 0;
	padding: 28px 0 clamp(72px, 7.5vw, 112px);
	background: #f6f8fb;
}

.news-articles .split-head {
	align-items: end;
	margin-bottom: 26px;
}

.news-page .news-articles .split-head h2 {
	color: var(--yc-ink);
	font-size: clamp(1.85rem, 2.8vw, 2.85rem);
}

.news-articles .split-head p {
	max-width: 430px;
	color: rgba(48, 67, 84, 0.7);
	font-size: 0.92rem;
	font-weight: 650;
	line-height: 1.55;
}

.news-articles__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
	gap: clamp(24px, 3.6vw, 56px);
	align-items: start;
}

.news-article-list {
	display: grid;
	gap: 16px;
}

.news-article-card {
	display: grid;
	grid-template-columns: minmax(220px, 0.3fr) minmax(0, 0.7fr);
	gap: 0;
	overflow: hidden;
	border: 1px solid rgba(48, 67, 84, 0.1);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 24px 58px rgba(8, 17, 29, 0.08);
}

.news-article-card figure {
	height: 220px;
	min-height: 0;
	margin: 0;
	overflow: hidden;
	background: #e6ebf1;
}

.news-article-card figure a {
	display: block;
	height: 100%;
}

.news-article-card img {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
}

.news-article-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(22px, 2.6vw, 34px);
}

.news-article-card__body h3 {
	margin: 0 0 12px;
	color: var(--yc-ink);
	font-size: clamp(1.08rem, 1.32vw, 1.48rem);
	line-height: 1.2;
}

.news-article-card__body p {
	max-width: 920px;
	margin-bottom: 16px;
	color: rgba(48, 67, 84, 0.74);
	font-size: 0.92rem;
	font-weight: 520;
	line-height: 1.68;
}

.news-article-card__lead {
	color: var(--yc-blue);
	font-weight: 760;
}

.news-hot-sidebar {
	position: sticky;
	top: 108px;
	padding: 20px;
	border: 1px solid rgba(48, 67, 84, 0.1);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(8, 17, 29, 0.06);
}

.news-hot-sidebar h2 {
	margin-bottom: 16px;
	color: var(--yc-ink);
	font-size: 1.12rem;
	line-height: 1.22;
}

.news-hot-list {
	display: grid;
	gap: 14px;
}

.news-hot-card {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	column-gap: 12px;
	row-gap: 5px;
	align-items: start;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(48, 67, 84, 0.1);
}

.news-hot-card:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.news-hot-card img {
	grid-row: span 2;
	width: 92px;
	height: 68px;
	border-radius: 6px;
	object-fit: cover;
	background: #e6ebf1;
}

.news-hot-card span {
	color: var(--yc-red);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
}

.news-hot-card strong {
	color: var(--yc-ink);
	font-size: 0.88rem;
	line-height: 1.32;
	transition: color var(--yc-transition);
}

.news-hot-card:hover strong,
.news-hot-card:focus-visible strong {
	color: var(--yc-blue);
}

.news-support {
	min-height: 0;
	padding: clamp(58px, 6vw, 92px) 0;
	background: #ffffff;
}

.news-support__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	padding: clamp(28px, 4vw, 52px);
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(48, 67, 84, 0.06), rgba(227, 52, 47, 0.06));
}

.news-detail-page {
	background: #f6f8fb;
	color: var(--yc-text);
}

.news-detail-content {
	min-height: 0;
	padding: 28px 0 clamp(66px, 7vw, 108px);
	background: #f6f8fb;
}

.news-detail-content__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.36fr);
	gap: clamp(28px, 4vw, 62px);
	align-items: start;
}

.news-detail-article {
	padding: clamp(28px, 4vw, 58px);
	border: 1px solid rgba(48, 67, 84, 0.1);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 24px 58px rgba(8, 17, 29, 0.08);
}

.news-detail-article h2 {
	margin: 0 0 18px;
	color: var(--yc-ink);
	font-size: clamp(1.45rem, 2vw, 2.2rem);
	line-height: 1.18;
}

.news-detail-article p {
	margin-bottom: 16px;
	color: rgba(48, 67, 84, 0.76);
	font-size: 1rem;
	font-weight: 520;
	line-height: 1.82;
}

.news-detail-article__lead {
	color: var(--yc-ink);
	font-size: 1.08rem;
	font-weight: 760;
	line-height: 1.7;
}

.news-detail-rich-content {
	color: rgba(48, 67, 84, 0.76);
	font-size: 1rem;
	font-weight: 520;
	line-height: 1.82;
}

.news-detail-rich-content > *:first-child {
	margin-top: 0;
}

.news-detail-rich-content > *:last-child {
	margin-bottom: 0;
}

.news-detail-rich-content h1,
.news-detail-rich-content h2,
.news-detail-rich-content h3,
.news-detail-rich-content h4,
.news-detail-rich-content h5,
.news-detail-rich-content h6 {
	margin: 30px 0 14px;
	color: var(--yc-ink);
	line-height: 1.22;
}

.news-detail-rich-content h1 {
	font-size: clamp(1.55rem, 2.3vw, 2.4rem);
}

.news-detail-rich-content h2 {
	font-size: clamp(1.36rem, 1.9vw, 2rem);
}

.news-detail-rich-content h3 {
	font-size: clamp(1.16rem, 1.45vw, 1.55rem);
}

.news-detail-rich-content h4,
.news-detail-rich-content h5,
.news-detail-rich-content h6 {
	font-size: 1.05rem;
}

.news-detail-rich-content p,
.news-detail-rich-content ul,
.news-detail-rich-content ol,
.news-detail-rich-content figure {
	margin-bottom: 18px;
}

.news-detail-rich-content ul,
.news-detail-rich-content ol {
	padding-left: 1.3em;
}

.news-detail-rich-content li + li {
	margin-top: 8px;
}

.news-detail-rich-content a:not(.wp-block-button__link) {
	color: var(--yc-blue);
	font-weight: 820;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-decoration-color: rgba(227, 52, 47, 0.34);
	text-underline-offset: 0.2em;
	text-decoration-skip-ink: auto;
	overflow-wrap: anywhere;
	background: linear-gradient(180deg, transparent 58%, rgba(227, 52, 47, 0.1) 58%);
	transition: color var(--yc-transition), background var(--yc-transition), text-decoration-color var(--yc-transition);
}

.news-detail-rich-content a:not(.wp-block-button__link):hover,
.news-detail-rich-content a:not(.wp-block-button__link):focus-visible {
	color: var(--yc-red-dark);
	text-decoration-color: currentColor;
	background: linear-gradient(180deg, transparent 48%, rgba(227, 52, 47, 0.18) 48%);
}

.news-detail-rich-content a:not(.wp-block-button__link):focus-visible {
	outline: 2px solid var(--yc-red);
	outline-offset: 3px;
}

.news-detail-rich-content img {
	width: auto;
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 18px 42px rgba(8, 17, 29, 0.08);
}

.news-detail-rich-content figure {
	margin-top: 28px;
	margin-bottom: 28px;
}

.news-detail-rich-content figcaption {
	margin-top: 10px;
	color: rgba(48, 67, 84, 0.6);
	font-size: 0.85rem;
	font-weight: 650;
	line-height: 1.45;
}

.news-detail-rich-content .has-text-align-left {
	text-align: left;
}

.news-detail-rich-content .has-text-align-center,
.news-detail-rich-content .aligncenter {
	text-align: center;
}

.news-detail-rich-content .has-text-align-right {
	text-align: right;
}

.news-detail-rich-content .has-text-align-justify {
	text-align: justify;
}

.news-detail-rich-content .aligncenter,
.news-detail-rich-content figure.aligncenter,
.news-detail-rich-content img.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.news-detail-rich-content figure.aligncenter {
	text-align: center;
}

.news-detail-rich-content .alignleft,
.news-detail-rich-content figure.alignleft,
.news-detail-rich-content img.alignleft {
	float: left;
	max-width: min(44%, 360px);
	margin: 6px 24px 16px 0;
}

.news-detail-rich-content .alignright,
.news-detail-rich-content figure.alignright,
.news-detail-rich-content img.alignright {
	float: right;
	max-width: min(44%, 360px);
	margin: 6px 0 16px 24px;
}

.news-detail-rich-content::after {
	content: "";
	display: block;
	clear: both;
}

.news-detail-rich-content .wp-block-image {
	text-align: inherit;
}

.news-detail-rich-content .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	border-radius: 8px;
	background: var(--yc-blue);
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 12px 24px rgba(227, 52, 47, 0.18);
}

.news-detail-rich-content .wp-block-button__link:hover,
.news-detail-rich-content .wp-block-button__link:focus-visible {
	color: #ffffff;
	background: var(--yc-red-dark);
}

.news-detail-article__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
	padding-top: 24px;
	border-top: 1px solid rgba(48, 67, 84, 0.1);
}

.news-detail-sidebar {
	position: sticky;
	top: 96px;
	padding: 22px;
	border: 1px solid rgba(48, 67, 84, 0.1);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(8, 17, 29, 0.06);
}

.news-detail-sidebar h2 {
	margin-bottom: 16px;
	color: var(--yc-ink);
	font-size: 1.15rem;
}

.news-detail-related {
	display: grid;
	gap: 10px;
	padding: 0 0 18px;
	border-bottom: 1px solid rgba(48, 67, 84, 0.1);
}

.news-detail-related:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.news-detail-related img {
	width: 100%;
	aspect-ratio: 16 / 10;
	border-radius: 8px;
	object-fit: cover;
}

.news-detail-related span {
	color: var(--yc-red);
	font-size: 0.74rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.news-detail-related strong {
	color: var(--yc-ink);
	font-size: 0.96rem;
	line-height: 1.35;
}

.contact-page {
	background: #f6f8fb;
	color: var(--yc-text);
}

.contact-hero .about-hero__bg::after {
	background:
		linear-gradient(90deg, rgba(5, 11, 19, 0.78) 0%, rgba(5, 11, 19, 0.46) 48%, rgba(5, 11, 19, 0.12) 100%),
		linear-gradient(0deg, rgba(5, 11, 19, 0.32), rgba(5, 11, 19, 0.02) 58%);
}

.contact-hero .about-hero__bg img {
	object-position: center 54%;
}

.contact-overview {
	min-height: 0;
	padding: clamp(50px, 5vw, 76px) 0;
	background: #ffffff;
}

.contact-overview__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.54fr);
	gap: clamp(30px, 4vw, 60px);
	align-items: center;
}

.contact-overview__content h2 {
	color: var(--yc-blue);
}

.contact-overview__content p {
	max-width: 780px;
	margin-bottom: 16px;
	color: rgba(48, 67, 84, 0.76);
	font-size: clamp(1rem, 1.08vw, 1.12rem);
	font-weight: 550;
	line-height: 1.78;
}

.contact-overview__panel {
	position: relative;
	display: grid;
	gap: 16px;
	min-height: 0;
	padding: clamp(24px, 2.5vw, 34px);
	overflow: hidden;
	border: 1px solid rgba(227, 52, 47, 0.14);
	border-left: 4px solid var(--yc-blue);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(227, 52, 47, 0.07), transparent 42%),
		#ffffff;
	color: var(--yc-ink);
	box-shadow: 0 18px 42px rgba(8, 17, 29, 0.08);
}

.contact-overview__panel::after {
	content: "";
	position: absolute;
	right: -54px;
	bottom: -54px;
	width: 170px;
	height: 170px;
	border: 24px solid rgba(227, 52, 47, 0.055);
	border-radius: 50%;
}

.contact-overview__panel strong {
	position: relative;
	z-index: 1;
	color: var(--yc-ink);
	font-size: clamp(1.35rem, 1.8vw, 2rem);
	line-height: 1.18;
}

.contact-overview__panel span {
	position: relative;
	z-index: 1;
	color: rgba(48, 67, 84, 0.76);
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.6;
}

.contact-overview__lines {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 8px;
}

.contact-overview__lines a {
	color: rgba(48, 67, 84, 0.82);
	font-size: 0.95rem;
	font-weight: 750;
	line-height: 1.45;
}

.contact-overview__lines a:hover,
.contact-overview__lines a:focus-visible {
	color: var(--yc-blue);
}

.contact-overview__panel .contact-overview__cta {
	position: relative;
	z-index: 1;
	align-self: end;
	justify-self: start;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 10px 18px;
	border-radius: 999px;
	background: var(--yc-blue);
	color: #ffffff;
	font-size: 0.92rem;
	font-weight: 900;
}

.contact-inquiry {
	min-height: 0;
	padding: clamp(34px, 3.8vw, 52px) 0;
	background: #f4f8fc;
}

.contact-inquiry__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.56fr);
	gap: clamp(18px, 2vw, 28px);
	align-items: start;
}

.contact-visit-card,
.contact-mini-form {
	overflow: hidden;
	border: 1px solid rgba(28, 39, 52, 0.08);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 44px rgba(8, 17, 29, 0.07);
}

.contact-visit-card {
	position: relative;
	display: block;
	padding: 0;
	border: 1px solid rgba(28, 39, 52, 0.08);
	background: #ffffff;
}

.contact-social {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 18px;
	border-bottom: 1px solid rgba(28, 39, 52, 0.08);
	background: linear-gradient(135deg, rgba(239, 50, 47, 0.08), rgba(255, 255, 255, 0.96) 52%, rgba(244, 248, 252, 0.98));
}

.contact-social__title {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.contact-social__title span {
	color: var(--yc-red);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.contact-social__title strong {
	color: var(--yc-ink);
	font-size: clamp(1rem, 1.2vw, 1.16rem);
	font-weight: 900;
	letter-spacing: 0;
}

.contact-social__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.contact-social__links a {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid rgba(239, 50, 47, 0.16);
	border-radius: 999px;
	background: #ffffff;
	color: var(--yc-red);
	box-shadow: 0 10px 22px rgba(239, 50, 47, 0.1);
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.contact-social__links a:hover,
.contact-social__links a:focus-visible {
	background: var(--yc-red);
	color: #ffffff;
	box-shadow: 0 14px 26px rgba(239, 50, 47, 0.22);
	transform: translateY(-2px);
	outline: none;
}

.contact-social__links svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
	stroke: none;
}

.contact-visit-card img {
	display: block;
	width: 100%;
	height: var(--contact-image-height, clamp(360px, 24vw, 470px));
	min-height: 0;
	object-fit: cover;
	object-position: right 35%;
}

.contact-mini-form {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 10px;
	padding: clamp(16px, 1.8vw, 24px);
	align-content: start;
}

.contact-mini-form__head {
	grid-column: 1 / -1;
	margin-bottom: 4px;
}

.contact-mini-form__head span {
	display: block;
	margin-bottom: 5px;
	color: var(--yc-blue);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.contact-mini-form__head h2 {
	margin: 0;
	color: var(--yc-ink);
	font-size: clamp(1.38rem, 1.8vw, 2rem);
	line-height: 1.12;
}

.contact-mini-form__head p {
	margin: 6px 0 0;
	color: rgba(48, 67, 84, 0.74);
	font-size: 0.8rem;
	font-weight: 650;
	line-height: 1.42;
}

.contact-mini-form label {
	display: grid;
	gap: 5px;
	color: rgba(48, 67, 84, 0.7);
	font-size: 0.72rem;
	font-weight: 850;
	text-transform: none;
}

.contact-mini-form input,
.contact-mini-form textarea {
	width: 100%;
	border: 1px solid rgba(28, 39, 52, 0.12);
	border-radius: 6px;
	background: #f8fafc;
	color: var(--yc-ink);
	font: inherit;
	font-size: 0.84rem;
	font-weight: 650;
	outline: none;
	transition: border-color var(--yc-transition), background var(--yc-transition), box-shadow var(--yc-transition);
}

.contact-mini-form input {
	height: 36px;
	padding: 0 11px;
}

.contact-mini-form textarea {
	min-height: 104px;
	padding: 10px 11px;
	resize: vertical;
}

.contact-mini-form__field--wide {
	grid-column: 1 / -1;
}

.contact-mini-form__turnstile,
.contact-mini-form__status {
	grid-column: 1 / -1;
}

.contact-mini-form__turnstile {
	min-width: 0;
	margin-top: 2px;
}

.contact-mini-form__turnstile .cf-turnstile {
	max-width: 100%;
}

.contact-mini-form__honeypot {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.contact-mini-form__status {
	min-height: 1.4em;
	margin: 2px 0 0;
	color: rgba(48, 67, 84, 0.72);
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.45;
}

.contact-mini-form__status[data-state="success"] {
	color: #167347;
}

.contact-mini-form__status[data-state="error"] {
	color: #b42318;
}

.contact-mini-form input:focus,
.contact-mini-form textarea:focus {
	border-color: rgba(227, 52, 47, 0.38);
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(227, 52, 47, 0.16);
}

.contact-mini-form button {
	grid-column: 1 / -1;
	justify-self: stretch;
	min-height: 40px;
	padding: 0 18px;
	border: 0;
	border-radius: 6px;
	background: var(--yc-blue);
	color: #ffffff;
	font: inherit;
	font-size: 0.8rem;
	font-weight: 900;
	cursor: pointer;
	transition: transform var(--yc-transition), background var(--yc-transition);
}

.contact-mini-form button:hover,
.contact-mini-form button:focus-visible {
	background: #c82723;
	transform: translateY(-2px);
}

.contact-mini-form button:disabled {
	cursor: wait;
	opacity: 0.66;
	transform: none;
}

.side-contact {
	right: 0;
	top: 50%;
	z-index: 80;
	gap: 8px;
	transform: translateY(-50%);
}

.side-contact a,
.side-contact button {
	width: 76px;
	height: 66px;
	padding-left: 10px;
	border-radius: 999px 0 0 999px;
	background: var(--yc-blue);
	box-shadow: 0 14px 30px rgba(227, 52, 47, 0.24);
}

.side-contact a:hover,
.side-contact a:focus-visible,
.side-contact button:hover,
.side-contact button:focus-visible {
	transform: translateX(-2px);
	box-shadow: 0 18px 38px rgba(227, 52, 47, 0.3);
}

.side-contact__icon {
	width: 44px;
	height: 44px;
	flex-basis: 44px;
	background: #ffffff;
	color: var(--yc-blue);
}

.side-contact__icon svg {
	width: 21px;
	height: 21px;
}

.side-contact strong {
	min-width: 188px;
	border-radius: 18px;
	background: rgba(169, 31, 27, 0.95);
	font-size: 0.9rem;
}

.side-contact .side-contact__top {
	height: 0;
	margin-top: -8px;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	background: transparent;
	box-shadow: none;
	pointer-events: none;
	transform: translateX(14px) scale(0.86);
}

.side-contact .side-contact__top.is-visible {
	height: 66px;
	margin-top: 0;
	overflow: visible;
	opacity: 1;
	visibility: visible;
	background: var(--yc-blue);
	box-shadow: 0 14px 30px rgba(227, 52, 47, 0.24);
	pointer-events: auto;
	transform: translateX(0) scale(1);
}

.side-contact .side-contact__top.is-visible:hover,
.side-contact .side-contact__top.is-visible:focus-visible {
	box-shadow: 0 18px 38px rgba(227, 52, 47, 0.3);
	transform: translateX(-2px) scale(1);
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 620ms ease, transform 620ms ease;
	transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.about-page .reveal {
	--about-reveal-x: 0px;
	--about-reveal-y: 42px;
	transform: translate3d(var(--about-reveal-x), var(--about-reveal-y), 0);
	transition:
		opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-page .reveal.is-visible {
	transform: translate3d(0, 0, 0);
}

.about-page .reveal--left {
	--about-reveal-x: -54px;
	--about-reveal-y: 0px;
}

.about-page .reveal--right {
	--about-reveal-x: 54px;
	--about-reveal-y: 0px;
}

.about-page .reveal--up {
	--about-reveal-x: 0px;
	--about-reveal-y: 42px;
}

.about-history__shell.is-visible .about-history__slide.is-active .about-history__media {
	animation: about-split-left 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-history__shell.is-visible .about-history__slide.is-active .about-history__index {
	animation: about-split-right 660ms cubic-bezier(0.22, 1, 0.36, 1) 80ms both;
}

.about-history__shell.is-visible .about-history__slide.is-active h3 {
	animation: about-split-right 660ms cubic-bezier(0.22, 1, 0.36, 1) 150ms both;
}

.about-history__shell.is-visible .about-history__slide.is-active .about-history__body p:last-child {
	animation: about-split-right 660ms cubic-bezier(0.22, 1, 0.36, 1) 220ms both;
}

.about-manufacturing__stack.is-visible .about-manufacturing__card {
	animation: about-split-right 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-manufacturing__stack.is-visible .about-manufacturing__card:nth-child(1) {
	animation-delay: 40ms;
}

.about-manufacturing__stack.is-visible .about-manufacturing__card:nth-child(2) {
	animation-delay: 130ms;
}

.about-manufacturing__stack.is-visible .about-manufacturing__card:nth-child(3) {
	animation-delay: 220ms;
}

.about-culture__shell.is-visible .about-culture__panel {
	animation: about-split-left 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-culture__shell.is-visible .about-culture__panel:nth-child(1) {
	animation-delay: 30ms;
}

.about-culture__shell.is-visible .about-culture__panel:nth-child(2) {
	animation-name: about-split-right;
	animation-delay: 110ms;
}

.about-culture__shell.is-visible .about-culture__panel:nth-child(3) {
	animation-delay: 190ms;
}

.about-certificates__carousel.is-visible .about-certificate-card {
	animation: about-split-up 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-certificates__carousel.is-visible .about-certificate-card:nth-child(1) {
	animation-delay: 30ms;
}

.about-certificates__carousel.is-visible .about-certificate-card:nth-child(2) {
	animation-delay: 100ms;
}

.about-certificates__carousel.is-visible .about-certificate-card:nth-child(3) {
	animation-delay: 170ms;
}

.about-certificates__carousel.is-visible .about-certificate-card:nth-child(4) {
	animation-delay: 240ms;
}

@keyframes about-split-left {
	from {
		opacity: 0;
		transform: translate3d(-34px, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes about-split-right {
	from {
		opacity: 0;
		transform: translate3d(34px, 0, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes about-split-up {
	from {
		opacity: 0;
		transform: translate3d(0, 24px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: var(--scroll-progress, 0%);
	height: 3px;
	background: linear-gradient(90deg, var(--yc-blue), #ff756f);
	pointer-events: none;
}

.site-header {
	backdrop-filter: none;
	border-bottom: 0;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(18px);
}

.site-header__brand {
	border-radius: 8px;
	transition: transform var(--yc-transition), box-shadow var(--yc-transition);
}

.site-header__brand:hover {
	transform: translateY(-2px);
	box-shadow: none;
}

.site-header:not(.is-scrolled):not(.is-menu-open) .site-header__brand:hover {
	box-shadow: none;
}

.site-header__nav > a,
.site-header__nav-link {
	padding-inline: 4px;
	transition: color var(--yc-transition), transform var(--yc-transition);
}

.site-header__nav > a:hover,
.site-header__nav-link:hover {
	transform: translateY(-1px);
}

.hero-screen__bg img {
	transform: translateY(var(--hero-offset, 0px)) scale(1.018);
	transform-origin: center top;
	transition: transform 180ms linear;
	will-change: transform;
}

.section-rule {
	border-radius: 999px;
}

.yc-more span {
	transition: transform var(--yc-transition), background var(--yc-transition);
}

.yc-more:hover span {
	transform: rotate(45deg);
}

.company-screen,
.products-screen,
.applications-screen,
.news-screen {
	position: relative;
}

.screen-section:not(.hero-screen) {
	min-height: 0;
}

.company-screen,
.applications-screen {
	min-height: 0;
	padding: clamp(84px, 10vh, 120px) 0;
}

.company-screen__grid,
.applications-screen__layout,
.advantage-screen .page-frame {
	min-height: 0;
}

.advantage-screen {
	min-height: 0;
	padding: 110px 0 88px;
}

.company-screen::after,
.products-screen::after,
.news-screen::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 90px;
	pointer-events: none;
	background: linear-gradient(174deg, transparent 0 54%, rgba(48, 67, 84, 0.035) 54.4% 55.2%, transparent 56% 100%);
}

.company-screen__image,
.application-showcase__hero,
.news-card,
.product-tile {
	border-radius: 8px;
}

.company-screen__image,
.application-showcase__hero {
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
}

.company-screen__image {
	clip-path: none;
	box-shadow: none;
	transition: none;
}

.company-screen__image:hover {
	transform: none;
	box-shadow: none;
}

.company-screen__links a,
.application-links button {
	border-radius: 8px;
}

.company-screen__links a:hover,
.application-links button:hover,
.application-links button.is-active {
	background: rgba(48, 67, 84, 0.045);
}

.products-screen__tabs {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.products-screen__tabs button {
	box-shadow: 0 12px 28px rgba(8, 17, 29, 0.05);
}

.product-tile {
	--lift: 0px;
	--tilt-x: 0deg;
	--tilt-y: 0deg;
	--tilt-shadow-x: 0px;
	--tilt-shadow-y: 22px;
	overflow: hidden;
	transform: perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translateY(var(--lift));
	will-change: transform;
}

.product-tile::before {
	content: "";
	position: absolute;
	top: 0;
	left: 14px;
	right: 14px;
	z-index: 2;
	height: 3px;
	background: linear-gradient(90deg, transparent, rgba(227, 52, 47, 0.88), transparent);
	opacity: 0;
	transform: translateX(-24px);
	transition: opacity var(--yc-transition), transform var(--yc-transition);
}

.product-tile:hover {
	--lift: -14px;
	transform: perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translateY(var(--lift)) scale(1.018);
}

.product-tile:hover::before {
	opacity: 1;
	transform: translateX(0);
}

.product-tile.is-tilting {
	box-shadow: var(--tilt-shadow-x) var(--tilt-shadow-y) 52px rgba(8, 17, 29, 0.17);
}

.product-tile__image img {
	transition: transform 460ms ease, filter 460ms ease;
}

.product-tile:hover .product-tile__image img {
	transform: translateY(-8px) scale(1.05);
	filter: drop-shadow(0 18px 18px rgba(8, 17, 29, 0.16));
}

.product-tile__body em {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.product-tile__body em::after {
	content: "";
	width: 18px;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--yc-transition);
}

.product-tile:hover .product-tile__body em::after {
	transform: scaleX(1);
}

.advantage-grid {
	overflow: visible;
	border-radius: 0;
	box-shadow: none;
}

.advantage-card {
	box-shadow: none;
	transition: transform var(--yc-transition), border-color var(--yc-transition), background var(--yc-transition);
}

.advantage-card:hover {
	transform: translateY(-6px);
	box-shadow: none;
}

.advantage-card:hover .advantage-card__icon {
	transform: translateY(-5px) scale(1.04);
}

.application-showcase__hero,
.application-showcase__rail,
.application-showcase__rail figure,
.news-card__image {
	border-radius: 8px;
}

.application-showcase__hero {
	--tilt-x: 0deg;
	--tilt-y: 0deg;
	transform: perspective(1000px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
	will-change: transform;
}

.application-showcase__rail figure {
	transform-origin: center bottom;
}

.news-card {
	--tilt-x: 0deg;
	--tilt-y: 0deg;
	transform: perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
	will-change: transform;
}

.news-card {
	overflow: hidden;
	transform-origin: center bottom;
}

.news-card:hover {
	transform: perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translateY(-8px);
}

.search .site-header:not(.is-scrolled):not(.is-menu-open) {
	background: rgba(255, 255, 255, 0.98);
	color: var(--yc-ink);
	box-shadow: 0 10px 28px rgba(8, 17, 29, 0.08);
}

.search .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__nav {
	text-shadow: none;
}

.search .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__search {
	border-color: rgba(28, 39, 52, 0.14);
	background: #ffffff;
	color: var(--yc-ink);
	box-shadow: 0 8px 18px rgba(8, 17, 29, 0.06);
}

.search .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__search input::placeholder {
	color: rgba(48, 67, 84, 0.58);
}

.search-page {
	background: #f5f7fb;
}

.search-page-head {
	padding: 132px 0 42px;
	background:
		linear-gradient(135deg, rgba(227, 52, 47, 0.08), transparent 36%),
		#f6f8fb;
	color: var(--yc-text);
}

.search-page-head__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.36fr);
	gap: clamp(24px, 4vw, 64px);
	align-items: end;
}

.search-page-head h1 {
	margin-bottom: 12px;
	color: var(--yc-ink);
	font-size: clamp(2.1rem, 3.6vw, 4rem);
	line-height: 1.08;
}

.search-page-head__breadcrumb {
	color: rgba(48, 67, 84, 0.66);
}

.search-page .search-results {
	padding: 86px 0 110px;
}

.search-results__layout {
	display: grid;
	grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
	gap: 30px;
	align-items: flex-start;
}

.search-results__panel {
	position: sticky;
	top: 112px;
	padding: 28px;
	border: 1px solid rgba(28, 39, 52, 0.08);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 22px 52px rgba(8, 17, 29, 0.08);
}

.search-results__panel h2 {
	margin: 16px 0 18px;
	font-family: var(--yc-serif);
	font-size: clamp(1.8rem, 2.8vw, 2.5rem);
	line-height: 1;
	letter-spacing: 0;
}

.search-results__panel p {
	margin: 16px 0 0;
	color: rgba(48, 67, 84, 0.76);
	line-height: 1.72;
}

.search-results__form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
}

.search-results__form input {
	width: 100%;
	min-width: 0;
	height: 48px;
	border: 1px solid rgba(28, 39, 52, 0.14);
	border-radius: 999px;
	background: #f7f9fc;
	color: var(--yc-ink);
	font: inherit;
	font-size: 0.92rem;
	font-weight: 800;
	padding: 0 18px;
	outline: 0;
}

.search-results__form input:focus {
	border-color: rgba(227, 52, 47, 0.58);
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(227, 52, 47, 0.08);
}

.search-results__form button {
	min-width: 112px;
	height: 48px;
	border: 0;
	border-radius: 999px;
	background: var(--yc-blue);
	color: var(--yc-white);
	font: inherit;
	font-size: 0.88rem;
	font-weight: 900;
}

.search-results__list {
	display: grid;
	gap: 18px;
}

.search-result-card {
	display: grid;
	grid-template-columns: 188px minmax(0, 1fr);
	gap: 24px;
	padding: 18px;
	border: 1px solid rgba(28, 39, 52, 0.08);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 44px rgba(8, 17, 29, 0.07);
	transition: transform var(--yc-transition), box-shadow var(--yc-transition), border-color var(--yc-transition);
}

.search-result-card:hover {
	transform: translateY(-3px);
	border-color: rgba(227, 52, 47, 0.18);
	box-shadow: 0 24px 56px rgba(8, 17, 29, 0.11);
}

.search-result-card__media {
	display: block;
	overflow: hidden;
	min-height: 150px;
	border-radius: 6px;
	background: #eef2f7;
}

.search-result-card__media img {
	width: 100%;
	height: 100%;
	min-height: 150px;
	object-fit: cover;
	transition: transform var(--yc-transition);
}

.search-result-card:hover .search-result-card__media img {
	transform: scale(1.045);
}

.search-result-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-width: 0;
	padding: 6px 4px;
}

.search-result-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-bottom: 12px;
	color: rgba(48, 67, 84, 0.72);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.search-result-card__meta span,
.search-result-card__meta strong {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(28, 95, 154, 0.08);
	color: var(--yc-blue);
	font-weight: 900;
}

.search-result-card__meta strong {
	background: rgba(227, 52, 47, 0.08);
	color: var(--yc-red);
}

.search-result-card h3 {
	margin: 0;
	font-size: clamp(1.25rem, 2vw, 1.78rem);
	line-height: 1.18;
	letter-spacing: 0;
}

.search-result-card h3 a {
	color: var(--yc-ink);
}

.search-result-card h3 a:hover,
.search-result-card h3 a:focus-visible {
	color: var(--yc-red);
}

.search-result-card p {
	margin: 12px 0 18px;
	color: rgba(48, 67, 84, 0.78);
	line-height: 1.72;
}

.search-empty {
	padding: 46px;
	border: 1px solid rgba(28, 39, 52, 0.08);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 44px rgba(8, 17, 29, 0.07);
}

.search-empty h2 {
	margin: 0 0 12px;
	font-family: var(--yc-serif);
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1;
	letter-spacing: 0;
}

.search-empty p {
	max-width: 680px;
	margin: 0 0 22px;
	color: rgba(48, 67, 84, 0.78);
	line-height: 1.72;
}

.privacy-page {
	background: #f5f7fb;
}

.privacy-page-head {
	padding: 132px 0 48px;
	background:
		linear-gradient(135deg, rgba(227, 52, 47, 0.08), transparent 36%),
		#f6f8fb;
	color: var(--yc-text);
}

.privacy-page-head__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.36fr);
	gap: clamp(24px, 4vw, 64px);
	align-items: end;
}

.privacy-page-head h1 {
	margin-bottom: 12px;
	color: var(--yc-ink);
	font-size: clamp(2.1rem, 3.6vw, 4rem);
	line-height: 1.08;
}

.privacy-page-head__breadcrumb {
	color: rgba(48, 67, 84, 0.66);
}

.privacy-content {
	padding: 72px 0 108px;
}

.privacy-content__layout {
	display: grid;
	grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
	gap: 30px;
	align-items: start;
}

.privacy-toc {
	position: sticky;
	top: 112px;
	display: grid;
	gap: 8px;
	padding: 24px;
	border: 1px solid rgba(28, 39, 52, 0.08);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 44px rgba(8, 17, 29, 0.07);
}

.privacy-toc span {
	margin-bottom: 8px;
	color: var(--yc-blue);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.privacy-toc a {
	padding: 8px 0;
	border-bottom: 1px solid rgba(28, 39, 52, 0.08);
	color: rgba(48, 67, 84, 0.78);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.35;
	transition: color var(--yc-transition);
}

.privacy-toc a:last-child {
	border-bottom: 0;
}

.privacy-toc a:hover,
.privacy-toc a:focus-visible {
	color: var(--yc-blue);
}

.privacy-article {
	padding: clamp(28px, 3.2vw, 48px);
	border: 1px solid rgba(28, 39, 52, 0.08);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 22px 52px rgba(8, 17, 29, 0.08);
}

.privacy-article__section {
	padding-bottom: 34px;
	margin-bottom: 34px;
	border-bottom: 1px solid rgba(28, 39, 52, 0.08);
	scroll-margin-top: 112px;
}

.privacy-article__section:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}

.privacy-article h2 {
	margin-bottom: 16px;
	color: var(--yc-blue);
	font-size: clamp(1.35rem, 2vw, 2rem);
	line-height: 1.2;
}

.privacy-article p {
	margin-bottom: 16px;
	color: rgba(48, 67, 84, 0.82);
	font-size: 1rem;
	line-height: 1.86;
}

.privacy-article p:last-child {
	margin-bottom: 0;
}

.not-found-page {
	background:
		linear-gradient(135deg, rgba(227, 52, 47, 0.06), transparent 34%),
		#f6f8fb;
}

.not-found-hero {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100svh;
	padding: 138px 0 92px;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 26%, rgba(227, 52, 47, 0.1), transparent 34%),
		linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
	color: var(--yc-text);
}

.not-found-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(780px, 100%);
	text-align: center;
}

.not-found-hero__breadcrumb {
	justify-content: center;
	margin-bottom: 22px;
	color: rgba(48, 67, 84, 0.68);
}

.not-found-hero__breadcrumb a {
	color: var(--yc-blue);
}

.not-found-hero__breadcrumb a::after {
	color: rgba(48, 67, 84, 0.34);
}

.not-found-hero__code {
	margin: 0 0 8px;
	color: var(--yc-blue);
	font-size: clamp(6.5rem, 15vw, 12rem);
	font-weight: 900;
	line-height: 0.86;
	letter-spacing: 0;
}

.not-found-hero h1 {
	margin-bottom: 16px;
	color: var(--yc-ink);
	font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.not-found-hero__text {
	max-width: 640px;
	margin-bottom: 28px;
	color: rgba(48, 67, 84, 0.72);
	font-size: clamp(1rem, 1.18vw, 1.16rem);
	font-weight: 650;
	line-height: 1.76;
}

.not-found-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 34px;
}

.not-found-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	min-height: 48px;
	padding: 0 22px;
	border: 1px solid rgba(28, 39, 52, 0.16);
	border-radius: 999px;
	background: #ffffff;
	color: var(--yc-ink);
	font-size: 0.88rem;
	font-weight: 900;
	text-transform: uppercase;
	box-shadow: 0 12px 30px rgba(8, 17, 29, 0.06);
	transition: transform var(--yc-transition), border-color var(--yc-transition), background var(--yc-transition), color var(--yc-transition);
}

.not-found-actions a:hover,
.not-found-actions a:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(227, 52, 47, 0.28);
	color: var(--yc-blue);
}

.not-found-actions__primary {
	border-color: var(--yc-blue) !important;
	background: var(--yc-blue) !important;
	color: #ffffff !important;
}

.not-found-search {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	width: min(640px, 100%);
	min-height: 60px;
	padding: 6px;
	border: 1px solid rgba(28, 39, 52, 0.1);
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 24px 60px rgba(8, 17, 29, 0.1);
}

.not-found-search span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--yc-blue);
}

.not-found-search svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.not-found-search input {
	width: 100%;
	min-width: 0;
	border: 0;
	background: transparent;
	color: var(--yc-ink);
	font-size: 1rem;
	font-weight: 800;
	outline: 0;
}

.not-found-search button {
	min-width: 112px;
	height: 46px;
	border: 0;
	border-radius: 999px;
	background: var(--yc-blue);
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 900;
}

@media (max-width: 1440px) {
	:root {
		--yc-frame: min(1320px, calc(100% - 56px));
	}

	.site-header__nav {
		gap: 18px;
		font-size: 0.84rem;
	}

	.site-header__search {
		width: 170px;
	}

	.site-header__inquiry {
		padding-inline: 15px;
	}

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

	.advantage-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		grid-auto-rows: 240px;
		min-height: 0;
	}
}

@media (max-width: 1180px) {
	.screen-section {
		min-height: 0;
		padding: 88px 0;
	}

	.site-header__toggle {
		display: block;
		order: 4;
	}

	.site-header__actions {
		order: 3;
		margin-left: auto;
	}

	.site-header__search {
		display: none;
	}

	.site-header__inquiry {
		min-height: 40px;
		padding-inline: 16px;
	}

	.site-header__nav {
		position: absolute;
		top: 100%;
		right: 28px;
		left: 28px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 12px 24px;
		background: var(--yc-white);
		box-shadow: var(--yc-shadow);
		color: var(--yc-ink);
	}

	.site-header__nav.is-open {
		display: flex;
	}

	.site-header__nav > a,
	.site-header__nav-link {
		min-height: 0;
		padding: 16px 0;
		border-bottom: 1px solid var(--yc-line);
	}

	.site-header__nav > a:last-child {
		border-bottom: 0;
	}

	.site-header__nav > a::after,
	.site-header__nav-link::after {
		bottom: 8px;
	}

	.site-header__nav-item {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		min-height: 0;
	}

	.site-header__dropdown {
		position: static;
		display: grid;
		gap: 0;
		min-width: 0;
		padding: 0 0 10px 16px;
		border: 0;
		border-bottom: 1px solid var(--yc-line);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		visibility: visible;
	}

	.site-header__dropdown::before,
	.site-header__dropdown::after {
		display: none;
	}

	.site-header__dropdown a {
		padding: 9px 0;
		border-radius: 0;
		color: rgba(48, 67, 84, 0.74);
		font-size: 0.86rem;
		transform: none;
	}

	.site-header__dropdown a::before,
	.site-header__dropdown a::after {
		display: none;
	}

	.site-header__dropdown a:hover,
	.site-header__dropdown a:focus-visible {
		background: transparent;
		color: var(--yc-red);
	}

	.site-header__nav-item:hover .site-header__nav-caret,
	.site-header__nav-item:focus-within .site-header__nav-caret {
		transform: rotate(45deg);
	}

	.company-screen__grid,
	.applications-screen__layout {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.news-overview__grid,
	.news-articles__layout,
	.news-article-card,
	.news-detail-content__grid,
	.news-support__panel,
	.products-page-head__inner,
	.products-card,
	.products-support__panel,
	.product-detail-content__grid,
	.product-detail-text__grid {
		grid-template-columns: 1fr;
	}

	.news-articles {
		padding-top: 28px;
	}

	.news-hot-sidebar,
	.news-detail-sidebar,
	.product-detail-sidebar {
		position: static;
	}

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

	.products-catalog__layout {
		grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
	}

	.products-list__grid {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}

	.news-article-card figure {
		height: 210px;
	}

	.hero-screen {
		min-height: 520px;
		height: clamp(520px, 47.9167vw, 72svh);
	}

	.hero-screen__slide img,
	.hero-screen__bg img {
		object-position: center center;
	}

	.hero-screen__caption-wrap {
		padding-top: 118px;
	}

	.hero-screen__caption {
		max-width: min(980px, 84vw);
	}

	.company-screen {
		background: var(--yc-white);
	}

	.products-screen {
		padding-top: 36px;
	}

	.company-screen__content,
	.company-screen__media {
		grid-column: auto;
		grid-row: auto;
	}

	.products-screen__head,
	.split-head {
		grid-template-columns: 1fr;
		align-items: start;
	}

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

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

	.certificates-grid,
	.news-grid,
	.site-footer__top {
		grid-template-columns: repeat(2, 1fr);
	}

	.certificates-grid {
		gap: 18px;
	}

	.certificates-carousel {
		padding: 0 64px;
	}

	.certificates-carousel__button {
		width: 52px;
		height: 52px;
	}

	.certificate-card {
		flex-basis: calc((100% - 36px) / 3);
	}

	.about-certificate-card {
		flex-basis: calc((100% - 36px) / 3);
	}

	.certificate-card img {
		width: 100%;
		height: auto;
	}

	.company-screen__links,
	.application-links {
		grid-template-columns: repeat(3, minmax(120px, 1fr));
		max-width: none;
		margin-top: 46px;
	}

	.company-screen__media {
		min-height: 390px;
	}

	.company-screen__image {
		top: 0;
		width: 100%;
		height: 380px;
	}

	.applications-screen__media {
		min-height: 560px;
	}

	.market-screen__head {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.advantage-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 260px;
	}

	.advantage-screen .page-frame {
		grid-template-columns: 1fr;
	}

	.advantage-screen__head {
		grid-template-columns: 1fr;
		max-width: 760px;
	}

	.advantage-card:first-child {
		grid-column: span 2;
		grid-row: span 1;
	}

	.about-hero {
		min-height: 340px;
		padding: 110px 0 48px;
	}

	.about-hero__inner {
		margin-left: auto;
	}

	.about-profile__grid,
	.about-scope__grid,
	.about-history__slide {
		grid-template-columns: 1fr;
	}

	.about-profile__shell {
		padding: 32px 28px;
	}

	.about-profile__content h2 {
		max-width: none;
	}

	.about-profile__numbers {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.about-profile__number {
		padding: 12px 12px 8px;
		border-radius: 14px;
		background: rgba(255, 255, 255, 0.6);
	}

	.about-profile__number + .about-profile__number::before {
		display: none;
	}

	.about-profile__media {
		max-width: min(100%, 760px);
		justify-self: start;
	}

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

	.about-environment__shell,
	.about-environment__grid {
		grid-template-columns: 1fr;
	}

	.about-environment__shell {
		min-height: 0;
	}

	.about-environment__heading {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.about-environment__copy {
		justify-self: start;
	}

	.about-history__head {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.about-manufacturing__head,
	.about-manufacturing__grid,
	.about-culture__head {
		grid-template-columns: 1fr;
	}

	.about-manufacturing__head p,
	.about-culture__head p {
		justify-self: start;
	}

	.about-manufacturing__stack {
		grid-template-rows: none;
	}

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

	.about-culture__shell {
		min-height: auto;
	}

	.about-culture__panel {
		min-height: 280px;
	}

	.about-culture__panel p {
		max-height: 180px;
		opacity: 1;
		transform: translateY(0);
	}

	.about-history__head p {
		justify-self: start;
	}

	.about-history__stage {
		min-height: 0;
	}

	.about-history__slide {
		position: relative;
		inset: auto;
		gap: 24px;
	}

	.about-history__slide:not(.is-active) {
		display: none;
	}

	.about-history__body {
		max-width: none;
	}

	.about-scope {
		background: #f5f7fa;
	}

	.about-profile__media img {
		height: 420px;
	}

	.about-profile__media-caption {
		left: 20px;
		right: 20px;
		bottom: 20px;
		min-height: 88px;
		padding: 16px 18px;
	}

	.about-scope__media {
		min-height: 380px;
	}

	.applications-overview__grid,
	.applications-support__grid,
	.contact-overview__grid,
	.contact-inquiry__grid {
		grid-template-columns: 1fr;
	}

	.contact-social {
		align-items: flex-start;
	}

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

	.applications-detail__grid {
		grid-template-columns: 1fr;
	}

	.application-detail-card,
	.application-detail-card:first-child {
		grid-column: auto;
		grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
	}

}

@media (max-width: 760px) {
	:root {
		--yc-frame: min(100% - 32px, 1600px);
	}

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

	.site-header__inner {
		min-height: 72px;
	}

	.site-header__brand {
		width: 150px;
		height: 62px;
		padding: 1px 8px;
		flex-basis: 150px;
	}

	.site-header__brand img {
		max-width: 136px;
		max-height: 58px;
	}

	.site-header__toggle {
		width: 42px;
		height: 42px;
	}

	.site-header__inquiry {
		min-height: 44px;
		padding-inline: 12px;
		font-size: 0.78rem;
	}

	.hero-screen {
		min-height: 420px;
		height: 62svh;
		padding-top: 0;
	}

	.hero-screen__slide img,
	.hero-screen__bg img {
		object-position: 52% center;
	}

	.hero-screen__caption-wrap {
		align-items: start;
		padding-top: clamp(88px, 16svh, 108px);
	}

	.hero-screen__caption {
		max-width: min(92vw, 620px);
		margin-inline: auto;
	}

	.hero-screen__caption h2 {
		max-width: 620px;
		font-size: clamp(1.32rem, 4.45vw, 1.88rem);
		line-height: 0.98;
		letter-spacing: -0.04em;
	}

	.hero-screen__text {
		gap: 10px;
		margin-top: 10px;
		font-size: 0.98rem;
		letter-spacing: 0.01em;
	}

	.hero-screen__text::before,
	.hero-screen__text::after {
		width: 26px;
	}

	.hero-screen__caption-wrap--certificate {
		padding-top: clamp(96px, 17svh, 116px);
	}

	.hero-screen__caption-wrap--certificate .page-frame {
		padding-inline: 18px;
	}

	.hero-screen__caption--certificate {
		max-width: min(90vw, 300px);
	}

	.hero-screen__caption--certificate h2 {
		max-width: 100%;
		font-size: clamp(1.3rem, 4.8vw, 1.82rem);
		line-height: 0.95;
	}

	.hero-screen__caption--certificate h2 span {
		white-space: normal;
	}

	.hero-screen__caption--certificate .hero-screen__text {
		max-width: 300px;
		margin-top: 16px;
		font-size: 0.74rem;
		line-height: 1.38;
	}

	.hero-screen__caption--certificate .hero-screen__text::before {
		width: 34px;
		height: 3px;
		margin-bottom: 14px;
	}

	.hero-screen__dots {
		gap: 0;
		padding: 2px;
	}

	.hero-screen__dot {
		position: relative;
		width: 44px;
		height: 44px;
		border: 0;
		border-radius: 50%;
		background: transparent;
		box-shadow: none;
		transform: none;
	}

	.hero-screen__dot::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 10px;
		height: 10px;
		border: 1px solid rgba(255, 255, 255, 0.72);
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.34);
		box-shadow: 0 0 0 1px rgba(18, 35, 52, 0.08);
		transform: translate(-50%, -50%);
		transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
	}

	.hero-screen__dot:hover,
	.hero-screen__dot:focus-visible,
	.hero-screen__dot.is-active {
		border-color: transparent;
		background: transparent;
		transform: none;
	}

	.hero-screen__dot:hover::before,
	.hero-screen__dot:focus-visible::before {
		background: rgba(255, 255, 255, 0.62);
		border-color: rgba(255, 255, 255, 0.9);
	}

	.hero-screen__dot.is-active::before {
		background: #ef3b2d;
		border-color: #ef3b2d;
		transform: translate(-50%, -50%) scale(1.15);
	}

	.hero-screen__dot:focus-visible {
		outline: 2px solid #ffffff;
		outline-offset: -4px;
	}

	h1 {
		font-size: 2.55rem;
	}

	h2 {
		font-size: 2.05rem;
	}

	.company-screen__links,
	.application-links,
	.certificates-grid,
	.news-grid,
	.site-footer__top,
	.product-strip {
		grid-template-columns: 1fr;
	}

	.news-card a {
		grid-template-columns: 1fr;
	}

	.news-card__image {
		height: 190px;
		min-height: 0;
	}

	.company-screen__links {
		display: grid;
	}

	.company-screen__links a {
		width: 100%;
		grid-template-columns: 62px 1fr;
		align-items: center;
		justify-items: start;
		text-align: left;
	}

	.lodxy-home .company-screen,
	.lodxy-home .applications-screen,
	.lodxy-home .advantage-screen {
		min-height: 0;
		padding: 72px 0 56px;
	}

	.lodxy-home .company-screen__links,
	.lodxy-home .application-links {
		gap: 12px;
		margin-top: 32px;
	}

	.lodxy-home .applications-screen {
		background: #ffffff;
	}

	.lodxy-home .applications-screen__blueprint {
		display: none;
	}

	.lodxy-home .applications-screen__content p {
		font-size: 1rem;
		line-height: 1.72;
	}

	.lodxy-home .applications-screen .yc-more--round {
		margin-top: 26px;
	}

	.lodxy-home .application-links {
		display: flex;
		max-width: none;
		margin: 28px -16px 0;
		padding: 2px 16px 12px;
		overflow-x: auto;
		scroll-snap-type: x proximity;
		scrollbar-width: none;
	}

	.lodxy-home .application-links::-webkit-scrollbar {
		display: none;
	}

	.lodxy-home .application-links button {
		flex: 0 0 min(76vw, 286px);
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 12px;
		align-items: center;
		justify-items: start;
		min-height: 68px;
		padding: 11px 14px;
		border: 1px solid rgba(48, 67, 84, 0.14);
		background: #ffffff;
		box-shadow: 0 8px 20px rgba(8, 17, 29, 0.05);
		text-align: left;
		scroll-snap-align: start;
	}

	.lodxy-home .application-links button.is-active {
		border-color: rgba(227, 52, 47, 0.34);
		background: rgba(227, 52, 47, 0.06);
		box-shadow: 0 10px 24px rgba(227, 52, 47, 0.1);
		transform: none;
	}

	.lodxy-home .application-links span {
		width: 44px;
		height: 44px;
		font-size: 0.76rem;
	}

	.lodxy-home .application-links strong {
		font-size: 0.94rem;
		line-height: 1.35;
	}

	.lodxy-home .applications-screen__media {
		min-height: 0;
	}

	.company-screen__media,
	.applications-screen__media {
		min-height: 330px;
	}

	.applications-screen__media {
		padding-right: 0;
	}

	.market-screen {
		padding: 52px 0 44px;
	}

	.market-screen__head {
		margin-bottom: 16px;
	}

	.market-map {
		width: calc(100% - 28px);
		padding: 0;
		border-radius: 0;
	}

	.market-map__canvas {
		min-height: 320px;
	}

	.market-map__canvas svg {
		width: 100%;
		height: 320px;
		max-width: none;
	}

	.market-map__base {
		left: auto;
		right: 12px;
		top: auto;
		bottom: 14px;
		min-width: 138px;
		padding: 10px 12px 10px 15px;
		transform: none;
	}

	.market-map__base::before {
		left: -7px;
		width: 10px;
		height: 10px;
		border-width: 2px;
		box-shadow: 0 0 0 4px rgba(227, 52, 47, 0.11);
	}

	.market-map.is-active .market-map__base {
		transform: translateY(-4px);
	}

	.company-screen__image {
		position: relative;
		top: auto;
		height: 300px;
	}

	.company-screen__image img {
		width: 100%;
		object-position: 52% top;
		transform: none;
	}

	.application-showcase,
	.application-showcase__hero,
	.application-showcase__rail {
		position: relative;
		inset: auto;
		width: 100%;
	}

	.application-showcase {
		padding: 0;
	}

	.application-showcase::before {
		right: 0;
		left: 0;
		width: auto;
	}

	.application-showcase__hero {
		height: clamp(230px, 62vw, 280px);
	}

	.application-showcase__hero figcaption {
		right: 20px;
		bottom: 18px;
		left: 20px;
	}

	.application-showcase figcaption strong {
		font-size: 1.12rem;
	}

	.application-showcase figcaption span {
		margin-top: 6px;
		font-size: 0.78rem;
		line-height: 1.45;
		-webkit-line-clamp: 2;
	}

	.application-showcase__rail {
		display: flex;
		grid-template-columns: none;
		gap: 12px;
		justify-self: stretch;
		margin-right: 0;
		margin-top: 14px;
		padding: 10px 0 12px;
		overflow-x: auto;
		scroll-snap-type: x proximity;
		scrollbar-width: thin;
	}

	.application-showcase__rail figure {
		flex: 0 0 min(64vw, 220px);
		min-height: 132px;
		scroll-snap-align: start;
	}

	.side-contact {
		gap: 8px;
	}

	.side-contact a,
	.side-contact button,
	.side-contact .side-contact__top.is-visible {
		width: 54px;
		height: 54px;
		padding-left: 6px;
		border-radius: 28px 0 0 28px;
	}

	.side-contact__icon {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.products-screen__word {
		display: none;
	}

	.products-screen__stage {
		padding-top: 12px;
	}

	.news-grid {
		grid-template-columns: 1fr;
	}

	.news-page-head {
		padding: 108px 0 24px;
	}

	.news-page-head__inner h1 {
		font-size: clamp(1.85rem, 8vw, 2.65rem);
	}

	.news-detail-head .news-page-head__inner h1 {
		font-size: clamp(1.35rem, 6.2vw, 1.95rem);
	}

	.news-articles {
		padding-top: 24px;
	}

	.news-overview__topics {
		grid-template-columns: 1fr;
	}

	.news-article-card__body {
		padding: 24px;
	}

	.news-hot-sidebar {
		padding: 18px;
	}

	.news-hot-card {
		grid-template-columns: 84px minmax(0, 1fr);
	}

	.news-hot-card img {
		width: 84px;
		height: 62px;
	}

	.news-detail-article {
		padding: 26px 22px;
	}

	.news-detail-rich-content .alignleft,
	.news-detail-rich-content figure.alignleft,
	.news-detail-rich-content img.alignleft,
	.news-detail-rich-content .alignright,
	.news-detail-rich-content figure.alignright,
	.news-detail-rich-content img.alignright {
		float: none;
		max-width: 100%;
		margin: 22px 0;
	}

	.news-detail-article__actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.news-article-card figure {
		height: 190px;
	}

	.news-support__panel {
		padding: 26px 22px;
	}

	.products-screen__tabs {
		display: flex;
		gap: 10px;
		margin-right: -16px;
		margin-left: -16px;
		padding: 2px 16px 10px;
		overflow-x: auto;
		scroll-snap-type: x proximity;
		scrollbar-width: none;
	}

	.products-screen__tabs::-webkit-scrollbar {
		display: none;
	}

	.products-screen__tabs button {
		min-width: 220px;
		min-height: 54px;
		scroll-snap-align: start;
	}

	.product-tile__image {
		height: 300px;
	}

	.product-tile__body {
		grid-template-columns: 1fr;
		padding: 18px 20px 22px;
	}

	.product-tile__body em {
		justify-self: start;
	}

	.certificates-carousel {
		padding: 0 48px;
	}

	.certificates-carousel__button {
		width: 44px;
		height: 44px;
	}

	.certificates-carousel__button::before {
		width: 11px;
		height: 11px;
		border-top-width: 2px;
		border-right-width: 2px;
	}

	.certificate-card {
		--cert-offset: 0px;
		justify-self: center;
		flex-basis: 100%;
	}

	.about-certificates__carousel {
		padding: 0 48px;
	}

	.about-certificate-card {
		flex-basis: 100%;
	}

	.certificate-card img {
		height: auto;
		width: 100%;
	}

	.advantage-grid {
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
		min-height: 0;
	}

	.advantage-card:first-child,
	.advantage-card:last-child {
		grid-column: auto;
		grid-row: auto;
	}

	.advantage-card {
		min-height: 320px;
	}

	.advantage-card__body {
		padding: 24px;
	}

	.news-card__image {
		min-height: 260px;
	}

	.about-hero {
		min-height: 280px;
		padding: 108px 0 42px;
	}

	.about-page .about-hero {
		height: 280px;
		min-height: 280px;
	}

	.about-page .about-hero__bg img {
		object-position: center top;
	}

	.about-hero h1 {
		font-size: 2.35rem;
	}

	.about-profile,
	.about-history,
	.about-manufacturing,
	.about-culture,
	.about-environment,
	.about-scope,
	.about-certificates {
		padding: 56px 0;
	}

	.about-list-grid,
	.about-certificate-strip {
		grid-template-columns: 1fr;
	}

	.about-environment__grid {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.about-environment__card {
		aspect-ratio: 16 / 10;
	}

	.about-environment__shell {
		padding: 24px 20px;
	}

	.about-environment__heading {
		gap: 20px;
		padding: 0;
	}

	.about-environment__copy,
	.about-environment__copy p {
		max-width: none;
	}

	.about-environment__heading h2 {
		max-width: none;
		font-size: clamp(1.7rem, 7.8vw, 2.6rem);
	}

	.about-profile__shell {
		padding: 26px 20px;
		border-radius: 28px;
	}

	.about-profile__eyebrow {
		margin-bottom: 14px;
		padding: 7px 12px;
		font-size: 0.74rem;
	}

	.about-profile__content h2 {
		font-size: clamp(2rem, 8vw, 2.8rem);
	}

	.about-profile__numbers {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.about-profile__number {
		padding: 12px 0 8px;
		border-radius: 0;
		background: transparent;
	}

	.about-profile__number + .about-profile__number {
		border-top: 1px solid rgba(0, 102, 179, 0.1);
	}

	.about-profile__media img {
		height: 270px;
	}

	.about-profile__media {
		border-radius: 24px;
	}

	.about-profile__media-caption {
		left: 16px;
		right: 16px;
		bottom: 16px;
		min-height: 76px;
		padding: 16px 16px;
	}

	.about-history__shell {
		padding: 24px 20px;
		border-radius: 24px;
		background:
			radial-gradient(circle at top left, rgba(227, 52, 47, 0.08), rgba(227, 52, 47, 0) 34%),
			linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	}

	.about-history__head {
		margin-bottom: 18px;
	}

	.about-history__media {
		border-radius: 20px;
	}

	.about-history__media img {
		height: 230px;
	}

	.about-manufacturing__head {
		margin-bottom: 20px;
	}

	.about-manufacturing__media {
		border-radius: 20px;
	}

	.about-manufacturing__media img {
		min-height: 0;
	}

	.about-manufacturing__stack {
		gap: 12px;
	}

	.about-manufacturing__card {
		padding: 22px 20px 22px 22px;
		border-radius: 18px;
	}

	.about-manufacturing__card::after {
		width: 8px;
		border-radius: 0 18px 18px 0;
	}

	.about-manufacturing__card.is-active::before {
		display: none;
	}

	.about-culture__head {
		margin-bottom: 18px;
	}

	.about-culture__panel {
		min-height: 220px;
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.14);
	}

	.about-culture__grid {
		grid-template-columns: 1fr;
	}

	.about-culture__panel:first-child {
		border-top: 0;
	}

	.about-culture__content {
		width: min(100%, 280px);
	}

	.about-culture__icon {
		width: 56px;
		height: 56px;
	}

	.about-history__index {
		font-size: clamp(3.3rem, 18vw, 5.2rem);
	}

	.about-history__body h3 {
		font-size: clamp(1.35rem, 6vw, 1.85rem);
	}

	.about-history__footer {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
		margin-top: 22px;
	}

	.about-history__nav {
		width: 100%;
		height: 46px;
	}

	.about-history__points {
		grid-column: 1 / -1;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px 10px;
	}

	.about-history__points::before {
		display: none;
	}

	.about-history__point {
		gap: 10px;
		padding: 10px 8px;
		border: 1px solid rgba(48, 67, 84, 0.08);
		border-radius: 14px;
		background: #f7f9fb;
	}

	.about-history__point.is-active {
		border-color: rgba(227, 52, 47, 0.22);
		background: rgba(227, 52, 47, 0.06);
	}

	.about-scope__media {
		min-height: 270px;
	}

	.about-list-grid > div {
		padding: 22px;
	}

	.applications-overview,
	.applications-detail,
	.applications-support,
	.products-catalog,
	.product-detail-content,
	.product-detail-text,
	.contact-overview,
	.contact-inquiry {
		padding: 56px 0;
	}

	.applications-overview__list,
	.applications-detail__grid,
	.products-catalog__layout,
	.products-catalog__head,
	.product-detail-content__grid,
	.product-detail-text__grid,
	.application-detail-card,
	.application-detail-card:first-child {
		grid-template-columns: 1fr;
	}

	.product-detail-gallery__controls {
		grid-template-columns: 34px minmax(0, 1fr) 34px;
		gap: 8px;
	}

	.product-detail-gallery__thumbs {
		gap: 8px;
	}

	.product-detail-gallery__thumb {
		flex-basis: calc((100% - 24px) / 4);
	}

	.product-detail-gallery__arrow {
		width: 34px;
		height: 34px;
	}

	.applications-overview__list a {
		min-height: 66px;
		padding: 14px 16px;
	}

	.application-detail-card figure {
		min-height: 220px;
	}

	.application-detail-card__body {
		padding: 24px 22px 28px;
	}

	.applications-support__media {
		min-height: 270px;
	}

	.products-page-head {
		padding: 108px 0 30px;
	}

	.products-page-head__inner {
		gap: 16px;
	}

	.products-page-head__inner h1 {
		font-size: clamp(1.85rem, 8vw, 2.65rem);
	}

	.products-sidebar {
		position: static;
		grid-column: auto;
		grid-row: auto;
		margin-top: 0;
		padding: 16px;
	}

	.products-sidebar.is-fixed,
	.products-sidebar.is-locked {
		position: static;
		width: auto;
		max-height: none;
		overflow: visible;
	}

	.products-sidebar__nav {
		grid-template-columns: 1fr;
	}

	.products-catalog__main {
		grid-column: auto;
		grid-row: auto;
	}

	.products-card__media {
		aspect-ratio: 1 / 1;
		height: auto;
		min-height: 0;
	}

	.products-pagination {
		align-items: flex-start;
		flex-direction: column;
	}

	.products-pagination__links {
		justify-content: flex-start;
	}

	.product-detail-gallery {
		aspect-ratio: 1 / 1;
		height: auto;
		min-height: 0;
	}

	.product-detail-gallery img {
		padding: 0;
	}

	.product-detail-main,
	.product-detail-article,
	.product-detail-sidebar {
		padding: 24px 22px;
	}

	.product-detail-actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.products-card__body {
		padding: 18px;
	}

	.products-support {
		padding-bottom: 56px;
	}

	.products-support__panel {
		padding: 26px 22px;
	}

	.contact-overview__panel {
		min-height: 0;
	}

	.contact-inquiry__grid {
		grid-template-columns: 1fr;
	}

	.contact-social {
		flex-direction: column;
		gap: 12px;
		padding: 15px 16px;
	}

	.contact-social__links {
		justify-content: flex-start;
	}

	.contact-social__links a {
		width: 36px;
		height: 36px;
	}

	.contact-mini-form {
		grid-template-columns: 1fr;
		padding: 24px 20px;
	}

	.contact-mini-form button {
		grid-column: 1;
		justify-self: start;
	}

	.contact-visit-card img {
		height: 240px;
	}

	.side-contact {
		right: 10px;
		gap: 5px;
	}

	.side-contact a,
	.side-contact button {
		width: 48px;
		height: 48px;
		border-radius: 16px;
		padding-left: 8px;
	}

	.side-contact a:hover,
	.side-contact a:focus-visible,
	.side-contact button:hover,
	.side-contact button:focus-visible {
		width: 48px;
		transform: none;
	}

	.side-contact__top {
		height: 0;
		margin-top: -6px;
		transform: translateX(10px) scale(0.86);
	}

	.side-contact__top.is-visible {
		height: 48px;
		margin-top: 0;
		transform: none;
	}

	.side-contact__top.is-visible:hover,
	.side-contact__top.is-visible:focus-visible {
		transform: none;
	}

	.side-contact__icon {
		width: 32px;
		height: 32px;
		flex-basis: 32px;
	}

	.side-contact__icon svg {
		width: 18px;
		height: 18px;
	}

	.side-contact strong {
		display: none;
	}
}

@media (max-width: 1180px) {
	.privacy-page-head__inner,
	.privacy-content__layout {
		grid-template-columns: 1fr;
	}

	.privacy-toc {
		position: static;
	}

	.search-page-head__inner {
		grid-template-columns: 1fr;
	}

	.search-results__layout {
		grid-template-columns: 1fr;
	}

	.search-results__panel {
		position: static;
	}

	.not-found-hero {
		padding-top: 128px;
	}
}

@media (max-width: 760px) {
	.site-footer {
		background: #05070a;
	}

	.site-footer__top {
		display: block;
		padding: 44px 0 26px;
	}

	.site-footer__brand {
		max-width: 520px;
	}

	.site-footer__brand img {
		width: 178px;
		margin-bottom: 20px;
	}

	.site-footer__brand p {
		margin-bottom: 10px;
		font-size: 1.04rem;
		line-height: 1.4;
	}

	.site-footer__brand span {
		max-width: 520px;
		color: rgba(255, 255, 255, 0.68);
		font-size: 0.86rem;
		line-height: 1.7;
	}

	.site-footer__social,
	.site-footer__col:not(.site-footer__contact) {
		display: none;
	}

	.site-footer__contact {
		display: block;
		margin-top: 26px;
		padding-top: 22px;
		border-top: 1px solid rgba(255, 255, 255, 0.16);
	}

	.site-footer__contact h3 {
		display: none;
	}

	.site-footer__contact a {
		margin-bottom: 10px;
		color: rgba(255, 255, 255, 0.82);
		font-size: 0.96rem;
		font-weight: 700;
		line-height: 1.5;
	}

	.site-footer__copy {
		padding: 22px 0 calc(22px + env(safe-area-inset-bottom));
		border-top: 1px solid rgba(255, 255, 255, 0.16);
		background: transparent;
	}

	.site-footer__copy .page-frame {
		justify-content: flex-start;
		gap: 4px 14px;
		text-align: left;
	}

	.site-footer__copy span,
	.site-footer__copy a {
		font-size: 0.76rem;
		line-height: 1.5;
	}

	.site-footer__sitemap {
		display: none;
	}

	.privacy-page-head {
		padding: 108px 0 30px;
	}

	.privacy-page-head h1 {
		font-size: clamp(1.85rem, 8vw, 2.65rem);
	}

	.privacy-content {
		padding: 56px 0 76px;
	}

	.privacy-toc,
	.privacy-article {
		padding: 22px;
	}

	.privacy-article__section {
		padding-bottom: 26px;
		margin-bottom: 26px;
	}

	.search-page-head {
		padding: 108px 0 30px;
	}

	.search-page-head__inner {
		gap: 16px;
	}

	.search-page-head h1 {
		font-size: clamp(1.85rem, 8vw, 2.65rem);
	}

	.search-page .search-results {
		padding: 58px 0 76px;
	}

	.search-results__panel {
		padding: 24px 20px;
	}

	.search-results__form {
		grid-template-columns: 1fr;
	}

	.search-results__form button {
		width: 100%;
	}

	.search-result-card {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 16px;
	}

	.search-result-card__media,
	.search-result-card__media img {
		min-height: 210px;
	}

	.search-empty {
		padding: 30px 22px;
	}

	.not-found-hero {
		min-height: 0;
		padding: 108px 0 64px;
	}

	.not-found-hero__breadcrumb {
		margin-bottom: 18px;
	}

	.not-found-hero__code {
		font-size: clamp(5.2rem, 26vw, 7.5rem);
	}

	.not-found-hero h1 {
		font-size: clamp(1.85rem, 9vw, 2.6rem);
	}

	.not-found-hero__text {
		margin-bottom: 24px;
		font-size: 1rem;
	}

	.not-found-actions {
		display: grid;
		width: 100%;
		gap: 10px;
		margin-bottom: 24px;
	}

	.not-found-actions a {
		width: 100%;
		min-width: 0;
	}

	.not-found-search {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 14px;
		border-radius: 8px;
	}

	.not-found-search span {
		display: none;
	}

	.not-found-search input {
		min-height: 46px;
		padding: 0 4px;
	}

	.not-found-search button {
		width: 100%;
	}
}

@media (max-width: 760px) {
	.lodxy-home .applications-screen__content,
	.lodxy-home .applications-screen__media,
	.lodxy-home .application-showcase,
	.lodxy-home .application-showcase__hero,
	.lodxy-home .application-showcase__hero figcaption {
		min-width: 0;
	}

	.lodxy-home .applications-screen__content p,
	.lodxy-home .application-showcase figcaption strong,
	.lodxy-home .application-showcase figcaption span,
	.lodxy-home .application-links strong {
		overflow-wrap: break-word;
	}

	.lodxy-home .application-links {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		margin: 28px 0 0;
		padding: 0;
		overflow: visible;
		scroll-snap-type: none;
	}

	.lodxy-home .application-links button {
		width: 100%;
		min-width: 0;
		min-height: 84px;
		flex: initial;
	}

	.lodxy-home .application-showcase__rail {
		display: none;
	}
}

@media (max-width: 480px) {
	.lodxy-home .application-links {
		grid-template-columns: 1fr;
	}

	.lodxy-home .application-links button {
		min-height: 68px;
	}
}

@media (max-width: 1180px) {
	.about-page .about-profile__grid,
	.about-page .about-scope__grid,
	.about-page .about-history__slide,
	.about-page .about-manufacturing__grid,
	.about-page .about-environment__heading,
	.about-page .about-environment__grid {
		min-width: 0;
	}

	.about-page .about-environment__heading h2 {
		white-space: normal;
	}
}

@media (max-width: 760px) {
	.about-page {
		overflow-x: clip;
	}

	.about-page .about-profile__numbers {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0 18px;
	}

	.about-page .about-profile__number {
		min-width: 0;
		padding: 14px 0 10px;
	}

	.about-page .about-profile__number + .about-profile__number {
		border-top: 0;
	}

	.about-page .about-profile__number:nth-child(n + 3) {
		border-top: 1px solid rgba(0, 102, 179, 0.1);
	}

	.about-page .about-profile__number span {
		font-size: 0.76rem;
		line-height: 1.35;
	}

	.about-page .about-profile__content p,
	.about-page .about-history__body p,
	.about-page .about-manufacturing__card p,
	.about-page .about-culture__panel p,
	.about-page .about-list-grid li {
		overflow-wrap: break-word;
	}

	.about-page .about-manufacturing__card {
		min-width: 0;
	}

	.about-page .about-culture__panel {
		min-height: 0;
		padding: 28px 20px;
	}

	.about-page .about-environment__heading h2 {
		white-space: normal;
		line-height: 1.06;
	}
}

@media (max-width: 1180px) {
	.products-page .products-catalog__layout,
	.products-page .products-sidebar,
	.products-page .products-catalog__main,
	.products-page .products-list__grid {
		min-width: 0;
	}
}

@media (max-width: 760px) {
	.products-page {
		overflow-x: clip;
	}

	.products-page .products-sidebar {
		padding: 18px;
	}

	.products-page .products-sidebar__nav {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.products-page .products-sidebar__nav a {
		grid-template-columns: 32px minmax(0, 1fr);
		gap: 12px;
		min-width: 0;
		min-height: 64px;
		padding: 12px 14px;
	}

	.products-page .products-sidebar__nav span {
		order: initial;
		min-width: 32px;
		height: 32px;
		padding: 0;
	}

	.products-page .products-sidebar__nav strong,
	.products-page .products-card__body h3,
	.products-page .products-card__body p {
		overflow-wrap: break-word;
	}

	.products-page .products-catalog__main {
		padding: 16px;
	}

	.products-page .products-list__grid {
		gap: 14px;
	}

	.products-page .products-card__media {
		aspect-ratio: 4 / 3;
	}

	.products-page .products-card__body {
		min-height: 0;
		padding: 18px;
	}

	.products-page .products-sidebar__nav strong {
		font-size: 0.94rem;
	}

	.products-page .products-sidebar__nav a.is-active {
		transform: none;
	}

	.products-page .products-card__body p {
		-webkit-line-clamp: 3;
	}

	.products-page .products-pagination__links {
		gap: 6px;
	}

	.products-page .products-pagination__links a,
	.products-page .products-pagination__links span {
		min-width: 36px;
		height: 36px;
	}
}

@media (max-width: 1180px) {
	.product-detail-page .product-detail-content__grid,
	.product-detail-page .product-detail-text__grid,
	.product-detail-page .product-detail-gallery,
	.product-detail-page .product-detail-main,
	.product-detail-page .product-detail-article,
	.product-detail-page .product-detail-sidebar {
		min-width: 0;
	}
}

@media (max-width: 760px) {
	.product-detail-page {
		overflow-x: clip;
	}

	.product-detail-page .product-detail-gallery {
		aspect-ratio: auto;
		gap: 14px;
	}

	.product-detail-page .product-detail-gallery__stage {
		aspect-ratio: 4 / 3;
	}

	.product-detail-page .product-detail-gallery__stage img {
		padding: 14px;
	}

	.product-detail-page .product-detail-gallery__controls {
		grid-template-columns: 44px minmax(0, 1fr) 44px;
		gap: 8px;
	}

	.product-detail-page .product-detail-gallery__arrow {
		width: 44px;
		height: 44px;
	}

	.product-detail-page .product-detail-main h2,
	.product-detail-page .product-detail-main__lead,
	.product-detail-page .product-detail-features li,
	.product-detail-page .product-detail-article,
	.product-detail-page .product-detail-related strong {
		overflow-wrap: break-word;
	}

	.product-detail-page .product-detail-actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.product-detail-page .product-detail-actions .yc-more {
		justify-content: center;
		width: 100%;
		min-height: 48px;
		padding: 8px 0;
	}

	.product-detail-page .product-detail-sidebar {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition: none !important;
		animation: none !important;
	}

	.market-map__routes path {
		stroke-dashoffset: 0 !important;
	}
}

/* Applications page: preserve usable columns on notebook screens and prevent narrow-screen overflow. */
@media (min-width: 961px) and (max-width: 1180px) {
	.applications-overview__grid {
		grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.82fr);
		gap: clamp(28px, 4vw, 48px);
		align-items: start;
	}

	.applications-support__grid {
		grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
		gap: clamp(28px, 4vw, 48px);
	}

	.applications-support__media {
		min-height: 360px;
	}

	.application-detail-card,
	.application-detail-card:first-child {
		grid-template-columns: minmax(250px, 0.4fr) minmax(0, 0.6fr);
	}
}

@media (min-width: 761px) and (max-width: 960px) {
	.application-detail-card,
	.application-detail-card:first-child {
		grid-template-columns: 1fr;
	}

	.application-detail-card figure {
		min-height: 300px;
	}
}

@media (max-width: 760px) {
	.applications-page {
		overflow-x: clip;
	}

	.applications-overview__content,
	.applications-overview__list,
	.application-detail-card,
	.application-detail-card__body,
	.applications-support__content {
		min-width: 0;
	}

	.applications-overview__content p,
	.application-detail-card__body h3,
	.application-detail-card__body p,
	.applications-support__content p,
	.applications-support__chips span {
		overflow-wrap: anywhere;
	}

	.applications-overview__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		margin-top: 28px;
	}

	.applications-overview__list a {
		grid-template-columns: 34px minmax(0, 1fr);
		gap: 10px;
		min-width: 0;
		min-height: 88px;
		padding: 12px;
	}

	.applications-overview__list span {
		width: 34px;
		height: 34px;
		font-size: 0.72rem;
	}

	.applications-overview__list strong {
		min-width: 0;
		font-size: 0.86rem;
		line-height: 1.34;
	}

	.applications-detail__grid {
		gap: 14px;
		margin-top: 26px;
	}

	.application-detail-card figure {
		aspect-ratio: 16 / 9;
		min-height: 0;
	}

	.application-detail-card__body {
		padding: 22px 20px 26px;
	}

	.application-detail-card__body h3 {
		margin: 16px 0 12px;
		font-size: clamp(1.2rem, 6vw, 1.6rem);
	}

	.application-detail-card__body p {
		font-size: 0.94rem;
		line-height: 1.72;
	}

	.applications-support__media {
		aspect-ratio: 4 / 3;
		min-height: 0;
	}

	.applications-support__chips {
		gap: 8px;
		margin: 22px 0 26px;
	}

	.applications-support__chips span {
		max-width: 100%;
		min-height: 34px;
		padding: 7px 11px;
		font-size: 0.82rem;
	}
}

@media (max-width: 480px) {
	.applications-overview__list {
		grid-template-columns: 1fr;
	}

	.applications-overview__list a {
		min-height: 64px;
		padding: 12px 14px;
	}
}

/* News listing: keep the primary feed and hot-news context balanced on notebook screens. */
@media (min-width: 961px) and (max-width: 1180px) {
	.news-articles__layout {
		grid-template-columns: minmax(0, 1fr) minmax(240px, 0.36fr);
		gap: clamp(24px, 3vw, 36px);
	}

	.news-article-card {
		grid-template-columns: minmax(190px, 0.31fr) minmax(0, 0.69fr);
	}

	.news-article-card figure {
		height: 200px;
	}

	.news-article-card__body {
		min-width: 0;
		padding: 24px;
	}

	.news-hot-sidebar {
		position: sticky;
		top: 94px;
		padding: 18px;
	}

	.news-hot-card {
		grid-template-columns: 76px minmax(0, 1fr);
		column-gap: 10px;
	}

	.news-hot-card img {
		width: 76px;
		height: 58px;
	}
}

@media (max-width: 760px) {
	.news-page {
		overflow-x: clip;
	}

	.news-page .news-hot-sidebar {
		display: none;
	}

	.news-page-head__inner,
	.news-articles__layout,
	.news-article-list,
	.news-article-card,
	.news-article-card__body,
	.news-hot-sidebar,
	.news-hot-card {
		min-width: 0;
	}

	.news-page .news-articles {
		padding: 20px 0 56px;
	}

	.news-page .news-articles .split-head {
		gap: 12px;
		margin-bottom: 20px;
	}

	.news-articles .split-head p,
	.news-article-card__body h3,
	.news-article-card__body p,
	.news-hot-card strong {
		overflow-wrap: anywhere;
	}

	.news-article-list {
		gap: 14px;
	}

	.news-article-card figure {
		height: auto;
		aspect-ratio: 4 / 3;
	}

	.news-article-card__body {
		padding: 20px;
	}

	.news-article-card__body h3 {
		margin-bottom: 10px;
		font-size: clamp(1.08rem, 5.2vw, 1.34rem);
	}

	.news-article-card__body p {
		margin-bottom: 14px;
		font-size: 0.9rem;
		line-height: 1.64;
	}

	.news-hot-sidebar {
		padding: 16px;
	}

	.news-hot-list {
		gap: 12px;
	}

	.news-hot-card {
		grid-template-columns: 76px minmax(0, 1fr);
		column-gap: 10px;
		padding-bottom: 12px;
	}

	.news-hot-card img {
		width: 76px;
		height: 58px;
	}

	.news-hot-card strong {
		font-size: 0.84rem;
		line-height: 1.3;
	}
}

@media (max-width: 480px) {
	.news-article-card__body {
		padding: 18px;
	}
}

/* News detail: retain article context on notebook screens and make rich content reliable on phones. */
@media (min-width: 961px) and (max-width: 1180px) {
	.news-detail-content__grid {
		grid-template-columns: minmax(0, 1fr) minmax(240px, 0.36fr);
		gap: clamp(24px, 3vw, 36px);
	}

	.news-detail-sidebar {
		position: sticky;
		top: 94px;
		padding: 18px;
	}

	.news-detail-related {
		gap: 8px;
		padding-bottom: 16px;
	}

	.news-detail-related strong {
		font-size: 0.9rem;
	}
}

@media (max-width: 760px) {
	.news-detail-page {
		overflow-x: clip;
	}

	.news-detail-head .news-page-head__inner,
	.news-detail-content__grid,
	.news-detail-article,
	.news-detail-rich-content,
	.news-detail-sidebar,
	.news-detail-related {
		min-width: 0;
	}

	.news-detail-content {
		padding: 20px 0 56px;
	}

	.news-detail-article {
		padding: 22px 18px;
	}

	.news-detail-article p,
	.news-detail-rich-content,
	.news-detail-rich-content h1,
	.news-detail-rich-content h2,
	.news-detail-rich-content h3,
	.news-detail-rich-content h4,
	.news-detail-rich-content h5,
	.news-detail-rich-content h6,
	.news-detail-rich-content li,
	.news-detail-related strong {
		overflow-wrap: anywhere;
	}

	.news-detail-article p,
	.news-detail-rich-content {
		font-size: 0.96rem;
		line-height: 1.78;
	}

	.news-detail-article__lead {
		font-size: 1rem;
		line-height: 1.7;
	}

	.news-detail-rich-content h1,
	.news-detail-rich-content h2 {
		margin-top: 26px;
	}

	.news-detail-rich-content h1 {
		font-size: clamp(1.45rem, 7vw, 2rem);
	}

	.news-detail-rich-content h2 {
		font-size: clamp(1.28rem, 6vw, 1.72rem);
	}

	.news-detail-rich-content h3 {
		font-size: clamp(1.12rem, 5.2vw, 1.42rem);
	}

	.news-detail-rich-content img,
	.news-detail-rich-content iframe,
	.news-detail-rich-content video,
	.news-detail-rich-content table,
	.news-detail-rich-content pre {
		max-width: 100%;
	}

	.news-detail-rich-content iframe,
	.news-detail-rich-content video {
		height: auto;
		aspect-ratio: 16 / 9;
	}

	.news-detail-rich-content table,
	.news-detail-rich-content pre {
		display: block;
		overflow-x: auto;
	}

	.news-detail-article__actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		margin-top: 26px;
		padding-top: 20px;
	}

	.news-detail-article__actions .yc-more {
		justify-content: center;
		width: 100%;
		min-height: 48px;
	}

	.news-detail-sidebar {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px 12px;
		padding: 18px;
	}

	.news-detail-sidebar h2 {
		grid-column: 1 / -1;
		margin-bottom: 0;
	}

	.news-detail-related,
	.news-detail-related:last-child {
		gap: 8px;
		padding-bottom: 0;
		border-bottom: 0;
	}

	.news-detail-related span {
		font-size: 0.68rem;
	}

	.news-detail-related strong {
		font-size: 0.84rem;
		line-height: 1.32;
	}
}

@media (max-width: 480px) {
	.news-detail-article {
		padding: 20px 16px;
	}
}

/* Contact page: retain practical two-column density on notebooks and improve mobile form ergonomics. */
@media (min-width: 961px) and (max-width: 1180px) {
	.contact-overview__grid {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
		gap: clamp(28px, 4vw, 46px);
	}

	.contact-inquiry__grid {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
		gap: 20px;
	}

	.contact-visit-card img {
		height: clamp(330px, 36vw, 410px);
	}
}

@media (max-width: 760px) {
	.contact-page {
		overflow-x: clip;
	}

	.contact-overview,
	.contact-inquiry {
		padding: 48px 0;
	}

	.contact-overview__grid,
	.contact-inquiry__grid,
	.contact-overview__content,
	.contact-overview__panel,
	.contact-visit-card,
	.contact-mini-form {
		min-width: 0;
	}

	.contact-overview__content p,
	.contact-overview__lines a,
	.contact-mini-form__head p {
		overflow-wrap: anywhere;
	}

	.contact-overview__panel {
		gap: 14px;
		padding: 22px 20px;
	}

	.contact-overview__panel .contact-overview__cta {
		justify-content: center;
		width: 100%;
		min-height: 46px;
	}

	.contact-social {
		flex-direction: row;
		align-items: center;
		gap: 10px;
		padding: 14px 16px;
	}

	.contact-social__title,
	.contact-social__links {
		min-width: 0;
	}

	.contact-social__links {
		flex-shrink: 0;
		gap: 7px;
	}

	.contact-social__links a {
		width: 34px;
		height: 34px;
	}

	.contact-visit-card img {
		height: auto;
		aspect-ratio: 4 / 3;
		object-position: right center;
	}

	.contact-mini-form {
		gap: 12px;
		padding: 22px 18px;
	}

	.contact-mini-form__head {
		margin-bottom: 2px;
	}

	.contact-mini-form__head h2 {
		font-size: clamp(1.36rem, 6.5vw, 1.8rem);
	}

	.contact-mini-form__head p {
		font-size: 0.84rem;
		line-height: 1.5;
	}

	.contact-mini-form label {
		gap: 6px;
		font-size: 0.78rem;
	}

	.contact-mini-form input,
	.contact-mini-form textarea {
		font-size: 0.94rem;
	}

	.contact-mini-form input {
		height: 44px;
	}

	.contact-mini-form textarea {
		min-height: 128px;
	}

	.contact-mini-form button {
		justify-self: stretch;
		width: 100%;
		min-height: 48px;
		font-size: 0.88rem;
	}
}

@media (max-width: 480px) {
	.contact-social {
		align-items: flex-start;
		flex-direction: column;
	}

	.contact-mini-form {
		padding: 20px 16px;
	}
}

/* Privacy policy: preserve document navigation on notebooks and reduce long-form friction on phones. */
@media (min-width: 961px) and (max-width: 1180px) {
	.privacy-content__layout {
		grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
		gap: 24px;
	}

	.privacy-toc {
		position: sticky;
		top: 94px;
		padding: 20px;
	}

	.privacy-article {
		padding: clamp(28px, 3.2vw, 38px);
	}
}

@media (max-width: 760px) {
	.privacy-page {
		overflow-x: clip;
	}

	.privacy-page-head__inner,
	.privacy-content__layout,
	.privacy-toc,
	.privacy-article,
	.privacy-article__section {
		min-width: 0;
	}

	.privacy-content {
		padding: 40px 0 56px;
	}

	.privacy-toc {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 14px;
		row-gap: 0;
		padding: 18px;
	}

	.privacy-toc span {
		grid-column: 1 / -1;
		margin-bottom: 5px;
	}

	.privacy-toc a {
		min-width: 0;
		padding: 10px 0;
		font-size: 0.8rem;
		line-height: 1.4;
		overflow-wrap: anywhere;
	}

	.privacy-article {
		padding: 22px 18px;
	}

	.privacy-article__section {
		padding-bottom: 24px;
		margin-bottom: 24px;
		scroll-margin-top: 88px;
	}

	.privacy-article h2 {
		margin-bottom: 12px;
		font-size: clamp(1.24rem, 6vw, 1.6rem);
		line-height: 1.25;
		overflow-wrap: anywhere;
	}

	.privacy-article p {
		margin-bottom: 14px;
		font-size: 0.95rem;
		line-height: 1.78;
		overflow-wrap: anywhere;
	}
}

@media (max-width: 480px) {
	.privacy-toc {
		grid-template-columns: 1fr;
	}

	.privacy-article {
		padding: 20px 16px;
	}
}


