@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Teko:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tilt+Warp&display=swap');

@font-face {
	font-family: "tcefontson";
	src: url("../fonts/tcefontson.otf") format("opentype");
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Poppins, sans-serif;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	overflow-x: clip;
}

body {
	font-family: "Poppins";
	background-color: #E5E5E5 !important;
	margin: 0;
	min-height: 100vh !important;
	cursor: url("/style/svg/Cursor.svg") 0 0, auto;
	overflow-x: hidden;
	overflow-x: clip;
}

header {
	position: fixed;
	width: 100%;
	/* max-width: 1180px; */
	/* left: 50%; */
	/* overflow: hidden; */
	top: 0;
	box-shadow: 0px 0px 20px -15px rgba(0, 0, 0, 0.1);
	/* transform: translateX(-50%); */
	display: flex;
	z-index: 999999;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

a,
button,
[role="button"] {
	cursor: url("/style/svg/Cursor.svg") 0 0, pointer;
}

#cookie-banner {
	position: fixed;
	left: 50%;
	bottom: calc(16px + env(safe-area-inset-bottom));
	transform: translateX(-50%) translateY(22px);
	width: min(980px, calc(100vw - 28px));
	padding: 14px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
	gap: 14px;
	background: rgba(17, 17, 17, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 18px;
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 1000000;
	transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

#cookie-banner.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

#cookie-banner .cookie-text {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	min-width: 0;
}

#cookie-banner .cookie-text img {
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
	filter: brightness(0) invert(1);
}

#cookie-banner .cookie-text span {
	max-width: 72ch;
	text-align: left;
	color: rgba(255, 255, 255, 0.88);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.45;
}

#cookie-banner .cookie-btns {
	display: flex;
	flex-direction: row;
	gap: 10px;
	flex: 0 0 auto;
}

.cookie-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.48);
	backdrop-filter: blur(8px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.24s ease, visibility 0.24s ease;
	z-index: 1000000;
}

.cookie-overlay.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.cookie-settings {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, calc(-50% + 18px));
	width: min(720px, calc(100vw - 28px));
	max-height: min(80vh, 680px);
	overflow: auto;
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(17, 17, 17, 0.10);
	box-shadow: 0 40px 120px rgba(0, 0, 0, 0.30);
	padding: 18px 18px 16px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 1000001;
	transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
}

.cookie-settings.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, -50%);
}

.cookie-settings-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	padding: 6px 6px 12px;
	border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.cookie-settings-title {
	margin: 0;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: #111111;
}

.cookie-settings-close {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid rgba(17, 17, 17, 0.10);
	background: #ffffff;
	cursor: pointer;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.cookie-settings-close::before,
.cookie-settings-close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 2px;
	border-radius: 999px;
	background: #111111;
}

.cookie-settings-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.cookie-settings-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.cookie-settings-body {
	padding: 14px 6px 10px;
	display: grid;
	gap: 12px;
}

.cookie-settings-body p {
	margin: 0;
	color: rgba(17, 17, 17, 0.70);
	line-height: 1.6;
	font-size: 13px;
}

.cookie-switch {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 12px 14px;
	border-radius: 18px;
	background: rgba(17, 17, 17, 0.04);
	border: 1px solid rgba(17, 17, 17, 0.08);
}

.cookie-switch strong {
	display: block;
	font-size: 14px;
	font-weight: 800;
	color: #111111;
}

.cookie-switch span {
	display: block;
	font-size: 12px;
	color: rgba(17, 17, 17, 0.62);
	margin-top: 2px;
	line-height: 1.4;
}

.cookie-switch input[type="checkbox"] {
	appearance: none;
	width: 48px;
	height: 28px;
	border-radius: 999px;
	border: 1px solid rgba(17, 17, 17, 0.18);
	background: rgba(17, 17, 17, 0.14);
	position: relative;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease;
	flex: 0 0 auto;
}

.cookie-switch input[type="checkbox"]::after {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
	transition: transform 0.2s ease;
}

.cookie-switch input[type="checkbox"]:checked {
	background: #111111;
	border-color: #111111;
}

.cookie-switch input[type="checkbox"]:checked::after {
	transform: translateX(20px);
}

.cookie-switch input[type="checkbox"]:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.cookie-settings-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 10px 6px 4px;
}

.cookie-settings-actions .btn,
.cookie-settings-actions .btn-strk {
	min-height: 44px;
}

.btn {
	background-color: #FFFFFF;
	border-radius: 7px;
	font-size: 14px;
	text-decoration: none;
	padding: 5px 12px;
	border: none;
	user-select: none;
	color: #000;
	cursor: pointer;
	transition: background-color linear 0.2s;
}

.btn:hover {
	background-color: #e4e4e4;
}

.btn-black {
	background-color: #363636;
	border-radius: 7px;
	font-size: 16px;
	cursor: pointer;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px 12px;
	border: none;
	user-select: none;
	color: #fafafa;
}

.btn-slide {
	background-color: #dbdbdb;
	border-radius: 7px;
	font-size: 16px;
	height: fit-content;
	cursor: pointer;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px 12px;
	border: none;
	user-select: none;
	color: #858585;
	box-shadow: 0px 0px 0px 0px rgb(190, 190, 190);
	transition: box-shadow 0.2s linear;
}

.btn-slide:hover {
	box-shadow: 0px 0px 0px 2px rgb(190, 190, 190);
}

.btn-strk {
	background-color: transparent;
	border-radius: 7px;
	font-size: 14px;
	user-select: none;
	padding: 5px 12px;
	cursor: pointer;
	border: white solid 1px;
	text-decoration: none;
	color: #ffffff;
}

.btn-strk-black {
	border: rgb(15, 15, 15) solid 1px;
	color: rgb(15, 15, 15);
}

.btn-strk.black {
	background-color: transparent;
	border-radius: 7px;
	font-size: 14px;
	cursor: pointer;
	user-select: none;
	text-decoration: none;
	padding: 5px 12px;
	border: rgb(29, 29, 29) solid 1px;
	color: #0f0f0f;
}


.header {
	position: relative;
	background: rgb(248, 245, 245);
	backdrop-filter: blur(10px);
	width: 100%;
	/* height: 100px; */
	/* padding: 10px 0; */
	display: flex;
	align-items: center;
	height: 50px;
	z-index: 2;
	justify-content: center;
	flex-direction: row;
	gap: 22px;
}

.content {
	z-index: 2;
}

.header .main-logo {
	position: absolute;
	left: 5%;


	top: 0;
}

.header .main-nav {
	height: 100%;
}


.header .main-nav ul {
	list-style-type: none;
	display: flex;
	margin: 0;
	height: 100%;
	padding: 0;
	flex-direction: row;
	gap: 18px;
}


.header .main-nav>ul>li>a {
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	color: black;
	display: block;
}

.header ul li .dropdown {
	position: fixed;
	top: 100%;
	left: 0;
	/* z-index: 2; */
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 20px 5%;
	align-items: center;
	background: rgb(248, 245, 245);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(10px);
	/* border-bottom: 1px solid #ddd; */
	opacity: 0;
	visibility: hidden;
	transition: all 0.1s linear;
	/* min-width: 200px; */
	/* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
}

.header ul li .dropdown>ul {
	list-style: none;
	margin: 0;
	padding: 10px 0;
	display: flex;
	align-items: start;
	justify-content: start;
	flex-wrap: wrap;
	gap: 150px;
	flex-direction: row;
}

.regions {
	justify-content: center !important;
	margin: 0 10%;
}

.language {
	flex-direction: row !important;
	gap: 4px;
	margin-top: 2px;
	align-items: center;
	justify-content: center;
}

.language a {
	width: max-content !important;
}

.language a.active {
	color: rgb(179, 0, 0) !important;
}

.language span {
	font-size: 12px;
	margin-left: 5px;
	color: #686868;
}

.header ul li .dropdown>ul>li>span {
	padding: 10px 15px;
	color: #9C9C9C;
	font-size: 12px;
	font-weight: 500;
	padding: 0;
	text-align: start;
}

.header ul li .dropdown .subdropdown {
	display: flex;
	flex-direction: column;
	padding: 0;
	gap: 5px;
	align-items: start;
}

.header ul li .dropdown .subdropdown a {
	cursor: pointer;
}

.header ul li .dropdown li {
	display: flex;
	align-items: left;
	justify-content: left;
	flex-direction: column;
}

.header ul li .has-dropdown:hover .dropdown {
	opacity: 1;
	visibility: visible;
}

.header ul li .dropdown .subdropdown li {
	width: 100%;
}

.header ul li .dropdown .subdropdown li a {
	font-size: 14px;
	text-decoration: none;
	width: 100%;
	color: #000;
	font-weight: 400;
	transition: all linear 0.2s;
}

.header ul li .dropdown .subdropdown li a:hover {
	color: #686868;
	transform: translateX(2px);
}

.header .main-nav>ul>li.active>a {
	font-weight: 600;
}

.header ul li .dropdown>ul>li.is-active-group>span {
	color: #111111;
}

.header ul li .dropdown .subdropdown li a.active,
.header ul li .dropdown .subdropdown li a[aria-current="page"] {
	color: #111111;
	font-weight: 600;
}

.header .main-nav>ul>li {
	position: relative;
	height: 100%;
	padding: 0px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	/* нужно, чтобы позиционировать ::before */
	list-style: none;
}

.header .main-nav>ul>li.active::before {
	content: "";
	position: absolute;
	bottom: 0px;
	/* отступ снизу, под текстом */
	left: 0;
	opacity: 1;
	width: 100%;
	height: 5px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background-color: #020202;
}


.header .main-nav>ul>li::before {
	content: "";
	position: absolute;
	bottom: 0px;
	/* отступ снизу, под текстом */
	left: 50%;
	opacity: 0;
	width: 0%;
	height: 5px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background-color: #020202;
	transition: left linear 0.3s, width linear 0.3s, opacity linear 0.3s;
}

.header .main-nav>ul>li:hover::before {
	content: "";
	position: absolute;
	bottom: 0px;
	/* отступ снизу, под текстом */
	left: 0;
	width: 100%;
	opacity: 1;
	height: 5px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background-color: #020202;
}


.header .main-btns {
	display: flex;
	list-style-type: none;
	position: absolute;
	right: 0;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	margin: 0;
	height: -webkit-fill-available;
}

.header .main-btns .search-btn {
	height: 100%;
	background-color: #00418c;
	padding: 0px 22px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header .main-btns .language-btn {
	height: 100%;
	background-color: #FFFFFF;
	padding: 0px 22px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header .main-btns .support-btn {
	height: 100%;
	background-color: #E2001B;
	padding: 0px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header .main-btns li {
	/* cursor: pointer; */
	height: 100%;
}

.header .main-btns li a {
	/* cursor: pointer; */
	height: 100%;
	transition: padding linear 0.2s;
}

.header .main-btns>li>a:hover {
	padding: 0px 30px;
}



header .news-banner {
	position: relative;
	width: 100%;
	background-color: rgb(235 235 235);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	overflow: hidden;
	z-index: 0;
	justify-content: left;
	font-size: 14px;
	font-weight: 500;
	color: #2e2e2e;
	padding: 2px 0;
	text-wrap: nowrap;
	white-space: nowrap;
}

header .news-banner .fog {
	position: absolute;
	background: #dddddd;
	pointer-events: none;
	background: linear-gradient(90deg, rgb(235 235 235) 10%, rgb(235 235 235 / 0%) 30%, rgb(235 235 235 / 0%) 50%, rgb(235 235 235 / 0%) 70%, rgb(235 235 235) 90%);
	width: 100%;
	height: 100%;
	z-index: 2;
}


header .news-banner .scroll-text {
	pointer-events: none;
}

header .news-banner:hover .scroll-text {
	text-decoration: underline;
}

.scroll-container {
	display: flex;
	width: max-content;
	animation: scroll-left 120s linear infinite;
}

.scroll-text {
	padding: 10px 50px;
}

@keyframes scroll-left {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* space */

/* top banner */

.topBanner {
	position: relative;
	margin: 20px;
	width: calc(100% - 40px);
	height: 100vh;
}



.sliderButtons {
	display: flex;
	align-self: center;
	justify-content: center;
	flex-direction: row;
	gap: 10px;
	margin: 20px 0px 60px 0px;
}


.topBanner span {
	font-family: "tcefontson";
	font-size: 6vw;
	margin-top: 50px;
}

.relative {
	position: relative;
	width: 100%;
	height: 100%;
}

.absolute {
	position: absolute;
}

.topBanner .bgVideo {
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 37px;
	width: 100% !important;
	min-width: 100% !important;
	z-index: 1;
	object-fit: cover;
	filter: saturate(0) contrast(1) brightness(0.8);
	height: 70vh;
}

.fog-for-video {
	position: absolute;
	top: 2px;
	left: -5px;
	z-index: 2;
	border-radius: 37px;
	width: calc(100% + 5px);
	height: 70vh;
	/* background: linear-gradient(0deg, rgba(229, 229, 229, 1) 0%, rgba(219, 219, 219, 0) 100%); */
}

.video-toggle {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 1000;
	background: #DDDDDD;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 28px;
	cursor: pointer;
	transition: background 0.3s;
}

.video-toggle:hover {
	background: rgba(179, 179, 179, 0.8);
}

.slider-box {
	position: relative;
	width: 100%;
}

.slider-box .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	opacity: 0;
	pointer-events: none;
	transition: all 1s ease;
}

.slider-box .slide .titleSlide {
	margin-top: 50px;
	display: flex;
	height: fit-content;
	align-items: end;
	gap: 10px;
	flex-direction: row;
}


.slider-box .slide .titleSlide span {
	margin: 0;
}

.slider-box .slide.active {
	opacity: 1;
	pointer-events: all;
}

/* ASSISTANT */


#chatButton {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background-color: #272727;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 30px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	transition: background-color 0.3s;
	z-index: 1000;
}

#chatButton:hover {
	background-color: #000000;
}

/* Контейнер чата */
#chatBox {
	position: fixed;
	bottom: 90px;
	/* чуть выше кнопки */
	right: 20px;
	width: 100%;
	max-width: 300px;
	max-height: 500px;
	min-height: 300px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	transform: scale(0);
	transform-origin: bottom right;
	transition: transform 0.3s ease-in-out;
	display: flex;
	flex-direction: column;
	z-index: 999;
}

#chatBox.open {
	transform: scale(1);
}

/* Заголовок чата */
#chatHeader {
	background: #272727;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 10px;
	font-weight: bold;
	text-align: center;
}

#chatHeader span {
	font-size: 12px;
	font-weight: 400;
}

/* Сообщения */
#chatMessages {
	flex: 1;
	padding: 10px;
	overflow-y: auto;
}

/* Поле ввода */
#chatInputContainer {
	display: flex;
	border-top: 1px solid #ccc;
}

#chatInput {
	flex: 1;
	padding: 10px;
	border: none;
	outline: none;
}

.Messagebox {
	width: 100%;
}

.clientMessage {
	background-color: #3471ccff;
	color: white;
	text-align: left;
	max-width: 60%;
	white-space: normal;
	/* исправлено */
	margin-left: auto;
	word-wrap: break-word;
	/* для переноса длинных слов */
	font-size: 12px;
	border-radius: 5px;
	margin-bottom: 5px;
	padding: 5px 10px;
}

.tceMessage {
	background-color: rgb(212, 212, 212);
	color: rgb(46, 46, 46);
	text-align: left;
	margin-left: right;
	max-width: 60%;
	white-space: normal;
	/* исправлено */
	word-wrap: break-word;
	/* для переноса длинных слов */
	font-size: 12px;
	border-radius: 5px;
	margin-bottom: 5px;
	padding: 5px 10px;
}

#chatMessages {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.clientMessage,
.tceMessage {
	white-space: pre-wrap;
	overflow-wrap: anywhere;
}

.tceMessage a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
	font-weight: 600;
}

#sendButton {
	padding: 10px 15px;
	background: #272727;
	border: none;
	color: white;
	cursor: pointer;
}

#sendButton:hover {
	background: #272727;
}

#space {
	height: 200px;
}

/* VENDOR */


.vendor-container {
	position: relative;
	width: 100%;
	z-index: 0;
	max-width: 1400px;
	margin: 0px auto;
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.vendor-container .title {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vendor-container .title h2 {
	bottom: 0;
	margin: 0;
	font-size: 18px;
	font-family: 'Mulish', sans-serif !important;
	font-weight: 500;
	color: #454545;
}

.vendor-track {
	display: flex;
	gap: 60px;
	will-change: transform;
}

.vendor-logo {
	width: 180px;
	height: 180px;
	object-fit: contain;
	transition: transform 0.5s ease, filter 0.3s ease;
	filter: brightness(0.4) contrast(0.1) saturate(0);
}

.vendor-logo:hover {
	transform: scale(1.3);
	filter: brightness(1.2) contrast(1) saturate(1);
}


/* ABOUT */
.horizontal-wrapper {
	position: relative;
	width: 100%;
	max-width: 100vw;
	height: 100vh;
	overflow: hidden;
	overflow: clip;
}

.horizontal-container {
	position: relative;
	width: max-content;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	will-change: transform;
}

.horizontal-container>* {
	flex-shrink: 0;
}


#aboutVideo {
	height: 100vh;
	width: 100vw;
	object-fit: cover;
}


/* МАСКА ДЛЯ ФОТОК В о НАС */


.photo-wrapper {
	position: relative;
	width: 100vw;
	height: 100vh;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: visible !important;
}

.photo-wrapper .aboutWelcome {
	position: absolute;
	font-size: 120px;
	z-index: 99;
	top: 50%;
	right: 0 !important;
	font-weight: 800;
	white-space: nowrap;
	pointer-events: none;
	transform: translate3d(42%, -50%, 0) rotate(-90deg);
	color: rgba(66, 66, 66, 0.3);
}

.maskfog {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(90deg, #E5E5E5 0%, transparent 20%, transparent 40%, #E5E5E5 60%);
}

.masked-photo {
	position: absolute;
	inset: 0;
	background-image: url("/style/img/img.jpg");
	filter: saturate(0) brightness(1.2) opacity(0.6);
	background-size: cover;
	background-position: center;
}


.img-canvas-wrapper {
	position: relative;
	display: inline-block;
	margin-left: 200px;
	flex-shrink: 0;
	overflow: hidden;
	overflow: clip;
}


.img-canvas-wrapper .maskfog {
	left: -5px;
	width: calc(100% + 20px);
	background: linear-gradient(90deg, #E5E5E5 0%, transparent 10%, transparent 80%, #E5E5E5 90%);
}


#aboutimg {
	display: block;
	max-width: none;
	height: auto;
}

#aboutimgContent {
	position: absolute;
	inset: 0;
	/* pointer-events: none; */
	z-index: 10;
}

.endofAbout {
	position: relative;
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow-x: hidden;
	overflow-x: clip;
	overflow-y: visible;
}


.endofAbout p {
	width: 60%;
	color: #2e2e2e;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
}

.endofAbout h2 {
	width: 60%;
	color: #000000;
	font-size: 38px;
	font-weight: 500;
	text-align: center;
}


/* следователь за курсором */

#particleCanvas {
	position: fixed;
	z-index: 999999999999;
	top: 0;
	left: 0;
	width: 100vw;
	pointer-events: none;
	height: 100vh;
}

.aboutContinue {
	position: absolute;
	font-size: 80px;
	z-index: 99;
	top: 50%;
	left: 0 !important;
	font-weight: 800;
	white-space: nowrap;
	pointer-events: none;
	transform: translate3d(-42%, -50%, 0) rotate(90deg);
	color: rgba(66, 66, 66, 0.3);
}

@media (max-width:900px) {
	.horizontal-wrapper {
		width: calc(100vw - 20px);
		height: auto;
		margin: 28px auto 0;
		padding: 0;
		overflow: visible;
	}

	.horizontal-container {
		width: 100%;
		flex-direction: column;
		gap: 20px;
		padding: 0;
	}

	.horizontal-container>* {
		width: 100%;
	}

	.about-video-panel,
	.endofAbout {
		width: 100%;
		height: auto;
		border-radius: 20px;
		overflow: hidden;
		flex-shrink: 1;
		position: relative;
		border: 1px solid rgba(17, 17, 17, 0.08);
		box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
		background: linear-gradient(180deg, #f0f0f0 0%, #e7e7e7 100%);
	}

	.about-video-panel {
		padding: 22px;
	}

	.about-video-panel>div:first-child {
		display: none;
	}

	.about-video-panel::before {
		content: "";
		position: absolute;
		top: -90px;
		right: -60px;
		width: 220px;
		height: 220px;
		border-radius: 50%;
		background: radial-gradient(circle, rgba(226, 0, 27, 0.16) 0%, rgba(0, 140, 69, 0.1) 45%, rgba(255, 255, 255, 0) 70%);
		filter: blur(20px);
		z-index: 0;
		pointer-events: none;
	}

	#aboutVideo {
		position: relative;
		z-index: 1;
		width: 100%;
		height: clamp(250px, 46svh, 340px);
		min-height: 0;
		display: block;
		border-radius: 18px;
		object-fit: cover;
		box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
	}

	.photo-wrapper {
		display: none !important;
	}

	.img-canvas-wrapper {
		display: none !important;
	}

	.endofAbout {
		height: auto;
		min-height: auto;
		padding: 22px;
		align-items: flex-start;
		justify-content: flex-start;
	}

	.endofAbout p {
		width: 100%;
		margin: 0;
		font-size: 15px;
		line-height: 1.72;
		text-align: left;
		color: #5f5f5f;
	}

	.endofAbout h1 {
		margin: 0 0 14px;
		max-width: 11ch;
		font-size: clamp(30px, 9vw, 42px);
		line-height: 1.02;
		color: #111111;
	}

	.endofAbout .relative {
		width: 100% !important;
		padding-top: 0;
		justify-content: flex-start !important;
	}

	.endofAbout .absolute {
		display: none !important;
	}

	.aboutContinue {
		position: static;
		display: inline-flex;
		align-items: center;
		width: fit-content;
		padding: 7px 12px;
		margin-bottom: 14px;
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.88);
		border: 1px solid rgba(17, 17, 17, 0.08);
		box-shadow: none;
		font-size: 11px;
		font-weight: 700;
		letter-spacing: 0.12em;
		transform: none;
		color: #6a6a6a;
		text-transform: uppercase;
	}
}

@media (max-width:600px) {
	.horizontal-wrapper {
		width: calc(100vw - 20px);
	}

	.about-video-panel {
		padding: 18px;
	}

	.endofAbout {
		padding: 20px 18px;
	}

	#aboutVideo {
		height: 220px;
	}
}

/* aboutVideo */
.AboutVideo {
	width: min(1500px, calc(100vw - 40px));
	margin: clamp(36px, 5vw, 68px) auto 0;
}

.AboutVideo .about-video-shell {
	position: relative;
	overflow: hidden;
	padding: clamp(26px, 3vw, 36px);
	border-radius: 26px;
	border: 1px solid rgba(17, 17, 17, 0.08);
	background: linear-gradient(180deg, #f0f0f0 0%, #e7e7e7 100%);
	box-shadow: 0 24px 56px rgba(15, 23, 42, 0.07);
}

.AboutVideo .about-video-shell::before {
	content: "";
	position: absolute;
	top: -120px;
	left: -80px;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 140, 69, 0.12) 0%, rgba(255, 255, 255, 0) 72%);
	filter: blur(18px);
	pointer-events: none;
}

/* .AboutVideo .about-video-shell::after {
	content: "";
	position: absolute;
	top: -90px;
	right: -60px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(226, 0, 27, 0.16) 0%, rgba(0, 140, 69, 0.1) 45%, rgba(255, 255, 255, 0) 70%);
	filter: blur(20px);
	pointer-events: none;
} */

.AboutVideo .about-video-head {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	gap: 20px 34px;
	align-items: end;
	margin-bottom: 32px;
}

.AboutVideo .about-video-intro {
	display: grid;
	gap: 14px;
}

.AboutVideo .about-video-kicker {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(17, 17, 17, 0.08);
	color: #6a6a6a;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.AboutVideo .about-video-title {
	margin: 0;
	max-width: 12ch;
	color: #111111;
	font-size: clamp(38px, 4.2vw, 54px);
	font-weight: 700;
	line-height: 1.02;
}

.AboutVideo .about-video-copy {
	margin: 0;
	max-width: 60ch;
	color: #5f5f5f;
	font-size: 16px;
	line-height: 1.72;
}

.AboutVideo .about-video-copy-wrap {
	display: grid;
	gap: 16px;
	align-self: end;
}

.AboutVideo .about-video-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.AboutVideo .about-video-tags span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(17, 17, 17, 0.08);
	color: #555555;
	font-size: 12px;
	font-weight: 600;
}

.AboutVideo .about-video-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.36fr) minmax(340px, 0.88fr);
	gap: 18px;
	align-items: stretch;
}

.AboutVideo .about-video-frame {
	position: relative;
	min-height: clamp(420px, 60vh, 660px);
	padding: 16px;
	border-radius: 22px;
	background: linear-gradient(145deg, #111111 0%, #1d1d1d 50%, #3d3d3d 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
	overflow: hidden;
}

.AboutVideo .about-video-frame::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.03) 28%, rgba(0, 0, 0, 0.5) 100%),
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 28%);
	pointer-events: none;
}

.AboutVideo .about-video-chip {
	position: absolute;
	top: 28px;
	left: 28px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #1d1d1d;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.AboutVideo .about-video-media {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 16px;
	object-fit: cover;
	filter: saturate(0.86) contrast(1.04) brightness(0.96);
}

.AboutVideo .about-video-overlay {
	position: absolute;
	left: 30px;
	right: 30px;
	bottom: 30px;
	z-index: 2;
	display: grid;
	gap: 10px;
	padding: 22px 24px;
	border-radius: 20px;
	background: rgba(12, 12, 12, 0.54);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(12px);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.AboutVideo .about-video-overlay-kicker {
	color: rgba(255, 255, 255, 0.7);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.AboutVideo .about-video-overlay-title {
	margin: 0;
	max-width: 18ch;
	color: #ffffff;
	font-size: clamp(24px, 2vw, 32px);
	font-weight: 700;
	line-height: 1.08;
}

.AboutVideo .about-video-overlay-copy {
	margin: 0;
	max-width: 52ch;
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
	line-height: 1.7;
}

.AboutVideo .about-video-side {
	display: grid;
	gap: 18px;
}

.AboutVideo .about-video-note {
	position: relative;
	overflow: hidden;
	display: grid;
	gap: 16px;
	padding: 24px;
	border-radius: 20px;
	background: linear-gradient(180deg, #181818 0%, #111111 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.AboutVideo .about-video-note::before {
	content: "";
	display: block;
	width: 72px;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, #00418c, #e2001b);
}

.AboutVideo .about-video-note::after {
	content: "";
	position: absolute;
	right: -30px;
	bottom: -30px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 68%);
	filter: blur(12px);
	pointer-events: none;
}

.AboutVideo .about-video-note-kicker {
	color: rgba(255, 255, 255, 0.62);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.AboutVideo .about-video-note-copy {
	margin: 0;
	color: #f2f2f2;
	font-size: 15px;
	line-height: 1.75;
}

.AboutVideo .about-video-note-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.AboutVideo .about-video-note-meta span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #f4f4f4;
	font-size: 12px;
	font-weight: 500;
}

.AboutVideo .stats-cont {
	display: flex;
	min-width: 0;
}

.AboutVideo .stats-list {
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-auto-rows: minmax(0, auto);
	gap: 16px;
	min-width: 0;
	align-items: start;
}

.AboutVideo .stat {
	position: relative;
	display: grid;
	grid-template-rows: auto 1fr;
	align-content: start;
	gap: 16px;
	min-height: 174px;
	padding: 24px;
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 245, 0.95) 100%);
	border: 1px solid rgba(17, 17, 17, 0.08);
	box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	min-width: 0;
}

.AboutVideo .stat-primary {
	grid-column: 1 / -1;
	min-height: 210px;
	padding: 26px;
}

.AboutVideo .stat::before {
	content: "";
	display: block;
	width: 56px;
	height: 4px;
	border-radius: 999px;
	background: var(--about-stat-accent, #111111);
}

.AboutVideo .stat:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.AboutVideo .stat-top {
	display: grid;
	gap: 14px;
	width: 100%;
	min-width: 0;
}

.AboutVideo .stat-kicker {
	display: block;
	color: #6a6a6a;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.AboutVideo .stat-number {
	display: block;
	color: #383838;
	font-size: clamp(34px, 3.2vw, 46px);
	font-weight: 800;
	line-height: 1;
}

.AboutVideo .stat-primary .stat-number {
	font-size: clamp(46px, 4.6vw, 66px);
}

.AboutVideo .stat-label {
	display: block;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	color: #5f5f5f;
	font-size: 15px;
	line-height: 1.65;
	overflow-wrap: anywhere;
	word-break: normal;
	align-self: end;
}

.AboutVideo .stat-green {
	--about-stat-accent: #008c45;
	/* background: linear-gradient(180deg, rgba(0, 140, 69, 0.1) 0%, rgba(255, 255, 255, 0.98) 100%); */
}

.AboutVideo .stat-neutral {
	--about-stat-accent: #111111;
	/* background: linear-gradient(180deg, rgba(17, 17, 17, 0.08) 0%, rgba(255, 255, 255, 0.98) 42%); */
}

.AboutVideo .stat-red {
	--about-stat-accent: #e2001b;
	/* background: linear-gradient(180deg, rgba(226, 0, 27, 0.1) 0%, rgba(255, 255, 255, 0.98) 42%); */
}

@media (max-width:1100px) {
	.AboutVideo {
		width: min(1500px, calc(100vw - 32px));
	}

	.AboutVideo .about-video-head,
	.AboutVideo .about-video-layout {
		grid-template-columns: 1fr;
	}

	.AboutVideo .about-video-title {
		max-width: none;
	}

	.AboutVideo .stats-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.AboutVideo .stat-primary {
		grid-column: 1 / -1;
	}
}

@media (max-width:720px) {
	.AboutVideo {
		width: calc(100vw - 20px);
		margin: 28px auto 0;
	}

	.AboutVideo .about-video-shell {
		padding: 22px;
		border-radius: 20px;
	}

	.AboutVideo .about-video-head {
		gap: 14px;
		margin-bottom: 20px;
	}

	.AboutVideo .about-video-tags {
		gap: 8px;
	}

	.AboutVideo .about-video-tags span {
		min-height: 30px;
		padding: 0 12px;
		font-size: 11px;
	}

	.AboutVideo .about-video-title {
		font-size: clamp(30px, 9vw, 42px);
	}

	.AboutVideo .about-video-copy {
		font-size: 15px;
	}

	.AboutVideo .about-video-layout {
		gap: 16px;
	}

	.AboutVideo .about-video-frame {
		min-height: 320px;
		padding: 12px;
		border-radius: 18px;
	}

	.AboutVideo .about-video-chip {
		top: 18px;
		left: 18px;
	}

	.AboutVideo .about-video-media {
		border-radius: 14px;
	}

	.AboutVideo .about-video-overlay {
		left: 18px;
		right: 18px;
		bottom: 18px;
		padding: 16px;
		border-radius: 16px;
	}

	.AboutVideo .about-video-overlay-title {
		max-width: none;
		font-size: 22px;
	}

	.AboutVideo .about-video-overlay-copy {
		font-size: 14px;
	}

	.AboutVideo .about-video-note {
		padding: 18px;
		border-radius: 18px;
	}

	.AboutVideo .about-video-note-meta {
		gap: 8px;
	}

	.AboutVideo .stats-list {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.AboutVideo .stat,
	.AboutVideo .stat-primary {
		min-height: auto;
		padding: 18px;
	}
}




/* Contact */



.contact .container {
	max-width: 80%;
	min-width: 500px;
	/* background-color: #f1f1f1; */
	margin: 20px auto;
}

.contact .title {
	font-size: 22px;
	font-weight: 700;
	position: relative;
	margin-bottom: 20px;
}

.contact .title .underline {
	display: block;
	width: 60px;
	height: 4px;
	background: #d60000;
	margin-top: 10px;
}

.contact .subtitle {
	max-width: 100%;
	color: #555;
	margin-bottom: 20px;
}

.contact .contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 20px;
}

/* LEFT */
.contact .contact-info {
	background-color: #ededed;
	border-radius: 16px;
	padding: 20px 60px;
}

.contact .contact-info h3 {
	margin-bottom: 30px;
	color: #002b6f;
}

.contact .info-item {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 25px;
}

video::-webkit-media-controls {
	display: none !important;
}

.contact .icon {
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	background: #f3f5f8;
	border-radius: 8px;
}

.contact .titlecont {
	background-color: #ededed;
	border-radius: 16px;
	margin-bottom: 20px;
	padding: 5px 35px;
}

.contact .label {
	font-size: 14px;
	color: #666;
}

.contact .value {
	font-weight: 600;
	text-decoration: none;
	color: #002b6f;
}

.contact .value:hover {
	cursor: pointer;
}

.contact .info-footer {
	margin-top: 40px;
	color: #555;
	font-size: 14px;
	line-height: 1.6;
}

/* FORM */
.contact .contact-form {
	background-color: #ededed;
	border-radius: 16px;
	padding: 20px 60px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.contact .field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contact label {
	font-size: 14px;
	font-weight: 600;
}

.contact input,
.contact textarea {
	background: #f4f4f4;
	border: none;
	border-radius: 10px;
	padding: 14px 16px;
	font-size: 14px;
	resize: none;
}

.contact textarea {
	min-height: 120px;
}

.contact input:focus,
.contact textarea:focus {
	outline: 2px solid #d60000;
	background: #fff;
}

.contact .btn {
	margin-top: 10px;
	align-self: flex-start;
	background: #d60000;
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 4px 20px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(214, 0, 0, 0.25);
}

/* RESPONSIVE */
@media (max-width: 900px) {
	.contact .contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	#cookie-banner {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 12px;
		padding: 14px 14px;
	}

	#cookie-banner .cookie-text span {
		font-size: 11px;
	}

	#cookie-banner .cookie-btns {
		width: 100%;
	}

	#cookie-banner .cookie-btns a,
	#cookie-banner .cookie-btns button {
		flex: 1;
		text-align: center;
		font-size: 12px;
	}

	.btn-black {
		font-size: 10px;
	}

	.btn-strk {
		font-size: 10px;
	}

	.btn-slide {
		font-size: 10px;
	}

	.btns a {
		font-size: 10px;
	}

	.description {
		padding: 19px 16px !important;
	}

	.tags {
		padding: 19px 16px !important;
	}

	.features {
		padding: 19px 16px !important;
	}

	.recommend {
		padding: 19px 16px !important;
	}

	.reviews {
		padding: 19px 16px !important;
	}

	.productinfo {
		padding: 0px 16px !important;
	}

	header .news-banner .scroll-text {
		font-size: 13px;
	}

	.topbanner {
		/* width: 98% !important; */
	}

	.container {
		width: 98% !important;
		padding: 0px 5px 1px !important;
	}
}


/* horizontalNews */

.slider-container-news {
	width: 80%;
	max-width: 1600px;
	margin: 0 auto;
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent 5%, black 35%, black 65%, transparent 95%);
	-webkit-mask-image: linear-gradient(to right, transparent 5%, black 35%, black 65%, transparent 95%);
}

.slider-container-news h2 {
	font-size: 2.5rem;
	color: #000;
	margin-bottom: 2rem;
	text-align: center;
	font-weight: 700;
}

.slider-container-news .slider-track {
	display: flex;
	gap: 4px;
	width: max-content;
}

.slider-container-news .slide {
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	flex-shrink: 0;
	background: #fff;
	transition: transform 0.3s ease;
}

.slider-container-news .slide img {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	object-fit: cover;
	display: block;
}

.slider-container-news .top-slider {
	margin-bottom: 4px;
}

.slider-container-news .top-slider .slide {
	width: 600px;
	height: 350px;
}

.slider-container-news .top-slider .slider-track {
	animation: scroll-left 230s linear infinite;
}

.slider-container-news .bottom-slider {
	opacity: 0.7;
}

.slider-container-news .bottom-slider .slide {
	width: 180px;
	height: 80px;
}

.slider-container-news .slider-container:hover .slider-track {
	animation-play-state: paused;
}

.slider-container-news .slider-track .slide:hover {
	transform: scale(0.98);
}

.slider-container-news .bottom-slider .slider-track {
	transform: translateX(-50%);
	animation: scroll-right 130s linear infinite;
}

@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@keyframes scroll-right {
	0% {
		transform: translateX(-50%);
	}

	100% {
		transform: translateX(0);
	}
}

/* WHATNEWS */
.whatnews {
	/* padding: 5px 60px; */
	max-width: 80%;
	min-width: 500px;
	/* background-color: #f1f1f1; */
	margin: 20px auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.whatnews .news-card {
	max-width: 100%;
	/* background-color: #f1f1f1; */
	/* margin: 20px auto 0px; */
	background: #ededed;
	border-radius: 16px;
	padding: 20px 35px;
	box-shadow: 0 0 0 1px #eaeaea;
}

.whatnews .news-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.whatnews .news-title {
	font-size: 22px;
	font-weight: 700;
	margin: 0;
	color: #000;
}

.whatnews .news-date {
	font-size: 14px;
	color: #777;
}

.whatnews .news-badge {
	background: #2f6cf6;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 6px;
}

.whatnews .news-subtitle {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 1px 0;
	color: #000;
	text-transform: uppercase;
}

.whatnews .news-text {
	font-size: 15px;
	line-height: 1.6;
	font-weight: 400;
	color: #8d8d8d;
	margin: 0;
}

/* hamburger */

body.menu-open {
	overflow: hidden;
	/* Блокируем скролл сайта при открытом меню */
}

/* Стили кнопки гамбургера (видна всегда) */
.hamburger-menu {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	right: 30px;
	width: 32px;
	height: 24px;
	cursor: pointer;
	z-index: 1001;
	/* Выше бокового меню */
	position: absolute;
}

.hamburger-menu span {
	display: block;
	height: 4px;
	width: 100%;
	background-color: #bebebe;
	border-radius: 3px;
	transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease;
}

/* Анимация крестика */
.hamburger-menu.is-active span:nth-child(1) {
	transform: translateY(10.5px) rotate(45deg);
}

.hamburger-menu.is-active span:nth-child(2) {
	opacity: 0;
}

.hamburger-menu.is-active span:nth-child(3) {
	transform: translateY(-10.5px) rotate(-45deg);
}

/* Затемнение фона (Оверлей) */
.mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	/* Красивое размытие фона */
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-overlay.is-active {
	opacity: 1;
	visibility: visible;
}

/* Боковое выезжающее меню */
.side-panel {
	position: fixed;
	top: 0;
	right: -100%;
	/* Скрыто за правым краем */
	width: 100%;
	max-width: 400px;
	/* На ПК будет 400px, на телефоне на весь экран */
	height: 100vh;
	background-color: #fff;
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	display: flex;
	flex-direction: column;
	padding: 80px 30px 40px;
	transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
	overflow-y: auto;
}

.side-panel.is-active {
	right: 0;
	/* Выдвигаем */
}

/* Навигация внутри бокового меню */
.side-panel ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.side-panel>ul>li>a {
	font-size: 22px;
	font-weight: 600;
	color: #333;
	text-decoration: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: color 0.3s;
	cursor: pointer;
}

.side-panel>ul>li>a:hover {
	color: #008C45;
	/* Твой фирменный цвет */
}

/* Стили для выпадающих списков (Аккордеон) */
.has-dropdown-phone .dropdown-phone {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
	/* Плавное открытие/закрытие */
	padding-left: 15px;
}

.has-dropdown-phone.open .dropdown-phone {
	max-height: 5000px;
	/* Достаточно большое значение для раскрытия */
	transition: max-height 1s ease-in-out;
}

.has-dropdown-phone .dropdown-phone ul {
	padding-top: 10px;
	padding-bottom: 10px;
	gap: 10px;
}

.has-dropdown-phone .dropdown-phone span {
	font-weight: 600;
	color: #555;
	display: block;
	margin-top: 10px;
	margin-bottom: 5px;
}

.has-dropdown-phone .dropdown-phone span.language-title {
	color: #c7c7c7;
}

.has-dropdown-phone .dropdown-phone a {
	font-size: 16px;
	color: #666;
	text-decoration: none;
	transition: color 0.2s;
}

.has-dropdown-phone .dropdown-phone a:hover {
	color: #000;
}

/* Кнопки в самом низу меню */
.side-panel .main-btns {
	margin-top: auto;
	/* Прижимаем к низу */
	padding-top: 30px;
	border-top: 1px solid #eee;
	flex-direction: row !important;
	justify-content: space-around;
	align-items: center;
}

/* SOCIAL */

.social {
	width: 80%;
	margin: 0 auto;
	text-align: center;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.social-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 32px;
	color: #000;
}

.social-grid {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

.social-card {
	/* width: 180px; */
	/* height: 200px; */
	flex: 1;
	border-radius: 10px;
	color: #fff;
	padding: 20px 40px;
	text-decoration: none;
	opacity: 0.2;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 20px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
	filter: saturate(0) brightness(0.5);
	transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease, background 2s ease, filter 0.2s ease;
}

.social-card:hover {
	transform: translateY(-4px);
	opacity: 1;
	filter: saturate(1) brightness(1);
	box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.social-card .icon {
	width: 45px;
	height: 45px;
	color: #000;
	border-radius: 12px;
	font-size: 28px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-card strong {
	font-size: 22px;
	font-weight: 800;
}

.social-card span {
	font-size: 15px;
	opacity: .9;
}

/* Цвета */
.facebook {
	background: linear-gradient(180deg, #1b74e4, #0b4fa3);
}

.x {
	background: linear-gradient(180deg, #2c2c2c, #000);
}

.youtube {
	background: linear-gradient(180deg, #ff0000, #ff5a5a);
}

.instagram {
	background: linear-gradient(135deg,
			#feda75,
			#fa7e1e,
			#d62976,
			#962fbf,
			#4f5bd5);
}


/* POST HORIZONTAL SECTIONS */

.post-horizontal-sections {
	width: min(1500px, calc(100vw - 32px));
	margin: 20px auto clamp(52px, 6vw, 88px);
	display: grid;
	gap: clamp(24px, 3vw, 36px);
}

.post-horizontal-sections>* {
	width: 100%;
	margin: 0;
}

.post-horizontal-sections .whatnews,
.post-horizontal-sections .contact,
.post-horizontal-sections .social {
	width: 100%;
	max-width: none;
	min-width: 0;
	margin: 0;
}

.post-horizontal-sections .whatnews .news-card,
.post-horizontal-sections .contact .container,
.post-horizontal-sections .social .social-shell {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #f0f0f0 0%, #e7e7e7 100%);
	border: 1px solid rgba(17, 17, 17, 0.08);
	border-radius: 20px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.post-horizontal-sections .news-kicker,
.post-horizontal-sections .section-kicker,
.post-horizontal-sections .social-kicker {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(17, 17, 17, 0.08);
	color: #6a6a6a;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.post-horizontal-sections .whatnews .news-card {
	padding: clamp(24px, 3vw, 36px);
}

.post-horizontal-sections .whatnews .news-card>.news-header,
.post-horizontal-sections .whatnews .news-card>.news-subtitle,
.post-horizontal-sections .whatnews .news-card>.news-text {
	display: none;
}

.post-horizontal-sections .whatnews-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.85fr);
	gap: 24px;
	align-items: stretch;
}

.post-horizontal-sections .whatnews-main {
	display: flex;
	flex-direction: column;
}

.post-horizontal-sections .whatnews .news-header {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.post-horizontal-sections .whatnews .news-date {
	display: inline-flex;
	align-items: center;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.7);
	color: #555;
	font-size: 12px;
	font-weight: 600;
	margin: 0;
}

.post-horizontal-sections .whatnews .news-badge {
	padding: 7px 12px;
	border-radius: 999px;
	background: #111111;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.post-horizontal-sections .whatnews .news-title {
	margin: 0 0 14px;
	max-width: 12ch;
	color: #111111;
	font-size: clamp(32px, 4vw, 46px);
	font-weight: 700;
	line-height: 1.02;
}

.post-horizontal-sections .whatnews .news-subtitle {
	margin: 0 0 18px;
	max-width: 30ch;
	color: #2d2d2d;
	font-size: clamp(20px, 2vw, 28px);
	font-weight: 600;
	line-height: 1.16;
	text-transform: none;
}

.post-horizontal-sections .whatnews .news-text {
	max-width: 68ch;
	margin: 0;
	color: #5e5e5e;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
}

.post-horizontal-sections .whatnews-side {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 18px;
	padding: 24px;
	background: rgba(248, 248, 248, 0.95);
	border: 1px solid rgba(17, 17, 17, 0.07);
	border-radius: 18px;
}

.post-horizontal-sections .whatnews-side-label {
	color: #6c6c6c;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.post-horizontal-sections .whatnews-side-copy {
	margin: 0;
	color: #4a4a4a;
	font-size: 15px;
	line-height: 1.7;
}

.post-horizontal-sections .contact .container {
	max-width: none;
	min-width: 0;
	margin: 0;
	padding: clamp(24px, 3vw, 36px);
}

/* Chrome, Safari */
::-webkit-scrollbar {
	display: none;
}

/* Firefox */
* {
	scrollbar-width: none;
}

/* IE/Edge */
* {
	-ms-overflow-style: none;
}

.post-horizontal-sections .contact .titlecont {
	margin-bottom: 24px;
	padding: clamp(20px, 2.4vw, 28px);
	background: rgba(248, 248, 248, 0.94);
	border: 1px solid rgba(17, 17, 17, 0.07);
	border-radius: 18px;
}

.post-horizontal-sections .contact .title {
	margin: 12px 0 0;
	max-width: 16ch;
	color: #111111;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.04;
}

.post-horizontal-sections .contact .title .underline {
	width: 72px;
	height: 4px;
	margin-top: 16px;
	border-radius: 999px;
	background: linear-gradient(90deg, #00418c, #e2001b);
}

.post-horizontal-sections .contact .subtitle {
	margin: 14px 0 0;
	max-width: 62ch;
	color: #5f5f5f;
	font-size: 16px;
	line-height: 1.72;
}

.post-horizontal-sections .contact .contact-grid {
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
	gap: 24px;
}

.post-horizontal-sections .contact .contact-info,
.post-horizontal-sections .contact .contact-form {
	padding: clamp(24px, 3vw, 32px);
	background: rgba(249, 249, 249, 0.96);
	border: 1px solid rgba(17, 17, 17, 0.07);
	border-radius: 18px;
}

.post-horizontal-sections .contact .contact-info {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.post-horizontal-sections .contact .contact-info h3 {
	margin: 0 0 6px;
	color: #111111;
	font-size: 24px;
	font-weight: 700;
}

.post-horizontal-sections .contact .info-item {
	align-items: flex-start;
	gap: 16px;
	margin: 0;
	padding: 18px 0;
	border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.post-horizontal-sections .contact .info-item>div {
	display: grid;
	gap: 6px;
}

.post-horizontal-sections .contact .icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
	flex-shrink: 0;
}

.post-horizontal-sections .contact .label {
	color: #7c7c7c;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.post-horizontal-sections .contact .value {
	color: #00418c;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.55;
	text-decoration: none;
}

.post-horizontal-sections .contact .value-location+.value {
	display: none;
}

.post-horizontal-sections .contact .value:hover {
	color: #180d55;
}

/* #heroImageWrapper {
	position: relative;
}

#heroImage {
	position: absolute;
	top: 40vh;
	left: 50%;
	transform: translateX(-50%);
} */

/* #heroImage .fog {
	position: absolute;
	top: 40vh;
	left: 50%;
	transform: translateX(-50%);
	background: #002b6f;
} */

.post-horizontal-sections .contact .info-footer {
	margin-top: auto;
	padding-top: 22px;
	border-top: 1px solid rgba(17, 17, 17, 0.08);
	color: #575757;
	font-size: 15px;
	line-height: 1.75;
}

.post-horizontal-sections .contact .contact-form {
	gap: 18px;
}

.post-horizontal-sections .contact .form-row {
	gap: 18px;
}

.post-horizontal-sections .contact .field {
	gap: 10px;
}

.post-horizontal-sections .contact label {
	color: #6a6a6a;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.post-horizontal-sections .contact input,
.post-horizontal-sections .contact textarea {
	padding: 15px 16px;
	background: #ffffff;
	border: 1px solid #d9d9d9;
	border-radius: 14px;
	color: #1b1b1b;
	font-size: 15px;
	line-height: 1.45;
}

.post-horizontal-sections .contact input::placeholder,
.post-horizontal-sections .contact textarea::placeholder {
	color: #9a9a9a;
}

.post-horizontal-sections .contact textarea {
	min-height: 160px;
}

.post-horizontal-sections .contact input:focus,
.post-horizontal-sections .contact textarea:focus {
	background: #ffffff;
	border-color: #008c45;
	box-shadow: 0 0 0 4px rgba(0, 140, 69, 0.08);
	outline: none;
}

.post-horizontal-sections .contact .btn {
	margin-top: 4px;
	padding: 14px 20px;
	background: #111111;
	border-radius: 14px;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	box-shadow: none;
	transform: none;
}

.post-horizontal-sections .contact .btn:hover {
	background: #1d1d1d;
	box-shadow: 0 12px 26px rgba(17, 17, 17, 0.18);
	transform: translateY(-1px);
}

.post-horizontal-sections .contact .submit-icon {
	width: auto;
	height: auto;
	font-size: 11px;
	box-shadow: none;
}

.post-horizontal-sections .social .social-shell {
	padding: clamp(24px, 3vw, 36px);
}

.post-horizontal-sections .social-head {
	display: grid;
	gap: 12px;
	max-width: 760px;
	margin-bottom: 24px;
}

.post-horizontal-sections .social .social-title {
	margin: 0;
	color: #111111;
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 700;
	line-height: 1.08;
}

.post-horizontal-sections .social-copy {
	margin: 0;
	max-width: 60ch;
	color: #5f5f5f;
	font-size: 16px;
	line-height: 1.72;
}

.post-horizontal-sections .social-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.post-horizontal-sections .social-card {
	flex: 1;
	border-radius: 10px;
	color: #fff;
	padding: 20px 40px;
	text-decoration: none;
	opacity: 0.2;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 20px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
	filter: saturate(0) brightness(0.5);
	transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease, background 2s ease, filter 0.2s ease;
}

.post-horizontal-sections .social-card:hover {
	transform: translateY(-4px);
	opacity: 1;
	filter: saturate(1) brightness(1);
	box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.post-horizontal-sections .social-card::before {
	content: "";
	display: block;
	width: 56px;
	height: 4px;
	border-radius: 999px;
	background: var(--social-accent, #111111);
}

.post-horizontal-sections .social-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
}

.post-horizontal-sections .social-brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.post-horizontal-sections .social-card .icon {
	width: 45px;
	height: 45px;
	color: #000;
	border-radius: 12px;
	font-size: 28px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}

.post-horizontal-sections .social-network {
	color: #252525;
	font-size: 15px;
	font-weight: 600;
}

.post-horizontal-sections .social-arrow {
	color: #8a8a8a;
	font-size: 14px;
}

.post-horizontal-sections .social-card-body {
	display: grid;
	gap: 6px;
}

.post-horizontal-sections .social-card strong {
	font-size: clamp(30px, 3vw, 40px);
	font-weight: 800;
	line-height: 1;
	color: #111111;
}

.post-horizontal-sections .social-card-body span {
	color: #666666;
	font-size: 15px;
}

.post-horizontal-sections .social-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.post-horizontal-sections .facebook {
	--social-accent: #1b74e4;
}

.post-horizontal-sections .x {
	--social-accent: #111111;
}

.post-horizontal-sections .youtube {
	--social-accent: #ff0000;
}

.post-horizontal-sections .instagram {
	--social-accent: #d62976;
}

@media (max-width:1100px) {

	.post-horizontal-sections .whatnews-grid,
	.post-horizontal-sections .contact .contact-grid {
		grid-template-columns: 1fr;
	}

	.post-horizontal-sections .social-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.post-horizontal-sections .whatnews .news-title,
	.post-horizontal-sections .contact .title {
		max-width: none;
	}
}

@media (max-width:720px) {
	.post-horizontal-sections {
		width: calc(100vw - 20px);
		margin: 28px auto 48px;
		gap: 20px;
	}

	.post-horizontal-sections .whatnews .news-card,
	.post-horizontal-sections .contact .container,
	.post-horizontal-sections .social .social-shell {
		border-radius: 18px;
	}

	.post-horizontal-sections .contact .form-row,
	.post-horizontal-sections .social-grid {
		grid-template-columns: 1fr;
	}

	.post-horizontal-sections .whatnews .news-title {
		font-size: 30px;
	}
}

/* POST HORIZONTAL REFINEMENT */

.post-horizontal-sections {
	width: min(1500px, calc(100vw - 40px));
	gap: 30px;
}

.post-horizontal-sections .whatnews .news-card,
.post-horizontal-sections .contact .container,
.post-horizontal-sections .social .social-shell {
	border-radius: 24px;
	border-color: rgba(17, 17, 17, 0.07);
	box-shadow: 0 24px 56px rgba(15, 23, 42, 0.07);
}

.post-horizontal-sections .whatnews .news-card>:not(.whatnews-grid) {
	display: none !important;
}

.post-horizontal-sections .whatnews .news-card {
	padding: 34px;
}

.post-horizontal-sections .whatnews .news-card::after {
	content: "";
	position: absolute;
	top: -90px;
	right: -60px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(226, 0, 27, 0.16) 0%, rgba(0, 140, 69, 0.1) 45%, rgba(255, 255, 255, 0) 70%);
	filter: blur(20px);
	pointer-events: none;
}

.post-horizontal-sections .whatnews-grid {
	grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
	gap: 28px;
}

.post-horizontal-sections .whatnews .news-title {
	max-width: 11ch;
	font-size: clamp(40px, 4.4vw, 56px);
}

.post-horizontal-sections .whatnews .news-subtitle {
	max-width: 28ch;
	font-size: clamp(22px, 2.3vw, 32px);
	line-height: 1.12;
}

.post-horizontal-sections .whatnews .news-text {
	max-width: 64ch;
	color: #555555;
}

.post-horizontal-sections .whatnews-side {
	background: linear-gradient(180deg, #191919 0%, #111111 100%);
	border: none;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.post-horizontal-sections .whatnews-side::before {
	content: "";
	display: block;
	width: 76px;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, #00418c, #e2001b);
}

.post-horizontal-sections .whatnews-side-label {
	color: rgba(255, 255, 255, 0.62);
}

.post-horizontal-sections .whatnews-side-copy {
	color: #f2f2f2;
	font-size: 15px;
	line-height: 1.75;
}

.post-horizontal-sections .contact .container {
	padding: 30px;
}

.post-horizontal-sections .contact .titlecont {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
	gap: 14px 32px;
	align-items: end;
	padding: 30px 32px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 247, 247, 0.96) 100%);
}

.post-horizontal-sections .contact .section-kicker {
	grid-column: 1 / -1;
}

.post-horizontal-sections .contact .title {
	grid-column: 1;
	max-width: 11ch;
	margin: 0;
	font-size: clamp(38px, 4.2vw, 52px);
}

.post-horizontal-sections .contact .subtitle {
	grid-column: 2;
	margin: 0;
	align-self: end;
}

.post-horizontal-sections .contact .contact-grid {
	gap: 18px;
}

.post-horizontal-sections .contact .contact-info,
.post-horizontal-sections .contact .contact-form {
	background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
	box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
}

.post-horizontal-sections .contact .info-item {
	padding: 20px 0;
}

.post-horizontal-sections .contact .value {
	display: block;
	max-width: 34ch;
}

.post-horizontal-sections .contact .info-item a[href="#"] {
	display: none !important;
}

.post-horizontal-sections .contact .btn {
	min-width: 190px;
	justify-content: center;
}

.post-horizontal-sections .social {
	text-align: left;
}

.post-horizontal-sections .social .social-shell {
	padding: 30px;
}

.post-horizontal-sections .social-head {
	max-width: 760px;
	margin-bottom: 28px;
}

.post-horizontal-sections .social .social-title {
	max-width: 15ch;
}

.post-horizontal-sections .social span {
	opacity: 1;
}

.post-horizontal-sections .social-grid {
	gap: 18px;
}

.post-horizontal-sections .social-card {
	min-height: 196px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 245, 0.95) 100%) !important;
}

.post-horizontal-sections .social-card strong {
	font-size: clamp(32px, 3vw, 42px);
}

.post-horizontal-sections .facebook {
	background: linear-gradient(180deg, rgba(27, 116, 228, 0.12) 0%, rgba(255, 255, 255, 0.98) 45%) !important;
}

.post-horizontal-sections .x {
	background: linear-gradient(180deg, rgba(17, 17, 17, 0.08) 0%, rgba(255, 255, 255, 0.98) 45%) !important;
}

.post-horizontal-sections .youtube {
	background: linear-gradient(180deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0.98) 45%) !important;
}

.post-horizontal-sections .instagram {
	background: linear-gradient(180deg, rgba(214, 41, 118, 0.1) 0%, rgba(255, 255, 255, 0.98) 45%) !important;
}

@media (max-width:1100px) {
	.post-horizontal-sections .contact .titlecont {
		grid-template-columns: 1fr;
	}

	.post-horizontal-sections .contact .subtitle {
		grid-column: 1;
	}

	.post-horizontal-sections .social .social-title {
		max-width: none;
	}
}

@media (max-width:720px) {
	.post-horizontal-sections {
		width: calc(100vw - 20px);
	}

	.post-horizontal-sections .whatnews .news-card,
	.post-horizontal-sections .contact .container,
	.post-horizontal-sections .social .social-shell {
		padding: 22px;
		border-radius: 20px;
	}

	.post-horizontal-sections .whatnews-grid {
		grid-template-columns: 1fr;
	}

	.post-horizontal-sections .contact .titlecont {
		padding: 22px;
	}
}

@media (min-width:1200px) {
	.hamburger-menu {
		display: none !important;
	}

	.mobile-overlay {
		display: none !important;
	}

	.side-panel {
		display: none !important;
	}
}

/* ADAPTIVE */
@media (max-width:1200px) {
	.news-grid {
		grid-template-columns: repeat(2, 1fr)
	}


	.header .main-nav {
		display: none;
	}

	.header .main-btns {
		display: none;
	}
}

@media (max-width:600px) {
	.news-grid {
		grid-template-columns: 1fr
	}
}


/* footer */
footer {
	z-index: 333;
	background: #1d1d1f;
	color: #ccc;
	width: 100%;
	margin-top: 20px;
	bottom: 0;
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Arial;
	font-size: 13px;
}

.footer-top {
	max-width: 1400px;
	margin: auto;
	padding: 40px 60px;
}

.footer-logo {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 22px;
}

.footer-logo svg {
	width: 18px;
	margin-bottom: 20px;
	color: #fff;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
}

.footer-grid h4 {
	color: #fff;
	font-size: 13px;
	margin-bottom: 10px;
}

.footer-grid a {
	display: block;
	color: #aaa;
	text-decoration: none;
	margin-bottom: 8px;
}

.footer-grid a:hover {
	text-decoration: underline;
}

.mt {
	margin-top: 18px;
}

.footer-bottom {
	border-top: 1px solid #333;
	padding: 20px;
	max-width: 1400px;
	margin: auto;
}

.footer-bottom p {
	margin: 0 0 12px;
	color: #aaa;
}

.footer-bottom a {
	color: #4da3ff;
	text-decoration: none;
}

.footer-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
}

.footer-bar .links a {
	color: #aaa;
	margin-right: 10px;
}

.region {
	color: #aaa;
}

/* ADAPTIVE */
@media(max-width:900px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width:500px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-bar {
		flex-direction: column;
		align-items: flex-start;
	}
}


/* CONTACT PAGE (MAP + FACTORY CARDS) */

.contact-page-main {
	width: 100%;
}

.contact-geo {
	width: min(1500px, calc(100vw - 40px));
	margin: 0 auto;
}

.contact-geo-shell {
	position: relative;
	overflow: hidden;
	padding: clamp(26px, 3vw, 36px);
	border-radius: 26px;
	border: 1px solid rgba(17, 17, 17, 0.08);
	background: linear-gradient(180deg, #f0f0f0 0%, #e7e7e7 100%);
	box-shadow: 0 24px 56px rgba(15, 23, 42, 0.07);
}

.contact-geo-shell::before {
	content: "";
	position: absolute;
	top: -120px;
	left: -80px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(21, 0, 140, 0.12) 0%, rgba(255, 255, 255, 0) 72%);
	filter: blur(18px);
	pointer-events: none;
}

.contact-geo-shell::after {
	content: "";
	position: absolute;
	top: -90px;
	right: -70px;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(226, 0, 27, 0.14) 0%, rgba(255, 255, 255, 0) 72%);
	filter: blur(18px);
	pointer-events: none;
}

.contact-geo-head {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	gap: 20px 34px;
	align-items: end;
	margin-bottom: 28px;
}

.contact-geo-intro {
	display: grid;
	gap: 14px;
}

.contact-geo-kicker {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(17, 17, 17, 0.08);
	color: #6a6a6a;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.contact-geo-title {
	margin: 0;
	max-width: 16ch;
	color: #111111;
	font-size: clamp(38px, 4.2vw, 54px);
	font-weight: 700;
	line-height: 1.02;
}

.contact-geo-copy-wrap {
	display: grid;
	gap: 16px;
	align-self: end;
}

.contact-geo-copy {
	margin: 0;
	max-width: 60ch;
	color: #5f5f5f;
	font-size: 16px;
	line-height: 1.72;
}

.contact-geo-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.contact-geo-tags span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(17, 17, 17, 0.08);
	color: #555555;
	font-size: 12px;
	font-weight: 600;
}

.contact-geo-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
	gap: 18px;
	align-items: stretch;
}

.contact-map-card {
	position: relative;
	min-height: clamp(420px, 56vh, 620px);
	padding: 16px;
	border-radius: 22px;
	background: linear-gradient(145deg, #111111 0%, #1d1d1d 50%, #3d3d3d 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.contact-map-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.03) 28%, rgba(0, 0, 0, 0.5) 100%),
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 28%);
	pointer-events: none;
}

.contact-map-stage {
	position: relative;
	z-index: 1;
	flex: 1;
	min-height: 0;
	border-radius: 16px;
	overflow: hidden;
	background: #0b0b0b;
}

.contact-map-svg {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	border-radius: 0;
	display: block;
}

.contact-map-inline[hidden] {
	display: none;
}

.contact-map-inline {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: #0b0b0b;
	pointer-events: none;
}

.contact-map-card.is-map-open .contact-map-inline {
	pointer-events: auto;
}

.contact-map-card.is-map-open .contact-map-svg {
	pointer-events: none;
}

.contact-map-inline-title,
.contact-map-inline-close {
	position: absolute;
	top: 12px;
	z-index: 3;
}

.contact-map-inline-title {
	left: 50%;
	margin: 0;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(12, 12, 12, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(10px);
	color: rgba(255, 255, 255, 0.9);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.contact-map-inline-close {
	right: 12px;
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(12, 12, 12, 0.55);
	color: rgba(255, 255, 255, 0.9);
	border-radius: 999px;
	padding: 8px 11px;
	min-height: 36px;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.contact-map-inline-close:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.22);
	transform: translateY(-1px);
}

.contact-map-inline-close:active {
	transform: translateY(0);
}

.contact-map-inline-close:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.2);
	outline-offset: 3px;
}

.contact-map-inline .contact-map-iframe {
	position: absolute;
	inset: 0;
}

.contact-map-legend {
	position: relative;
	z-index: 1;
	margin-top: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
	font-weight: 600;
}

.contact-map-iframe {
	filter: invert(90%) hue-rotate(180deg);
}

.contact-map-legend-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-map-legend button.contact-map-legend-item {
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.86);
	font: inherit;
	cursor: pointer;
}

.contact-map-legend button.contact-map-legend-item:hover {
	background: rgba(255, 255, 255, 0.14);
}

.contact-map-legend button.contact-map-legend-item:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.22);
	outline-offset: 3px;
}

.contact-map-legend-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--dot, #ffffff);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.contact-map-legend-dot.dot-tr {
	--dot: #008c45;
}

.contact-map-legend-dot.dot-it {
	--dot: #e2001b;
}

.contact-map-marker {
	--marker: #ffffff;
}

.contact-map-marker--tr {
	--marker: #008c45;
}

.contact-map-marker--it {
	--marker: #e2001b;
}

.contact-map-dot {
	fill: var(--marker);
	stroke: rgba(255, 255, 255, 0.92);
	stroke-width: 3;
}

.contact-map-ping {
	fill: none;
	stroke: var(--marker);
	stroke-width: 2;
	opacity: 0.65;
	transform-origin: center;
	animation: contactMapPing 2.2s ease-out infinite;
}

@keyframes contactMapPing {
	0% {
		transform: scale(0.55);
		opacity: 0.72;
	}

	65% {
		transform: scale(1.6);
		opacity: 0.05;
	}

	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}

.contact-location-stack {
	display: grid;
	gap: 14px;
	align-content: start;
}

.contact-location-card {
	--accent: #111111;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(17, 17, 17, 0.08);
	padding: 18px 18px 16px;
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.contact-location-card::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 18px;
	width: 56px;
	height: 4px;
	border-radius: 999px;
	background: var(--accent);
	opacity: 0.95;
}

.contact-location-card--tr {
	--accent: #e2001b;
}

.contact-location-card--it {
	--accent: #008c45;
}

.contact-location-top {
	display: grid;
	/* gap: 10px; */
	padding-top: 15px;
}

.contact-location-pill {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(17, 17, 17, 0.08);
	color: #6a6a6a;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}


.contact-location-pill--button:hover {
	background: rgba(255, 255, 255, 0.92);
}

.contact-location-pill--button:focus-visible {
	outline: 3px solid rgba(17, 17, 17, 0.22);
	outline-offset: 3px;
}

.contact-location-name {
	margin: 0;
	color: #111111;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.contact-location-dl {
	margin-top: 12px;
	display: grid;
	gap: 10px;
}

.contact-location-row {
	display: flex;
	flex-direction: row;
	width: 100%;
	justify-content: space-between;
	gap: 12px;
	align-items: start;
}

.contact-location-row dt {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #6a6a6a;
}

.contact-location-row dd {
	margin: 0;
	color: #111111;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
	text-align: right;
}

.contact-location-row a {
	color: #111111;
	text-decoration: none;
	border-bottom: 1px solid rgba(17, 17, 17, 0.18);
}

.contact-location-row a:hover {
	border-bottom-color: rgba(17, 17, 17, 0.4);
}

.contact-location-placeholder {
	color: #6a6a6a;
	font-weight: 600;
}

.contact-map-card.is-map-open .contact-map-legend {
	pointer-events: none;
}

.contact-location-actions {
	margin-top: 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.contact-location-cta {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	border-radius: 14px;
	padding: 11px 14px;
	min-height: 44px;
	background: var(--accent);
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: -0.01em;
	cursor: pointer;
	box-shadow: 0 18px 30px rgba(17, 17, 17, 0.18);
	transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.contact-location-cta:hover {
	transform: translateY(-1px);
	filter: brightness(0.98);
	box-shadow: 0 22px 40px rgba(17, 17, 17, 0.2);
}

.contact-location-cta:active {
	transform: translateY(0);
	filter: brightness(0.94);
	box-shadow: 0 16px 26px rgba(17, 17, 17, 0.18);
}

.contact-location-cta:focus-visible {
	outline: 3px solid rgba(17, 17, 17, 0.22);
	outline-offset: 3px;
}

.contact-map-iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	background: #0b0b0b;
}

@media (max-width: 980px) {
	.contact-geo-head {
		grid-template-columns: 1fr;
		align-items: start;
		margin-bottom: 22px;
	}

	.contact-geo-title {
		max-width: none;
	}

	.contact-geo-layout {
		grid-template-columns: 1fr;
	}

	.contact-map-card {
		min-height: 360px;
	}
}

@media (max-width: 720px) {
	.contact-geo {
		width: min(1500px, calc(100vw - 32px));
	}

	.contact-geo-shell {
		padding: 20px;
		border-radius: 22px;
	}

	.contact-geo-title {
		font-size: clamp(30px, 9vw, 40px);
		line-height: 1.05;
	}

	.contact-geo-copy {
		font-size: 14px;
	}

	.contact-map-card {
		min-height: 320px;
		padding: 14px;
		border-radius: 18px;
	}

	.contact-map-stage {
		border-radius: 14px;
	}

	.contact-location-card {
		padding: 16px;
	}

	.contact-location-row {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.contact-location-cta {
		width: 100%;
	}

	.contact-map-inline-title {
		display: none;
	}

}

/* CORPORATE PAGES (COMPANY / SERVICES / SUPPORT) */

.corporate-page-main {
	width: 100%;
}

.corp-hero {
	width: min(1500px, calc(100vw - 40px));
	margin: 0 auto;
}

.corp-hero-shell {
	position: relative;
	overflow: hidden;
	padding: clamp(26px, 3vw, 36px);
	border-radius: 26px;
	border: 1px solid rgba(17, 17, 17, 0.08);
	background: var(--corp-hero-pattern, linear-gradient(180deg, #f0f0f0 0%, #e7e7e7 100%));
	box-shadow: 0 24px 56px rgba(15, 23, 42, 0.07);
}

.corp-hero-shell::before {
	content: "";
	position: absolute;
	top: -120px;
	left: -80px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--corp-glow-a, rgba(0, 140, 69, 0.12)) 0%, rgba(255, 255, 255, 0) 72%);
	filter: blur(18px);
	pointer-events: none;
}

.corp-hero-shell::after {
	content: "";
	position: absolute;
	top: -90px;
	right: -70px;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--corp-glow-b, rgba(226, 0, 27, 0.14)) 0%, rgba(255, 255, 255, 0) 72%);
	filter: blur(18px);
	pointer-events: none;
}

.corp-head {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	gap: 20px 34px;
	align-items: end;
	margin-bottom: 18px;
}

.corp-intro {
	display: grid;
	gap: 14px;
}

.corp-kicker {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(17, 17, 17, 0.08);
	color: #6a6a6a;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.corp-title {
	margin: 0;
	max-width: 20ch;
	color: #111111;
	font-size: clamp(38px, 4.2vw, 54px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.02;
}

.corp-copy-wrap {
	display: grid;
	gap: 16px;
	align-self: end;
}

.corp-lede {
	margin: 0;
	max-width: 62ch;
	color: #5f5f5f;
	font-size: 16px;
	line-height: 1.72;
}

.corp-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.corp-tags span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(17, 17, 17, 0.08);
	color: #555555;
	font-size: 12px;
	font-weight: 700;
}

.corp-nav {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.corp-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(17, 17, 17, 0.1);
	color: #1d1d1f;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.corp-nav a:hover {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.92);
	border-color: rgba(17, 17, 17, 0.16);
	box-shadow: 0 16px 28px rgba(15, 23, 42, 0.06);
}

.corp-nav a:focus-visible {
	outline: 3px solid rgba(17, 17, 17, 0.22);
	outline-offset: 3px;
}

.corp-nav a.is-active {
	background: var(--corp-accent, #111111);
	border-color: transparent;
	color: #ffffff;
	box-shadow: 0 18px 34px rgba(17, 17, 17, 0.16);
}

.corp-sigstrip {
	position: relative;
	z-index: 1;
	margin-top: 18px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 12px;
}

.corp-sigcard {
	position: relative;
	overflow: hidden;
	padding: 14px 14px 14px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(17, 17, 17, 0.08);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.corp-sigcard::before {
	content: "";
	position: absolute;
	top: -60px;
	right: -60px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(17, 17, 17, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
	filter: blur(14px);
	pointer-events: none;
}

.corp-sig-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(17, 17, 17, 0.62);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.corp-sig-eyebrow i {
	color: var(--corp-accent, #111111);
}

.corp-sig-value {
	display: block;
	margin: 10px 0 6px;
	color: #111111;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: -0.02em;
}

.corp-sig-text {
	margin: 0;
	color: rgba(17, 17, 17, 0.62);
	font-size: 13px;
	line-height: 1.55;
}

.corp-kpi-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 12px;
	margin-top: 14px;
}

.corp-kpi {
	position: relative;
	overflow: hidden;
	padding: 14px;
	border-radius: 20px;
	background: rgba(17, 17, 17, 0.04);
	border: 1px solid rgba(17, 17, 17, 0.06);
}

.corp-kpi::before {
	content: "";
	position: absolute;
	top: -60px;
	right: -60px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(17, 17, 17, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
	filter: blur(14px);
	pointer-events: none;
}

.corp-kpi-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(17, 17, 17, 0.62);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.corp-kpi-label i {
	color: var(--corp-accent, #111111);
}

.corp-kpi-value {
	display: block;
	margin: 10px 0 6px;
	color: #111111;
	font-size: 34px;
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1;
}

.corp-kpi-note {
	margin: 0;
	color: rgba(17, 17, 17, 0.62);
	font-size: 13px;
	line-height: 1.55;
}

.corp-quote {
	position: relative;
	overflow: hidden;
	padding: 18px;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(17, 17, 17, 0.04) 0%, rgba(17, 17, 17, 0.02) 100%);
	border: 1px solid rgba(17, 17, 17, 0.08);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.corp-quote::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(0, 0, 0, 0.06), transparent 50%);
	pointer-events: none;
}

.corp-quote-mark {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(17, 17, 17, 0.56);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.corp-quote-mark i {
	color: var(--corp-accent, #111111);
}

.corp-quote blockquote {
	position: relative;
	z-index: 1;
	margin: 12px 0 0;
	padding-left: 14px;
	border-left: 4px solid var(--corp-accent, #111111);
	color: #111111;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.35;
}

.corp-quote cite {
	position: relative;
	z-index: 1;
	display: block;
	margin-top: 10px;
	color: rgba(17, 17, 17, 0.62);
	font-size: 13px;
	font-weight: 700;
	font-style: normal;
}

.corp-layout.corp-layout--reverse {
	grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.35fr);
}

.corp-steps {
	counter-reset: corpstep;
	list-style: none;
	padding: 0;
	margin: 14px 0 0;
	display: grid;
	gap: 12px;
}

.corp-steps li {
	counter-increment: corpstep;
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 12px;
	padding: 14px;
	border-radius: 18px;
	background: rgba(17, 17, 17, 0.04);
	border: 1px solid rgba(17, 17, 17, 0.06);
}

.corp-steps li::before {
	content: counter(corpstep);
	width: 54px;
	height: 54px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--corp-accent, #111111);
	color: #ffffff;
	font-size: 18px;
	font-weight: 900;
	box-shadow: 0 16px 30px rgba(17, 17, 17, 0.14);
}

.corp-steps li h3 {
	margin: 0;
	color: #111111;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.corp-steps li p {
	margin: 6px 0 0;
	color: rgba(17, 17, 17, 0.62);
	font-size: 14px;
	line-height: 1.6;
}

.corp-faq {
	display: grid;
	gap: 10px;
	margin-top: 12px;
}

.corp-faq details {
	border-radius: 18px;
	background: rgba(17, 17, 17, 0.04);
	border: 1px solid rgba(17, 17, 17, 0.06);
	overflow: hidden;
}

.corp-faq summary {
	cursor: pointer;
	list-style: none;
	padding: 14px 16px;
	font-weight: 800;
	color: #111111;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.corp-faq summary::-webkit-details-marker {
	display: none;
}

.corp-faq summary::after {
	content: "";
	width: 10px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	opacity: 0.7;
	transition: transform 0.2s ease;
}

.corp-faq details[open] summary::after {
	transform: rotate(225deg);
}

.corp-faq-body {
	padding: 0 16px 14px;
	color: rgba(17, 17, 17, 0.64);
	font-size: 14px;
	line-height: 1.7;
}

.corp-job-grid {
	margin-top: 14px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.corp-job-card {
	position: relative;
	overflow: hidden;
	padding: 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(17, 17, 17, 0.08);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.corp-job-card::before {
	content: "";
	position: absolute;
	top: -70px;
	right: -70px;
	width: 190px;
	height: 190px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(17, 17, 17, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
	filter: blur(16px);
	pointer-events: none;
}

.corp-job-title {
	position: relative;
	z-index: 1;
	margin: 0;
	color: #111111;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.corp-job-meta {
	position: relative;
	z-index: 1;
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.corp-job-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(17, 17, 17, 0.04);
	border: 1px solid rgba(17, 17, 17, 0.06);
	color: rgba(17, 17, 17, 0.72);
	font-size: 12px;
	font-weight: 700;
}

.corp-job-desc {
	position: relative;
	z-index: 1;
	margin: 10px 0 0;
	color: rgba(17, 17, 17, 0.64);
	font-size: 14px;
	line-height: 1.65;
}

.corp-process {
	counter-reset: corpprocess;
	list-style: none;
	padding: 0;
	margin: 14px 0 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.corp-process li {
	counter-increment: corpprocess;
	position: relative;
	overflow: hidden;
	padding: 14px;
	border-radius: 18px;
	background: rgba(17, 17, 17, 0.04);
	border: 1px solid rgba(17, 17, 17, 0.06);
}

.corp-process li::before {
	content: counter(corpprocess);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 12px;
	background: var(--corp-accent, #111111);
	color: #ffffff;
	font-size: 13px;
	font-weight: 900;
}

.corp-process li h3 {
	margin: 10px 0 6px;
	color: #111111;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.corp-process li p {
	margin: 0;
	color: rgba(17, 17, 17, 0.64);
	font-size: 13px;
	line-height: 1.6;
}

.corp-feed-grid {
	margin-top: 14px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.corp-feed-card {
	position: relative;
	overflow: hidden;
	padding: 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(17, 17, 17, 0.08);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
	display: grid;
	gap: 10px;
}

.corp-feed-card::before {
	content: "";
	position: absolute;
	top: -70px;
	right: -70px;
	width: 190px;
	height: 190px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(17, 17, 17, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
	filter: blur(16px);
	pointer-events: none;
}

.corp-feed-kicker {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	color: rgba(17, 17, 17, 0.58);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.corp-feed-title {
	position: relative;
	z-index: 1;
	margin: 0;
	color: #111111;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.25;
}

.corp-feed-text {
	position: relative;
	z-index: 1;
	margin: 0;
	color: rgba(17, 17, 17, 0.64);
	font-size: 14px;
	line-height: 1.65;
}

.corp-feed-link {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--corp-accent, #111111);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.corp-feed-link:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.corp-body {
	width: min(1500px, calc(100vw - 40px));
	margin: 18px auto 0;
}

.corp-body-shell {
	position: relative;
	overflow: hidden;
	padding: clamp(18px, 2vw, 26px);
	border-radius: 26px;
	border: 1px solid rgba(17, 17, 17, 0.08);
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 24px 56px rgba(15, 23, 42, 0.05);
}

.corp-layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
	gap: 18px;
	align-items: start;
}

.corp-article {
	display: grid;
	gap: 18px;
	min-width: 0;
}

.corp-section {
	padding: 18px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(17, 17, 17, 0.08);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.corp-section h2 {
	margin: 0 0 10px;
	color: #111111;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.corp-section p {
	margin: 0;
	color: #4f4f4f;
	font-size: 15px;
	line-height: 1.75;
}

.corp-section p+p {
	margin-top: 10px;
}

.corp-list {
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.corp-list li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 10px 12px;
	border-radius: 16px;
	background: rgba(17, 17, 17, 0.04);
	border: 1px solid rgba(17, 17, 17, 0.06);
	color: #1d1d1f;
}

.corp-list li i {
	margin-top: 3px;
	color: var(--corp-accent, #111111);
}

.corp-list strong {
	display: block;
	font-weight: 800;
}

.corp-list span {
	display: block;
	margin-top: 2px;
	color: rgba(17, 17, 17, 0.64);
	font-size: 13px;
	line-height: 1.5;
}

.corp-list a {
	color: inherit;
	text-decoration: none;
}

.corp-list a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.corp-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 14px;
}

.corp-feature {
	position: relative;
	overflow: hidden;
	padding: 16px;
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 245, 245, 0.96) 100%);
	border: 1px solid rgba(17, 17, 17, 0.08);
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.corp-feature::before {
	content: "";
	position: absolute;
	top: -60px;
	right: -60px;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(17, 17, 17, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
	filter: blur(10px);
	pointer-events: none;
}

.corp-feature-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(17, 17, 17, 0.62);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.corp-feature h3 {
	margin: 10px 0 6px;
	color: #111111;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.corp-feature p {
	margin: 0;
	color: #5c5c5c;
	font-size: 14px;
	line-height: 1.65;
}

.corp-aside {
	display: grid;
	gap: 14px;
	align-content: start;
}

.corp-aside-card {
	position: relative;
	overflow: hidden;
	padding: 18px;
	border-radius: 22px;
	background: linear-gradient(145deg, #111111 0%, #1d1d1d 50%, #3d3d3d 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.88);
}

.corp-aside-card::before {
	content: "";
	position: absolute;
	top: -90px;
	right: -60px;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--corp-aside-glow, rgba(226, 0, 27, 0.18)) 0%, rgba(255, 255, 255, 0) 72%);
	filter: blur(18px);
	pointer-events: none;
}

.corp-aside-card h3 {
	position: relative;
	z-index: 1;
	margin: 0 0 10px;
	color: #ffffff;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.corp-aside-card p {
	position: relative;
	z-index: 1;
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 14px;
	line-height: 1.7;
}

.corp-aside-facts {
	position: relative;
	z-index: 1;
	list-style: none;
	padding: 0;
	margin: 12px 0 0;
	display: grid;
	gap: 10px;
}

.corp-aside-facts li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.corp-aside-facts li i {
	margin-top: 3px;
	color: rgba(255, 255, 255, 0.85);
}

.corp-aside-facts strong {
	display: block;
	color: rgba(255, 255, 255, 0.92);
	font-size: 13px;
	font-weight: 800;
}

.corp-aside-facts span {
	display: block;
	margin-top: 2px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 12px;
	line-height: 1.4;
}

.corp-cta {
	position: relative;
	z-index: 1;
	margin-top: 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.corp-cta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 16px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(12, 12, 12, 0.45);
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: -0.01em;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, filter 0.18s ease;
}

.corp-cta a:hover {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.22);
}

.corp-cta a:active {
	transform: translateY(0);
}

.corp-cta a.is-solid {
	background: var(--corp-accent, #e2001b);
	border-color: transparent;
	color: #ffffff;
}

.corp-cta a.is-solid:hover {
	filter: brightness(1.05);
}

.corp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	border: 1px solid rgba(17, 17, 17, 0.10);
	background: rgba(255, 255, 255, 0.92);
	color: #111111;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: -0.01em;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, filter 0.18s ease;
}

.corp-btn:hover {
	transform: translateY(-1px);
	border-color: rgba(17, 17, 17, 0.18);
	background: #ffffff;
}

.corp-btn:active {
	transform: translateY(0);
}

.corp-btn.is-solid {
	background: var(--corp-accent, #111111);
	border-color: transparent;
	color: #ffffff;
}

.corp-btn.is-solid:hover {
	filter: brightness(1.05);
}

.corp-form {
	margin-top: 14px;
	display: grid;
	gap: 12px;
}

.corp-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.corp-field {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.corp-field label {
	color: rgba(17, 17, 17, 0.72);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.corp-input,
.corp-textarea,
.corp-select {
	width: 100%;
	border-radius: 16px;
	border: 1px solid rgba(17, 17, 17, 0.10);
	background: rgba(255, 255, 255, 0.96);
	padding: 12px 12px;
	color: #111111;
	font-size: 14px;
	line-height: 1.4;
	box-shadow: 0 12px 26px rgba(15, 23, 42, 0.04);
	outline: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.corp-textarea {
	resize: vertical;
	min-height: 120px;
}

.corp-select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, rgba(17, 17, 17, 0.8) 50%),
		linear-gradient(135deg, rgba(17, 17, 17, 0.8) 50%, transparent 50%);
	background-position:
		calc(100% - 18px) calc(50% - 3px),
		calc(100% - 12px) calc(50% - 3px);
	background-size: 6px 6px;
	background-repeat: no-repeat;
	padding-right: 34px;
}

.corp-input:focus,
.corp-textarea:focus,
.corp-select:focus {
	border-color: rgba(17, 17, 17, 0.22);
	box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.08), 0 14px 32px rgba(15, 23, 42, 0.07);
}

.corp-form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-top: 2px;
}

.corp-form-hint {
	margin: 0;
	color: rgba(17, 17, 17, 0.62);
	font-size: 12px;
	line-height: 1.6;
}

.corp-form-success {
	margin: 0;
	padding: 10px 12px;
	border-radius: 16px;
	border: 1px solid rgba(0, 140, 69, 0.18);
	background: rgba(0, 140, 69, 0.08);
	color: rgba(17, 17, 17, 0.92);
	font-size: 13px;
	line-height: 1.6;
}

.corp-form-title {
	margin: 0 0 6px;
	color: #111111;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: -0.02em;
}

.corp-form-subtitle {
	margin: 0;
	color: rgba(17, 17, 17, 0.62);
	font-size: 13px;
	line-height: 1.65;
}

.corp-forum {
	margin-top: 14px;
	display: grid;
	gap: 14px;
}

.corp-forum-list {
	display: grid;
	gap: 10px;
}

.corp-thread {
	border-radius: 18px;
	border: 1px solid rgba(17, 17, 17, 0.08);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
	overflow: hidden;
}

.corp-thread summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 14px;
}

.corp-thread summary::-webkit-details-marker {
	display: none;
}

.corp-thread summary::after {
	content: "+";
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(17, 17, 17, 0.10);
	background: rgba(17, 17, 17, 0.04);
	color: #111111;
	font-weight: 900;
	transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.corp-thread[open] summary::after {
	transform: rotate(45deg);
	background: rgba(17, 17, 17, 0.06);
	border-color: rgba(17, 17, 17, 0.14);
}

.corp-thread-question {
	color: #111111;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 1.35;
}

.corp-thread-status {
	flex-shrink: 0;
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid rgba(17, 17, 17, 0.10);
	background: rgba(17, 17, 17, 0.04);
	color: rgba(17, 17, 17, 0.82);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.corp-thread.is-answered .corp-thread-status {
	border-color: rgba(0, 140, 69, 0.20);
	background: rgba(0, 140, 69, 0.08);
}

.corp-thread.is-pending .corp-thread-status {
	border-color: rgba(226, 0, 27, 0.18);
	background: rgba(226, 0, 27, 0.06);
}

.corp-thread-body {
	padding: 0 14px 14px;
	display: grid;
	gap: 12px;
}

.corp-thread-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	color: rgba(17, 17, 17, 0.62);
	font-size: 12px;
	line-height: 1.4;
}

.corp-thread-meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.corp-thread-tag {
	padding: 4px 9px;
	border-radius: 999px;
	border: 1px solid rgba(17, 17, 17, 0.10);
	background: rgba(17, 17, 17, 0.04);
	color: rgba(17, 17, 17, 0.78);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.corp-thread-answer {
	border-radius: 16px;
	border: 1px solid rgba(17, 17, 17, 0.08);
	background: rgba(17, 17, 17, 0.03);
	padding: 12px 12px;
	color: rgba(17, 17, 17, 0.78);
	font-size: 14px;
	line-height: 1.7;
}

.corp-thread-answer p {
	margin: 0;
}

.corp-thread-answer-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	color: rgba(17, 17, 17, 0.86);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.corp-forum-form-shell {
	padding-top: 6px;
	border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.corporate-page-main.is-corp-company {
	--corp-accent: #2d2d2d;
	--corp-glow-a: rgba(226, 0, 27, 0.14);
	--corp-glow-b: rgba(0, 140, 69, 0.12);
	--corp-aside-glow: rgba(226, 0, 27, 0.18);
}

.corporate-page-main.is-corp-services {
	--corp-accent: #008c45;
	--corp-glow-a: rgba(0, 140, 69, 0.14);
	--corp-glow-b: rgba(21, 0, 140, 0.12);
	--corp-aside-glow: rgba(0, 140, 69, 0.18);
}

.corporate-page-main.is-corp-support {
	--corp-accent: #15008c;
	--corp-glow-a: rgba(21, 0, 140, 0.14);
	--corp-glow-b: rgba(226, 0, 27, 0.12);
	--corp-aside-glow: rgba(21, 0, 140, 0.18);
}

/* 
body.is-corporate-about .corporate-page-main {
	--corp-accent: #e2001b;
	--corp-glow-a: rgba(226, 0, 27, 0.14);
	--corp-glow-b: rgba(0, 140, 69, 0.12);
	--corp-aside-glow: rgba(226, 0, 27, 0.18);
	--corp-hero-pattern:
		radial-gradient(circle at 14% 20%, rgba(226, 0, 27, 0.10) 0%, rgba(255, 255, 255, 0) 52%),
		radial-gradient(circle at 88% 62%, rgba(0, 140, 69, 0.08) 0%, rgba(255, 255, 255, 0) 58%),
		repeating-linear-gradient(135deg, rgba(17, 17, 17, 0.035) 0 2px, rgba(255, 255, 255, 0) 2px 14px),
		linear-gradient(180deg, #f0f0f0 0%, #e7e7e7 100%);
}

body.is-corporate-vision .corporate-page-main {
	--corp-accent: #15008c;
	--corp-glow-a: rgba(21, 0, 140, 0.14);
	--corp-glow-b: rgba(226, 0, 27, 0.10);
	--corp-aside-glow: rgba(21, 0, 140, 0.18);
	--corp-hero-pattern:
		repeating-linear-gradient(0deg, rgba(21, 0, 140, 0.06) 0 1px, rgba(255, 255, 255, 0) 1px 26px),
		repeating-linear-gradient(90deg, rgba(21, 0, 140, 0.06) 0 1px, rgba(255, 255, 255, 0) 1px 26px),
		linear-gradient(180deg, #f2f1ff 0%, #e7e6ff 100%);
}

body.is-corporate-mission .corporate-page-main {
	--corp-accent: #008c45;
	--corp-glow-a: rgba(0, 140, 69, 0.14);
	--corp-glow-b: rgba(226, 0, 27, 0.10);
	--corp-aside-glow: rgba(0, 140, 69, 0.18);
	--corp-hero-pattern:
		repeating-linear-gradient(45deg, rgba(0, 140, 69, 0.06) 0 1px, rgba(255, 255, 255, 0) 1px 18px),
		repeating-linear-gradient(-45deg, rgba(226, 0, 27, 0.05) 0 1px, rgba(255, 255, 255, 0) 1px 18px),
		linear-gradient(180deg, #f0f0f0 0%, #e7e7e7 100%);
}

body.is-corporate-technical-service .corporate-page-main {
	--corp-accent: #008c45;
	--corp-glow-a: rgba(0, 140, 69, 0.14);
	--corp-glow-b: rgba(21, 0, 140, 0.10);
	--corp-aside-glow: rgba(0, 140, 69, 0.18);
	--corp-hero-pattern:
		repeating-linear-gradient(0deg, rgba(0, 140, 69, 0.08) 0 1px, rgba(255, 255, 255, 0) 1px 22px),
		linear-gradient(180deg, #f0fff7 0%, #e7f7ee 100%);
}

body.is-corporate-human-resources .corporate-page-main {
	--corp-accent: #111111;
	--corp-glow-a: rgba(17, 17, 17, 0.10);
	--corp-glow-b: rgba(226, 0, 27, 0.08);
	--corp-aside-glow: rgba(17, 17, 17, 0.18);
	--corp-hero-pattern:
		repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.05) 0 1px, rgba(255, 255, 255, 0) 1px 26px),
		linear-gradient(180deg, #f4f4f4 0%, #ececec 100%);
}

body.is-corporate-custom-care .corporate-page-main {
	--corp-accent: #e2001b;
	--corp-glow-a: rgba(226, 0, 27, 0.14);
	--corp-glow-b: rgba(0, 140, 69, 0.10);
	--corp-aside-glow: rgba(226, 0, 27, 0.18);
	--corp-hero-pattern:
		repeating-linear-gradient(135deg, rgba(226, 0, 27, 0.08) 0 1px, rgba(255, 255, 255, 0) 1px 20px),
		radial-gradient(circle at 22% 22%, rgba(226, 0, 27, 0.10) 0%, rgba(255, 255, 255, 0) 52%),
		linear-gradient(180deg, #fff2f3 0%, #f7e7e9 100%);
}

body.is-corporate-community .corporate-page-main {
	--corp-accent: #15008c;
	--corp-glow-a: rgba(21, 0, 140, 0.14);
	--corp-glow-b: rgba(226, 0, 27, 0.10);
	--corp-aside-glow: rgba(21, 0, 140, 0.18);
	--corp-hero-pattern:
		repeating-linear-gradient(0deg, rgba(21, 0, 140, 0.08) 0 1px, rgba(255, 255, 255, 0) 1px 24px),
		repeating-linear-gradient(90deg, rgba(21, 0, 140, 0.08) 0 1px, rgba(255, 255, 255, 0) 1px 24px),
		linear-gradient(180deg, #f3f2ff 0%, #e8e6ff 100%);
} */

@media (max-width: 980px) {
	.corp-head {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.corp-title {
		max-width: none;
	}

	.corp-layout {
		grid-template-columns: 1fr;
	}

	.corp-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {

	.corp-hero,
	.corp-body {
		width: min(1500px, calc(100vw - 32px));
	}

	.corp-hero-shell,
	.corp-body-shell {
		padding: 20px;
		border-radius: 22px;
	}

	.corp-title {
		font-size: clamp(30px, 9vw, 40px);
		line-height: 1.05;
	}

	.corp-lede {
		font-size: 14px;
	}

	.corp-section {
		padding: 16px;
		border-radius: 18px;
	}

	.corp-feature-grid {
		grid-template-columns: 1fr;
	}

	.corp-form-grid {
		grid-template-columns: 1fr;
	}

	.corp-thread summary {
		flex-wrap: wrap;
		align-items: flex-start;
	}
}

@media (max-width: 980px) {
	.corp-layout.corp-layout--reverse {
		grid-template-columns: 1fr;
	}

	.corp-process {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {

	.corp-job-grid,
	.corp-feed-grid {
		grid-template-columns: 1fr;
	}

	.corp-process {
		grid-template-columns: 1fr;
	}
}

/* NEWS PAGE (aligned with Contact page look) */
main.news-page {
	--corp-accent: #e2001b;
	--corp-glow-a: rgba(21, 0, 140, 0.12);
	--corp-glow-b: rgba(226, 0, 27, 0.14);
	--corp-hero-pattern: linear-gradient(180deg, #f0f0f0 0%, #e7e7e7 100%);

	--news-bg: #e5e5e5;
	--news-paper: rgba(255, 255, 255, 0.86);
	--news-white: #ffffff;
	--news-ink: #111111;
	--news-muted: rgba(17, 17, 17, 0.62);
	--news-line: rgba(17, 17, 17, 0.08);
	--news-shadow: 0 24px 56px rgba(15, 23, 42, 0.07);
	--news-radius-xl: 26px;
	--news-radius-lg: 22px;
	--news-radius-md: 18px;
}

main.news-page::before,
main.news-page::after {
	filter: blur(18px);
	opacity: 0.95;
}

main.news-page::before {
	background: radial-gradient(circle, var(--corp-glow-a) 0%, rgba(255, 255, 255, 0) 72%);
}

main.news-page::after {
	background: radial-gradient(circle, var(--corp-glow-b) 0%, rgba(255, 255, 255, 0) 72%);
}

main.news-page .news-shell {
	width: min(1500px, calc(100vw - 40px));
}

main.news-page .news-hero__panel {
	padding: clamp(26px, 3vw, 36px);
	border-radius: var(--news-radius-xl);
	background: var(--corp-hero-pattern);
	border: 1px solid rgba(17, 17, 17, 0.08);
	box-shadow: var(--news-shadow);
	color: var(--news-ink);
}

main.news-page .news-hero__panel::before {
	top: -120px;
	left: -80px;
	width: 320px;
	height: 320px;
	border: 0;
	background: radial-gradient(circle, var(--corp-glow-a) 0%, rgba(255, 255, 255, 0) 72%);
	filter: blur(18px);
}

main.news-page .news-hero__panel::after {
	top: -90px;
	right: -70px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, var(--corp-glow-b) 0%, rgba(255, 255, 255, 0) 72%);
	filter: blur(18px);
}

main.news-page .news-kicker {
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(17, 17, 17, 0.08);
	color: rgba(17, 17, 17, 0.62);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

main.news-page .news-kicker::before {
	content: none;
}

main.news-page .news-hero__title {
	margin-top: 14px;
	max-width: 22ch;
	color: #111111;
	font-family: Poppins, sans-serif;
	font-size: clamp(34px, 4.2vw, 54px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.02;
	text-transform: none;
}

main.news-page .news-hero__summary {
	margin-top: 14px;
	color: rgba(17, 17, 17, 0.64);
	font-size: 16px;
	line-height: 1.72;
}

main.news-page .news-btn {
	font-weight: 800;
	letter-spacing: -0.01em;
}

main.news-page .news-btn:focus-visible,
main.news-page .news-filter:focus-visible,
main.news-page .news-card__link:focus-visible {
	outline: 3px solid rgba(17, 17, 17, 0.22);
	outline-offset: 3px;
}

main.news-page .news-btn--primary {
	background: var(--corp-accent);
	color: #ffffff;
	box-shadow: 0 18px 34px rgba(17, 17, 17, 0.16);
}

main.news-page .news-btn--ghost {
	border: 1px solid rgba(17, 17, 17, 0.10);
	background: rgba(255, 255, 255, 0.82);
	color: #111111;
	box-shadow: none;
}

main.news-page .news-metric-card {
	position: relative;
	overflow: hidden;
	padding-top: 28px;
	background: rgba(255, 255, 255, 0.84);
	backdrop-filter: none;
	border: 1px solid rgba(17, 17, 17, 0.08);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
	color: #111111;
}

main.news-page .news-metric-card::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 22px;
	width: 56px;
	height: 4px;
	border-radius: 999px;
	background: var(--metric-accent, var(--corp-accent));
	opacity: 0.95;
}

main.news-page .news-hero__metrics .news-metric-card:nth-child(1) {
	--metric-accent: #15008c;
}

main.news-page .news-hero__metrics .news-metric-card:nth-child(2) {
	--metric-accent: #e2001b;
}

main.news-page .news-hero__metrics .news-metric-card:nth-child(3) {
	--metric-accent: #008c45;
}

main.news-page .news-metric-card__label {
	color: rgba(17, 17, 17, 0.62);
	font-weight: 900;
	letter-spacing: 0.14em;
}

main.news-page .news-metric-card__value {
	font-family: Poppins, sans-serif;
	font-size: 42px;
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1;
}

main.news-page .news-metric-card__copy {
	color: rgba(17, 17, 17, 0.62);
}

main.news-page .news-toolbar__eyebrow {
	color: rgba(17, 17, 17, 0.56);
	font-weight: 800;
	letter-spacing: 0.14em;
}

main.news-page .news-toolbar__title {
	color: #111111;
	font-family: Poppins, sans-serif;
	font-size: clamp(28px, 3.6vw, 44px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.08;
	text-transform: none;
}

main.news-page .news-toolbar__summary {
	color: rgba(17, 17, 17, 0.62);
}

main.news-page .news-filter {
	border: 1px solid rgba(17, 17, 17, 0.10);
	background: rgba(255, 255, 255, 0.78);
	color: #111111;
	font-weight: 700;
}

main.news-page .news-filter.is-active {
	background: var(--corp-accent);
	border-color: transparent;
	color: #ffffff;
	box-shadow: 0 18px 34px rgba(17, 17, 17, 0.16);
}

main.news-page .news-masonry {
	column-gap: 18px;
}

main.news-page .news-card {
	--card-accent: rgba(17, 17, 17, 0.22);
	border-radius: var(--news-radius-lg);
	border: 1px solid rgba(17, 17, 17, 0.08);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
	backdrop-filter: none;
}

main.news-page .news-card--light {
	--card-accent: var(--corp-accent);
}

main.news-page .news-card--soft {
	--card-accent: #15008c;
	background: rgba(255, 255, 255, 0.82);
}

main.news-page .news-card--dark,
main.news-page .news-card--accent {
	--card-accent: rgba(255, 255, 255, 0.9);
}

main.news-page .news-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 44px rgba(15, 23, 42, 0.08);
	border-color: rgba(17, 17, 17, 0.12);
}

main.news-page .news-card--dark {
	background: linear-gradient(180deg, #1c1c1c 0%, #0f0f0f 100%);
	border-color: rgba(255, 255, 255, 0.08);
}

main.news-page .news-card--accent {
	background: linear-gradient(145deg, var(--corp-accent) 0%, #a80618 100%);
	border-color: rgba(255, 255, 255, 0.12);
}

main.news-page .news-card__eyebrow,
main.news-page .news-card__category,
main.news-page .news-chip,
main.news-page .news-agenda__date {
	letter-spacing: 0.14em;
}

main.news-page .news-card__eyebrow {
	color: rgba(17, 17, 17, 0.58);
	font-weight: 800;
}

main.news-page .news-card__eyebrow::before {
	content: none;
}

main.news-page .news-card__body {
	position: relative;
	padding-top: 34px;
}

main.news-page .news-card__body::before {
	content: "";
	position: absolute;
	top: 16px;
	left: 20px;
	width: 56px;
	height: 4px;
	border-radius: 999px;
	background: var(--card-accent);
	opacity: 0.95;
}

main.news-page .news-card__category {
	background: rgba(17, 17, 17, 0.04);
	border: 1px solid rgba(17, 17, 17, 0.06);
}

main.news-page .news-card__title {
	color: #111111;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

main.news-page .news-card__excerpt,
main.news-page .news-card__note,
main.news-page .news-card__footer,
main.news-page .news-card__author,
main.news-page .news-agenda__label {
	color: rgba(17, 17, 17, 0.62);
}

main.news-page .news-card__link {
	background: #2d2d2d;
	border: 0;
	color: #ffffff;
	box-shadow: 0 16px 30px rgba(17, 17, 17, 0.14);
	transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

main.news-page .news-card__link:hover {
	filter: brightness(1.05);
	box-shadow: 0 18px 34px rgba(17, 17, 17, 0.18);
}

main.news-page .news-card--dark .news-card__link,
main.news-page .news-card--accent .news-card__link {
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: none;
}

main.news-page .news-chip {
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(17, 17, 17, 0.08);
	color: rgba(17, 17, 17, 0.62);
	font-weight: 700;
}

main.news-page .news-card--dark .news-chip,
main.news-page .news-card--accent .news-chip {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.84);
}

main.news-page .news-card__quote {
	color: inherit;
	font-family: Poppins, sans-serif;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.35;
	text-transform: none;
}

main.news-page .news-card__author {
	font-weight: 800;
	letter-spacing: 0.14em;
}

main.news-page .news-agenda__item {
	border: 1px solid rgba(17, 17, 17, 0.06);
}

main.news-page .news-agenda__date {
	color: var(--corp-accent);
}

main.news-page .news-bottom-cta {
	padding: clamp(18px, 2vw, 26px);
	border-radius: var(--news-radius-xl);
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid rgba(17, 17, 17, 0.08);
	box-shadow: 0 24px 56px rgba(15, 23, 42, 0.05);
}

main.news-page .news-bottom-cta__title {
	font-family: Poppins, sans-serif;
	font-size: clamp(26px, 3.2vw, 40px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.1;
	text-transform: none;
}

/* Motion prep (prevents 1-frame flashes before GSAP runs) */
html.has-motion body.is-home-page .post-horizontal-sections>*,
html.has-motion body.is-contact-page .contact-geo-head,
html.has-motion body.is-contact-page .contact-map-card,
html.has-motion body.is-contact-page .contact-map-legend-item,
html.has-motion body.is-contact-page .contact-location-card,
html.has-motion body.is-contact-page .post-horizontal-sections>*,
html.has-motion body.is-product-page .container,
html.has-motion body.is-product-page .rating,
html.has-motion body.is-product-page .review-card,
html.has-motion body.is-product-page .description,
html.has-motion body.is-product-page .tags {
	opacity: 0;
	visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {

	html.has-motion body.is-home-page .post-horizontal-sections>*,
	html.has-motion body.is-contact-page .contact-geo-head,
	html.has-motion body.is-contact-page .contact-map-card,
	html.has-motion body.is-contact-page .contact-map-legend-item,
	html.has-motion body.is-contact-page .contact-location-card,
	html.has-motion body.is-contact-page .post-horizontal-sections>*,
	html.has-motion body.is-product-page .container,
	html.has-motion body.is-product-page .rating,
	html.has-motion body.is-product-page .review-card,
	html.has-motion body.is-product-page .description,
	html.has-motion body.is-product-page .tags {
		opacity: 1 !important;
		visibility: visible !important;
	}
}