/* ===================================================================
   Лендинг-презентация «Терминал Онлайн».
   Токены оформления из референсов (документ 23).
   Рассчитан на ПК и планшет; шрифты self-hosted с системным fallback.
   =================================================================== */

:root {
	--bg: #f7f9ff;
	--paper: #f4f6fb;
	--card: #fff;
	--ink: #0d1b33;
	--muted: #5a6784;
	--dim: #8a94ad;
	--line: #dce3f0;
	--blue: #1d40d6;
	--blue-d: #142f9e;
	--blue-t: #e7ecfb;
	--green: #17b26a;
	--red: #d6262c;
	--red-d: #8e181d;
	--red-t: #fbe9e9;
	--body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--disp: "Unbounded", var(--body);
	--mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
	--top: 56px;
	--sh: 0 18px 50px rgba(13, 27, 51, 0.1);
	--shs: 0 8px 24px rgba(13, 27, 51, 0.06);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.ld {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

/* --- верхняя панель ---------------------------------------------------- */
.ld-top {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 60;
	height: var(--top);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 0 24px;
	background: rgba(247, 249, 255, 0.88);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
}

.ld-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: inherit;
	flex: 0 0 auto;
}

.ld-brand-mark {
	width: 30px;
	height: 30px;
	border-radius: 9px;
	background: var(--blue);
	color: #fff;
	display: grid;
	place-items: center;
}

.ld-brand b {
	font-family: var(--disp);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

.ld-brand-tag {
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	padding: 4px 9px;
	border: 1px solid var(--line);
	border-radius: 999px;
	white-space: nowrap;
}

.ld-top-title {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
	text-align: center;
	flex: 1 1 auto;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ld-counter {
	font-family: var(--mono);
	font-size: 12px;
	letter-spacing: 0.1em;
	color: #fff;
	background: var(--ink);
	padding: 6px 13px;
	border-radius: 999px;
}

.ld-counter b {
	color: #fff;
}

.ld-progress {
	position: absolute;
	inset: auto 0 -1px 0;
	height: 2px;
	background: transparent;
}

.ld-progress span {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--blue), var(--red));
	transition: width 0.35s ease;
}

/* --- слайды ------------------------------------------------------------ */
.ld-deck {
	padding-top: var(--top);
}

.sl {
	position: relative;
	min-height: calc(100vh - var(--top));
	display: flex;
	align-items: center;
	padding: 56px 24px 92px;
	overflow: hidden;
}

.sl::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		900px 460px at 85% 0%,
		#e9eefc 0%,
		transparent 62%
	);
	pointer-events: none;
}

.sl-ghost {
	position: absolute;
	right: 2vw;
	bottom: -4vh;
	font-family: var(--disp);
	font-size: clamp(180px, 26vw, 420px);
	font-weight: 900;
	line-height: 0.8;
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(29, 64, 214, 0.07);
	pointer-events: none;
	user-select: none;
}

.sl-in {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
}

.sl-in--split {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}

.sl-in--reverse {
	grid-template-columns: 0.95fr 1.05fr;
}

/* --- типографика ------------------------------------------------------- */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 18px;
}

.eyebrow i {
	width: 30px;
	height: 2px;
	background: var(--red);
	border-radius: 2px;
}

.h-xl {
	font-family: var(--disp);
	font-size: clamp(38px, 5.4vw, 76px);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.03em;
	margin: 0 0 22px;
}

.h-xl span {
	display: block;
}

.h-lg {
	font-family: var(--disp);
	font-size: clamp(28px, 3.4vw, 48px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.025em;
	margin: 0 0 16px;
}

.accent {
	color: var(--blue);
}

.lead {
	font-size: clamp(16px, 1.25vw, 19px);
	color: var(--muted);
	margin: 0 0 26px;
	max-width: 620px;
}

.lead--wide {
	max-width: 820px;
	margin-bottom: 34px;
}

.note-line {
	margin: 26px 0 0;
	font-size: 14.5px;
	color: var(--muted);
	max-width: 780px;
}

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

/* --- кнопки ------------------------------------------------------------ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 24px;
	border: 1.5px solid transparent;
	border-radius: 999px;
	font: inherit;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition:
		background 0.18s,
		border-color 0.18s,
		color 0.18s,
		transform 0.12s,
		box-shadow 0.18s;
}

.btn-lg {
	min-height: 56px;
	padding: 0 30px;
	font-size: 16.5px;
}
.btn-sm {
	min-height: 40px;
	padding: 0 18px;
	font-size: 14px;
}
.btn-full {
	width: 100%;
}

.btn-primary {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 10px 30px rgba(29, 64, 214, 0.28);
}

.btn-primary:hover {
	background: var(--blue-d);
	transform: translateY(-2px);
	box-shadow: 0 16px 38px rgba(29, 64, 214, 0.34);
}

.btn-outline {
	background: #fff;
	border-color: var(--line);
	color: var(--ink);
}

.btn-outline:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.btn:focus-visible {
	outline: 3px solid rgba(29, 64, 214, 0.38);
	outline-offset: 3px;
}
.btn .ic {
	width: 20px;
	height: 20px;
}

/* --- чипы и метрики ---------------------------------------------------- */
.chips {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}

.chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--muted);
	box-shadow: var(--shs);
}

.chip .ic {
	width: 16px;
	height: 16px;
	color: var(--green);
}

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

.metric {
	padding: 16px 18px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	box-shadow: var(--shs);
}

.metric b {
	display: block;
	font-family: var(--disp);
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: var(--blue);
}

.metric span {
	display: block;
	margin-top: 3px;
	font-size: 12.5px;
	color: var(--muted);
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 34px;
}

/* --- первый экран: анимация появления ---------------------------------- */
.sl-in--hero {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 48px;
	align-items: center;
}

.hero-glow {
	position: absolute;
	left: -14%;
	top: -30%;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(29, 64, 214, 0.16) 0%,
		transparent 66%
	);
	filter: blur(12px);
	animation: glow 7s ease-in-out infinite;
	pointer-events: none;
}

@keyframes glow {
	0%,
	100% {
		transform: scale(1) translate(0, 0);
		opacity: 0.85;
	}
	50% {
		transform: scale(1.14) translate(28px, 20px);
		opacity: 1;
	}
}

.rv {
	opacity: 0;
	transform: translateY(26px);
	animation: rise 0.82s cubic-bezier(0.22, 0.8, 0.28, 1) forwards;
}

.rv-2 {
	animation-delay: 0.13s;
}
.rv-3 {
	animation-delay: 0.26s;
}
.rv-4 {
	animation-delay: 0.38s;
}
.rv-5 {
	animation-delay: 0.5s;
}
.rv-6 {
	animation-delay: 0.62s;
}

@keyframes rise {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-device {
	display: flex;
	justify-content: center;
}

.device--float {
	/* без анимации — интерактивный терминал не должен плавать */
}

/* --- карточки ---------------------------------------------------------- */
.cards-4 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
}

.fcard {
	padding: 26px 24px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 22px;
	box-shadow: var(--shs);
	opacity: 0;
	transform: translateY(22px);
	transition:
		transform 0.3s,
		box-shadow 0.3s;
}

.is-live .fcard {
	animation: rise 0.7s cubic-bezier(0.22, 0.8, 0.28, 1) forwards;
	animation-delay: var(--d, 0ms);
}

.fcard:hover {
	transform: translateY(-6px);
	box-shadow: var(--sh);
}

.fcard-ic {
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	margin-bottom: 16px;
}

.fcard-ic--blue {
	background: var(--blue-t);
	color: var(--blue);
}
.fcard-ic--red {
	background: var(--red-t);
	color: var(--red);
}
.fcard-ic .ic {
	width: 23px;
	height: 23px;
}

.fcard b {
	display: block;
	font-size: 17px;
	margin-bottom: 8px;
	letter-spacing: -0.01em;
}
.fcard p {
	margin: 0;
	font-size: 14.5px;
	color: var(--muted);
}

/* --- карточки выгод ---------------------------------------------------- */
.bcard {
	display: flex;
	gap: 18px;
	padding: 22px 24px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 20px;
	box-shadow: var(--shs);
	margin-bottom: 16px;
	opacity: 0;
	transform: translateY(20px);
}

.is-live .bcard {
	animation: rise 0.7s cubic-bezier(0.22, 0.8, 0.28, 1) forwards;
	animation-delay: var(--d, 0ms);
}

.bcard-ic {
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	display: grid;
	place-items: center;
	border-radius: 13px;
}

.bcard-ic--blue {
	background: var(--blue-t);
	color: var(--blue);
}
.bcard-ic--red {
	background: var(--red-t);
	color: var(--red);
}
.bcard-ic .ic {
	width: 22px;
	height: 22px;
}

.bcard b {
	display: block;
	font-size: 16.5px;
	margin-bottom: 6px;
}
.bcard p {
	margin: 0 0 10px;
	font-size: 14.5px;
	color: var(--muted);
}

.bcard-hl {
	display: inline-block;
	font-family: var(--disp);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.bcard-hl--blue {
	color: var(--blue);
}
.bcard-hl--red {
	color: var(--red);
}

/* --- шаги -------------------------------------------------------------- */
.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
	margin-bottom: 30px;
}

.step {
	position: relative;
	padding: 34px 22px 24px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 20px;
	box-shadow: var(--shs);
	opacity: 0;
	transform: translateY(20px);
}

.is-live .step {
	animation: rise 0.7s cubic-bezier(0.22, 0.8, 0.28, 1) forwards;
	animation-delay: var(--d, 0ms);
}

.step-n {
	position: absolute;
	top: -15px;
	left: 22px;
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	color: #fff;
	font-family: var(--mono);
	font-size: 14px;
	font-weight: 700;
}

.step-n--blue {
	background: var(--blue);
}
.step-n--red {
	background: var(--red);
}

.step b {
	display: block;
	font-size: 16.5px;
	margin-bottom: 7px;
}
.step p {
	margin: 0;
	font-size: 14.5px;
	color: var(--muted);
}

/* --- демонстрация экранов ---------------------------------------------- */
.screens {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.screen {
	margin: 0;
	opacity: 0;
	transform: translateY(22px);
}

.is-live .screen {
	animation: rise 0.72s cubic-bezier(0.22, 0.8, 0.28, 1) forwards;
	animation-delay: var(--d, 0ms);
}

.screen figcaption {
	margin-top: 14px;
	text-align: center;
}
.screen figcaption b {
	display: block;
	font-size: 15px;
	color: var(--blue);
}

.screen figcaption span {
	display: block;
	margin-top: 3px;
	font-family: var(--mono);
	font-size: 11.5px;
	color: var(--muted);
	letter-spacing: 0.02em;
}

/* --- макет устройства -------------------------------------------------- */
.device {
	position: relative;
	width: 100%;
	max-width: 340px;
	margin: 0 auto;
	padding: 12px;
	background: #17203a;
	border-radius: 28px;
	box-shadow: 0 26px 60px rgba(13, 27, 51, 0.26);
}

.device::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 5px;
	transform: translateX(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.28);
}

.device--sm {
	max-width: 100%;
	padding: 9px;
	border-radius: 22px;
}

/* --- витрина терминала внутри макета ----------------------------------- */
.tv {
	display: flex;
	flex-direction: column;
	aspect-ratio: 9 / 16;
	background: var(--paper);
	border-radius: 18px;
	overflow: hidden;
	font-size: 11px;
	line-height: 1.42;
	text-align: left;
	color: var(--ink);
}

.device--sm .tv {
	border-radius: 14px;
	font-size: 9.5px;
}
.device--zoom .tv {
	font-size: 13px;
}

.tv-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 10px 12px;
	background: #fff;
	border-bottom: 1px solid var(--line);
}

.tv-brand {
	display: flex;
	align-items: center;
	gap: 7px;
}

.tv-logo {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	border-radius: 7px;
	background: var(--blue);
	color: #fff;
	display: grid;
	place-items: center;
	font-family: var(--disp);
	font-size: 10px;
	font-weight: 800;
}

.tv-brand b {
	display: block;
	font-size: 1.15em;
	font-weight: 700;
}
.tv-brand i {
	display: block;
	font-style: normal;
	font-size: 0.88em;
	color: var(--muted);
}

.tv-time {
	text-align: right;
}

.tv-status {
	display: inline-block;
	margin-bottom: 2px;
	padding: 2px 7px;
	border-radius: 999px;
	background: #e6f7ef;
	color: #0b6b41;
	font-size: 0.8em;
	font-weight: 600;
	white-space: nowrap;
}

.tv-time b {
	display: block;
	font-family: var(--mono);
	font-size: 1.55em;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.01em;
}

.tv-time i {
	display: block;
	font-style: normal;
	font-size: 0.82em;
	color: var(--muted);
}

.tv-back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	color: var(--ink);
	cursor: pointer;
	transition: background 0.15s;
	margin-right: 6px;
	flex-shrink: 0;
}

.tv-back:hover {
	background: rgba(255, 255, 255, 0.4);
}

.tv-body {
	flex: 1 1 auto;
	padding: 10px 12px;
	overflow: hidden;
}

.tv-banner {
	padding: 11px 12px;
	margin-bottom: 10px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--blue) 0%, var(--blue-d) 100%);
	color: #fff;
	text-align: center;
}

.tv-banner b {
	display: block;
	font-size: 1.24em;
	font-weight: 800;
	letter-spacing: -0.01em;
}
.tv-banner span {
	display: block;
	margin-top: 3px;
	font-size: 0.84em;
	opacity: 0.9;
}

.tv-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	margin-bottom: 10px;
}

.tv-card {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 9px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.98em;
}

.tv-num {
	width: 19px;
	height: 19px;
	flex: 0 0 19px;
	border-radius: 6px;
	background: var(--blue);
	color: #fff;
	display: grid;
	place-items: center;
	font-family: var(--mono);
	font-size: 0.78em;
	font-weight: 700;
}

.tv-faq {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 9px 10px;
}

.tv-faq-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 7px;
}

.tv-faq-head b {
	font-size: 1.02em;
}

.tv-pill {
	padding: 2px 8px;
	border-radius: 999px;
	background: var(--blue);
	color: #fff;
	font-size: 0.76em;
	font-weight: 600;
	white-space: nowrap;
}

.tv-faq-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 7px 9px;
	margin-bottom: 5px;
	background: var(--paper);
	border-radius: 8px;
	font-size: 0.94em;
}

.tv-faq-row i {
	font-style: normal;
	color: var(--blue);
	font-weight: 700;
}
.tv-faq-row.is-open {
	background: var(--blue-t);
}

.tv-answer {
	padding: 7px 9px;
	margin-bottom: 6px;
	font-size: 0.9em;
	color: var(--muted);
}

.tv-h {
	font-size: 1.3em;
	font-weight: 800;
	letter-spacing: -0.01em;
	margin: 0 0 9px;
}

.tv-doc {
	display: flex;
	gap: 9px;
	padding: 9px 10px;
	margin-bottom: 6px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 11px;
}

.tv-ava {
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	border-radius: 9px;
	background: var(--blue-t);
	color: var(--blue);
	display: grid;
	place-items: center;
	font-weight: 800;
	font-size: 0.92em;
}

.tv-doc b {
	display: block;
	font-size: 1.02em;
}
.tv-doc em {
	display: block;
	font-style: normal;
	font-size: 0.9em;
	color: var(--blue);
}
.tv-doc i {
	display: block;
	font-style: normal;
	font-size: 0.84em;
	color: var(--muted);
}

.tv-sub {
	margin: 10px 0 7px;
	font-size: 0.92em;
	font-weight: 600;
	color: var(--muted);
}

.tv-pdf {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 9px 10px;
	margin-bottom: 6px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 11px;
}

.tv-pdf--wide {
	justify-content: space-between;
}

.tv-pdf-badge {
	padding: 3px 7px;
	border-radius: 6px;
	background: var(--red-t);
	color: var(--red-d);
	font-family: var(--mono);
	font-size: 0.74em;
	font-weight: 700;
	flex: 0 0 auto;
}

.tv-pdf b {
	display: block;
	font-size: 0.98em;
}
.tv-pdf i {
	display: block;
	font-style: normal;
	font-size: 0.84em;
	color: var(--muted);
}

.tv-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 8px 2px;
	border-bottom: 1px dashed var(--line);
	font-size: 0.98em;
}

.tv-row b {
	font-family: var(--mono);
	color: var(--blue);
	font-size: 0.96em;
}

.tv-note {
	padding: 10px 11px;
	margin-bottom: 9px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 11px;
}

.tv-note b {
	display: block;
	color: var(--blue);
	font-size: 0.96em;
	margin-bottom: 3px;
}
.tv-note span {
	font-size: 0.92em;
	color: var(--muted);
}

.tv-cta {
	padding: 10px;
	margin-bottom: 7px;
	border-radius: 10px;
	text-align: center;
	color: #fff;
	font-weight: 700;
	font-size: 1.02em;
}

.tv-cta--blue {
	background: var(--blue);
}
.tv-cta--red {
	background: var(--red);
}

.tv-saver {
	height: 100%;
	margin: -10px -12px;
	padding: 24px 18px;
	background: linear-gradient(160deg, var(--blue) 0%, var(--blue-d) 100%);
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 12px;
}

.tv-saver-badge {
	padding: 4px 14px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 999px;
	font-family: var(--mono);
	font-size: 0.78em;
	letter-spacing: 0.16em;
}

.tv-saver b {
	font-size: 2.05em;
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.02em;
}
.tv-saver-sub {
	font-size: 0.92em;
	opacity: 0.92;
}

.tv-saver-hint {
	margin-top: auto;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	font-size: 0.86em;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 0.7;
	}
	50% {
		opacity: 1;
	}
}

.tv-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 9px 12px;
	background: #fff;
	border-top: 1px solid var(--line);
}

.tv-home {
	padding: 6px 13px;
	border-radius: 999px;
	background: var(--blue);
	color: #fff;
	font-size: 0.94em;
	font-weight: 700;
}

.tv-foot i {
	font-style: normal;
	font-size: 0.82em;
	color: var(--muted);
	text-align: right;
}

/* --- макет админ-панели ------------------------------------------------ */
.mockpanel {
	padding: 22px;
	margin-bottom: 24px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 22px;
	box-shadow: var(--sh);
}

.mockpanel-head {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 18px;
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

.mockpanel-head .ic {
	width: 17px;
	height: 17px;
	color: var(--blue);
}

.mockrow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid var(--line);
}

.mockrow b {
	display: block;
	font-size: 14.5px;
}
.mockrow i {
	display: block;
	font-style: normal;
	font-size: 12.5px;
	color: var(--muted);
}

.tgl {
	width: 46px;
	height: 26px;
	flex: 0 0 46px;
	padding: 3px;
	border: 0;
	border-radius: 999px;
	background: var(--line);
	cursor: pointer;
	transition: background 0.2s;
}

.tgl span {
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 2px 6px rgba(13, 27, 51, 0.22);
	transition: transform 0.2s;
}

.tgl.is-on {
	background: var(--blue);
}
.tgl.is-on span {
	transform: translateX(20px);
}
.tgl:focus-visible {
	outline: 3px solid rgba(29, 64, 214, 0.4);
	outline-offset: 2px;
}

.mockpanel-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 18px;
}

/* --- контакты и форма -------------------------------------------------- */
.contact-person {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
}

.cp-ava {
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	border-radius: 16px;
	background: var(--blue);
	color: #fff;
	display: grid;
	place-items: center;
	font-family: var(--disp);
	font-weight: 800;
	font-size: 17px;
}

.contact-person b {
	display: block;
	font-size: 17px;
}
.contact-person i {
	display: block;
	font-style: normal;
	font-size: 14px;
	color: var(--muted);
}

.contact-links {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.clink {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 12px 20px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--ink);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	box-shadow: var(--shs);
	transition:
		border-color 0.18s,
		color 0.18s;
}

.clink:hover {
	border-color: var(--blue);
	color: var(--blue);
}
.clink .ic {
	width: 19px;
	height: 19px;
	color: var(--blue);
}

.lead-form {
	padding: 30px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 24px;
	box-shadow: var(--sh);
}

.lead-form h3 {
	font-family: var(--disp);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0 0 6px;
}

.form-sub {
	margin: 0 0 22px;
	font-size: 14px;
	color: var(--muted);
}

.f-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.field {
	display: block;
	margin-bottom: 16px;
}

.field > span {
	display: block;
	margin-bottom: 7px;
	font-size: 13.5px;
	font-weight: 600;
}

.field > span i {
	color: var(--red);
	font-style: normal;
}

.field input,
.field textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1.5px solid var(--line);
	border-radius: 14px;
	background: var(--paper);
	font: inherit;
	font-size: 15px;
	color: var(--ink);
	transition:
		border-color 0.16s,
		background 0.16s,
		box-shadow 0.16s;
}

.field textarea {
	min-height: 92px;
	resize: vertical;
}

.field input:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--blue);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(29, 64, 214, 0.1);
}

.field.has-error input,
.field.has-error textarea {
	border-color: var(--red);
	background: var(--red-t);
}

.err {
	display: none;
	margin-top: 6px;
	font-size: 12.5px;
	font-style: normal;
	color: var(--red-d);
	font-weight: 600;
}

.field.has-error .err {
	display: block;
}

.hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-note {
	margin: 16px 0 0;
	font-size: 14px;
	font-weight: 600;
	min-height: 20px;
}
.form-note.is-ok {
	color: #0b6b41;
}
.form-note.is-error {
	color: var(--red-d);
}

.form-legal {
	margin: 12px 0 0;
	font-size: 12.5px;
	color: var(--dim);
}

/* --- навигация --------------------------------------------------------- */
.ld-dots {
	position: fixed;
	left: 24px;
	bottom: 22px;
	z-index: 55;
	display: flex;
	gap: 7px;
	padding: 9px 12px;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(10px);
	border: 1px solid var(--line);
	border-radius: 999px;
}

.dot {
	width: 20px;
	height: 6px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--line);
	cursor: pointer;
	transition:
		background 0.2s,
		width 0.2s;
}

.dot:hover {
	background: var(--dim);
}
.dot.is-active {
	background: var(--blue);
	width: 34px;
}
.dot:focus-visible {
	outline: 2px solid var(--blue);
	outline-offset: 2px;
}

.ld-arrows {
	position: fixed;
	right: 24px;
	bottom: 22px;
	z-index: 55;
	display: flex;
	gap: 10px;
}

.arrow {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	color: var(--ink);
	cursor: pointer;
	transition:
		background 0.18s,
		color 0.18s,
		border-color 0.18s;
}

.arrow:hover {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff;
}
.arrow:disabled {
	opacity: 0.38;
	cursor: default;
}
.arrow:disabled:hover {
	background: rgba(255, 255, 255, 0.9);
	color: var(--ink);
	border-color: var(--line);
}
.arrow:focus-visible {
	outline: 3px solid rgba(29, 64, 214, 0.4);
	outline-offset: 2px;
}

/* --- планшет ----------------------------------------------------------- */
@media (max-width: 1100px) {
	.sl-in--hero,
	.sl-in--split,
	.sl-in--reverse {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.sl-in--reverse .split-device {
		order: 2;
	}
	.hero-device {
		order: -1;
	}
	.device {
		max-width: 300px;
	}
	.screens {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
	}
	.metrics {
		max-width: none;
	}
	.sl {
		padding: 44px 20px 96px;
		min-height: auto;
	}
	.sl-ghost {
		font-size: clamp(140px, 30vw, 260px);
	}
}

@media (max-width: 760px) {
	.ld-top-title {
		display: none;
	}
	.ld-brand-tag {
		display: none;
	}
	.f-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.screens {
		grid-template-columns: 1fr;
	}
	.metrics {
		grid-template-columns: 1fr;
	}
	.lead-form {
		padding: 22px;
	}
	.ld-dots {
		left: 12px;
		right: 12px;
		justify-content: center;
		overflow-x: auto;
	}
	.ld-arrows {
		display: none;
	}
}

/* --- уважение к настройкам движения ------------------------------------ */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.rv,
	.is-live .fcard,
	.is-live .bcard,
	.is-live .step,
	.is-live .screen {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.hero-glow,
	.device--float,
	.tv-saver-hint {
		animation: none;
	}
}

/* --- печать ------------------------------------------------------------ */
@media print {
	.ld-top,
	.ld-dots,
	.ld-arrows {
		display: none;
	}
	.sl {
		min-height: auto;
		page-break-after: always;
		padding: 24px;
	}
	.rv,
	.fcard,
	.bcard,
	.step,
	.screen {
		opacity: 1;
		transform: none;
		animation: none;
	}
}
