/* Shared modern design system used by every public page. */
*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	--uc-ink: #041f2a;
	--uc-muted: #586a72;
	--uc-line: #dbe2e7;
	--uc-soft: #edf1f3;
	--uc-red: #d11828;
	--uc-dark: #061c24;
	--uc-band: #f5f7f8;
	--uc-max: 1440px;
	--uc-font-ui: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

html {
	scrollbar-gutter: stable;
}

html.uc-modal-open {
	overflow: hidden;
}

body {
	margin: 0;
	background: #fff;
	color: var(--uc-ink);
	font-family: var(--uc-font-ui);
	font-size: 18px;
	line-height: 1.45;
	letter-spacing: 0;
}

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

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

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

button,
input {
	font: inherit;
}

.uc-page {
	overflow: hidden;
	background: #fff;
}

.uc-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 16px;
	max-width: var(--uc-max);
	min-height: 88px;
	margin: 0 auto;
	padding: 0 24px;
	color: #fff;
	isolation: isolate;
}

.uc-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 0;
	width: 100vw;
	height: 88px;
	margin-left: -50vw;
	background: #fff;
	box-shadow: none;
	opacity: 0;
	pointer-events: none;
	transition: opacity .16s ease, height .16s ease, box-shadow .16s ease;
}

.uc-header.uc-header--dropdown-open {
	color: var(--uc-ink);
}

.uc-header.uc-header--dropdown-open::before {
	box-shadow: 0 32px 60px rgba(4, 31, 42, .12);
	opacity: 1;
}

.uc-logo,
.uc-logo img {
	display: block;
	width: 193px;
	height: auto;
}

.uc-logo {
	position: relative;
	z-index: 2;
}

.uc-logo__hover {
	position: absolute;
	inset: 0;
	opacity: 0;
}

.uc-header.uc-header--dropdown-open .uc-logo__default {
	opacity: 0;
}

.uc-header.uc-header--dropdown-open .uc-logo__hover {
	opacity: 1;
}

.uc-nav {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	min-width: 0;
	font-size: 15px;
	font-weight: 400;
	white-space: nowrap;
}

.uc-header__actions {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 14px;
}

@media (max-width: 1400px) and (min-width: 1181px) {
	.uc-header__phone {
		display: none;
	}

	.uc-header__cta {
		padding-right: 16px;
		padding-left: 16px;
	}
}

.uc-header__phone {
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.uc-header__search {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid currentColor;
	border-radius: 50%;
}

.uc-header__search span {
	position: relative;
	display: block;
	width: 15px;
	height: 15px;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.uc-header__search span::after {
	content: "";
	position: absolute;
	right: -5px;
	bottom: -3px;
	width: 7px;
	height: 2px;
	background: currentColor;
	transform: rotate(45deg);
}

.uc-header.uc-header--stuck {
	position: fixed;
	max-width: none;
	color: var(--uc-ink);
	background: #fff;
	box-shadow: 0 8px 24px rgba(4, 31, 42, .1);
}

.uc-header.uc-header--stuck::before {
	opacity: 1;
}

.uc-header.uc-header--stuck .uc-logo__default {
	opacity: 0;
}

.uc-header.uc-header--stuck .uc-logo__hover {
	opacity: 1;
}

.uc-nav__item {
	display: flex;
	align-items: center;
	min-height: 88px;
}

.uc-nav__item > a {
	display: flex;
	align-items: center;
	min-height: 88px;
}

.uc-nav-dropdown {
	position: fixed;
	top: 88px;
	left: 0;
	z-index: 1;
	display: grid;
	width: 100vw;
	margin-left: 0;
	padding: 28px 0 36px;
	background: #fff;
	color: var(--uc-ink);
	box-shadow: 0 32px 60px rgba(4, 31, 42, .12);
	opacity: 0;
	pointer-events: none;
	transform: none;
	transition: opacity .16s ease;
	white-space: normal;
}

.uc-nav__item.is-open .uc-nav-dropdown {
	opacity: 1;
	pointer-events: auto;
}

.uc-nav-dropdown__inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 44px;
	max-width: var(--uc-max);
	width: 100%;
	margin: 0 auto;
	padding: 0 24px;
}

.uc-nav-dropdown--cols-1 .uc-nav-dropdown__inner {
	grid-template-columns: minmax(280px, 440px);
}

.uc-nav-dropdown--cols-2 .uc-nav-dropdown__inner {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.uc-nav-dropdown__column {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.uc-nav-dropdown__group {
	padding: 0;
	border: 0;
}

.uc-nav-dropdown__group strong {
	display: block;
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
}

.uc-nav-dropdown__group ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.uc-nav-dropdown__group a {
	display: inline-flex;
	color: var(--uc-muted);
	font-size: 16px;
	line-height: 1.32;
}

.uc-nav-dropdown__group a:hover,
.uc-nav-dropdown__group a:focus-visible {
	color: var(--uc-ink);
}

.uc-button {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 56px;
	padding: 0 24px;
	border: 0;
	border-radius: 24px 0;
	font-family: var(--uc-font-ui);
	font-size: 15px;
	font-weight: 400;
	line-height: 21px;
	white-space: nowrap;
	cursor: pointer;
}

.uc-button--light {
	background: var(--uc-soft);
	color: var(--uc-ink);
}

.uc-button--red {
	background: var(--uc-red);
	color: #fff;
}

.uc-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
}

.uc-breadcrumbs a {
	border-bottom: 1px solid currentColor;
}

.uc-breadcrumbs--light {
	color: rgba(255, 255, 255, .88);
}

.uc-breadcrumbs--light a,
.uc-breadcrumbs--light span {
	color: #fff;
}

.uc-breadcrumbs--dark {
	color: var(--uc-muted);
}

.uc-breadcrumbs--dark a {
	color: var(--uc-ink);
}

.uc-breadcrumbs__sep {
	color: currentColor;
}

.uc-arrow {
	width: 8px;
	height: 8px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
	flex: none;
}

.uc-arrow--left {
	transform: rotate(225deg);
}

.uc-burger,
.uc-mobile-menu {
	display: none;
}

.uc-section__head a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid currentColor;
	font-weight: 700;
}

.uc-news-card small {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	text-transform: uppercase;
}

.uc-section {
	max-width: var(--uc-max);
	margin: 0 auto;
	padding: 96px 24px;
}

.uc-section--dark {
	max-width: none;
	margin: 0;
	padding-left: max(24px, calc((100vw - var(--uc-max)) / 2 + 24px));
	padding-right: max(24px, calc((100vw - var(--uc-max)) / 2 + 24px));
	background: var(--uc-dark);
	color: #fff;
}

.uc-section__head {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
	gap: 48px;
	margin-bottom: 48px;
	border-top: 1px solid var(--uc-line);
	padding-top: 28px;
}

.uc-section--dark .uc-section__head {
	border-color: rgba(255, 255, 255, .25);
}

.uc-section__head--row {
	display: flex;
	align-items: end;
	justify-content: space-between;
}

.uc-section__head p,
.uc-about__main > p {
	margin: 0 0 18px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--uc-red);
}

.uc-section__head h2,
.uc-about h2 {
	margin: 0;
	max-width: 760px;
	font-size: clamp(32px, 3.2vw, 48px);
	font-family: var(--uc-font-ui);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: 0;
}

.uc-section__head span {
	align-self: end;
	max-width: 520px;
	color: var(--uc-muted);
}

.uc-section--dark .uc-section__head span {
	color: rgba(255, 255, 255, .74);
}

.uc-news-card {
	display: flex;
	flex-direction: column;
	min-height: 360px;
	padding: 24px;
	background: var(--uc-band);
	border: 1px solid #e7edf0;
}

.uc-news-card__image {
	display: block;
	height: 172px;
	margin: -24px -24px 24px;
	background: #dbe2e7;
	overflow: hidden;
}

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

.uc-news-card a:not(.uc-news-card__image) {
	display: block;
	margin-bottom: 14px;
	font-size: 23px;
	font-family: var(--uc-font-ui);
	font-weight: 600;
	line-height: 1.18;
}

.uc-news-card p {
	color: var(--uc-muted);
}

.uc-team-preview {
	max-width: none;
	margin: 0;
	padding: 56px max(24px, calc((100vw - var(--uc-max)) / 2 + 24px)) 64px;
	background: var(--uc-dark);
	color: #fff;
}

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

.uc-team-preview__bar h2 {
	margin: 0;
	color: #fff;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.35;
}

.uc-team-preview__link {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	border-bottom: 1px solid currentColor;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
}

.uc-team-preview__rail {
	display: grid;
	grid-auto-columns: calc((100% - 24px) / 2);
	grid-auto-flow: column;
	gap: 24px;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
}

.uc-team-preview__rail::-webkit-scrollbar {
	display: none;
}

.uc-team-preview-card {
	display: flex;
	flex-direction: column;
	min-height: 694px;
	border-right: 1px solid rgba(255, 255, 255, .26);
	border-bottom: 1px solid rgba(255, 255, 255, .26);
	padding: 24px 24px 36px;
	scroll-snap-align: start;
}

.uc-team-preview-card__image {
	aspect-ratio: 1.46 / 1;
	background: rgba(255, 255, 255, .08);
	overflow: hidden;
}

.uc-team-preview-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 24%;
}

.uc-team-preview-card__image img.uc-team-image--top {
	object-position: 50% 8%;
}

.uc-team-preview-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding-top: 24px;
}

.uc-team-preview-card__body h3 {
	margin: 0;
	color: #fff;
	font-size: 25px;
	font-weight: 700;
	line-height: 1.08;
}

.uc-team-preview-card__body p {
	margin: 12px 0 0;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .32);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.uc-team-preview-card__expertise {
	margin-top: 34px;
}

.uc-team-preview-card__expertise span {
	display: block;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, .32);
	font-size: 12px;
	line-height: 1.35;
	text-transform: uppercase;
}

.uc-team-preview-card__expertise ul {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 0;
	padding-left: 32px;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
}

.uc-team-preview__controls {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 52px;
	align-items: center;
	padding: 24px 16px 0;
}

.uc-team-preview__progress {
	position: relative;
	height: 2px;
	background: rgba(255, 255, 255, .24);
}

.uc-team-preview__progress span {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 12%;
	height: 100%;
	background: #fff;
}

.uc-team-preview__buttons {
	display: flex;
	gap: 12px;
}

.uc-team-preview__buttons button {
	display: inline-grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border: 0;
	border-radius: 0;
	background: #e9f1f6;
	color: var(--uc-ink);
	cursor: pointer;
}

.uc-team-preview__buttons button:disabled {
	opacity: .45;
	cursor: default;
}

.uc-team-preview__buttons button:first-child {
	background: rgba(233, 241, 246, .62);
}

.uc-transformation-steps {
	max-width: none;
	margin: 0;
	background: #fff;
	color: var(--uc-ink);
}

.uc-transformation-steps__inner {
	padding: 84px max(24px, calc((100vw - var(--uc-max)) / 2 + 24px)) 96px;
}

.uc-transformation-steps__head {
	padding-bottom: 84px;
}

.uc-transformation-steps__head h2 {
	max-width: 780px;
	margin: 0;
	color: var(--uc-ink);
	font-size: clamp(36px, 4vw, 64px);
	font-weight: 600;
	line-height: 1.06;
}

.uc-transformation-steps__grid {
	display: grid;
	grid-template-columns: 1fr;
}

.uc-transformation-step {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 24px;
	padding: 28px 0;
	border-top: 1px solid var(--uc-line);
}

.uc-transformation-step:last-child {
	border-bottom: 1px solid var(--uc-line);
}

.uc-transformation-step__icon {
	width: 96px;
	height: 96px;
}

.uc-transformation-step__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.uc-transformation-step__body h3 {
	margin: 0;
	color: var(--uc-ink);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.35;
}

.uc-transformation-step__body p {
	margin: 8px 0 0;
	color: var(--uc-muted);
	font-size: 15px;
	line-height: 1.4;
}

.uc-news-card {
	scroll-snap-align: start;
}

.uc-service-featured__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: end;
	width: 100%;
	min-height: 100%;
	padding: 38px;
	background: linear-gradient(180deg, rgba(4, 32, 43, 0) 0%, rgba(4, 32, 43, .74) 72%);
}

.uc-news-card {
	min-height: 430px;
	background: #fff;
}

.uc-subscribe {
	display: grid;
	grid-template-columns: minmax(280px, .75fr) minmax(320px, 1fr) auto;
	gap: 22px;
	align-items: end;
	margin-top: 48px;
	padding: 40px;
	background: var(--uc-dark);
	color: #fff;
}

.uc-subscribe > div strong {
	display: block;
	max-width: 440px;
	margin-bottom: 12px;
	font-size: clamp(24px, 2.4vw, 36px);
	font-weight: 600;
	line-height: 1.12;
}

.uc-subscribe > div span {
	display: block;
	max-width: 420px;
	color: rgba(255, 255, 255, .72);
}

.uc-subscribe label span {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .82);
}

.uc-subscribe input {
	width: 100%;
	height: 56px;
	border: 1px solid rgba(255, 255, 255, .28);
	padding: 0 16px;
	background: #fff;
}

.uc-subscribe small {
	grid-column: 1 / -1;
	max-width: 780px;
	color: rgba(255, 255, 255, .62);
}

.uc-footer {
	display: grid;
	grid-template-columns: minmax(220px, .8fr) minmax(300px, 1fr) minmax(220px, .75fr) minmax(260px, .9fr);
	background: #fff;
	gap: 48px;
	max-width: var(--uc-max);
	margin: 0 auto;
	padding: 64px 24px 28px;
	border-top: 1px solid var(--uc-line);
	color: var(--uc-muted);
}

.uc-footer__title {
	margin: 0 0 10px;
	color: var(--uc-ink);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.25;
}

.uc-footer p {
	margin: 0;
}

.uc-footer a {
	color: inherit;
}

.uc-footer__brand p {
	margin-top: 28px;
	font-size: 14px;
	line-height: 1.35;
}

.uc-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 32px;
}

.uc-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 18px 0;
	background: var(--uc-soft);
	color: var(--uc-ink);
	font-size: 14px;
	font-weight: 800;
}

.uc-footer__social a img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.uc-footer__social .uc-footer__social-link--wide {
	flex-basis: 104px;
	gap: 10px;
	justify-content: flex-start;
	width: auto;
	min-width: 104px;
	padding: 0 18px;
}

.uc-footer__info,
.uc-footer__contacts {
	display: grid;
	gap: 28px;
}

.uc-footer__contacts a,
.uc-footer__info a {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	border-bottom: 1px solid currentColor;
	color: var(--uc-red);
}

.uc-footer__nav {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 64px;
	border-top: 1px solid var(--uc-line);
	padding-top: 56px;
	color: var(--uc-muted);
}

.uc-footer__nav-column {
	display: grid;
	align-content: start;
	gap: 34px;
}

.uc-footer__nav-group .uc-footer__title {
	margin: 0 0 12px;
	color: var(--uc-ink);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.25;
}

.uc-footer__nav-group ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.uc-footer__nav-group a {
	font-size: 18px;
	line-height: 1.25;
}

.uc-footer__nav-group a:hover {
	color: var(--uc-red);
}

.uc-footer__legal {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
	gap: 32px;
	border-top: 1px solid var(--uc-line);
	padding-top: 28px;
	font-size: 12px;
	line-height: 1.45;
}

.uc-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	grid-column: 1 / -1;
	gap: 16px 32px;
	padding-top: 24px;
	border-top: 1px solid var(--uc-line);
	font-size: 14px;
}

.uc-cookie {
	position: fixed;
	left: 24px;
	bottom: 24px;
	z-index: 60;
	width: min(416px, calc(100vw - 48px));
	padding: 24px;
	background: #fff;
	box-shadow: 0 24px 48px rgba(4, 31, 42, .18);
	color: var(--uc-ink);
}

.uc-cookie.hidden {
	display: none;
}

.uc-cookie button {
	width: 100%;
	height: 56px;
	margin-top: 18px;
	border: 0;
	background: #ef3838;
	color: #fff;
	font-weight: 800;
}

.uc-consent-panel {
	position: fixed;
	left: 24px;
	bottom: 24px;
	z-index: 60;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
	width: min(760px, calc(100vw - 48px));
	padding: 16px 18px;
	background: #fff;
	box-shadow: 0 24px 48px rgba(4, 31, 42, .18);
	color: var(--uc-ink);
}

.uc-consent-panel__text {
	font-size: 14px;
	line-height: 1.45;
}

.uc-consent-panel.hidden {
	display: none;
}

.uc-consent-panel__button {
	min-width: 132px;
	height: 48px;
	border: 0;
	background: #d92f2f;
	color: #fff;
	font-weight: 800;
}

.uc-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: grid;
	place-items: center;
	padding: 24px;
}

.uc-modal[aria-hidden="true"] {
	display: none;
}

.uc-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(3, 18, 24, .72);
}

.uc-modal__dialog {
	position: relative;
	width: min(1260px, calc(100vw - 32px));
	max-height: min(900px, calc(100vh - 32px));
	overflow: auto;
	background: #fff;
	color: var(--uc-ink);
	box-shadow: 0 32px 80px rgba(0, 0, 0, .34);
}

.uc-modal__close {
	position: absolute;
	top: 28px;
	right: 28px;
	z-index: 2;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.uc-modal__close::before,
.uc-modal__close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 11px;
	right: 11px;
	height: 2px;
	background: currentColor;
}

.uc-modal__close::before {
	transform: rotate(45deg);
}

.uc-modal__close::after {
	transform: rotate(-45deg);
}

.uc-consultation {
	padding: 32px;
}

.uc-consultation .uc-modal__title {
	margin: 0 0 44px;
	border-bottom: 1px solid var(--uc-line);
	padding: 0 56px 20px 0;
	font-size: clamp(34px, 3vw, 44px);
	line-height: 1.08;
}

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

.uc-form-grid__full {
	grid-column: 1 / -1;
}

.uc-form-grid label span {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.uc-consultation-form input,
.uc-consultation-form select,
.uc-consultation-form textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid var(--uc-line);
	border-radius: 0;
	background: #fff;
	color: var(--uc-ink);
	font: inherit;
	outline: 0;
}

.uc-consultation-form input,
.uc-consultation-form select {
	height: 42px;
	padding: 0 0 11px;
}

.uc-consultation-form textarea {
	min-height: 180px;
	resize: vertical;
	border: 1px solid var(--uc-line);
	padding: 16px;
}

.uc-consultation-form input:focus,
.uc-consultation-form select:focus,
.uc-consultation-form textarea:focus {
	border-color: var(--uc-ink);
	box-shadow: none;
}

.uc-consultation-form ::placeholder {
	color: var(--uc-muted);
	opacity: 1;
}

.uc-check {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 18px;
	margin-top: 24px;
	color: var(--uc-ink);
	font-size: 16px;
	line-height: 1.45;
}

.uc-check input {
	width: 18px;
	height: 18px;
	margin: 3px 0 0;
	accent-color: var(--uc-red);
}

.uc-consultation-form .uc-check span {
	margin: 0;
	font-size: inherit;
	font-weight: 400;
	text-transform: none;
	color: inherit;
}

.uc-consultation-form .uc-check a {
	border-bottom: 1px solid currentColor;
}

.uc-consultation-form > .uc-button {
	min-width: 188px;
	min-height: 68px;
	margin-top: 16px;
	border-radius: 0;
	font-size: 17px;
}

.uc-consultation-form button:disabled {
	cursor: progress;
	opacity: .72;
}

.uc-form-error {
	min-height: 24px;
	margin: 16px 0;
	color: var(--uc-red);
	font-size: 14px;
	font-weight: 700;
}

.uc-consultation-success {
	display: none;
	min-height: 360px;
	place-content: center;
}

.uc-consultation-success p {
	margin: 0 0 28px;
	color: var(--uc-muted);
}

.uc-consultation.is-success [data-consultation-content],
.uc-consultation.is-success [data-booklet-content] {
	display: none;
}

.uc-consultation.is-success .uc-consultation-success {
	display: grid;
}

@media (max-width: 1180px) {
	.uc-header {
		grid-template-columns: auto auto;
	}

	.uc-nav,
	.uc-header__actions {
		display: none;
	}

	.uc-burger {
		position: relative;
		z-index: 3;
		display: grid;
		gap: 5px;
		width: 48px;
		height: 48px;
		margin-left: auto;
		border: 0;
		background: transparent;
		padding: 12px;
		cursor: pointer;
	}

	.uc-burger span {
		display: block;
		height: 2px;
		background: currentColor;
	}

	.uc-menu-open .uc-burger span {
		position: absolute;
		top: 23px;
		left: 12px;
		width: 24px;
		background: #fff;
	}

	.uc-menu-open .uc-burger span:first-child { transform: rotate(45deg); }
	.uc-menu-open .uc-burger span:nth-child(2) { opacity: 0; }
	.uc-menu-open .uc-burger span:last-child { transform: rotate(-45deg); }

	.uc-menu-open .uc-burger {
		position: fixed;
		top: 20px;
		right: 24px;
		color: #fff;
	}

	.uc-mobile-menu {
		position: fixed;
		inset: 0;
		z-index: -1;
		display: flex;
		flex-direction: column;
		gap: 22px;
		padding: 104px 24px 32px;
		background: var(--uc-dark);
		color: #fff;
		opacity: 0;
		pointer-events: none;
		font-size: 24px;
	}

	.uc-mobile-menu a {
		color: #fff;
	}

	.uc-mobile-menu__phone {
		margin-top: auto;
		font-size: 20px;
		font-weight: 700;
	}

	.uc-menu-open .uc-mobile-menu {
		z-index: 10;
		opacity: 1;
		pointer-events: auto;
	}

	.uc-subscribe {
		grid-template-columns: 1fr;
	}

	.uc-section__head {
		grid-template-columns: 1fr;
	}

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

	.uc-footer__legal {
		grid-template-columns: 1fr;
	}

	.uc-service-featured__body {
		padding: 24px;
	}

}

@media (max-width: 760px) {
	body {
		font-size: 16px;
	}

	.uc-header {
		min-height: 88px;
		padding: 0 15px;
	}

	.uc-logo,
	.uc-logo img {
		width: 178px;
	}

	.uc-button {
		min-height: 48px;
		border-radius: 18px 0;
		padding: 0 18px;
		font-size: 13px;
		text-transform: uppercase;
	}

	.uc-industries__grid,
	.uc-metrics,
	.uc-footer,
	.uc-footer__nav {
		grid-template-columns: 1fr;
	}

	.uc-team-preview {
		padding: 42px 16px 50px;
	}

	.uc-team-preview__bar {
		padding-right: 0;
		padding-left: 0;
	}

	.uc-team-preview__rail {
		grid-auto-columns: minmax(290px, 88%);
	}

	.uc-team-preview-card {
		min-height: 620px;
		padding: 18px 18px 28px;
	}

	.uc-team-preview-card__image {
		aspect-ratio: 1.46 / 1;
	}

	.uc-team-preview__controls {
		grid-template-columns: 1fr;
		gap: 22px;
		padding-right: 0;
		padding-left: 0;
	}

	.uc-team-preview__buttons {
		justify-content: flex-end;
	}

	.uc-transformation-steps__inner {
		padding: 56px 16px;
	}

	.uc-transformation-steps__head {
		padding-bottom: 34px;
	}

	.uc-transformation-steps__head h2 {
		font-size: 34px;
	}

	.uc-transformation-steps__grid {
		grid-template-columns: 1fr;
	}

	.uc-transformation-step,
	.uc-transformation-step:nth-child(2n) {
		grid-template-columns: 80px minmax(0, 1fr);
		gap: 20px;
		margin-right: 0;
		margin-left: 0;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.uc-transformation-step__icon {
		width: 80px;
		height: 80px;
	}

	.uc-transformation-step__body h3 {
		font-size: 22px;
	}

	.uc-section,
	.uc-section--dark {
		padding: 64px 15px;
	}

	.uc-section__head {
		display: block;
		margin-bottom: 32px;
	}

	.uc-section__head h2,
	.uc-about h2 {
		font-size: 30px;
		line-height: 1.14;
	}

	.uc-news-card {
		min-height: 0;
		padding: 18px;
	}

	.uc-news-card__image {
		height: 180px;
		margin: -18px -18px 20px;
	}

	.uc-service-featured__body {
		padding: 24px;
	}

	.uc-subscribe {
		align-items: stretch;
	}

	.uc-subscribe .uc-button {
		width: 100%;
	}

	.uc-footer {
		padding: 48px 15px 24px;
	}

	.uc-cookie {
		left: 15px;
		bottom: 15px;
		width: calc(100vw - 30px);
	}

	.uc-consent-panel {
		left: 15px;
		bottom: 15px;
		grid-template-columns: 1fr;
		gap: 12px;
		width: calc(100vw - 30px);
		padding: 14px;
	}

	.uc-consent-panel__button {
		width: 100%;
	}

	.uc-modal {
		padding: 15px;
	}

	.uc-modal__dialog {
		max-height: calc(100vh - 30px);
	}

	.uc-consultation {
		padding: 32px 18px 24px;
	}

	.uc-form-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}
}

/* Reusable clients section */
.uc-clients {
	padding-top: 64px;
	padding-bottom: 64px;
}

.uc-clients__label {
	margin-bottom: 10px;
	color: var(--uc-muted);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.4;
}

.uc-clients__head h2 {
	margin: 0 0 18px;
	font-family: Raleway, var(--uc-font-ui);
	font-size: 38px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -.02em;
}

.uc-scroll-wrap {
	overflow: hidden;
}

.uc-clients__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 8px) / 2);
	gap: 8px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.uc-clients__track::-webkit-scrollbar {
	display: none;
}

.uc-client-card-link,
.uc-client-card {
	display: block;
	scroll-snap-align: start;
}

.uc-client-card {
	padding: 16px;
	border: 1px solid var(--uc-line);
	background: #fff;
}

.uc-client-card__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 212px;
	background: #263f47;
}

.uc-client-card__logo img {
	max-width: 84%;
	max-height: 80%;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.uc-client-card strong {
	display: block;
	margin-top: 14px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}

.uc-home-career__actions > a:not(.uc-button) { display: inline-flex; align-items: center; gap: 9px; color: inherit; font-weight: 700; text-decoration: none; }

.uc-scroll-controls {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	gap: 12px;
	align-items: center;
	margin-top: 12px;
}

.uc-scroll-progress {
	position: relative;
	display: block;
	height: 2px;
	background: var(--uc-line);
	overflow: hidden;
}

.uc-scroll-progress span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: var(--uc-ink);
}

.uc-scroll-controls button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border: 0;
	background: var(--uc-soft);
	color: var(--uc-ink);
	cursor: pointer;
}

.uc-scroll-controls button:disabled {
	cursor: default;
	opacity: .58;
}

@media (max-width: 767px) {
	.uc-clients {
		padding-right: 15.5px;
		padding-left: 15.5px;
	}

	.uc-clients__head h2 {
		font-size: 30px;
		line-height: 1.25;
	}

	.uc-clients__track {
		grid-template-columns: none;
		grid-auto-columns: 88%;
		grid-auto-flow: column;
		overflow-x: auto;
	}

}

/* Reusable why section */
.uc-why {
	background: #c9d5dc;
	color: var(--uc-ink);
}

.uc-why__inner {
	max-width: var(--uc-max);
	margin: 0 auto;
	padding: 78px 24px 24px;
}

.uc-why__content {
	max-width: 1180px;
}

.uc-why h2 {
	margin: 0 0 48px;
	color: #526570;
	font-family: var(--uc-font-ui);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.4;
}

.uc-why ul {
	display: grid;
	gap: 22px;
	max-width: 1180px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.uc-why li {
	position: relative;
	min-height: 24px;
	padding-left: 32px;
	font-size: 19px;
	line-height: 1.4;
}

.uc-why li::before {
	content: "✓";
	position: absolute;
	top: 2px;
	left: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background: var(--uc-ink);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
}

.uc-why__image {
	width: min(880px, 72vw);
	margin: 116px auto 0;
}

.uc-why__image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

@media (max-width: 1399px) {
	.uc-why__image {
		width: min(880px, 70vw);
	}
}

@media (max-width: 767px) {
	.uc-why__inner {
		padding: 56px 15.5px 15.5px;
	}

	.uc-why h2 {
		margin-bottom: 28px;
	}

	.uc-why ul {
		gap: 18px;
	}

	.uc-why li {
		font-size: 16px;
	}

	.uc-why__image {
		width: 100%;
		margin-top: 56px;
	}
}
