/* =========================================================
   NOVA — тёмный лендинг · чёрно-золото-красная гамма
   Визуальный язык: тяжёлая заглавная типографика,
   золотые свечения-ореолы, наклонная бегущая строка,
   карточки grayscale→цвет, рукописные акценты.
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .3s ease; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Токены ---------- */
:root {
	--bg: #0a0503;
	--ink: rgba(24, 12, 6, 0.46);
	--ink-2: rgba(30, 15, 8, 0.5);
	--card: rgba(20, 10, 5, 0.48);

	--line: rgba(255, 210, 150, 0.1);
	--line-strong: rgba(255, 210, 150, 0.2);
	--line-gold: rgba(255, 168, 32, 0.55);
	--line-red: rgba(240, 45, 28, 0.46);

	--text: #fff7ec;
	--muted: #c6b7a0;
	--dim: #8d7b62;

	/* Золото — густое, тёплое, с уклоном в янтарь */
	--gold: #ffab1f;
	--gold-lt: #ffd25a;
	--gold-deep: #e0700a;
	--amber: #ff8a1e;
	--gold-grad: linear-gradient(120deg, #ffd25a 0%, #ffab1f 42%, #ff7a18 100%);

	/* Красный — сочный, глубокий */
	--red: #f0271c;
	--red-lt: #ff5a3c;
	--red-deep: #a81410;

	/* Золото → красный (фирменный акцент) */
	--gold-red-grad: linear-gradient(120deg, #ffd25a 0%, #ff8a1e 40%, #f0271c 100%);

	--radius: 16px;
	--radius-lg: 26px;
	--maxw: 1240px;
	--gutter: clamp(20px, 5vw, 50px);
	--shadow: 0 30px 70px -24px rgba(0, 0, 0, 0.9);

	--font-display: "Archivo Black", "Arial Black", system-ui, sans-serif;
	--font-body: "Manrope", "Inter", system-ui, sans-serif;
	--font-hand: "Caveat", cursive;

	--glow-gold: radial-gradient(50% 50% at 50% 50%, rgba(255,168,32,.66) 0%, rgba(0,0,0,0) 76%);
	--glow-red: radial-gradient(50% 50% at 50% 50%, rgba(240,39,28,.6) 0%, rgba(0,0,0,0) 76%);
}

/* ---------- База ---------- */
body {
	font-family: var(--font-body);
	background: var(--bg);
	color: var(--text);
	line-height: 1.55;
	font-size: 17px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	position: relative;
}

/* Тёплое амбьентное свечение — разбросанные ореолы, как content__radiusBg */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(60% 48% at 50% -8%, rgba(255, 168, 32, 0.22), transparent 62%),
		radial-gradient(44% 40% at 96% 4%, rgba(240, 39, 28, 0.18), transparent 60%),
		radial-gradient(40% 36% at 3% 30%, rgba(255, 138, 30, 0.14), transparent 60%),
		radial-gradient(46% 42% at 100% 74%, rgba(240, 39, 28, 0.13), transparent 62%),
		radial-gradient(52% 46% at 0% 100%, rgba(224, 112, 10, 0.16), transparent 62%);
	pointer-events: none;
}

.container {
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

/* ---------- Фоновое видео (на всех страницах) ---------- */
.bg-video {
	position: fixed;
	inset: 0;
	z-index: -3;
	overflow: hidden;
	pointer-events: none;
}
.bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* затемнение + тёплая виньетка для читаемости и сохранения настроения */
.bg-video::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(11,5,3,0.4) 0%, rgba(11,5,3,0.5) 55%, rgba(11,5,3,0.66) 100%),
		radial-gradient(120% 90% at 50% 0%, rgba(30,8,3,0.12), rgba(11,5,3,0.58) 90%);
}
@media (prefers-reduced-motion: reduce) {
	.bg-video video { display: none; }
}

/* Полупрозрачные поверхности размывают видео за собой — текст читаем, анимация просвечивает */
.service-card,
.entry-card,
.feature,
.panel,
.review,
.faq__item,
.contact-card,
.cta,
.pill,
.stat,
.section--framed > .container,
.field input,
.field textarea,
.emblem__badge,
.footer {
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

/* ---------- Типографика ---------- */
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-style: normal;
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: 0.02em;
	text-transform: none;
}

h1 { font-size: clamp(2.8rem, 8vw, 6.6rem); line-height: 0.98; }
h2 { font-size: clamp(2.1rem, 5vw, 4rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.9rem); }

h1 span, h2 span, h3 span { color: var(--gold); }

.gradient-text {
	background: var(--gold-red-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.text-red { color: var(--red) !important; }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-body);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--gold);
}

.eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--gold-grad);
}

.hand {
	font-family: var(--font-hand);
	font-weight: 700;
	color: var(--gold-lt);
	font-size: 1.7rem;
	line-height: 1;
}

.lead {
	font-family: var(--font-body);
	font-size: clamp(1.08rem, 1.6vw, 1.28rem);
	font-weight: 500;
	line-height: 1.5;
	color: var(--muted);
	max-width: 60ch;
}

.text-muted { color: var(--muted); }

/* ---------- Типографика текстов (как на карточках главной) ---------- */
.feature p,
.faq__a-inner,
.footer__brand p,
.checklist li,
.review__text,
.contact-card__value + *,
.service-card__desc {
	font-family: var(--font-body);
	letter-spacing: 0;
}
.review__text { font-style: normal; }
.feature p,
.faq__a-inner,
.footer__brand p { font-size: 1.02rem; line-height: 1.6; }

/* ---------- Кнопки ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 30px;
	border-radius: 10px;
	font-family: var(--font-body);
	font-weight: 800;
	font-size: 0.86rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: transform .3s ease, box-shadow .3s ease, filter .3s ease, background .3s ease, border-color .3s ease, color .3s ease;
	white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; }

.btn--primary {
	background: var(--gold-grad);
	color: #1a1206;
	box-shadow: 0 14px 34px -14px rgba(255, 168, 32, 0.7);
}
.btn--primary:hover { filter: brightness(1.07); transform: translateY(-2px); box-shadow: 0 20px 44px -14px rgba(255, 168, 32, 0.85); }

.btn--ghost {
	background: transparent;
	border: 1px solid var(--line-strong);
	color: var(--text);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--gold); }

.btn--red {
	background: var(--red);
	color: #fff;
	box-shadow: 0 14px 34px -14px rgba(240, 39, 28, 0.7);
}
.btn--red:hover { filter: brightness(1.08); transform: translateY(-2px); }

.btn--sm { padding: 11px 20px; font-size: 0.78rem; }

/* ---------- Шапка ---------- */
.header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
	border-bottom: 1px solid transparent;
}
.header.scrolled {
	background: rgba(5, 5, 5, 0.72);
	backdrop-filter: blur(16px);
	border-bottom-color: var(--line);
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 76px;
}

.logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-display);
	font-size: 1.4rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.logo__mark {
	width: 40px; height: 40px;
	border-radius: 11px;
	background: var(--gold-grad);
	display: grid; place-items: center;
	box-shadow: 0 10px 24px -8px rgba(255, 168, 32, 0.8);
	position: relative;
}
.logo__mark::after {
	content: "";
	position: absolute; inset: 0;
	border-radius: 11px;
	border: 1px solid rgba(255, 255, 255, 0.35);
}
.logo__mark svg { width: 20px; height: 20px; position: relative; }

.nav { display: flex; align-items: center; gap: clamp(6px, 2.2vw, 40px); }
.nav a {
	position: relative;
	padding: 26px 4px;
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}
/* Радиальный ореол над пунктом — появляется на ховере/актив */
.nav a::before {
	content: "";
	position: absolute;
	top: -34px; left: 50%;
	width: 190px; height: 96px;
	transform: translateX(-50%);
	background: radial-gradient(50% 50% at 50% 50%, rgba(255,168,32,.55) 0%, rgba(0,0,0,0) 70%);
	opacity: 0;
	transition: opacity .38s ease;
	pointer-events: none;
}
.nav a:hover { color: var(--gold); }
.nav a:hover::before { opacity: 1; }
.nav a.active { color: var(--gold); }
.nav a.active::before { opacity: 0.85; }
.nav a.active::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 18px;
	height: 2px;
	background: var(--gold-grad);
}

.header__right { display: flex; align-items: center; gap: 14px; }

.burger {
	display: none;
	width: 46px; height: 46px;
	border-radius: 11px;
	border: 1px solid var(--line);
	position: relative;
}
.burger span {
	position: absolute; left: 13px; right: 13px;
	height: 2px; background: var(--gold);
	border-radius: 2px;
	transition: transform .3s ease, opacity .2s ease;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Секции ---------- */
.section { padding-block: clamp(64px, 10vw, 130px); position: relative; }

/* Обведённая скруглённая панель (как content__wrap в примере) */
.section--framed > .container {
	border: 1px solid var(--line);
	border-radius: 30px;
	padding: clamp(34px, 5vw, 68px) clamp(24px, 4vw, 56px);
	background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)), var(--card);
	position: relative;
	overflow: hidden;
}
.section--framed > .container::before {
	content: "";
	position: absolute;
	top: -22%; right: -8%;
	width: 460px; height: 460px;
	background: var(--glow-gold);
	opacity: 0.26;
	pointer-events: none;
}
.section--framed.red-glow > .container::before { background: var(--glow-red); }
.section--framed > .container > * { position: relative; z-index: 1; }
@media (max-width: 620px) { .section--framed > .container { border-radius: 20px; } }
.section__head { max-width: 760px; margin-bottom: clamp(38px, 5vw, 64px); }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head .lead { margin-top: 20px; }
.section__head.center .lead { margin-inline: auto; }
.section__head .eyebrow { margin-bottom: 20px; }

/* Декоративный ореол-подложка секции */
.glow-bg {
	position: absolute;
	width: 620px; height: 620px;
	border-radius: 50%;
	background: var(--glow-gold);
	opacity: 0.4;
	pointer-events: none;
	z-index: 0;
	filter: blur(10px);
}
.glow-bg.red { background: var(--glow-red); opacity: 0.32; }
.section > .container { position: relative; z-index: 1; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(120px, 16vw, 180px); padding-bottom: clamp(50px, 7vw, 80px); overflow: hidden; }
.hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(30px, 5vw, 56px);
	align-items: center;
	position: relative;
	z-index: 1;
}
.hero .eyebrow { margin-bottom: 22px; }
.hero h1 { margin-bottom: 8px; }
.hero .lead { margin-top: 24px; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 36px; }

.hero__note {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transform: rotate(-4deg);
	color: var(--gold-lt);
}
.hero__note svg { width: 34px; height: 34px; color: var(--gold); }

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

.stat {
	padding: 22px 20px;
	border: 1px solid var(--line-gold);
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(255,168,32,.05), rgba(0,0,0,0));
	position: relative;
}
.stat__num {
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 3.4vw, 2.6rem);
	line-height: 1;
	background: var(--gold-red-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.stat__label { margin-top: 10px; font-size: 0.8rem; color: var(--muted); line-height: 1.35; }

/* Hero визуал — золотой медальон-эмблема со свечением */
.hero__visual { position: relative; aspect-ratio: 1 / 1; display: grid; place-items: center; }
.hero__visual::before {
	content: "";
	position: absolute;
	width: 130%; height: 130%;
	background: var(--glow-gold);
	opacity: 0.6;
	z-index: 0;
}
.emblem {
	position: relative;
	width: 78%; aspect-ratio: 1;
	display: grid; place-items: center;
	z-index: 1;
}
.emblem__ring {
	position: absolute; inset: 0;
	border-radius: 50%;
	border: 1px solid var(--line-gold);
}
.emblem__ring:nth-child(2) { inset: 9%; border-color: rgba(255,168,32,.28); animation: spin 26s linear infinite; border-style: dashed; }
.emblem__ring:nth-child(3) { inset: 19%; border-color: rgba(240,39,28,.35); animation: spin 20s linear infinite reverse; }
.emblem__ring:nth-child(4) { inset: 30%; border-color: rgba(255,168,32,.5); }
.emblem__core {
	position: relative;
	width: 42%; aspect-ratio: 1;
	border-radius: 26%;
	background: var(--gold-grad);
	display: grid; place-items: center;
	box-shadow: 0 0 90px 12px rgba(255, 168, 32, 0.55), inset 0 2px 8px rgba(255,255,255,.5);
	transform: rotate(45deg);
}
.emblem__core svg { width: 46%; height: 46%; color: #1a1206; transform: rotate(-45deg); }

.emblem__badge {
	position: absolute;
	display: inline-flex; align-items: center; gap: 8px;
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(10, 10, 10, 0.92);
	border: 1px solid var(--line-gold);
	backdrop-filter: blur(8px);
	font-size: 0.78rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.04em;
	box-shadow: var(--shadow);
	white-space: nowrap;
	z-index: 2;
}
.emblem__badge svg { width: 15px; height: 15px; color: var(--gold); }
.emblem__badge--1 { top: 8%; left: -4%; animation: float 6s ease-in-out infinite; }
.emblem__badge--2 { bottom: 16%; right: -6%; animation: float 6s ease-in-out 1.6s infinite; }
.emblem__badge--3 { bottom: 2%; left: 12%; animation: float 7s ease-in-out .8s infinite; }
.emblem__badge--3 svg { color: var(--red); }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Экран выбора (index, без шапки) ---------- */
.entry {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	padding-block: clamp(22px, 4vw, 40px);
	overflow: hidden;
}
.entry__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-inline: var(--gutter);
	position: relative;
	z-index: 2;
}
.logo--lg { font-size: 1.7rem; }
.logo--lg .logo__mark { width: 46px; height: 46px; }
.logo--lg .logo__mark svg { width: 22px; height: 22px; }

.entry__contact {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
	border: 1px solid var(--line);
	padding: 11px 20px;
	border-radius: 999px;
	transition: color .3s ease, border-color .3s ease;
}
.entry__contact svg { width: 16px; height: 16px; }
.entry__contact:hover { color: var(--gold); border-color: var(--gold); }

.entry__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: clamp(30px, 5vw, 54px);
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding: clamp(30px, 5vw, 56px) var(--gutter);
	position: relative;
	z-index: 1;
}
.entry__cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2.2vw, 28px); width: 100%; max-width: 960px; margin-inline: auto; }
.entry__caption {
	text-align: center;
	font-family: var(--font-display);
	font-style: normal;
	font-weight: 700;
	text-transform: none;
	font-size: clamp(1.4rem, 2.8vw, 2.2rem);
	color: var(--gold-lt);
	letter-spacing: 0;
}
.entry__caption span { color: var(--gold); }

.entry-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
	padding: clamp(30px, 3.2vw, 46px) 26px;
	min-height: clamp(340px, 44vh, 470px);
	border: 1px solid var(--line);
	border-radius: 26px;
	background: var(--card);
	overflow: hidden;
	transition: border-color .45s ease, transform .45s ease, box-shadow .45s ease;
}
.entry-card::before {
	content: "";
	position: absolute;
	left: 50%; top: 100%;
	width: 540px; height: 540px;
	transform: translate(-50%, -42%);
	border-radius: 50%;
	background: var(--glow-gold);
	opacity: 0.14;
	transition: opacity .5s ease;
	pointer-events: none;
}
.entry-card.red::before { background: var(--glow-red); }
.entry-card:hover { border-color: var(--gold); transform: translateY(-8px); box-shadow: 0 30px 70px -30px rgba(255,176,32,.5); }
.entry-card.red:hover { border-color: var(--red); box-shadow: 0 30px 70px -30px rgba(255,60,40,.5); }
.entry-card:hover::before { opacity: 0.6; }
.entry-card > * { position: relative; z-index: 1; }

/* Фоновая картинка карточки */
.entry-card__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.95;
	transition: opacity .5s ease, transform .7s ease;
}
/* затемнение сверху (под номер и заголовок), низ открыт — картинка светлее */
.entry-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(6,3,1,0.86) 0%, rgba(6,3,1,0.55) 20%, rgba(6,3,1,0.18) 42%, rgba(6,3,1,0) 66%, rgba(6,3,1,0) 100%);
}
.entry-card:hover .entry-card__media { opacity: 1; transform: scale(1.06); }
.entry-card__num,
.entry-card__title,
.entry-card__go { text-shadow: 0 2px 22px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.7); }

.entry-card__num { font-family: var(--font-display); font-size: 0.9rem; color: var(--gold-lt); letter-spacing: 0.22em; }
.entry-card__title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.9rem, 3vw, 2.7rem); line-height: 0.92; }
.entry-card__title span { color: var(--gold); }
.entry-card__title em {
	display: block;
	margin-top: 0.35em;
	font-style: normal;
	font-size: 0.42em;
	letter-spacing: 0.18em;
	color: var(--gold-lt);
}
.entry-card.red .entry-card__title span { color: var(--red); }

.entry-card__icon {
	width: clamp(88px, 10vw, 124px);
	aspect-ratio: 1;
	margin-top: auto;
	border-radius: 28%;
	display: grid; place-items: center;
	border: 1px solid var(--line-gold);
	background: rgba(255, 168, 32, 0.06);
	color: var(--gold);
	box-shadow: 0 0 60px -12px rgba(255, 168, 32, 0.6);
}
.entry-card.red .entry-card__icon {
	border-color: var(--line-red);
	color: var(--red);
	background: rgba(240, 39, 28, 0.06);
	box-shadow: 0 0 60px -12px rgba(240, 39, 28, 0.6);
}
.entry-card__icon svg { width: 46%; height: 46%; }

.entry-card__go {
	margin-top: auto;
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-body);
	font-weight: 800; font-size: 0.78rem;
	letter-spacing: 0.1em; text-transform: uppercase;
	color: #fff;
	background: rgba(6, 3, 1, 0.6);
	border: 1px solid rgba(255, 214, 130, 0.4);
	padding: 12px 22px;
	border-radius: 999px;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	transition: background .3s ease, border-color .3s ease;
}
.entry-card.red .entry-card__go { border-color: rgba(255, 120, 90, 0.5); }
.entry-card:hover .entry-card__go { background: rgba(6, 3, 1, 0.78); border-color: var(--gold); }
.entry-card.red:hover .entry-card__go { border-color: var(--red); }
.entry-card__go svg { width: 16px; height: 16px; transition: transform .3s ease; }
.entry-card:hover .entry-card__go svg { transform: translateX(5px); }

@media (max-width: 860px) {
	.entry { min-height: auto; padding-block: 26px 10px; }
	.entry__cards { grid-template-columns: 1fr; gap: 14px; }
	.entry-card {
		flex-direction: row;
		align-items: center;
		text-align: left;
		min-height: auto;
		padding: 22px 24px;
		gap: 20px;
	}
	.entry-card__num { display: none; }
	.entry-card__icon { order: -1; margin: 0; width: 66px; box-shadow: none; }
	.entry-card__title { flex: 1; font-size: 1.6rem; }
	.entry-card__go { margin: 0; }
}

/* ---------- Наклонная бегущая строка ---------- */
.marquee {
	position: relative;
	margin-block: clamp(20px, 4vw, 40px);
	background: var(--gold-red-grad);
	transform: rotate(-2.2deg);
	width: 108%;
	margin-left: -4%;
	overflow: hidden;
	box-shadow: 0 20px 54px -20px rgba(255, 120, 30, 0.55);
}
.marquee__track {
	display: inline-flex;
	align-items: center;
	gap: 26px;
	white-space: nowrap;
	padding-block: 14px;
	animation: marquee 32s linear infinite;
	will-change: transform;
}
.marquee__track span {
	font-family: var(--font-display);
	font-size: clamp(1.1rem, 2vw, 1.6rem);
	text-transform: uppercase;
	color: #140e02;
	letter-spacing: 0.01em;
}
.marquee__track .dot {
	width: 9px; height: 9px; border-radius: 50%;
	background: #140e02; flex: none;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Карточки-направления ---------- */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }

.service-card {
	position: relative;
	display: flex; flex-direction: column;
	padding: 34px 30px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--card);
	overflow: hidden;
	min-height: 340px;
	filter: grayscale(1);
	transition: filter .4s ease, border-color .4s ease, transform .4s ease;
}
.service-card::before {
	content: "";
	position: absolute;
	left: 50%; top: 100%;
	width: 460px; height: 460px;
	transform: translate(-50%, -35%);
	border-radius: 50%;
	background: var(--glow-gold);
	opacity: 0;
	transition: opacity .45s ease;
	pointer-events: none;
}
.service-card:hover { filter: grayscale(0); border-color: var(--gold); transform: translateY(-6px); }
.service-card:hover::before { opacity: 0.55; }
.service-card > * { position: relative; z-index: 1; }

.service-card.red::before { background: var(--glow-red); }
.service-card.red:hover { border-color: var(--red); }

.service-card__num {
	font-family: var(--font-display);
	font-size: 0.82rem;
	letter-spacing: 0.2em;
	color: var(--dim);
	margin-bottom: auto;
}
.service-card__icon {
	width: 60px; height: 60px;
	border-radius: 16px;
	display: grid; place-items: center;
	border: 1px solid var(--line-gold);
	background: rgba(255,168,32,.06);
	color: var(--gold);
	margin-top: 22px;
}
.service-card.red .service-card__icon { border-color: rgba(240,39,28,.4); color: var(--red); background: rgba(240,39,28,.06); }
.service-card__icon svg { width: 28px; height: 28px; }

.service-card__title {
	margin-top: 22px;
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 2.6vw, 2.1rem);
	text-transform: uppercase;
	line-height: 0.95;
}
.service-card__title span { color: var(--gold); }
.service-card.red .service-card__title span { color: var(--red); }

.service-card__desc { margin-top: 14px; color: var(--muted); font-size: 0.96rem; }

.service-card__link {
	margin-top: 24px;
	display: inline-flex; align-items: center; gap: 9px;
	font-weight: 800; font-size: 0.8rem;
	letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--gold);
}
.service-card.red .service-card__link { color: var(--red); }
.service-card__link svg { width: 18px; height: 18px; transition: transform .3s ease; }
.service-card:hover .service-card__link svg { transform: translateX(5px); }

/* ---------- Фичи ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.feature {
	padding: 30px 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--ink);
	transition: transform .35s ease, border-color .35s ease;
}
.feature:hover { transform: translateY(-4px); border-color: var(--line-gold); }
.feature__icon {
	width: 52px; height: 52px;
	border-radius: 13px;
	display: grid; place-items: center;
	border: 1px solid var(--line-gold);
	background: rgba(255,168,32,.06);
	color: var(--gold);
	margin-bottom: 20px;
}
.feature__icon svg { width: 25px; height: 25px; }
.feature h3 { font-size: 1.15rem; }
.feature p { margin-top: 12px; color: var(--muted); font-size: 0.93rem; }

/* ---------- Чек-лист ---------- */
.checklist { display: grid; gap: 15px; }
.checklist li { display: flex; align-items: flex-start; gap: 13px; color: var(--muted); }
.checklist li svg { flex: none; width: 24px; height: 24px; margin-top: 1px; color: var(--gold); }
.checklist li b { color: var(--text); font-weight: 700; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }

.panel {
	padding: clamp(28px, 4vw, 42px);
	border: 1px solid var(--line-gold);
	border-radius: var(--radius-lg);
	background: linear-gradient(180deg, var(--ink-2), var(--card));
	box-shadow: var(--shadow);
	position: relative;
}
.panel__row {
	display: flex; align-items: center; justify-content: space-between; gap: 14px;
	padding: 17px 0;
	border-bottom: 1px solid var(--line);
	text-transform: uppercase;
	font-size: 0.86rem;
	letter-spacing: 0.04em;
}
.panel__row:last-of-type { border-bottom: none; }
.panel__row span:first-child { color: var(--muted); }
.panel__row span:last-child { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold); }

/* ---------- Пилюли (бренды/технологии) ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 13px 22px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--ink);
	font-size: 0.88rem; font-weight: 600;
	text-transform: uppercase; letter-spacing: 0.04em;
	color: var(--muted);
	transition: border-color .3s ease, color .3s ease, transform .3s ease;
}
.pill:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-grad); }

/* ---------- Отзывы ---------- */
.reviews { position: relative; }
.reviews__viewport { overflow: hidden; }
.reviews__track { display: flex; gap: 22px; transition: transform .55s cubic-bezier(.22,1,.36,1); will-change: transform; }

.review {
	flex: 0 0 calc((100% - 44px) / 3);
	padding: 30px 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--ink);
	display: flex; flex-direction: column; gap: 18px;
	position: relative;
}
.review::before {
	content: "\201C";
	position: absolute; top: 8px; right: 22px;
	font-family: var(--font-display);
	font-size: 5rem; line-height: 1;
	color: var(--line-gold);
}
.review__stars { display: flex; gap: 3px; color: var(--gold); }
.review__stars svg { width: 18px; height: 18px; }
.review__text { color: var(--text); font-size: 0.98rem; line-height: 1.6; flex: 1; }
.review__author { display: flex; align-items: center; gap: 13px; padding-top: 4px; }
.review__avatar {
	width: 46px; height: 46px; border-radius: 50%;
	display: grid; place-items: center;
	font-family: var(--font-display); font-size: 0.9rem;
	color: #1a1206; background: var(--gold-grad);
	flex: none;
}
.review__name { font-weight: 700; font-size: 0.95rem; }
.review__role { font-size: 0.8rem; color: var(--dim); text-transform: uppercase; letter-spacing: 0.04em; }

.reviews__nav { display: flex; gap: 10px; margin-top: 30px; justify-content: flex-end; }
.reviews__btn {
	width: 50px; height: 50px; border-radius: 50%;
	border: 1px solid var(--line-gold);
	display: grid; place-items: center; color: var(--gold);
	transition: background .3s ease, transform .3s ease, opacity .3s ease;
}
.reviews__btn:hover { background: rgba(255,168,32,.12); }
.reviews__btn:active { transform: scale(.94); }
.reviews__btn:disabled { opacity: .3; cursor: not-allowed; }
.reviews__btn svg { width: 20px; height: 20px; }

.reviews-grid { columns: 3 300px; column-gap: 22px; }
.reviews-grid .review { display: inline-flex; width: 100%; margin-bottom: 22px; break-inside: avoid; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; max-width: 900px; }
.faq__item {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--ink);
	overflow: hidden;
	transition: border-color .3s ease, background .3s ease;
}
.faq__item.open { border-color: var(--gold); }
.faq__q {
	width: 100%;
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding: 22px 26px;
	text-align: left;
	font-family: var(--font-body);
	font-style: normal;
	font-weight: 700;
	font-size: clamp(1.08rem, 1.7vw, 1.35rem);
	line-height: 1.2;
}
.faq__item.open .faq__q { color: var(--gold); }
.faq__icon {
	flex: none; width: 30px; height: 30px; border-radius: 9px;
	display: grid; place-items: center;
	border: 1px solid var(--line-gold);
	position: relative;
	transition: background .3s ease, border-color .3s ease;
}
.faq__icon::before, .faq__icon::after {
	content: ""; position: absolute; background: var(--gold); border-radius: 2px;
	transition: transform .3s ease, background .3s ease;
}
.faq__icon::before { width: 13px; height: 2px; }
.faq__icon::after { width: 2px; height: 13px; }
.faq__item.open .faq__icon { background: var(--gold-grad); border-color: transparent; }
.faq__item.open .faq__icon::before, .faq__item.open .faq__icon::after { background: #1a1206; }
.faq__item.open .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq__a-inner { padding: 0 26px 24px; color: var(--muted); font-size: 0.98rem; }

/* ---------- Контакты ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.contact-card {
	display: flex; flex-direction: column; gap: 16px;
	padding: 30px 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--ink);
	transition: transform .35s ease, border-color .35s ease;
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.contact-card__icon {
	width: 54px; height: 54px; border-radius: 14px;
	display: grid; place-items: center;
	border: 1px solid var(--line-gold);
	background: rgba(255,168,32,.06);
	color: var(--gold);
}
.contact-card__icon svg { width: 25px; height: 25px; }
.contact-card__label { font-size: 0.74rem; color: var(--dim); text-transform: uppercase; letter-spacing: 0.16em; }
.contact-card__value { font-family: var(--font-display); font-size: 1.15rem; text-transform: uppercase; }
.contact-card a.contact-card__value:hover { color: var(--gold); }

/* Форма */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 0.78rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.field input, .field textarea {
	width: 100%;
	padding: 15px 16px;
	border-radius: 11px;
	border: 1px solid var(--line);
	background: var(--card);
	color: var(--text);
	font: inherit;
	transition: border-color .3s ease, background .3s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,168,32,.05); }
.field textarea { resize: vertical; min-height: 130px; }

/* ---------- CTA ---------- */
.cta {
	position: relative;
	padding: clamp(44px, 6vw, 80px);
	border: 1px solid var(--line-gold);
	border-radius: var(--radius-lg);
	background: var(--ink);
	overflow: hidden;
	text-align: center;
}
.cta::before {
	content: "";
	position: absolute; left: 50%; top: 50%;
	width: 900px; height: 900px;
	transform: translate(-50%, -50%);
	background: var(--glow-gold);
	opacity: 0.35;
	pointer-events: none;
}
.cta > * { position: relative; z-index: 1; }
.cta .eyebrow { margin-bottom: 18px; }
.cta h2 { margin-bottom: 18px; }
.cta .lead { margin-inline: auto; margin-bottom: 32px; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Футер ---------- */
.footer {
	border-top: 1px solid var(--line);
	padding-block: clamp(52px, 7vw, 88px) 34px;
	margin-top: clamp(40px, 6vw, 90px);
	background: rgba(11, 5, 3, 0.5);
	position: relative;
}
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 48px; }
.footer__brand .logo { margin-bottom: 18px; }
.footer__brand p { color: var(--muted); font-size: 0.94rem; max-width: 36ch; }
.footer__socials { display: flex; gap: 10px; margin-top: 22px; }
.footer__socials a {
	width: 44px; height: 44px; border-radius: 12px;
	display: grid; place-items: center;
	border: 1px solid var(--line); color: var(--muted);
	transition: color .3s ease, border-color .3s ease, transform .3s ease;
}
.footer__socials a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer__socials svg { width: 20px; height: 20px; }
.footer__col h4 {
	font-family: var(--font-body);
	font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--gold); margin-bottom: 18px; font-weight: 700;
}
.footer__col ul { display: grid; gap: 12px; }
.footer__col a { color: var(--muted); font-size: 0.93rem; }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding-top: 28px; border-top: 1px solid var(--line);
	color: var(--dim); font-size: 0.84rem; flex-wrap: wrap;
	text-transform: uppercase; letter-spacing: 0.04em;
}

/* ---------- Шапка страницы ---------- */
.page-hero { padding-top: clamp(130px, 17vw, 180px); padding-bottom: clamp(30px, 5vw, 50px); text-align: center; position: relative; overflow: hidden; }
.page-hero::before {
	content: ""; position: absolute; left: 50%; top: -10%;
	width: 700px; height: 500px; transform: translateX(-50%);
	background: var(--glow-gold); opacity: 0.4; pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 22px; }
.page-hero .lead { margin-inline: auto; margin-top: 20px; }

/* ---------- Scroll-reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important; animation-iteration-count: 1 !important;
		transition-duration: .001ms !important; scroll-behavior: auto !important;
	}
	[data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Мобильное меню ---------- */
.mobile-menu {
	position: fixed; inset: 0; z-index: 99;
	background: rgba(5, 5, 5, 0.97);
	backdrop-filter: blur(18px);
	display: flex; flex-direction: column; justify-content: center; gap: 6px;
	padding: var(--gutter);
	transform: translateY(-100%); opacity: 0; pointer-events: none;
	transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .3s ease;
}
.mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu a {
	font-family: var(--font-display);
	font-size: 2rem; text-transform: uppercase;
	padding: 12px 0; border-bottom: 1px solid var(--line);
	color: var(--muted);
	transition: color .25s ease, padding-left .25s ease;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); padding-left: 10px; }
.mobile-menu .btn { margin-top: 28px; align-self: flex-start; }

/* ---------- Адаптив ---------- */
@media (max-width: 960px) {
	.nav { display: none; }
	.header__right .btn { display: none; }
	.burger { display: block; }
	.hero__grid { grid-template-columns: 1fr; }
	.hero__visual { max-width: 380px; margin-inline: auto; order: -1; }
	.split { grid-template-columns: 1fr; }
	.footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
	.footer__brand { grid-column: 1 / -1; }
	.review { flex-basis: calc((100% - 22px) / 2); }
	.reviews-grid { columns: 2 260px; }
}

@media (max-width: 620px) {
	.hero__stats { grid-template-columns: 1fr; }
	.form__row { grid-template-columns: 1fr; }
	.footer__grid { grid-template-columns: 1fr; }
	.review { flex-basis: 100%; }
	.reviews-grid { columns: 1; }
	.footer__bottom { flex-direction: column; text-align: center; }
	.reviews__nav { justify-content: center; }
	.marquee { width: 120%; margin-left: -10%; }
}
