@font-face {
	font-family: 'zumail';
	src: url('/2016/fonts/zumail/zumail.woff?uuvo5q') format('woff'),
	     url('/2016/fonts/zumail/zumail.ttf?uuvo5q') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

:root {
	--blue: #1ab6f1;
	--blue-dark: #0d8dbf;
	--blue-deep: #0c5671;
	--black: #1b1b1b;
	--ink: #22262c;
	--muted: #5b6470;
	--line: #e4e8ec;
	--surface: #f5f7f9;
	--radius: 10px;
	--radius-lg: 16px;
	--shadow-sm: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .07);
	--shadow-md: 0 6px 16px rgba(16, 24, 40, .08), 0 2px 6px rgba(16, 24, 40, .05);
	--shadow-lg: 0 18px 40px rgba(16, 24, 40, .14);
	--container: 1180px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	background: #fff;
	color: var(--muted);
	font: 400 16px/1.6 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

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

h1, h2, h3 {
	margin: 0 0 12px;
	color: var(--black);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -.015em;
}

h1 { font-size: clamp(2rem, 1.5rem + 2.2vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 1.25rem + 1.3vw, 2.15rem); }
h3 { font-size: 1.0625rem; font-weight: 500; letter-spacing: 0; }

p { margin: 0 0 20px; }

ul { margin: 0; padding: 0; list-style: none; }

[class^="icon-"] {
	font-family: 'zumail';
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	display: inline-block;
	vertical-align: middle;
}

.icon-cash::before { content: "\e907"; }
.icon-clock::before { content: "\e908"; }
.icon-close::before { content: "\e909"; }
.icon-denied::before { content: "\e90c"; }
.icon-global::before { content: "\e90f"; }
.icon-lock::before { content: "\e913"; }
.icon-quality::before { content: "\e91c"; }
.icon-thumbsup::before { content: "\e920"; }
.icon-timer::before { content: "\e921"; }
.icon-user::before { content: "\e923"; }
.icon-briefcase-circle::before { content: "\e905"; }
.icon-briefcase::before { content: "\e906"; }
.icon-boat::before { content: "\e904"; }
.icon-database::before { content: "\e90b"; }
.icon-door::before { content: "\e90d"; }
.icon-female-circle::before { content: "\e90e"; }
.icon-hand-stop::before { content: "\e910"; }
.icon-info::before { content: "\e912"; }
.icon-male-circle::before { content: "\e917"; }
.icon-rocket::before { content: "\e91e"; }
.icon-sunglasses::before { content: "\e91f"; }
.icon-user-circle::before { content: "\e922"; }
.icon-users::before { content: "\e924"; }

:focus-visible {
	outline: 2px solid var(--blue);
	outline-offset: 3px;
	border-radius: 4px;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: var(--black);
}

.header-main .container {
	display: flex;
	align-items: center;
	gap: 44px;
	min-height: 82px;
}

.header-logo { flex: none; }
.header-logo img { width: 86px; height: auto; }

.header-nav {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-right: auto;
}

.header-nav a {
	position: relative;
	display: block;
	padding: 10px 16px;
	border-radius: var(--radius);
	color: #e6eaee;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: .01em;
	transition: color .18s ease-out, background-color .18s ease-out;
}

.header-nav a::after {
	content: "";
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 4px;
	height: 2px;
	border-radius: 2px;
	background: var(--blue);
	opacity: 0;
	transform: translateY(3px);
	transition: all .18s ease-out;
}

.header-nav a:hover { color: #fff; background: rgba(255, 255, 255, .06); }

.header-nav li.active a { color: #fff; }

.header-nav li.active a::after,
.header-nav a:hover::after { opacity: 1; transform: translateY(0); }

.header-control {
	display: flex;
	align-items: center;
	gap: 4px;
	flex: none;
}

.header-control > li > a,
.langs-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 13px;
	border-radius: var(--radius);
	color: #a7b0bb;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .04em;
	text-transform: uppercase;
	transition: color .18s ease-out, background-color .18s ease-out;
}

.header-control > li > a:hover,
.langs:hover .langs-label {
	color: #fff;
	background: rgba(255, 255, 255, .07);
}

.header-control i { font-size: 14px; }

.langs { position: relative; }

.langs-list {
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	min-width: 168px;
	padding: 6px;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: all .18s ease-out;
}

.langs:hover .langs-list,
.langs:focus-within .langs-list {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.langs-list a {
	display: block;
	padding: 9px 12px;
	border-radius: 6px;
	color: var(--ink);
	font-size: 14px;
	font-weight: 500;
}

.langs-list a:hover { background: var(--surface); color: var(--blue-dark); }

.show-menu {
	display: none;
	margin-left: auto;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .07);
	color: #fff;
	cursor: pointer;
}

.show-menu span {
	position: relative;
	display: block;
	width: 18px;
	height: 2px;
	margin: 0 auto;
	background: currentColor;
	transition: background-color .18s ease-out;
}

.show-menu span::before,
.show-menu span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: currentColor;
	transition: transform .18s ease-out, top .18s ease-out;
}

.show-menu span::before { top: -6px; }
.show-menu span::after { top: 6px; }

.show-menu.open span { background: transparent; }
.show-menu.open span::before { top: 0; transform: rotate(-45deg); }
.show-menu.open span::after { top: 0; transform: rotate(45deg); }

.banner {
	position: relative;
	overflow: hidden;
	background: var(--blue);
	background-image: linear-gradient(135deg, #37bff3 0%, #1ab6f1 46%, #0f9ad0 100%);
	color: #fff;
}

.banner .container {
	display: flex;
	align-items: flex-end;
	gap: 40px;
	padding-top: 56px;
	padding-bottom: 0;
}

.banner-text {
	flex: 1 1 auto;
	max-width: 620px;
	padding-bottom: 56px;
}

.banner h1 { color: #fff; margin-bottom: 16px; }

.banner p {
	margin-bottom: 28px;
	color: rgba(255, 255, 255, .94);
	font-size: clamp(1.0625rem, 1rem + .35vw, 1.3rem);
	font-weight: 300;
	line-height: 1.5;
}

.banner-btn {
	display: inline-block;
	padding: 16px 30px;
	border-radius: var(--radius);
	background: var(--blue-deep);
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: .04em;
	text-transform: uppercase;
	box-shadow: var(--shadow-md);
	transition: transform .18s ease-out, background-color .18s ease-out, box-shadow .18s ease-out;
}

.banner-btn:hover {
	background: #084156;
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.banner-btn:active { transform: translateY(0); box-shadow: var(--shadow-md); }

.banner-img {
	flex: 0 0 auto;
	align-self: flex-end;
	width: min(42%, 430px);
}

.banner-img img { display: block; }

.box-black {
	background: var(--black);
	padding: 44px 0;
}

.box-icons {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
}

.box-icons li {
	padding: 24px 14px;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, .03);
	text-align: center;
	transition: transform .18s ease-out, background-color .18s ease-out, border-color .18s ease-out;
}

.box-icons li:hover {
	background: rgba(255, 255, 255, .06);
	border-color: rgba(255, 255, 255, .16);
	transform: translateY(-3px);
}

.box-icons i {
	font-size: 38px;
	color: var(--blue);
	margin-bottom: 14px;
}

.box-icons h3 {
	color: #d9dee4;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.45;
	margin: 0;
}

.section-offer { padding: 72px 0; }

.section-offer .container {
	display: grid;
	grid-template-columns: minmax(0, 6fr) minmax(0, 7fr);
	align-items: center;
	gap: 56px;
}

.box-offer p { max-width: 44ch; }

.numbers {
	display: flex;
	gap: 14px;
	margin: 0 0 28px;
}

.numbers li {
	flex: 1 1 0;
	padding: 16px 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
}

.numbers-label {
	display: block;
	margin-bottom: 2px;
	color: var(--blue-dark);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
}

.numbers-value {
	display: block;
	color: var(--black);
	font-size: clamp(1.35rem, 1.15rem + .8vw, 1.75rem);
	font-weight: 700;
	letter-spacing: -.01em;
	white-space: nowrap;
}

.btn {
	display: inline-block;
	padding: 15px 28px;
	border: 0;
	border-radius: var(--radius);
	background: #414954;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .04em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: var(--shadow-sm);
	transition: transform .18s ease-out, background-color .18s ease-out, box-shadow .18s ease-out;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); box-shadow: var(--shadow-sm); }

.btn-blue { background: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); }

.box-logos {
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: #fff;
	box-shadow: var(--shadow-sm);
}

.box-logos ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.box-logos li {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 68px;
	padding: 10px;
	border-radius: var(--radius);
	transition: background-color .18s ease-out;
}

.box-logos li:hover { background: var(--surface); }

.box-logos img {
	max-height: 34px;
	width: auto;
	filter: grayscale(100%);
	opacity: .62;
	transition: filter .2s ease-out, opacity .2s ease-out;
}

.box-logos li:hover img { filter: grayscale(0); opacity: 1; }

.footer {
	border-top: 1px solid var(--line);
	background: var(--surface);
	padding: 34px 0 30px;
}

.footer .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.footer-nav {
	display: flex;
	gap: 18px;
	margin-bottom: 8px;
}

.footer-nav a {
	color: var(--blue-dark);
	font-size: 14px;
	font-weight: 500;
	transition: color .18s ease-out;
}

.footer-nav a:hover { color: #0a6f97; }

.footer-copy { color: var(--muted); font-size: 14px; }

.footer-logos ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 22px;
}

.footer-logos img { opacity: .8; transition: opacity .18s ease-out; }
.footer-logos a:hover img { opacity: 1; }

@media (max-width: 1000px) {
	.box-icons { grid-template-columns: repeat(3, 1fr); }
	.section-offer .container { grid-template-columns: 1fr; gap: 40px; }
	.banner-img { width: 38%; }
}

@media (max-width: 767px) {
	.container { padding: 0 18px; }

	.show-menu { display: block; order: 3; }

	.header-main .container { min-height: 66px; gap: 12px; flex-wrap: wrap; }

	.header-control {
		margin-left: auto;
		order: 2;
	}

	.header-control > li > a,
	.langs-label { padding: 8px 10px; font-size: 12px; }

	.header-control > li > a > span { display: none; }

	.header-control i { font-size: 16px; }

	.langs-list { right: 0; }

	.header-logo img { width: 74px; }

	.header-nav {
		position: absolute;
		left: 18px;
		right: 18px;
		top: calc(100% + 6px);
		display: block;
		padding: 8px;
		border-radius: var(--radius-lg);
		background: #fff;
		box-shadow: var(--shadow-lg);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: all .2s ease-out;
	}

	.header-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }

	.header-nav a {
		padding: 14px 14px;
		border-radius: var(--radius);
		color: var(--ink);
		font-size: 16px;
	}

	.header-nav a::after { display: none; }

	.header-nav a:hover { background: var(--surface); color: var(--blue-dark); }

	.header-nav li.active a { color: var(--blue-dark); background: var(--surface); }

	.header-main { position: relative; }

	.banner .container {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding-top: 40px;
		padding-bottom: 0;
	}

	.banner-text { padding-bottom: 28px; }

	.banner-img { width: min(78%, 320px); align-self: center; }

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

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

	.box-black { padding: 32px 0; }

	.section-offer { padding: 48px 0; }

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

	.btn { display: block; text-align: center; }

	.footer { text-align: center; }

	.footer .container { justify-content: center; }

	.footer-nav { justify-content: center; }

	.footer-logos ul { justify-content: center; }
}

@media (max-width: 420px) {
	.numbers { flex-direction: column; }
	.box-logos ul { grid-template-columns: repeat(2, 1fr); }
}

.cookies {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 60;
	background: rgba(23, 26, 31, .97);
	backdrop-filter: blur(6px);
	box-shadow: 0 -6px 24px rgba(0, 0, 0, .18);
	transform: translateY(100%);
	transition: transform .28s ease-out;
}

.cookies.is-visible { transform: translateY(0); }

.cookies .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding-top: 16px;
	padding-bottom: 16px;
}

.cookies p {
	margin: 0;
	color: #b8c0ca;
	font-size: 14px;
	line-height: 1.55;
	max-width: 84ch;
}

.cookies-btn {
	flex: none;
	padding: 12px 26px;
	border: 0;
	border-radius: var(--radius);
	background: var(--blue);
	color: #fff;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color .18s ease-out, transform .18s ease-out;
}

.cookies-btn:hover { background: var(--blue-dark); transform: translateY(-1px); }
.cookies-btn:active { transform: translateY(0); }

body.has-cookies #zu-switch { bottom: 92px; }

@media (max-width: 767px) {
	.cookies .container {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		text-align: center;
	}

	.cookies-btn { width: 100%; }

	body.has-cookies #zu-switch { bottom: 168px; }
}

.page-head {
	background: var(--blue);
	background-image: linear-gradient(135deg, #37bff3 0%, #1ab6f1 46%, #0f9ad0 100%);
	color: #fff;
	text-align: center;
	padding: 56px 0;
}

.page-head h1 {
	color: #fff;
	font-size: clamp(1.75rem, 1.4rem + 1.7vw, 2.6rem);
	margin-bottom: 0;
}

.page-head p {
	margin: 16px auto 0;
	max-width: 74ch;
	color: rgba(255, 255, 255, .94);
	font-size: clamp(1rem, .96rem + .3vw, 1.15rem);
	font-weight: 300;
	line-height: 1.6;
}

.section { padding: 64px 0; }

.section-gray { background: var(--surface); }

.section-dark { background: var(--black); }

.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.section-dark p { color: #aeb7c2; }

.section-head { text-align: center; margin-bottom: 40px; }

.section-head h2 { margin-bottom: 10px; }

.section-head p { margin: 0 auto; max-width: 68ch; }

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

.cards-third { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
	display: flex;
	gap: 20px;
	padding: 26px 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: #fff;
	transition: border-color .18s ease-out, box-shadow .18s ease-out, transform .18s ease-out;
}

.card:hover {
	border-color: #cfd8e0;
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.card h3 { margin-bottom: 8px; font-size: 1.125rem; font-weight: 700; }

.card p { margin: 0; font-size: 15px; overflow-wrap: anywhere; }

.card > div { min-width: 0; }

.card p a { color: var(--blue-dark); text-decoration: underline; text-underline-offset: 2px; }

.card-number {
	flex: none;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -.03em;
	color: #d7dee5;
}

.card-number-red { color: #ff3b12; }
.card-number-blue { color: var(--blue); }

.card-stack { display: block; }

.card-stack .card-number { margin-bottom: 12px; }

.card-icon {
	flex: none;
	font-size: 34px;
	line-height: 1;
	color: var(--blue);
}

.card-icon-red { color: #ff3b12; }

.faq-card { display: block; }

.faq-card h3 { font-size: 1.0625rem; line-height: 1.35; }

.faq-card summary {
	list-style: none;
	cursor: pointer;
	color: var(--blue-dark);
	font-size: 14px;
	font-weight: 500;
	padding-top: 14px;
	margin-top: 14px;
	border-top: 1px solid var(--line);
	transition: color .18s ease-out;
}

.faq-card summary::-webkit-details-marker { display: none; }

.faq-card summary::after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-left: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	transition: transform .18s ease-out;
}

.faq-card details[open] summary::after { transform: rotate(-135deg) translateY(-2px); }

.faq-card summary:hover { color: #0a6f97; }

.faq-card details p { margin-top: 12px; }

.faq-card .faq-link {
	margin: 14px 0 0;
	padding-top: 14px;
	border-top: 1px solid var(--line);
	font-size: 14px;
	font-weight: 500;
}

.faq-card .faq-link a { color: var(--blue-dark); }

.faq-card .faq-link a:hover { color: #0a6f97; text-decoration: underline; text-underline-offset: 2px; }

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

.qa .card h3 { font-size: 1.0625rem; }

.qa .card p { font-size: 14px; }

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

.review {
	padding: 24px 22px;
	border: 1px solid rgba(255, 255, 255, .09);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, .03);
	text-align: center;
	transition: background-color .18s ease-out, transform .18s ease-out;
}

.review:hover { background: rgba(255, 255, 255, .06); transform: translateY(-2px); }

.review i { font-size: 36px; color: #8f7dd8; }

.review-female i { color: #f15f74; }

.review h4 { margin: 12px 0 8px; color: #fff; font-size: 15px; font-weight: 500; }

.review p { margin: 0; color: #a9b2bd; font-size: 14px; line-height: 1.55; }

.review-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.review-cta p { color: #fff; margin: 0; }

.stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	position: relative;
}

.stats::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 8px;
	bottom: 8px;
	width: 1px;
	background: rgba(255, 255, 255, .12);
}

.stat {
	padding: 20px 44px;
	text-align: center;
}

.stat > img { margin: 0 auto 22px; max-height: 150px; width: auto; }

.stat-title {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 300;
	letter-spacing: .01em;
	margin-bottom: 30px;
}

.stat-row {
	display: flex;
	justify-content: center;
	gap: 34px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.dial {
	position: relative;
	width: 104px;
	height: 104px;
	border-radius: 50%;
	background: conic-gradient(var(--dial-color) calc(var(--dial) * 1%), rgba(255, 255, 255, .07) 0);
	display: grid;
	place-items: center;
}

.dial::after {
	content: "";
	position: absolute;
	inset: 7px;
	border-radius: 50%;
	background: var(--black);
}

.dial span {
	position: relative;
	z-index: 1;
	color: #fff;
	font-size: 20px;
	font-weight: 300;
}

.dial-label {
	display: block;
	margin-top: 12px;
	color: #8f99a4;
	font-size: 13px;
	letter-spacing: .04em;
}

.stat-note { color: #99a3ae; font-size: 15px; margin: 0 0 6px; }

.stat-value {
	color: #fff;
	font-size: 1.7rem;
	font-weight: 300;
	letter-spacing: .01em;
}

.logos-color {
	max-width: 1000px;
	margin: 0 auto;
	padding: 18px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: #fff;
}

.logos-color ul {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 4px;
}

.logos-color li {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 96px;
	padding: 16px 20px;
}

.logos-color img {
	max-height: 52px;
	max-width: 100%;
	width: auto;
}

.form-card {
	max-width: 620px;
	margin: 0 auto;
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: #fff;
	box-shadow: var(--shadow-sm);
}

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

.field { margin-bottom: 16px; }

.field label {
	display: block;
	margin-bottom: 6px;
	color: var(--ink);
	font-size: 14px;
	font-weight: 500;
}

.control {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #fff;
	color: var(--ink);
	font-family: inherit;
	font-size: 15px;
	line-height: 1.5;
	transition: border-color .15s ease-out, box-shadow .15s ease-out;
}

.control::placeholder { color: #9aa3ae; }

.control:hover { border-color: #cfd8e0; }

.control:focus {
	outline: none;
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(26, 182, 241, .18);
}

textarea.control { resize: vertical; min-height: 132px; }

.form-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 4px 0 6px;
	color: var(--muted);
	font-size: 14px;
}

.form-note i { color: var(--blue); font-size: 16px; }

.form-terms { text-align: center; font-size: 13px; margin-bottom: 20px; }

.form-terms a { color: var(--blue-dark); text-decoration: underline; text-underline-offset: 2px; }

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

.btn-lg { padding: 17px 32px; font-size: 15px; border-radius: var(--radius-lg); }

.owner { text-align: center; }

.owner p { max-width: 70ch; margin: 0 auto; }

.contacts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	max-width: 620px;
	margin: 0 auto;
}

.contact {
	padding: 28px 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: #fff;
	text-align: center;
	transition: border-color .18s ease-out, box-shadow .18s ease-out;
}

.contact:hover { border-color: #cfd8e0; box-shadow: var(--shadow-md); }

.contact i { font-size: 34px; color: var(--blue); }

.contact h3 { margin: 14px 0 6px; }

.contact p { margin: 0 0 20px; font-size: 15px; }

.contacts-lg { max-width: 760px; }

.contacts-lg .contact { padding: 36px 26px; }

.contacts-lg .contact i { font-size: 42px; }

.contacts-lg .contact h3 { font-size: 1.25rem; font-weight: 700; }

.contact-mail {
	display: inline-block;
	color: var(--blue-dark);
	font-size: 1.0625rem;
	font-weight: 500;
	border-bottom: 2px solid rgba(26, 182, 241, .35);
	padding-bottom: 2px;
	transition: color .18s ease-out, border-color .18s ease-out;
}

.contact-mail:hover { color: #0a6f97; border-color: var(--blue); }

.contact a { color: var(--blue-dark); font-weight: 500; }

.contact a:hover { text-decoration: underline; text-underline-offset: 2px; }

.hints {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	text-align: center;
}

.hints div { color: var(--muted); font-size: 1.0625rem; }

.hints strong { color: var(--black); font-weight: 700; }

.split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 48px;
	align-items: start;
}

.split h2 { text-align: center; }

.split-intro { text-align: center; margin-bottom: 26px; }

.list-socials { display: grid; gap: 10px; margin-top: 16px; }

.btn-fb { background: #43609c; }
.btn-fb:hover { background: #3a5387; }
.btn-gog { background: #dc4b3f; }
.btn-gog:hover { background: #c44036; }
.btn-myid { background: #f3b90a; }
.btn-myid:hover { background: #d9a509; }

.or-line { text-align: center; margin: 20px 0 0; font-size: 14px; }

.quote {
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: #fff;
	margin-bottom: 14px;
}

.quote i { font-size: 34px; color: #c3ccd6; }

.quote h4 { margin: 10px 0 8px; color: var(--black); font-size: 15px; font-weight: 500; }

.quote p { margin: 0; font-size: 14px; }

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

.cta-band p { max-width: 60ch; margin: 0 auto 28px; }

.icons-plain {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

@media (max-width: 1080px) {
	.header-main .container { gap: 20px; }

	.header-nav a { padding: 10px 11px; font-size: 16px; }

	.header-nav a::after { left: 11px; right: 11px; }

	.header-control > li > a,
	.langs-label { padding: 8px 10px; }

	.header-control > li > a > span,
	.langs-label > span { display: none; }

	.header-control i { font-size: 17px; }
}

@media (max-width: 1000px) {
	.qa, .split { grid-template-columns: 1fr; }
	.cards-third { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.logos-color ul { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.icons-plain { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.stats::after { display: none; }
	.stat { padding: 20px 10px; }
	.split { gap: 36px; }
}

@media (max-width: 767px) {
	.cards, .qa, .stats, .split { grid-template-columns: 1fr; }
	.section { padding: 44px 0; }
	.page-head { padding: 38px 0; }
	.cards-third { grid-template-columns: 1fr; }
	.reviews { grid-template-columns: 1fr; }
	.logos-color ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.icons-plain { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.form-row { grid-template-columns: 1fr; }
	.contacts { grid-template-columns: 1fr; }
	.form-card { padding: 22px; }
	.hints { gap: 14px; }
	.stat-row { gap: 16px; }
}

.okno {
	width: min(92vw, 470px);
	max-height: min(88vh, 780px);
	padding: 0;
	border: 0;
	border-radius: var(--radius-lg);
	background: #fff;
	color: var(--muted);
	box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
	overflow: visible;
}

.okno-uzke { width: min(92vw, 420px); }

.okno::backdrop {
	background: rgba(12, 16, 22, .62);
	backdrop-filter: blur(3px);
}

.okno-zavrit-forma { margin: 0; }

.okno-zavrit {
	position: absolute;
	top: 12px;
	right: 12px;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--surface);
	color: var(--muted);
	cursor: pointer;
	transition: background-color .18s ease-out, color .18s ease-out;
}

.okno-zavrit span {
	position: relative;
	display: block;
	width: 16px;
	height: 16px;
}

.okno-zavrit span::before,
.okno-zavrit span::after {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 16px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
}

.okno-zavrit span::before { transform: rotate(45deg); }
.okno-zavrit span::after { transform: rotate(-45deg); }

.okno-zavrit:hover { background: #e4e9ee; color: var(--black); }

.okno-telo {
	padding: 40px 34px 34px;
	max-height: min(88vh, 780px);
	overflow-y: auto;
}

.okno-telo h2 {
	margin-bottom: 24px;
	font-size: 1.45rem;
	line-height: 1.3;
	text-align: center;
}

.okno-telo .btn { margin-top: 6px; }

.sekce-formular {
	padding: 64px 0 80px;
}

.formular-uzky {
	max-width: 480px;
	margin: 0 auto;
}

.formular-uzky h1 {
	margin: 0 0 14px;
}

.formular-popis {
	margin: 0 0 26px;
	color: var(--ink-soft);
	line-height: 1.6;
}

.formular-hotovo {
	margin: 0 0 18px;
	padding: 14px 16px;
	border-radius: 6px;
	background: #e8f6ee;
	border: 1px solid #b9e0c9;
	color: #1d6b42;
	font-weight: 500;
	line-height: 1.5;
}

.formular-chyba-blok {
	margin: 0 0 18px;
	padding: 14px 16px;
	border-radius: 6px;
	background: #fdecea;
	border: 1px solid #f5c2bd;
	color: #a3281c;
	font-weight: 500;
	line-height: 1.5;
}

.formular-chyba {
	margin: 8px 0 0;
	color: #a3281c;
	font-size: 14px;
	line-height: 1.45;
}

.formular-uzky .field label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 500;
}

.formular-uzky .btn-block {
	margin-top: 6px;
}

@media (max-width: 767px) {
	.sekce-formular { padding: 40px 0 56px; }
}

.okno-chyba {
	margin: 0 0 18px;
	padding: 12px 14px;
	border-radius: 6px;
	background: #fdecea;
	border: 1px solid #f5c2bd;
	color: #a3281c;
	font-size: 14px;
	line-height: 1.45;
}

.okno-chyba a {
	color: #a3281c;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.okno-pod {
	margin: 18px 0 0;
	text-align: center;
	font-size: 14px;
}

.okno-pod a {
	color: var(--blue-dark);
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.okno-pod a:hover { color: #0a6f97; }

@media (max-width: 480px) {
	.okno-telo { padding: 36px 20px 24px; }
	.okno-telo h2 { font-size: 1.25rem; }
}

.okno-uvod {
	margin: -8px 0 22px;
	text-align: center;
	font-size: 15px;
}

.okno-deleni {
	position: relative;
	margin: 26px 0 22px;
	text-align: center;
}

.okno-deleni::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 1px;
	background: var(--line);
}

.okno-deleni span {
	position: relative;
	padding: 0 12px;
	background: #fff;
	color: var(--muted);
	font-size: 13px;
	font-weight: 500;
}

.okno-telo .btn:not(.btn-blue) {
	background: #fff;
	color: var(--ink);
	border: 1px solid var(--line);
	box-shadow: none;
}

.okno-telo .btn:not(.btn-blue):hover {
	border-color: #cfd8e0;
	background: var(--surface);
	box-shadow: var(--shadow-sm);
}

.kroky {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0 0 24px;
	counter-reset: krok;
}

.kroky li {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--surface);
	border: 1px solid var(--line);
	color: #9aa3ae;
	font-size: 13px;
	font-weight: 700;
	transition: all .2s ease-out;
}

.kroky li + li { margin-left: 22px; position: relative; }

.kroky li + li::before {
	content: "";
	position: absolute;
	left: -24px;
	width: 20px;
	height: 2px;
	border-radius: 2px;
	background: var(--line);
	transition: background-color .2s ease-out;
}

.kroky li.je-aktivni {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff;
}

.kroky li.je-aktivni + li.je-aktivni::before { background: var(--blue); }

.krok { display: none; }

.krok.je-aktivni { display: block; }

.souhlasy {
	display: grid;
	gap: 12px;
	margin: 20px 0 22px;
	text-align: left;
}

.souhlasy label {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
	align-items: start;
	font-size: 14px;
	line-height: 1.5;
	cursor: pointer;
}

.souhlasy input {
	width: 20px;
	height: 20px;
	margin: 1px 0 0;
	accent-color: var(--blue);
	cursor: pointer;
}

.souhlasy a {
	color: var(--blue-dark);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.souhlasy a:hover { color: #0a6f97; }

.okno-siroke { width: min(94vw, 560px); }

.okno-hlavicka {
	padding: 34px 34px 28px;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
	background: var(--blue);
	background-image: linear-gradient(135deg, #37bff3 0%, #1ab6f1 46%, #0f9ad0 100%);
	color: #fff;
	text-align: center;
}

.okno-hlavicka h2 {
	margin: 0 0 8px;
	color: #fff;
	font-size: clamp(1.3rem, 1.15rem + .7vw, 1.7rem);
	line-height: 1.25;
}

.okno-hlavicka p {
	margin: 0;
	color: rgba(255, 255, 255, .94);
	font-size: 15px;
	font-weight: 300;
	line-height: 1.5;
}

.okno-zavrit-svetly {
	background: rgba(255, 255, 255, .18);
	color: #fff;
}

.okno-zavrit-svetly:hover { background: rgba(255, 255, 255, .3); color: #fff; }

.okno-siroke .okno-telo { padding: 28px 34px 32px; }

.pole-vedle-sebe {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.pole-vedle-sebe .control { padding-left: 10px; padding-right: 6px; }

.odeslano { text-align: center; padding: 10px 0 6px; }

.odeslano-znak {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: rgba(26, 182, 241, .12);
}

.odeslano-znak::before {
	content: "";
	width: 20px;
	height: 11px;
	border-left: 3px solid var(--blue);
	border-bottom: 3px solid var(--blue);
	border-radius: 2px;
	transform: rotate(-45deg) translate(2px, -3px);
}

.odeslano h3 {
	margin-bottom: 10px;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--black);
}

.odeslano p { margin: 0 0 12px; font-size: 15px; }

.odeslano-pozn { color: var(--muted); font-size: 14px; }

@media (max-width: 560px) {
	.pole-vedle-sebe { grid-template-columns: 1fr; gap: 0; }
	.okno-hlavicka { padding: 28px 20px 22px; }
	.okno-siroke .okno-telo { padding: 22px 20px 24px; }
}
