:root {
	--ch-dark: #020918;
	--ch-dark-soft: #081225;
	--ch-red: #ff4b55;
	--ch-white: #ffffff;
	--ch-light: #f6f7f9;
	--ch-text: #111827;
	--ch-muted: #6b7280;
	--ch-line: #e5e7eb;
	--ch-container: 1280px;
	--ch-header-h: 88px;
	--ch-gradient: linear-gradient(136deg, #FF504B, #e676b9);
}

/* Gradient text utility */
.gradient_text {
	background: var(--ch-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* BASE */

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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: var(--ch-text);
	min-width: 320px;
	margin: 0;
	padding: 0;
	position: relative;
	overflow-x: hidden;
}

.noscroll {
	overflow: hidden;
}

.text-center {
	text-align: center;
}

::selection {
	background-color: var(--ch-red);
	color: #fff;
}

img {
	max-width: 100%;
}

/* CRITICAL: hide mobile menu immediately */
#mobile_menu {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 100;
	width: 320px;
	padding: 100px 28px 40px;
	background: rgba(2, 9, 24, 0.97);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	transform: translateX(-100%);
	visibility: hidden;
	transition: transform 0.3s ease, visibility 0.3s ease;
	overflow-y: auto;
}

#mobile_menu.active {
	transform: translateX(0);
	visibility: visible;
}

/* MAIN SECTION */

#main {
	position: relative;
	min-height: 780px;
	overflow: hidden;
	background:
		radial-gradient(circle at 65% 32%, rgba(42, 104, 147, 0.48), transparent 28%),
		linear-gradient(90deg, #020918 0%, rgba(2, 9, 24, 0.96) 34%, rgba(2, 9, 24, 0.74) 58%, #020918 100%);
	color: #fff;
}

#main::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 180px;
	background: linear-gradient(to top, #020918, transparent);
	pointer-events: none;
}

#main .container {
	position: relative;
	z-index: 2;
	max-width: var(--ch-container);
	margin: 0 auto;
	padding: 0 32px;
	box-sizing: border-box;
}

/* HEADER */

.site_header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(2, 9, 24, 0.62);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

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

body.admin-bar .services_mega_menu {
	top: calc(var(--ch-header-h) + 32px);
}

.head_block {
	height: var(--ch-header-h);
	max-width: var(--ch-container);
	margin: 0 auto;
	padding: 0 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.logo {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}

.logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.logo img {
	display: block;
	height: 42px;
	width: auto;
}

/* HEADER MENU */

.menu {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	min-width: 0;
}

.menu .header_menu {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
}

.menu .header_menu > li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu .header_menu > li > a {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 10px 0;
	font-size: 14px;
	line-height: 1;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	transition: color 0.2s ease;
}

.menu .header_menu > li > a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 2px;
	width: 0;
	height: 2px;
	border-radius: 999px;
	background: var(--ch-red);
	transition: width 0.22s ease;
}

.menu .header_menu > li > a:hover,
.menu .header_menu > li.current-menu-item > a {
	color: #fff;
}

.menu .header_menu > li > a:hover::after,
.menu .header_menu > li.current-menu-item > a::after {
	width: 100%;
}

/* HIDE "Main/Головна" MENU ITEM */

.menu .header_menu > li.menu-home-hidden {
	display: none;
}

/* SERVICES MENU ITEM — red pill button */

.menu .header_menu > li.menu-services > a {
	padding: 12px 21px;
	border-radius: 999px;
	background: var(--ch-red);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	box-shadow: 0 10px 28px rgba(255, 75, 85, 0.2);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	cursor: pointer;
}

.menu .header_menu > li.menu-services > a::after {
	content: "";
	position: static;
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-left: 9px;
	border: 0;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	border-radius: 0;
	background: none;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 0.2s ease;
	vertical-align: middle;
}

.menu .header_menu > li.menu-services > a:hover {
	box-shadow: 0 14px 38px rgba(255, 75, 85, 0.32);
}

.menu .header_menu > li.menu-services.is-open > a::after {
	transform: rotate(225deg) translateY(-1px);
}

/* LANG */

.lang {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}

.lang ul,
.lang .wpml-ls ul {
	margin: 0;
	padding: 4px;
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
}

.lang li,
.lang .wpml-ls li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.lang a,
.lang .wpml-ls a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 34px;
	padding: 0 10px;
	border-radius: 999px;
	font-size: 12px;
	line-height: 1;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.62);
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.lang a:hover,
.lang .wpml-ls a:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.lang .wpml-ls-current-language > a,
.lang .is-active,
.lang a.is-active {
	background: var(--ch-red);
	color: #fff;
}

/* CONTACT HEADER */

.contact {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 16px;
}

.contact__wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}

.contact__mm a {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.contact__mm a:hover {
	background: #fff;
	border-color: #fff;
	transform: translateY(-1px);
}

.contact__mm img {
	display: block;
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.contact__mm span {
	display: none;
}

/* Tooltip on hover */
[data-tooltip] {
	position: relative;
}

[data-tooltip]::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%) translateY(4px);
	padding: 6px 14px;
	background: var(--ch-dark);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	border-radius: 8px;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

[data-tooltip]::before {
	content: "";
	position: absolute;
	bottom: calc(100% + 4px);
	left: 50%;
	transform: translateX(-50%);
	border: 5px solid transparent;
	border-top-color: var(--ch-dark);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease;
}

[data-tooltip]:hover::after {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

[data-tooltip]:hover::before {
	opacity: 1;
}

.contact .btn {
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 24px;
	border: 1px solid var(--ch-red);
	border-radius: 999px;
	background: transparent;
	color: #fff;
	font-size: 13px;
	line-height: 1;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact .btn:hover {
	background: #fff;
	color: var(--ch-dark);
	transform: translateY(-1px);
}

.hamburher {
	display: none;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
}

/* MEGA MENU */

.services_mega_menu[hidden] {
	display: none !important;
}

.services_mega_menu {
	position: fixed;
	top: var(--ch-header-h);
	left: 0;
	right: 0;
	z-index: 45;
	margin-top: -1px;
	background: var(--ch-light);
	border-bottom: 1px solid var(--ch-line);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10), 0 4px 16px rgba(0, 0, 0, 0.05);
	color: var(--ch-text);
}

.services_mega_menu__container {
	width: 100%;
	max-width: var(--ch-container);
	margin: 0 auto;
	padding: 32px 32px 36px;
	box-sizing: border-box;
}

/* MEGA MENU — top section */

.services_mega_menu__top {
	margin-bottom: 24px;
	padding-bottom: 22px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	border-bottom: 1px solid var(--ch-line);
}

.services_mega_menu__intro {
	max-width: 680px;
}

.services_mega_menu__eyebrow {
	margin: 0 0 10px;
	font-size: 12px;
	line-height: 1;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.24em;
	color: var(--ch-red);
}

.services_mega_menu__title {
	font-size: 28px;
	line-height: 1.15;
	font-weight: 900;
	letter-spacing: -0.03em;
	color: var(--ch-text);
}

.services_mega_menu__text {
	margin: 10px 0 0;
	max-width: 650px;
	font-size: 14px;
	line-height: 1.7;
	font-weight: 500;
	color: var(--ch-muted);
}

.services_mega_menu__help {
	flex: 0 0 auto;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 22px;
	border: 1px solid var(--ch-line);
	border-radius: 999px;
	background: #fff;
	color: var(--ch-text);
	font-size: 12px;
	line-height: 1;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-decoration: none;
	white-space: nowrap;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.services_mega_menu__help::after {
	content: "\2192";
	font-size: 14px;
	transition: transform 0.2s ease;
}

.services_mega_menu__help:hover {
	border-color: var(--ch-dark);
	background: var(--ch-dark);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(2, 9, 24, 0.15);
}

.services_mega_menu__help:hover::after {
	transform: translateX(2px);
}

/* MEGA MENU — body layout */

.services_mega_menu__body {
	display: grid;
	grid-template-columns: 310px 1fr;
	gap: 20px;
	align-items: start;
}

/* MEGA MENU — category cards (left column) */

.services_mega_menu__nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: mega-cat;
}

.services_mega_menu__nav > li {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-increment: mega-cat;
}

.services_mega_menu__nav > li > a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 20px;
	border: 1px solid var(--ch-line);
	border-radius: 22px;
	background: #fff;
	color: var(--ch-text);
	font-size: 15px;
	line-height: 1.3;
	font-weight: 800;
	text-decoration: none;
	box-sizing: border-box;
	transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.services_mega_menu__nav > li > a::before {
	content: counter(mega-cat, decimal-leading-zero);
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: var(--ch-light);
	color: var(--ch-muted);
	font-size: 13px;
	font-weight: 800;
	transition: background 0.2s ease, color 0.2s ease;
}

.services_mega_menu__nav > li > a:hover {
	border-color: rgba(0, 0, 0, 0.12);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	transform: translateY(-1px);
}

.services_mega_menu__nav > li.is-active > a {
	background: var(--ch-dark);
	border-color: var(--ch-dark);
	color: #fff;
	box-shadow: 0 8px 24px rgba(2, 9, 24, 0.2);
}

.services_mega_menu__nav > li.is-active > a::before {
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.7);
}

/* MEGA MENU — right panel (populated via JS) */

.services_mega_menu__panel {
	padding: 24px;
	border: 1px solid var(--ch-line);
	border-radius: 28px;
	background: #fff;
	box-sizing: border-box;
}

.services_mega_menu__panel:empty {
	display: none;
}

/* Panel header */

.services_mega_menu__panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--ch-line);
}

.services_mega_menu__panel-title {
	font-size: 18px;
	font-weight: 800;
	color: var(--ch-text);
	letter-spacing: -0.02em;
}

.services_mega_menu__panel-link {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--ch-light);
	color: var(--ch-muted);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.services_mega_menu__panel-link::after {
	content: "\2192";
	font-size: 11px;
	transition: transform 0.2s ease;
}

.services_mega_menu__panel-link:hover {
	background: var(--ch-dark);
	color: #fff;
}

.services_mega_menu__panel-link:hover::after {
	transform: translateX(2px);
}

/* Panel items grid */

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

.services_mega_menu__panel-item {
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 16px;
	border: 1px solid var(--ch-line);
	border-radius: 16px;
	background: var(--ch-light);
	color: var(--ch-text);
	font-size: 13px;
	line-height: 1.3;
	font-weight: 700;
	text-decoration: none;
	box-sizing: border-box;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.services_mega_menu__panel-arrow {
	flex: 0 0 auto;
	color: var(--ch-muted);
	font-size: 13px;
	transition: color 0.2s ease, transform 0.2s ease;
}

.services_mega_menu__panel-item:hover {
	background: #fff;
	border-color: rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transform: translateY(-1px);
}

.services_mega_menu__panel-item:hover .services_mega_menu__panel-arrow {
	color: var(--ch-red);
	transform: translateX(2px);
}

/* Hide original sub-menus (data source only) */

.services_mega_menu__nav > li > .sub-menu {
	display: none !important;
}

/* HERO */

.main_block {
	position: relative;
	z-index: 3;
	min-height: calc(780px - var(--ch-header-h));
	display: grid;
	grid-template-columns: 1.04fr 0.96fr;
	align-items: center;
	gap: 48px;
	padding: calc(var(--ch-header-h) + 60px) 0 90px;
	box-sizing: border-box;
}

.main_block .content {
	max-width: 680px;
}

.pretitle {
	width: fit-content;
	margin-bottom: 28px;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 9px 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	line-height: 1.35;
	font-weight: 700;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.pretitle img {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.title {
	font-size: 70px;
	line-height: 1.02;
	font-weight: 900;
	letter-spacing: -0.055em;
	color: #fff;
}

.title span {
	color: var(--ch-red);
}

.subtitle {
	max-width: 610px;
	margin-top: 28px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 18px;
	line-height: 1.75;
	font-weight: 500;
}

.main_features {
	max-width: 610px;
	margin-top: 34px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.main_feature {
	min-height: 92px;
	padding: 17px 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.07);
	color: rgba(255, 255, 255, 0.86);
	font-size: 14px;
	line-height: 1.35;
	font-weight: 800;
	box-sizing: border-box;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.main_feature img {
	display: block;
	width: 18px;
	height: 18px;
	margin-bottom: 10px;
	object-fit: contain;
}

.main_actions {
	margin-top: 40px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.btn {
	min-height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 30px;
	border-radius: 999px;
	font-size: 13px;
	line-height: 1;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn_primary {
	border: 1px solid var(--ch-red);
	background: var(--ch-red);
	color: #fff;
	box-shadow: 0 18px 44px rgba(255, 75, 85, 0.32);
}

.btn_primary:hover {
	background: #e8434c;
	border-color: #e8434c;
	color: #fff;
	transform: translateY(-1px) scale(1.02);
	box-shadow: 0 22px 50px rgba(255, 75, 85, 0.4);
}

.btn_primary:focus,
.btn_primary:active {
	background: #d63d45;
	border-color: #d63d45;
	color: #fff;
	outline: none;
}

.btn_secondary {
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
}

.btn_secondary:hover {
	background: #fff;
	color: #111827;
	border-color: #fff;
	transform: translateY(-1px);
}

.main_note {
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.55);
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
}

/* HERO VISUAL */

.main_visual {
	position: relative;
	height: 620px;
}

.main_visual__card {
	position: absolute;
	top: 48px;
	right: 32px;
	width: 430px;
	height: 540px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 44px;
	background:
		radial-gradient(circle at 50% 20%, rgba(84, 137, 181, 0.55), transparent 45%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
	box-shadow: 0 35px 100px rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	overflow: hidden;
}

.main_visual__card::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 120px;
	width: 280px;
	height: 280px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	filter: blur(55px);
	transform: translateX(-50%);
}

.main_visual__tech {
	position: absolute;
	z-index: 2;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.main_visual__tech img {
	display: block;
	width: 28px;
	height: 28px;
	margin-bottom: 9px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.main_visual__tech span {
	display: block;
	color: #fff;
	font-size: 14px;
	line-height: 1.3;
	font-weight: 800;
}

.main_visual__tech--left {
	left: 34px;
	top: 56px;
}

.main_visual__tech--right {
	right: 30px;
	top: 150px;
}

.main_visual__bottom {
	position: absolute;
	z-index: 3;
	left: 32px;
	right: 32px;
	bottom: 40px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.main_visual__meta {
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.main_visual__meta span {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 0 12px;
	border-radius: 999px;
	background: #fff;
	color: #111827;
	font-size: 11px;
	line-height: 1;
	font-weight: 900;
	text-transform: uppercase;
}

.main_visual__meta strong {
	color: var(--ch-red);
	font-size: 11px;
	line-height: 1;
	font-weight: 900;
	text-transform: uppercase;
}

.main_visual__title {
	color: #fff;
	font-size: 25px;
	line-height: 1.15;
	font-weight: 900;
	letter-spacing: -0.03em;
}

.main_visual__text {
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	line-height: 1.65;
	font-weight: 500;
}

/* MOBILE MENU — inner elements */

#mobile_menu .mobile_menu__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

#mobile_menu .mobile_menu__list li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#mobile_menu .mobile_menu__list li a {
	display: block;
	padding: 14px 0;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.2s ease;
}

#mobile_menu .mobile_menu__list li a:hover {
	color: var(--ch-red);
}

#mobile_menu .mobile_menu__list li:last-child {
	border-bottom: 0;
}

.mobile_menu__services {
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile_menu__services-title {
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--ch-red);
	margin-bottom: 14px;
}

.mobile_services_menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile_services_menu li a {
	display: block;
	padding: 10px 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.mobile_services_menu .sub-menu {
	margin: 0;
	padding: 0 0 0 16px;
	list-style: none;
}

.mobile_services_menu .sub-menu li a {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
}

.mobile_menu__lang {
	margin-top: 24px;
}

.mobile_menu__contact {
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.mobile_menu__contact .contact__wrap {
	flex-direction: row;
	gap: 10px;
}

.mobile_menu__contact .contact__mm span {
	display: none;
}

.mobile_menu__contact .btn {
	width: 100%;
	text-align: center;
}

/* =========================================
   SERVICE PAGE — COMMON COMPONENTS
   ========================================= */

.service_page .container {
	max-width: var(--ch-container);
	margin: 0 auto;
	padding: 0 32px;
}

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

.section_eyebrow {
	display: block;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.025em;
	color: var(--ch-red);
	margin: 0 0 12px;
	background: var(--ch-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section_heading {
	margin-bottom: 48px;
}

.section_heading h2 {
	font-size: 48px;
	font-weight: 900;
	letter-spacing: -0.025em;
	line-height: 1.1;
	color: #18181b;
	margin: 0 0 20px;
}

.section_heading p {
	font-size: 18px;
	line-height: 1.78;
	color: #52525b;
	margin: 0;
	max-width: 650px;
}

.section_heading--center {
	text-align: center;
}

.section_heading--center p {
	margin-left: auto;
	margin-right: auto;
}

.text_link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 900;
	color: var(--ch-red);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	transition: opacity 0.2s ease;
}

.text_link::after {
	content: "\2192";
	transition: transform 0.2s ease;
}

.text_link:hover {
	opacity: 0.85;
}

.text_link:hover::after {
	transform: translateX(3px);
}

.btn_secondary--dark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border: 1px solid #d4d4d8;
	border-radius: 999px;
	background: #fff;
	color: #18181b;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	text-decoration: none;
	white-space: nowrap;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.btn_secondary--dark:hover {
	border-color: #09090b;
	transform: translateY(-1px);
}

/* =========================================
   SERVICE PAGE — HERO
   ========================================= */

.service_hero__grid {
	position: relative;
	z-index: 3;
	min-height: calc(780px - var(--ch-header-h));
	display: grid;
	grid-template-columns: 1.04fr 0.96fr;
	align-items: center;
	gap: 48px;
	padding: calc(var(--ch-header-h) + 60px) 0 90px;
}

.service_hero__content {
	max-width: 680px;
}

.service_hero__eyebrow {
	width: fit-content;
	margin-bottom: 28px;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 9px 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	line-height: 1.35;
	font-weight: 700;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

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

.service_hero__title {
	font-size: 64px;
	line-height: 1.04;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #fff;
	margin: 0 0 24px;
	background: var(--ch-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.service_hero__text {
	max-width: 560px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 17px;
	line-height: 1.75;
	font-weight: 500;
	margin: 0 0 32px;
}

.service_hero__features {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 36px;
}

.service_hero__feature {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	color: rgba(255, 255, 255, 0.86);
	font-size: 14px;
	font-weight: 700;
}

.service_hero__feature img {
	width: 16px;
	height: 16px;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(40%) sepia(74%) saturate(2654%) hue-rotate(331deg) brightness(99%) contrast(101%);
}

.service_hero__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
}

/* btn base is now global — see .btn above */

.service_hero__note {
	color: rgba(255, 255, 255, 0.55);
	font-size: 14px;
	line-height: 1.5;
	font-weight: 500;
	margin: 0;
}

/* --- Service Hero Visual Card --- */

.service_hero__visual {
	position: relative;
	height: 620px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service_hero__image {
	width: 100%;
	max-width: 700px;
	height: auto;
}

.service_visual_card {
	position: absolute;
	top: 48px;
	right: 32px;
	width: 430px;
	height: 540px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 44px;
	background:
		radial-gradient(circle at 50% 20%, rgba(84, 137, 181, 0.55), transparent 45%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
	box-shadow: 0 35px 100px rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.service_visual_card__top {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
}

.service_visual_card__top span {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 0 12px;
	border-radius: 999px;
	background: #fff;
	color: #111827;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.service_visual_card__top strong {
	color: var(--ch-red);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.service_visual_card__screen {
	flex: 1 1 auto;
	margin: 0 24px;
	padding: 20px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.service_visual_card__line {
	height: 8px;
	width: 60%;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.12);
	margin-bottom: 8px;
}

.service_visual_card__line--wide {
	width: 85%;
}

.service_visual_card__items {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.service_visual_card__items > div {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.service_visual_card__items img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.85;
}

.service_visual_card__items span {
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	font-weight: 600;
}

.service_visual_card__bottom {
	flex: 0 0 auto;
	padding: 24px;
}

.service_visual_card__bottom h2 {
	color: #fff;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 900;
	letter-spacing: -0.02em;
	margin: 0 0 10px;
}

.service_visual_card__bottom p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	line-height: 1.6;
	font-weight: 500;
	margin: 0;
}

/* =========================================
   SERVICE PAGE — INTRO
   ========================================= */

.service_intro {
	padding: 96px 0;
	background: #fff;
}

.service_intro__grid {
	display: grid;
	grid-template-columns: .95fr 1.05fr;
	gap: 56px;
	align-items: start;
}

/* Left content */

.service_intro__content {
	max-width: 672px;
}

.service_intro__eyebrow {
	font-size: 14px;
	font-weight: 600;
	color: var(--ch-red);
	margin: 0 0 12px;
	letter-spacing: 0.025em;
}

.service_intro__heading {
	font-size: 48px;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: #18181b;
	margin: 0 0 20px;
}

.service_intro__text {
	font-size: 18px;
	line-height: 1.78;
	color: #52525b;
	margin: 0;
}

/* Right card */

.service_intro__card {
	padding: 32px;
	border-radius: 36px;
	background: #09090b;
	color: #fff;
	box-shadow: 0 24px 80px rgba(2, 9, 24, 0.22);
}

.service_intro__card-label {
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--ch-red);
	margin: 0;
}

.service_intro__items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 32px;
}

.service_intro__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.06);
}

.service_intro__item img {
	width: 19px;
	height: 19px;
	flex: 0 0 auto;
	margin-top: 2px;
	filter: brightness(0) saturate(100%) invert(40%) sepia(74%) saturate(2654%) hue-rotate(331deg) brightness(99%) contrast(101%);
}

.service_intro__item span {
	font-size: 14px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.86);
	line-height: 1.5;
}

.service_intro__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 900;
	color: var(--ch-red);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	margin-top: 36px;
	transition: opacity 0.2s ease;
}

.service_intro__cta::after {
	content: "\2192";
	font-size: 17px;
	transition: transform 0.2s ease;
}

.service_intro__cta:hover {
	opacity: 0.75;
}

.service_intro__cta:hover::after {
	transform: translateX(3px);
}

/* =========================================
   SERVICE PAGE — QUICK CONTACT
   ========================================= */

.quick_contact {
	padding: 0;
	background: #09090b;
	color: #fff;
	box-shadow: 0 18px 60px rgba(2, 9, 24, 0.14);
}

.quick_contact__inner {
	display: grid;
	grid-template-columns: 1fr auto auto;
	gap: 24px;
	align-items: center;
	padding: 32px 0;
}

.quick_contact__content {
	max-width: 580px;
}

.quick_contact__content .section_eyebrow {
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.quick_contact__content h2 {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.025em;
	line-height: 1.25;
	margin: 0 0 12px;
	color: #fff;
}

.quick_contact__content > p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.58);
	margin: 0;
	line-height: 1.5;
}

/* .quick_contact__form — form tag is a transparent wrapper, pill styling is on > p */

.quick_contact__messengers {
	display: flex;
	gap: 8px;
}

.quick_contact__messengers a {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	transition: background 0.2s ease;
}

.quick_contact__messengers a:hover {
	background: #fff;
}

.quick_contact__messengers img {
	width: 19px;
	height: 19px;
	object-fit: contain;
}

/* =========================================
   SERVICE PAGE — TASKS
   ========================================= */

.service_tasks {
	padding: 96px 0 96px;
	background: var(--ch-light);
}

.service_tasks__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 64px;
}

.service_task_card {
	padding: 32px;
	border: 1px solid #e4e4e7;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 18px 60px rgba(2, 9, 24, 0.07);
	transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.service_task_card:hover {
	box-shadow: 0 22px 70px rgba(255, 75, 85, 0.14);
	border-color: #fecaca;
	transform: translateY(-4px);
}

.service_task_card > a {
	display: block;
	color: inherit;
	text-decoration: none;
}

.service_task_card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: #09090b;
	margin-bottom: 28px;
	box-shadow: 0 14px 30px rgba(2, 9, 24, 0.16);
	transition: transform 0.3s ease;
}

.service_task_card:hover .service_task_card__icon {
	transform: scale(1.05);
}

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

.service_task_card > img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	object-fit: contain;
	margin-bottom: 28px;
	filter: brightness(0) invert(1);
}

.service_task_card h3 {
	font-size: 20px;
	font-weight: 900;
	color: #18181b;
	margin: 0 0 16px;
}

.service_task_card p {
	font-size: 15px;
	line-height: 1.87;
	color: #52525b;
	margin: 0;
}

/* =========================================
   SERVICE PAGE — PROCESS
   ========================================= */

.service_process {
	padding: 112px 0;
	background: #fff;
}

.service_process__grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 64px;
	align-items: start;
}

.service_process .section_heading {
	margin-bottom: 0;
}

.process_list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.process_item {
	display: flex;
	gap: 24px;
	padding: 24px;
	border: 1px solid #e4e4e7;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 14px 50px rgba(2, 9, 24, 0.06);
}

.process_item__number {
	flex: 0 0 auto;
	width: 56px;
	height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: var(--ch-red);
	color: #fff;
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
}

.process_item__content h3 {
	font-size: 20px;
	font-weight: 900;
	color: #18181b;
	margin: 0 0 8px;
}

.process_item__content p {
	font-size: 15px;
	line-height: 1.87;
	color: #52525b;
	margin: 0;
}

/* =========================================
   SERVICE PAGE — TRUST
   ========================================= */

.service_trust {
	position: relative;
	padding: 112px 0;
	background: var(--ch-dark);
	color: #fff;
	overflow: hidden;
}

.service_trust::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 80% 20%, rgba(255, 75, 85, 0.16), transparent 28%),
		radial-gradient(circle at 20% 80%, rgba(55, 116, 162, 0.24), transparent 32%);
	pointer-events: none;
}

.service_trust > .container {
	position: relative;
}

.service_trust .section_heading {
	margin-bottom: 0;
}

.service_trust .section_heading .section_eyebrow {
	color: var(--ch-red);
}

.service_trust .section_heading h2 {
	color: #fff;
	font-size: 48px;
}

.service_trust .section_heading p {
	font-size: 18px;
	line-height: 2;
	color: rgba(255, 255, 255, 0.7);
}

.trust_layout {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 48px;
	align-items: center;
}

.trust_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.trust_card {
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(4px);
}

.trust_card img {
	display: block;
	width: 28px;
	height: 28px;
	margin-bottom: 20px;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(40%) sepia(74%) saturate(2654%) hue-rotate(331deg) brightness(99%) contrast(101%);
}

.trust_card h3 {
	font-size: 20px;
	font-weight: 900;
	color: #fff;
	margin: 0 0 12px;
}

.trust_card p {
	font-size: 14px;
	line-height: 1.87;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
}

/* =========================================
   SERVICE PAGE — PORTFOLIO
   ========================================= */

.service_portfolio {
	padding: 112px 0;
	background: #fff;
}

.service_portfolio__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 56px;
}

.service_portfolio__header .section_heading {
	margin-bottom: 0;
}

.service_portfolio__header .btn_secondary--dark {
	flex: 0 0 auto;
}

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

.portfolio_card {
	border: 1px solid #e4e4e7;
	border-radius: 34px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 18px 60px rgba(2, 9, 24, 0.07);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.portfolio_card:hover {
	box-shadow: 0 24px 80px rgba(2, 9, 24, 0.12);
	transform: translateY(-4px);
}

.portfolio_card a {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.portfolio_card__preview {
	position: relative;
	height: 224px;
	overflow: hidden;
	flex: 0 0 auto;
	background:
		radial-gradient(circle at 28% 24%, rgba(255, 75, 85, 0.34), transparent 28%),
		radial-gradient(circle at 78% 34%, rgba(90, 143, 190, 0.28), transparent 30%),
		linear-gradient(135deg, #020918, #111827 60%, #343d4b);
}

.portfolio_card__preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	color: transparent;
	font-size: 0;
}

.portfolio_card__badges {
	position: absolute;
	top: 16px;
	left: 16px;
	right: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.portfolio_card__preview span {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(2, 9, 24, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.portfolio_card__content {
	padding: 28px;
	flex: 0 0 auto;
}

.portfolio_card__content h3 {
	font-size: 24px;
	font-weight: 900;
	color: #18181b;
	margin: 0 0 8px;
}

.portfolio_card__content p {
	font-size: 15px;
	line-height: 1.87;
	color: #52525b;
	margin: 0 0 20px;
}

.portfolio_card__content .text_link {
	display: inline-flex;
}

/* =========================================
   PORTFOLIO ARCHIVE PAGE
   ========================================= */

.portfolio_hero {
	padding: 140px 0 64px;
	background: var(--ch-dark);
	color: #fff;
	text-align: center;
}

.portfolio_hero .section_eyebrow {
	color: var(--ch-red);
}

.portfolio_hero h1 {
	font-size: 56px;
	font-weight: 900;
	letter-spacing: -0.035em;
	margin: 0 0 20px;
}

.portfolio_hero__text {
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.62);
	max-width: 640px;
	margin: 0 auto;
}

.portfolio_archive {
	padding: 64px 0 112px;
	background: var(--ch-light);
}

.portfolio_filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 48px;
	justify-content: center;
}

.portfolio_filter__item {
	display: inline-block;
	padding: 10px 24px;
	border-radius: 999px;
	border: 1px solid var(--ch-line);
	background: #fff;
	color: var(--ch-text);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.portfolio_filter__item:hover {
	border-color: var(--ch-red);
	color: var(--ch-red);
}

.portfolio_filter__item.active {
	background: var(--ch-red);
	border-color: var(--ch-red);
	color: #fff;
}

.portfolio_pagination {
	margin-top: 56px;
	text-align: center;
}

.portfolio_pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.portfolio_pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	border: 1px solid var(--ch-line);
	background: #fff;
	color: var(--ch-text);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.portfolio_pagination .page-numbers:hover {
	border-color: var(--ch-red);
	color: var(--ch-red);
}

.portfolio_pagination .page-numbers.current {
	background: var(--ch-red);
	border-color: var(--ch-red);
	color: #fff;
}

.portfolio_empty {
	text-align: center;
	padding: 80px 0;
}

.portfolio_empty p {
	font-size: 18px;
	color: var(--ch-muted);
	margin-bottom: 24px;
}

/* =========================================
   PORTFOLIO SINGLE PAGE
   ========================================= */

/* ── Portfolio Single: Hero ── */

.portfolio_single_hero {
	padding: calc(var(--ch-header-h) + 60px) 0 64px;
	background: var(--ch-dark);
	color: #fff;
}

.portfolio_single_hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 28px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ch-red);
}

.portfolio_single_hero__dash {
	display: block;
	width: 28px;
	height: 2px;
	background: var(--ch-red);
	border-radius: 2px;
}

.portfolio_single_hero__title {
	max-width: 780px;
	font-size: 56px;
	font-weight: 900;
	letter-spacing: -0.035em;
	line-height: 1.1;
	margin: 0 0 24px;
}

.portfolio_single_hero__text {
	max-width: 680px;
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 36px;
}

.portfolio_single_hero__actions {
	display: flex;
	gap: 12px;
}

.btn_primary__arrow {
	font-size: 16px;
	margin-left: 4px;
}

/* ── Portfolio Single: Details bar ── */

.portfolio_details {
	padding: 36px 0;
	background: var(--ch-dark);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio_details__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
}

.portfolio_detail {
	min-width: 0;
}

.portfolio_detail__label {
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	margin: 0 0 8px;
}

.portfolio_detail__value {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin: 0;
}

.portfolio_detail__value a {
	color: var(--ch-red);
	text-decoration: none;
}

.portfolio_detail__value a:hover {
	text-decoration: underline;
}

/* ── Portfolio Single: Browser mockup ── */

.portfolio_browser {
	padding: 64px 0 80px;
	background: var(--ch-dark);
}

.portfolio_browser__frame {
	border-radius: 16px;
	overflow: hidden;
	background: #1a1f2e;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.portfolio_browser__toolbar {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 20px;
	background: rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.portfolio_browser__dots {
	display: flex;
	gap: 6px;
	flex: 0 0 auto;
}

.portfolio_browser__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.portfolio_browser__dot--red { background: #ff5f57; }
.portfolio_browser__dot--yellow { background: #febc2e; }
.portfolio_browser__dot--green { background: #28c840; }

.portfolio_browser__url {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 8px 16px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
	font-weight: 500;
}

.portfolio_browser__url svg {
	flex: 0 0 auto;
	opacity: 0.5;
}

.portfolio_browser__scroll {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 14px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.5);
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.portfolio_browser__scroll:hover {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.8);
}

.portfolio_browser__viewport {
	background: #fff;
}

.portfolio_browser__viewport img {
	width: 100%;
	height: auto;
	display: block;
}

/* ── Portfolio Single: Content body ── */

.portfolio_content {
	padding: 80px 0;
	background: #fff;
}

.portfolio_content__body {
	max-width: 800px;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1.85;
	color: var(--ch-text);
}

.portfolio_content__body h2 {
	font-size: 28px;
	font-weight: 900;
	margin: 48px 0 16px;
}

.portfolio_content__body h3 {
	font-size: 22px;
	font-weight: 800;
	margin: 40px 0 12px;
}

.portfolio_content__body p {
	margin: 0 0 20px;
}

.portfolio_content__body img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	margin: 24px 0;
}

.portfolio_content__body ul,
.portfolio_content__body ol {
	margin: 0 0 20px;
	padding-left: 24px;
}

.portfolio_content__body li {
	margin-bottom: 8px;
}

/* ── Portfolio Single: section spacing ── */

.portfolio_single .service_portfolio {
	padding: 80px 0;
}

.portfolio_single .service_contact {
	padding: 80px 0;
}

/* =========================================
   SERVICE PAGE — PROFILES
   ========================================= */

.service_profiles {
	padding: 0 0 112px;
	background: #fff;
	color: #fff;
}

.profiles_block {
	position: relative;
	padding: 32px 40px;
	border-radius: 40px;
	background: #09090b;
	box-shadow: 0 28px 90px rgba(2, 9, 24, 0.18);
	overflow: hidden;
}

.profiles_block::before {
	content: "";
	position: absolute;
	top: -96px;
	right: -96px;
	width: 288px;
	height: 288px;
	border-radius: 50%;
	background: rgba(255, 75, 85, 0.15);
	filter: blur(48px);
	pointer-events: none;
}

.profiles_block::after {
	content: "";
	position: absolute;
	bottom: -112px;
	left: 33%;
	width: 288px;
	height: 288px;
	border-radius: 50%;
	background: rgba(59, 130, 246, 0.1);
	filter: blur(48px);
	pointer-events: none;
}

.profiles_block__layout {
	position: relative;
	display: grid;
	grid-template-columns: .82fr 1.18fr;
	gap: 40px;
	align-items: center;
}

.profiles_block .section_heading {
	margin-bottom: 0;
}

.profiles_block .section_heading .section_eyebrow {
	color: var(--ch-red);
}

.profiles_block .section_heading h2 {
	color: #fff;
	font-size: 36px;
}

.profiles_block .section_heading p {
	font-size: 16px;
	line-height: 2;
	color: rgba(255, 255, 255, 0.62);
}

.profile_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.profile_card a {
	display: block;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(4px);
	text-decoration: none;
	color: #fff;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.profile_card a:hover {
	background: #fff;
	color: #18181b;
	transform: translateY(-2px);
}

.profile_card h3 {
	font-size: 16px;
	font-weight: 900;
	margin: 0 0 4px;
}

.profile_card p {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	opacity: 0.45;
	margin: 0 0 12px;
}

.profile_card a:hover p {
	opacity: 0.55;
}

.profile_card span {
	display: block;
	font-size: 14px;
	color: var(--ch-red);
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* =========================================
   SERVICE PAGE — OTHER SERVICES
   ========================================= */

.other_services {
	padding: 112px 0;
	background: var(--ch-light);
}

.other_services__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 56px;
}

.other_services__header .section_heading {
	margin-bottom: 0;
}

.other_services__header .btn_secondary--dark {
	flex: 0 0 auto;
}

.other_services__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.other_service_card a {
	display: block;
	padding: 32px;
	border: 1px solid #e4e4e7;
	border-radius: 24px;
	background: #fff;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 18px 60px rgba(2, 9, 24, 0.07);
	transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.other_service_card a:hover {
	box-shadow: 0 22px 70px rgba(255, 75, 85, 0.14);
	border-color: #fecaca;
	transform: translateY(-4px);
}

.other_service_card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: #09090b;
	margin-bottom: 28px;
	box-shadow: 0 14px 30px rgba(2, 9, 24, 0.16);
}

.other_service_card__icon img {
	width: 25px;
	height: 25px;
	filter: brightness(0) invert(1);
}

.other_service_card > a > img {
	display: block;
	width: 25px;
	height: 25px;
	margin-bottom: 28px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.other_service_card h3 {
	font-size: 20px;
	font-weight: 900;
	color: #18181b;
	margin: 0 0 16px;
}

.other_service_card p {
	font-size: 15px;
	line-height: 1.87;
	color: #52525b;
	margin: 0;
}

/* =========================================
   SERVICE PAGE — CONTACT
   ========================================= */

.service_contact {
	padding: 112px 0;
	background: #fff;
}

.service_contact__box {
	border-radius: 44px;
	background: #09090b;
	box-shadow: 0 30px 100px rgba(2, 9, 24, 0.22);
	overflow: hidden;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
}

.service_contact__content {
	padding: 48px 64px;
	color: #fff;
}

.service_contact__content .section_eyebrow {
	color: var(--ch-red);
}

.service_contact__content h2 {
	font-size: 48px;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: #fff;
	margin: 0 0 20px;
}

.service_contact__content > p {
	font-size: 18px;
	line-height: 2;
	color: rgba(255, 255, 255, 0.68);
	margin: 0 0 36px;
	max-width: 580px;
}

.contact_messengers {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.contact_messengers a {
	display: block;
	padding: 20px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	text-decoration: none;
	color: #fff;
	transition: background 0.2s ease, color 0.2s ease;
}

.contact_messengers a:hover {
	background: #fff;
	color: #18181b;
}

.contact_messengers img {
	width: 25px;
	height: 25px;
	object-fit: contain;
	margin-bottom: 16px;
}

.contact_messengers strong {
	display: block;
	font-size: 16px;
	font-weight: 900;
}

.contact_messengers span {
	display: block;
	font-size: 14px;
	opacity: 0.7;
	margin-top: 4px;
}

.contact_link--email {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: color 0.2s ease;
}

.contact_link--email:hover {
	color: #fff;
}

.contact_link--email img {
	width: 22px;
	height: 22px;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(40%) sepia(74%) saturate(2654%) hue-rotate(331deg) brightness(99%) contrast(101%);
	flex-shrink: 0;
}

.contact_link--email span {
	font-size: 15px;
	font-weight: 500;
}

.contact_form {
	padding: 48px 56px;
	background: #fff;
}

.form_field {
	margin-bottom: 20px;
}

.form_field label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 700;
	color: #27272a;
}

.form_field input,
.form_field textarea {
	width: 100%;
	height: 52px;
	padding: 0 20px;
	border: 1px solid #e4e4e7;
	border-radius: 16px;
	background: #f9fafb;
	color: #18181b;
	font-size: 14px;
	font-family: inherit;
	outline: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.form_field input::placeholder,
.form_field textarea::placeholder {
	color: #a1a1aa;
}

.form_field input:focus,
.form_field textarea:focus {
	border-color: #09090b;
	background: #fff;
}

.form_field textarea {
	height: auto;
	min-height: 136px;
	padding: 16px 20px;
	resize: none;
}

.contact_form .btn {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 16px;
	border: 0;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	cursor: pointer;
	font-family: inherit;
	box-shadow: 0 18px 44px rgba(255, 75, 85, 0.24);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact_form .btn::after {
	content: "\2192";
	font-size: 18px;
}

.contact_form .btn:hover {
	transform: scale(1.01);
	box-shadow: 0 22px 50px rgba(255, 75, 85, 0.32);
}

/* ── CF7 — hidden meta (recaptcha + telegram tags) ── */

/* Hide reCAPTCHA badge — keys not configured yet */
.grecaptcha-badge {
	visibility: hidden !important;
}

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

/* ── CF7 overrides — big contact form ── */

.contact_form .wpcf7-form-control-wrap {
	display: block;
}

/* Kill autop <p> and <br> inside form fields */
.contact_form .form_field > p {
	margin: 0;
	padding: 0;
}

.contact_form .form_field > p > br {
	display: none;
}

/* Kill autop <p> around submit button */
.contact_form > p {
	margin: 0;
	padding: 0;
}

.contact_form > p > br {
	display: none;
}

/* Override CF7's rows="10" on textarea */
.contact_form .wpcf7-form-control-wrap textarea {
	height: 136px;
	resize: vertical;
}

/* Hide CF7 spinner next to submit */
.contact_form .wpcf7-spinner {
	display: none;
}

.contact_form .wpcf7-not-valid {
	border-color: var(--ch-red);
}

.contact_form .wpcf7-not-valid-tip {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	color: var(--ch-red);
}

/* Response output — hidden by default, shown by CF7 JS */
.contact_form .wpcf7-response-output {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 14px;
	line-height: 1.4;
}

.contact_form.sent .wpcf7-response-output,
.contact_form.failed .wpcf7-response-output,
.contact_form.aborted .wpcf7-response-output,
.contact_form.spam .wpcf7-response-output,
.contact_form.invalid .wpcf7-response-output {
	margin: 16px 0 0;
	padding: 14px 20px;
	border-radius: 12px;
}

.contact_form.sent .wpcf7-response-output {
	border: 1px solid #22c55e;
	color: #15803d;
	background: #f0fdf4;
}

.contact_form.failed .wpcf7-response-output,
.contact_form.aborted .wpcf7-response-output,
.contact_form.spam .wpcf7-response-output {
	border: 1px solid var(--ch-red);
	color: #b91c1c;
	background: #fef2f2;
}

.contact_form.invalid .wpcf7-response-output {
	border: 1px solid #f59e0b;
	color: #92400e;
	background: #fffbeb;
}

/* ── CF7 overrides — quick contact forms ── */

.quick_contact__inner > .wpcf7 {
	flex: 0 0 auto;
	width: 420px;
}

.quick_contact__form.wpcf7-form > p {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 8px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.08);
	margin: 0;
}

.quick_contact__form.wpcf7-form > p br {
	display: none;
}

.quick_contact__form .wpcf7-spinner {
	display: none !important;
}

.quick_contact__form .wpcf7-form-control-wrap {
	flex: 1;
	min-width: 0;
	position: relative;
}

.quick_contact__form .wpcf7-form-control-wrap input[type="tel"],
.quick_contact__form .wpcf7-form-control-wrap input[type="email"] {
	width: 100%;
	height: 48px;
	padding: 0 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background: #fff;
	color: #18181b;
	font-size: 14px;
	font-weight: 600;
	font-family: inherit;
	outline: none;
	box-sizing: border-box;
}

.quick_contact__form .wpcf7-form-control-wrap input::placeholder {
	color: #a1a1aa;
}

.quick_contact__form .wpcf7-form-control-wrap input:focus {
	box-shadow: 0 0 0 2px var(--ch-red);
}

.quick_contact__form .wpcf7-not-valid-tip {
	position: absolute;
	bottom: -22px;
	left: 20px;
	font-size: 11px;
	color: var(--ch-red);
	white-space: nowrap;
}

.quick_contact__form .wpcf7-response-output {
	display: none;
}

.quick_contact__form input[type="submit"] {
	flex: 0 0 auto;
	height: 48px;
	padding: 0 24px;
	border: 0;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	cursor: pointer;
	font-family: inherit;
	white-space: nowrap;
	background: var(--ch-red);
	color: #fff;
}

/* =========================================
   HOMEPAGE — HERO
   ========================================= */

.home_hero {
	position: relative;
	background: var(--ch-dark);
	color: #fff;
	padding: calc(var(--ch-header-h) + 48px) 0 96px;
	overflow: hidden;
}

.home_hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 68% 35%, rgba(42, 104, 147, 0.46), transparent 28%),
		linear-gradient(90deg, #020918 0%, rgba(2, 9, 24, 0.97) 34%, rgba(2, 9, 24, 0.78) 58%, #020918 100%);
	opacity: 0.8;
	pointer-events: none;
}

.home_hero > .container {
	position: relative;
}

.home_hero__grid {
	display: grid;
	grid-template-columns: 1.02fr 0.98fr;
	gap: 48px;
	align-items: center;
	min-height: 620px;
}

.home_hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.07);
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 28px;
	backdrop-filter: blur(8px);
}

.home_hero__badge img {
	width: 16px;
	height: 16px;
	filter: brightness(0) saturate(100%) invert(40%) sepia(74%) saturate(2654%) hue-rotate(331deg) brightness(99%) contrast(101%);
}

.home_hero__title {
	font-size: 64px;
	font-weight: 900;
	line-height: 1.02;
	letter-spacing: -0.025em;
	margin: 0 0 28px;
}

.home_hero__title span {
	color: var(--ch-red);
}

.home_hero__text {
	font-size: 18px;
	line-height: 1.78;
	color: rgba(255, 255, 255, 0.78);
	max-width: 560px;
	margin: 0 0 36px;
}

.home_hero__features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	max-width: 560px;
	margin-bottom: 40px;
}

.home_hero__feature {
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.07);
	border-radius: 16px;
	padding: 16px;
	font-size: 14px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(8px);
}

.home_hero__feature img {
	display: block;
	width: 18px;
	height: 18px;
	margin-bottom: 8px;
	filter: brightness(0) saturate(100%) invert(40%) sepia(74%) saturate(2654%) hue-rotate(331deg) brightness(99%) contrast(101%);
}

.home_hero__actions {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
}

.home_hero__note {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	margin: 0;
}

/* Hero visual */

.home_hero__visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.home_hero__mockup {
	display: block;
	width: 100%;
	max-width: 700px;
	height: auto;
}


/* =========================================
   HOMEPAGE — ABOUT
   ========================================= */

.home_about {
	padding: 112px 0;
	background: #fff;
}

.home_about__grid {
	display: grid;
	grid-template-columns: 0.86fr 1.14fr;
	gap: 64px;
	align-items: center;
}

.home_about__photo {
	position: relative;
}

.home_about__photo-frame {
	border-radius: 36px;
	overflow: hidden;
	box-shadow: 0 28px 90px rgba(2, 9, 24, 0.14);
}

.home_about__photo-frame img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 4.7;
	object-fit: cover;
}

.home_about__experience {
	position: absolute;
	bottom: -24px;
	right: -24px;
	background: #fff;
	border-radius: 24px;
	border: 1px solid var(--ch-line);
	padding: 20px 24px;
	box-shadow: 0 18px 60px rgba(2, 9, 24, 0.10);
}

.home_about__exp-label {
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: var(--ch-muted);
	margin: 0 0 8px;
}

.home_about__exp-value {
	font-size: 30px;
	font-weight: 900;
	color: var(--ch-text);
	margin: 0;
}

.home_about__content .section_eyebrow {
	margin-bottom: 12px;
}

.home_about__content h2 {
	font-size: 48px;
	font-weight: 900;
	letter-spacing: -0.025em;
	margin: 0 0 20px;
}

.home_about__text {
	font-size: 18px;
	line-height: 1.78;
	color: var(--ch-muted);
	margin: 0 0 32px;
}

/* About tabs (keep selectors compatible with existing JS) */

.home_about .about_tabs {
	background: var(--ch-light);
	border: 1px solid var(--ch-line);
	border-radius: 32px;
	padding: 24px;
}

.home_about .tabs_head {
	display: flex;
	background: #fff;
	border-radius: 999px;
	padding: 4px;
	margin-bottom: 20px;
}

.home_about .tabs_head .item {
	flex: 1;
	text-align: center;
	padding: 12px 16px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 900;
	color: var(--ch-muted);
	cursor: pointer;
	transition: all 0.2s ease;
}

.home_about .tabs_head .item.active {
	background: var(--ch-red);
	color: #fff;
}

.home_about .tabs_content .tab {
	display: none;
}

.home_about .tabs_content .tab.active {
	display: block;
}

.home_about .tabs_content ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.home_about .tabs_content li {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border-radius: 16px;
	padding: 12px 16px;
	font-size: 14px;
	font-weight: 700;
	color: #52525b;
}

.home_about .tabs_content li::before {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	background: url('../images/icons/lucide/check-circle.svg') center / contain no-repeat;
	filter: brightness(0) saturate(100%) invert(40%) sepia(74%) saturate(2654%) hue-rotate(331deg) brightness(99%) contrast(101%);
	flex-shrink: 0;
}


/* =========================================
   HOMEPAGE — SERVICES
   ========================================= */

.home_services {
	padding: 112px 0;
	background: var(--ch-light);
}

.home_services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 64px;
}

.home_service_card {
	display: block;
	text-decoration: none;
	color: inherit;
	border: 1px solid #e4e4e7;
	border-radius: 24px;
	background: #fff;
	padding: 32px;
	box-shadow: 0 18px 60px rgba(2, 9, 24, 0.07);
	transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.home_service_card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 75, 85, 0.3);
	box-shadow: 0 22px 70px rgba(255, 75, 85, 0.14);
}

.home_service_card__icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #18181b;
	border-radius: 16px;
	margin-bottom: 28px;
	transition: transform 0.3s ease;
}

.home_service_card:hover .home_service_card__icon {
	transform: scale(1.05);
}

.home_service_card__icon img {
	width: 25px;
	height: 25px;
	filter: brightness(0) saturate(100%) invert(40%) sepia(74%) saturate(2654%) hue-rotate(331deg) brightness(99%) contrast(101%);
}

.home_service_card h3 {
	font-size: 20px;
	font-weight: 900;
	margin: 0 0 16px;
}

.home_service_card p {
	font-size: 15px;
	line-height: 1.75;
	color: var(--ch-muted);
	margin: 0 0 24px;
}

.home_service_card .text_link {
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	color: var(--ch-red);
}


/* =========================================
   HOMEPAGE — BLOG
   ========================================= */

.home_blog {
	padding: 112px 0;
	background: var(--ch-light);
}

.home_blog__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 56px;
}

.home_blog_card {
	display: block;
	text-decoration: none;
	color: inherit;
	border-radius: 30px;
	border: 1px solid #e4e4e7;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 18px 60px rgba(2, 9, 24, 0.06);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.home_blog_card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 80px rgba(2, 9, 24, 0.10);
}

.home_blog_card__thumb {
	height: 208px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f3f4f6, #d1d5db);
}

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

.home_blog_card__thumb .home_blog_card__icon {
	width: 42px;
	height: 42px;
	object-fit: contain;
	filter: invert(0.45);
}

.home_blog_card__content {
	padding: 24px;
}

.home_blog_card__content h3 {
	font-size: 18px;
	font-weight: 900;
	line-height: 1.35;
	margin: 0 0 12px;
	color: var(--ch-text);
}

.home_blog_card__date {
	font-size: 14px;
	font-weight: 700;
	color: var(--ch-red);
}


/* =========================================
   BLOG ARCHIVE PAGE
   ========================================= */

.blog_hero {
	padding: 140px 0 64px;
	background: var(--ch-dark);
	color: #fff;
	text-align: center;
}

.blog_hero .section_eyebrow {
	color: var(--ch-red);
}

.blog_hero h1 {
	font-size: 56px;
	font-weight: 900;
	line-height: 1.1;
	margin: 12px 0 0;
}

.blog_hero__text {
	max-width: 600px;
	margin: 16px auto 0;
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
}

.blog_archive {
	padding: 64px 0 80px;
	background: var(--ch-light);
}

.blog_filters {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.blog_filter {
	display: inline-flex;
	align-items: center;
	padding: 10px 22px;
	border-radius: 999px;
	border: 1px solid var(--ch-line);
	font-size: 15px;
	font-weight: 600;
	color: var(--ch-text);
	text-decoration: none;
	background: #fff;
	transition: all 0.2s ease;
}

.blog_filter:hover {
	border-color: var(--ch-red);
	color: var(--ch-red);
}

.blog_filter--active {
	background: var(--ch-red);
	border-color: var(--ch-red);
	color: #fff;
}

.blog_filter--active:hover {
	color: #fff;
}

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

.blog_card {
	display: block;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog_card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 80px rgba(2, 9, 24, 0.10);
}

.blog_card__thumb {
	height: 208px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ch-dark);
}

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

.blog_card__thumb .blog_card__icon {
	width: 42px;
	height: 42px;
	object-fit: contain;
	opacity: 0.3;
}

.blog_card__content {
	padding: 24px;
}

.blog_card__cat {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--ch-red);
	margin-bottom: 8px;
}

.blog_card__content h3 {
	font-size: 18px;
	font-weight: 900;
	line-height: 1.35;
	color: #18181b;
	margin: 0 0 8px;
}

.blog_card__excerpt {
	font-size: 14px;
	line-height: 1.6;
	color: var(--ch-muted);
	margin: 0 0 12px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog_card__date {
	font-size: 14px;
	font-weight: 700;
	color: var(--ch-red);
}

/* Pagination */

.blog_pagination {
	margin-top: 48px;
	text-align: center;
}

.blog_pagination .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.blog_pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
	color: var(--ch-text);
	text-decoration: none;
	border: 1px solid var(--ch-line);
	background: #fff;
	transition: all 0.2s ease;
}

.blog_pagination .page-numbers:hover {
	border-color: var(--ch-red);
	color: var(--ch-red);
}

.blog_pagination .page-numbers.current {
	background: var(--ch-red);
	border-color: var(--ch-red);
	color: #fff;
}

/* Empty state */

.blog_empty {
	text-align: center;
	padding: 80px 0;
}

.blog_empty img {
	width: 64px;
	height: 64px;
	opacity: 0.25;
	margin-bottom: 24px;
}

.blog_empty h2 {
	font-size: 24px;
	font-weight: 900;
	margin: 0 0 8px;
	color: var(--ch-text);
}

.blog_empty p {
	font-size: 16px;
	color: var(--ch-muted);
}

/* =========================================
   BLOG SINGLE PAGE
   ========================================= */

.blog_single_hero {
	padding: 140px 0 48px;
	background: var(--ch-dark);
	color: #fff;
}

.blog_single_hero__inner {
	max-width: 720px;
}

.blog_single_hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: background 0.2s ease;
	margin-bottom: 20px;
}

.blog_single_hero__badge:hover {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.blog_single_hero__badge img {
	width: 14px;
	height: 14px;
	opacity: 0.6;
	filter: invert(1);
}

.blog_single_hero__title {
	font-size: 44px;
	font-weight: 900;
	line-height: 1.15;
	margin: 0 0 16px;
}

.blog_single_hero__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
}

.blog_single_hero__meta time {
	font-weight: 600;
}

.blog_single_hero__sep {
	opacity: 0.4;
}

.blog_single_hero__excerpt {
	margin: 20px 0 0;
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
}

/* Cover image */

.blog_single_cover {
	padding: 0 0 48px;
	background: #fff;
}

.blog_single_cover__image {
	width: 100%;
	max-width: 900px;
	margin: -40px auto 0;
	display: block;
	border-radius: 16px;
	box-shadow: 0 24px 80px rgba(2, 9, 24, 0.12);
}

/* Content */

.blog_single_content {
	padding: 0 0 80px;
	background: #fff;
}

.blog_single_content__body {
	max-width: 720px;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1.8;
	color: var(--ch-text);
}

.blog_single_content__body h2 {
	font-size: 28px;
	font-weight: 900;
	margin: 48px 0 16px;
}

.blog_single_content__body h3 {
	font-size: 22px;
	font-weight: 900;
	margin: 40px 0 12px;
}

.blog_single_content__body p {
	margin: 0 0 20px;
}

.blog_single_content__body img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 24px 0;
}

.blog_single_content__body ul,
.blog_single_content__body ol {
	margin: 0 0 20px;
	padding-left: 24px;
}

.blog_single_content__body li {
	margin-bottom: 8px;
}

.blog_single_content__body pre {
	background: #1e1e2e;
	color: #cdd6f4;
	padding: 20px 24px;
	border-radius: 12px;
	overflow-x: auto;
	font-size: 14px;
	line-height: 1.6;
	margin: 24px 0;
}

.blog_single_content__body code {
	background: rgba(0, 0, 0, 0.06);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 0.9em;
}

.blog_single_content__body pre code {
	background: none;
	padding: 0;
	border-radius: 0;
	font-size: inherit;
}

.blog_single_content__body blockquote {
	border-left: 4px solid var(--ch-red);
	margin: 24px 0;
	padding: 16px 24px;
	background: var(--ch-light);
	border-radius: 0 12px 12px 0;
	font-style: italic;
	color: var(--ch-muted);
}

.blog_single_content__body a {
	color: var(--ch-red);
	text-decoration: underline;
}

/* Tags */

.blog_single_tags {
	max-width: 720px;
	margin: 0 auto;
	padding-top: 32px;
	border-top: 1px solid var(--ch-line);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.blog_tag {
	display: inline-flex;
	padding: 6px 14px;
	border-radius: 999px;
	border: 1px solid var(--ch-line);
	font-size: 13px;
	font-weight: 600;
	color: var(--ch-muted);
	text-decoration: none;
	transition: all 0.2s ease;
}

.blog_tag:hover {
	border-color: var(--ch-red);
	color: var(--ch-red);
}

/* Related */

.blog_related {
	padding: 80px 0;
	background: var(--ch-light);
}

/* Blog single — section spacing */

.blog_single .service_contact {
	padding: 80px 0;
}


/* =========================================
   FOOTER
   ========================================= */

.site_footer {
	background: #09090b;
	color: #fff;
	padding: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site_footer .container {
	max-width: var(--ch-container);
	margin: 0 auto;
	padding: 0 32px;
}

.site_footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 40px 0 32px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site_footer__brand {
	display: flex;
	align-items: center;
	gap: 20px;
}

.site_footer__logo {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
}

.site_footer__logo img {
	display: block;
	height: 34px;
	width: auto;
}

.site_footer__tagline {
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.45);
	margin: 0;
	line-height: 1.5;
}

.site_footer__links {
	display: flex;
	gap: 8px;
}

.site_footer__links a {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site_footer__links a:hover {
	background: #fff;
	border-color: #fff;
	transform: translateY(-1px);
}

.site_footer__links img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.site_footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 24px 0;
}

.site_footer__copy {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.35);
	margin: 0;
}

.site_footer__recaptcha {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.25);
	margin: 0;
}

.site_footer__recaptcha a {
	color: rgba(255, 255, 255, 0.4);
	text-decoration: underline;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1200px) {
	.menu {
		display: none;
	}

	.lang {
		display: none;
	}

	.contact {
		margin-left: auto;
	}

	.hamburher {
		display: flex;
	}

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

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

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

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

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

@media (max-width: 992px) {
	.services_mega_menu {
		display: none !important;
	}

	.service_hero__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.service_hero__visual {
		display: none;
	}

	.service_hero__title {
		font-size: 48px;
	}

	.service_intro__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.service_intro__heading {
		font-size: 36px;
	}

	.service_intro__items {
		grid-template-columns: 1fr;
	}

	.service_process__grid {
		grid-template-columns: 1fr;
	}

	.trust_layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

	.portfolio_grid {
		grid-template-columns: 1fr 1fr;
	}

	.service_contact__box {
		grid-template-columns: 1fr;
	}

	.service_contact__content {
		padding: 32px;
	}

	.contact_form {
		padding: 32px;
	}

	.quick_contact__inner {
		grid-template-columns: 1fr;
		gap: 24px;
		text-align: center;
	}

	.quick_contact__inner > .wpcf7 {
		width: 100%;
	}

	.quick_contact__messengers {
		justify-content: center;
	}

	.profiles_block__layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

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

	.service_portfolio__header {
		flex-direction: column;
	}

	.other_services__header {
		flex-direction: column;
	}

	.profiles_block {
		padding: 32px 24px;
	}

	.portfolio_single_hero__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.portfolio_single_hero__title {
		font-size: 40px;
	}

	.portfolio_hero h1 {
		font-size: 44px;
	}

	/* portfolio_gallery is flex-column, no grid override needed */

	.section_heading h2 {
		font-size: 36px;
	}

	.service_contact__content h2 {
		font-size: 36px;
	}

	.site_footer__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.site_footer__brand {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.home_hero__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.home_hero__visual {
		display: none;
	}

	.home_hero__title {
		font-size: 48px;
	}

	.home_about__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.home_about__content h2 {
		font-size: 36px;
	}

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

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

	.blog_hero h1 {
		font-size: 42px;
	}

	.blog_single_hero__title {
		font-size: 34px;
	}

	.blog_single_cover__image {
		margin-top: -20px;
		border-radius: 12px;
	}
}

@media (max-width: 768px) {
	.contact {
		display: none;
	}

	.hamburher {
		margin-left: auto;
	}

	.main_block {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.main_visual {
		display: none;
	}

	.title {
		font-size: 44px;
	}

	.subtitle {
		font-size: 16px;
	}

	.main_features {
		grid-template-columns: 1fr;
	}

	.main_actions {
		flex-direction: column;
		align-items: stretch;
	}

	.main_actions .btn {
		text-align: center;
	}

	.head_block {
		padding: 0 16px;
	}

	#main .container,
	.service_page .container,
	.portfolio_page .container,
	.portfolio_single .container {
		padding: 0 16px;
	}

	.services_mega_menu__container {
		padding: 20px 16px;
	}

	.service_hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.service_hero__actions .btn {
		text-align: center;
	}

	.service_hero__title {
		font-size: 40px;
	}

	.contact_messengers {
		flex-wrap: wrap;
	}

	.trust_grid {
		grid-template-columns: 1fr;
	}

	.portfolio_grid {
		grid-template-columns: 1fr;
	}

	.profile_grid {
		grid-template-columns: 1fr;
	}

	.portfolio_single_hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.portfolio_single_hero__actions .btn {
		text-align: center;
	}

	.portfolio_single_hero__title {
		font-size: 34px;
	}

	.portfolio_hero h1 {
		font-size: 36px;
	}

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

	/* portfolio_gallery is flex-column, responsive by default */

	.home_hero__features {
		grid-template-columns: 1fr;
	}

	.home_hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.home_hero__actions .btn {
		text-align: center;
	}

	.home_hero__title {
		font-size: 40px;
	}

	.home_about .tabs_content ul {
		grid-template-columns: 1fr;
	}

	.home_services__grid {
		grid-template-columns: 1fr;
	}

	.home_blog__grid {
		grid-template-columns: 1fr;
	}

	.blog_grid {
		grid-template-columns: 1fr;
	}

	.blog_hero h1 {
		font-size: 36px;
	}

	.blog_single_hero__title {
		font-size: 28px;
	}

	.blog_single_content__body {
		font-size: 16px;
	}

	.blog_single_content__body h2 {
		font-size: 24px;
	}
}

@media (max-width: 576px) {
	.title {
		font-size: 36px;
	}

	.service_hero__title {
		font-size: 34px;
	}

	.service_tasks__grid {
		grid-template-columns: 1fr;
	}

	.other_services__grid {
		grid-template-columns: 1fr;
	}

	.section_heading h2 {
		font-size: 28px;
	}

	.quick_contact__inner {
		gap: 24px;
	}

	.profiles_block {
		padding: 24px 16px;
	}

	.portfolio_single_hero__title {
		font-size: 28px;
	}

	.portfolio_hero h1 {
		font-size: 30px;
	}

	.portfolio_single_hero {
		padding: 120px 0 48px;
	}

	.portfolio_hero {
		padding: 120px 0 48px;
	}

	.portfolio_details__grid {
		grid-template-columns: 1fr;
	}

	.home_hero__title {
		font-size: 34px;
	}

	.home_about__content h2 {
		font-size: 28px;
	}

	.home_about__experience {
		right: 0;
		bottom: -16px;
	}
}
