:root {
	/* Точный фирменный синий взят из логотипа (RGB 0,120,192) */
	--v-blue: #0078C0;
	--v-blue-dark: #045A91;
	--v-navy: #063C63;
	/* производный тёмный тон для шапки/футера */
	--v-navy-deep: #032943;
	--v-blue-soft: #EAF3FA;
	--v-ink: #1B2530;
	--v-muted2: #64728C;
	--v-line: #DCE6EE;
	--v-paper: #FFFFFF;
	--v-mint: #1F9E7A;
	/* акцент для маркеров/меток, встречается на референсе */
}

html {
	scroll-behavior: smooth;
	font-size: 15px;
}

body {
	font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	color: var(--v-ink);
	background: var(--v-paper);
	-webkit-font-smoothing: antialiased;
}

html,
body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	/* минимум высота экрана */
	display: flex;
	flex-direction: column;
}

main.content {
	flex: 1;
}

h1,
h2,
h3,
h4 {
	font-weight: 900;
	letter-spacing: -0.01em;
	color: var(--v-navy);
	margin: 0;
}

a {
	color: var(--v-blue);
}

p {
	line-height: 1.55;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: 11.5px;
	font-weight: 700;
	color: var(--v-mint);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.eyebrow::before {
	content: "";
	width: 18px;
	height: 2px;
	background: var(--v-mint);
	display: inline-block;
}

/* ---------- Утилити-бар ---------- */
.util-bar {
	background: var(--v-navy-deep);
	color: #B9D3E5;
	font-size: 12.5px;
	padding: 6px 0;
}

.util-bar a {
	color: #DCEAF4;
}

.util-bar .uk-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

/* ---------- Главная навигация ---------- */
.site-header {
	/* background: var(--v-navy); */
	background: linear-gradient(0deg, var(--v-navy), var(--v-navy-deep));
	padding: 5px;
}

.site-header .uk-navbar-nav > li > a {
	color: #DCEAF4;
	font-weight: 500;
	font-size: 13.5px;
	min-height: 56px;
	text-transform: none;
}

.site-header .uk-navbar-nav > li > a:hover {
	color: #fff;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff !important;
}

.brand img {
	width: 70px;
	height: 70px;
	flex: none;
}

.brand-text {
	line-height: 1.3;
}

.brand-text b {
	display: block;
	font-size: 18px;
	font-weight: 700;
}

.brand-text span {
	display: block;
	font-size: 15px;
	color: #A9C6DC;
	font-weight: 400;
}

.btn-appeal {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, .35);
	color: #fff !important;
	font-size: 12.5px;
	font-weight: 500;
	padding: 9px 16px;
	border-radius: 6px;
	transition: background .15s ease, border-color .15s ease;
}

.btn-appeal:hover {
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .6);
	text-decoration: none;
}

/* ---------- Бегущая строка объявлений ---------- */
.ticker-bar {
	background: var(--v-blue-soft);
	border-bottom: 1px solid var(--v-line);
	padding: 9px 0;
}

.ticker-bar .uk-container {
	display: flex;
	align-items: center;
	gap: 14px;
}

.ticker-tag {
	flex: none;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11.5px;
	font-weight: 700;
	color: var(--v-blue-dark);
	text-transform: uppercase;
	letter-spacing: .04em;
}

.ticker-tag .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--v-mint);
}

.ticker-track {
	overflow: hidden;
	white-space: nowrap;
	flex: 1;
}

.ticker-track ul {
	display: inline-flex;
	gap: 48px;
	margin: 0;
	padding: 0;
	list-style: none;
	animation: ticker 28s linear infinite;
}

.ticker-track li {
	font-size: 12.5px;
	color: var(--v-ink);
	white-space: nowrap;
}

@keyframes ticker {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ticker-track ul {
		animation: none;
	}
}

/* ---------- Герой ---------- */
.hero {
	padding: 16px 0 52px;
}

.hero h1 {
	font-size: 2rem;
	line-height: 1.2;
	color: var(--v-navy);
}

.hero p.lead {
	color: var(--v-muted2);
	font-size: 15px;
	max-width: 520px;
	margin-top: 20px;
}

.fact-card {
	background: var(--v-blue-soft);
	border-radius: 10px;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.fact-card .fi {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: #fff;
	color: var(--v-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}

.fact-card .ft {
	font-size: 10.5px;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--v-muted2);
	font-weight: 700;
}

.fact-card .fv {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--v-ink);
}

.uk-button {
	font-weight: 500;
	font-size: 13.5px;
	border-radius: 6px;
}

.uk-button-primary {
	background: var(--v-blue);
}

.uk-button-primary:hover {
	background: var(--v-blue-dark);
}

.uk-button-default {
	border-color: var(--v-line);
	color: var(--v-ink);
}

/* ---------- Баннеры-ссылки вместо форм ---------- */
.banner-link {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--v-paper);
	border: 1px solid var(--v-line);
	border-radius: 8px;
	padding: 13px 15px;
	transition: border-color .15s ease, background .15s ease;
}

.banner-link:hover {
	border-color: var(--v-blue);
	background: #F7FBFD;
	text-decoration: none;
}

.banner-link .bi {
	width: 38px;
	height: 38px;
	border-radius: 7px;
	flex: none;
	background: var(--v-blue-soft);
	color: var(--v-blue);
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-link .bt {
	font-weight: 700;
	color: var(--v-ink);
	font-size: 13.5px;
}

.banner-link .bs {
	font-size: 11.5px;
	color: var(--v-muted2);
}

/* ---------- Секции ---------- */
section {
	padding: 14px 0;
	padding-bottom: 68px;
}

.section-soft {
	background: var(--v-blue-soft);
}

.card {
	background: var(--v-paper);
	border: 1px solid var(--v-line);
	border-radius: 9px;
	padding: 18px 18px 16px;
	height: 100%;
}

.card h4 {
	font-size: 14px;
	margin: 0 0 5px;
}

.card p {
	color: var(--v-muted2);
	font-size: 12.8px;
	margin: 0;
}

.card .num {
	font-size: 11px;
	font-weight: 700;
	color: var(--v-blue);
	letter-spacing: .06em;
	margin-bottom: 8px;
	display: block;
}

dl.facts {
	margin: 0;
}

dl.facts dt {
	font-size: 11px;
	color: var(--v-muted2);
	text-transform: uppercase;
	letter-spacing: .04em;
	margin-top: 11px;
}

dl.facts dt:first-child {
	margin-top: 0;
}

dl.facts dd {
	font-size: 13.5px;
	color: var(--v-ink);
	font-weight: 700;
	margin-left: 0;
}

.doc-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border-bottom: 1px solid var(--v-line);
	color: var(--v-ink);
	font-size: 13px;
	font-weight: 500;
}

.doc-list a:last-child {
	border-bottom: none;
}

.doc-list a:hover {
	color: var(--v-blue);
	text-decoration: none;
	background: #FBFDFE;
}

.doc-list svg {
	color: var(--v-muted2);
	flex: none;
}

footer.site-footer {
	/* background: var(--v-navy-deep); */
	background: linear-gradient(0deg, var(--v-navy-deep), var(--v-navy));
	color: #A9C6DC;
	padding: 36px 0 20px;
}

footer.site-footer a {
	color: #DCEAF4;
}

footer.site-footer h5 {
	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-bottom: 12px;
}

footer.site-footer .legal {
	font-size: 11.5px;
	color: #6E8FA8;
	border-top: 1px solid rgba(255, 255, 255, .08);
	margin-top: 22px;
	padding-top: 16px;
}

.map-frame {
	border-radius: 9px;
	overflow: hidden;
	border: 1px solid var(--v-line);
}

/* ---------- Фиксированная ширина на широких экранах ---------- */
.uk-container {
	max-width: 1240px;
}

/* ---------- Фоновые паттерны секций (ненавязчивые, IT-тематика) ---------- */
.hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background-image:
		radial-gradient(circle, rgba(6, 60, 99, .09) 1px, transparent 1px);
	background-size: 22px 22px;
	background-position: center top;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(560px 320px at 92% -8%, rgba(0, 120, 192, .10), transparent 65%),
		linear-gradient(180deg, #fff 60%, var(--v-blue-soft) 100%);
}

#about {
	position: relative;
	overflow: hidden;
}

#about::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(6, 60, 99, .05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(6, 60, 99, .05) 1px, transparent 1px);
	background-size: 38px 38px;
	-webkit-mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
	mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

#about .uk-container {
	position: relative;
	z-index: 1;
}

#services {
	position: relative;
	overflow: hidden;
}

#services::before {
	content: "";
	position: absolute;
	right: -140px;
	top: -120px;
	z-index: 0;
	pointer-events: none;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 120, 192, .06), transparent 70%);
}

#services::after {
	content: "";
	position: absolute;
	left: -10%;
	bottom: -30%;
	z-index: 0;
	pointer-events: none;
	width: 60%;
	height: 70%;
	background-image: radial-gradient(circle, rgba(31, 158, 122, .10) 1.4px, transparent 1.4px);
	background-size: 26px 26px;
	-webkit-mask-image: radial-gradient(circle at 20% 60%, #000 0%, transparent 65%);
	mask-image: radial-gradient(circle at 20% 60%, #000 0%, transparent 65%);
}

#services .uk-container {
	position: relative;
	z-index: 1;
}

#docs {
	position: relative;
	overflow: hidden;
}

#docs::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image: repeating-linear-gradient(115deg, rgba(6, 60, 99, .045) 0 1px, transparent 1px 30px);
}

#docs .uk-container {
	position: relative;
	z-index: 1;
}

#contacts {
	position: relative;
	overflow: hidden;
}

#contacts::before {
	content: "";
	position: absolute;
	left: -8%;
	top: -10%;
	z-index: 0;
	pointer-events: none;
	width: 46%;
	height: 120%;
	background-image: radial-gradient(circle, rgba(0, 120, 192, .07) 1.4px, transparent 1.4px);
	background-size: 24px 24px;
	-webkit-mask-image: radial-gradient(circle at 0% 30%, #000 0%, transparent 60%);
	mask-image: radial-gradient(circle at 0% 30%, #000 0%, transparent 60%);
}

#contacts .uk-container {
	position: relative;
	z-index: 1;
}

footer.site-footer {
	position: relative;
	overflow: hidden;
}

footer.site-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image: radial-gradient(circle, rgba(255, 255, 255, .05) 1px, transparent 1px);
	background-size: 20px 20px;
}

footer.site-footer .uk-container {
	position: relative;
	z-index: 1;
}

/* ---------- Тень и hover для карточек ---------- */
.card {
	box-shadow: 0 1px 2px rgba(6, 60, 99, .05), 0 6px 16px rgba(6, 60, 99, .06);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(6, 60, 99, .12);
	border-color: #C9DCEA;
}

.fact-card {
	box-shadow: 0 1px 2px rgba(6, 60, 99, .04);
	transition: transform .18s ease, box-shadow .18s ease;
}

.fact-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(6, 60, 99, .10);
}

.banner-link {
	box-shadow: 0 1px 2px rgba(6, 60, 99, .04);
}

.banner-link:hover {
	box-shadow: 0 8px 18px rgba(6, 60, 99, .10);
	transform: translateY(-2px);
}