@font-face {
	font-family: "Marck Script";
	src: url("fonts/MarckScript-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Caveat";
	src: url("fonts/Caveat.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--header-h: 76px;
	--scrollbar-comp: 0px;
	--container-padding: 5%;
	--container-width: 1200px;
	--font-cursive: "Marck Script", cursive;
	--font: "Manrope", sans-serif;
	--font-title: "Unbounded", sans-serif;
	--bg: #fafafa;
	--bg-2: #ffffff;
	--bg-3: #f1f1f3;
	--fg: #111113;
	--sub: #54545c;
	--muted: #8b8b92;
	--accent: #e40404;
	--glow: rgba(228, 4, 4, 0.28);
	--line: #e6e6e9;
	--glass: rgba(0, 0, 0, 0.025);
	--nav-bg: rgba(250, 250, 250, 0.9);
	--noise-op: 0.02;
	--overlay: rgba(10, 10, 12, 0.55);
	--logo-fg: #111113;
	--logo-accent: #e40404;
}

:root[data-theme="dark"] {
	--bg: #0a0a0c;
	--bg-2: #131316;
	--bg-3: #1b1b1f;
	--fg: #f5f5f5;
	--sub: #a7a7ae;
	--muted: #6f6f76;
	--accent: #e40404;
	--glow: rgba(228, 4, 4, 0.45);
	--line: #26262b;
	--glass: rgba(255, 255, 255, 0.03);
	--nav-bg: rgba(10, 10, 12, 0.88);
	--noise-op: 0.035;
	--overlay: rgba(0, 0, 0, 0.65);
	--logo-fg: #f5f5f5;
	--logo-accent: #ffffff;
}

@media (min-width: 1160px) {
	:root {
		--header-h: 84px;
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	overflow-x: hidden;
	max-width: 100%;
}

body {
	font-family: var(--font);
	color: var(--fg);
	background: var(--bg);
	transition:
		background 0.3s,
		color 0.3s;
	padding-top: var(--header-h);
	padding-right: var(--scrollbar-comp);
}

html.scroll-lock,
body.scroll-lock {
	overflow: hidden;
	height: 100%;
}

h1,
h2,
h3,
.disp {
	font-family: var(--font-title);
}

h1,
h2,
h3 {
	overflow-wrap: break-word;
	word-break: break-word;
}

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

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

button {
	font: inherit;
	cursor: pointer;
}

::selection {
	background: var(--accent);
	color: #fff;
}

section {
	scroll-margin-top: var(--header-h);
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 1;
	opacity: var(--noise-op);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* styled scrollbars — переиспользуется на всех скроллящихся блоках */
.styled-scroll {
	scrollbar-width: thin;
	scrollbar-color: var(--accent) transparent;
}

.styled-scroll::-webkit-scrollbar {
	height: 7px;
	width: 7px;
}

.styled-scroll::-webkit-scrollbar-track {
	background: transparent;
}

.styled-scroll::-webkit-scrollbar-thumb {
	background: var(--line);
	border-radius: 10px;
}

/* КОНТЕЙНЕРЫ */
.wrap {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.wrap-right-50 {
	padding: 0 var(--container-padding);
	max-width: 50%;
	margin-left: auto;

	/* @include mobile {
		max-width: 100%;
	} */
}

.wrap-left-50 {
	padding: 0 var(--container-padding);
	max-width: 50%;

	/* @include mobile {
		max-width: 100%;
	} */
}

.wrap-right {
	padding-left: calc((100% - var(--container-width)) / 2 + var(--container-padding));
	position: relative;

	/* @include tablet {
		padding-left: var(--container-padding);
	} */
}

.wrap-left {
	padding-right: calc((100% - var(--container-width)) / 2 + var(--container-padding));
	position: relative;

	/* @include tablet {
		padding-right: var(--container-padding);
	} */
}

.wrap-half-left {
	padding-right: calc((100% - var(--container-width)) / 2 + (var(--container-width) / 2));
	padding-left: calc((100% - var(--container-width)) / 2 + var(--container-padding));
	position: relative;
	/* @include tablet {
		padding-left: var(--container-padding);
	}

	@include mobile {
		padding: 0 var(--container-padding);
	} */
}

.wrap-half-right {
	padding-left: calc((100% - var(--container-width)) / 2 + (var(--container-width) / 2));
	padding-right: calc((100% - var(--container-width)) / 2 + var(--container-padding));
	position: relative;
	/* @include tablet {
		padding-right: var(--container-padding);
	}

	@include mobile {
		padding: 0 var(--container-padding);
	} */
}

.eyebrow {
	font-family: var(--font-title);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--accent);
	display: inline-block;
	flex-shrink: 0;
}

.btn {
	position: relative;
	font-family: var(--font-title);
	font-weight: 500;
	font-size: clamp(10px, 2.6vw, 11px);
	letter-spacing: 0.03em;
	text-transform: uppercase;
	background: var(--accent);
	color: #fff;
	padding: 11px 16px;
	border-radius: 100px;
	display: inline-block;
	border: none;
	cursor: pointer;
	box-shadow: 0 0 0 rgba(228, 4, 4, 0);
	transition:
		box-shadow 0.3s ease,
		transform 0.18s ease-out;
	text-align: center;
}

.btn--icon {
	padding: 10px;
}

.btn--icon svg {
	width: 30px;
	height: 30px;
}

.btn.ghost {
	background: transparent;
	color: var(--fg);
	border: 1.5px solid var(--line);
}

section.pad {
	padding: clamp(56px, 9vw, 110px) 0;
	position: relative;
	z-index: 2;
}

h2.sec-title {
	font-size: clamp(26px, 5.5vw, 36px);
	font-weight: 700;
	line-height: 1.08;
	margin-bottom: 16px;
}

.sec-sub {
	color: var(--sub);
	max-width: 560px;
	font-size: clamp(14px, 2.4vw, 16px);
	line-height: 1.6;
	margin-bottom: clamp(32px, 6vw, 52px);
}

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

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
	height: 100%;
}

.reveal.in {
	opacity: 1;
	transform: translateY(0);
}

.cat-grid .reveal:nth-child(1) {
	transition-delay: 0s;
}

.cat-grid .reveal:nth-child(2) {
	transition-delay: 0.06s;
}

.cat-grid .reveal:nth-child(3) {
	transition-delay: 0.12s;
}

.cat-grid .reveal:nth-child(4) {
	transition-delay: 0.18s;
}

.cat-grid .reveal:nth-child(5) {
	transition-delay: 0.24s;
}

.why-grid .reveal:nth-child(1) {
	transition-delay: 0s;
}

.why-grid .reveal:nth-child(2) {
	transition-delay: 0.08s;
}

.why-grid .reveal:nth-child(3) {
	transition-delay: 0.16s;
}

.why-grid .reveal:nth-child(4) {
	transition-delay: 0.24s;
}

.instr-grid .reveal:nth-child(1),
.rev-grid .reveal:nth-child(1) {
	transition-delay: 0s;
}

.instr-grid .reveal:nth-child(2),
.rev-grid .reveal:nth-child(2) {
	transition-delay: 0.1s;
}

.instr-grid .reveal:nth-child(3),
.rev-grid .reveal:nth-child(3) {
	transition-delay: 0.2s;
}

.steps .reveal:nth-child(1) {
	transition-delay: 0s;
}

.steps .reveal:nth-child(2) {
	transition-delay: 0.06s;
}

.steps .reveal:nth-child(3) {
	transition-delay: 0.12s;
}

.steps .reveal:nth-child(4) {
	transition-delay: 0.18s;
}

.steps .reveal:nth-child(5) {
	transition-delay: 0.24s;
}

.steps .reveal:nth-child(6) {
	transition-delay: 0.3s;
}

.tilt {
	transform-style: preserve-3d;
	transition:
		transform 0.15s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
	will-change: transform;
	height: 100%;
}

.glass-card {
	border: 1px solid var(--line);
	border-radius: 20px;
	background: var(--glass);
	backdrop-filter: blur(6px);
}

/* ---------- HEADER (fixed, mobile-first, 3-уровневое меню) ---------- */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	height: var(--header-h);
	background: var(--nav-bg);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
	transition: background 0.3s;
	padding-right: var(--scrollbar-comp);
}

.nav {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5%;
	gap: 26px;
}

.logo-mark {
	height: 50px;
	width: auto;
	display: block;
	flex-shrink: 0;
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.nav-phone {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	gap: 8px;
}

.nav-phone svg {
	width: 16px;
	height: 16px;
	stroke: var(--fg);
	flex-shrink: 0;
}

.nav-phone .full-number {
	display: none;
}

@media (min-width: 680px) {
	.nav-phone {
		width: auto;
		height: auto;
		border: none;
		border-radius: 0;
		padding: 0;
	}

	.nav-phone svg {
		display: none;
	}

	.nav-phone .full-number {
		display: inline;
		font-family: var(--font-title);
		font-weight: 500;
		font-size: 13px;
		white-space: nowrap;
	}
}

.theme-toggle {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: var(--bg-2);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
	transition: border-color 0.2s;
}

.theme-toggle svg {
	width: 16px;
	height: 16px;
	stroke: var(--fg);
}

.theme-toggle .icon-sun {
	display: none;
}

:root[data-theme="dark"] .theme-toggle .icon-sun {
	display: block;
}

:root[data-theme="dark"] .theme-toggle .icon-moon {
	display: none;
}

.nav-cta .full {
	display: none;
}

.nav-cta .short {
	display: inline;
}

@media (min-width: 460px) {
	.nav-cta .full {
		display: inline;
	}

	.nav-cta .short {
		display: none;
	}
}

.burger {
	display: flex;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	flex-shrink: 0;
}

.burger span {
	width: 22px;
	height: 2px;
	background: var(--fg);
	transition:
		transform 0.2s,
		opacity 0.2s;
}

.burger.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
	opacity: 0;
}

.burger.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
	position: fixed;
	top: var(--header-h);
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(3px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s;
	z-index: 150;
}

.nav-backdrop.open {
	opacity: 1;
	pointer-events: auto;
}

.mainnav {
	position: fixed;
	top: var(--header-h);
	left: 0;
	right: 0;
	z-index: 160;
	max-height: calc(100vh - var(--header-h));
	overflow-y: auto;
	background: var(--bg-2);
	border-bottom: 1px solid var(--line);
	opacity: 0;
	transform: translateY(-8px);
	pointer-events: none;
	transition:
		opacity 0.22s ease,
		transform 0.22s ease;
	padding: 14px 5% 24px;
}

.mainnav.open {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.nav-l1 {
	list-style: none;
}

.nav-l1 > li {
	border-top: 1px solid var(--line);
}

.nav-l1 > li:first-child {
	border-top: none;
}

.nav-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	padding: 14px 2px;
	font-family: var(--font-title);
	font-size: 13px;
	text-transform: uppercase;
	background: none;
	border: none;
	color: var(--fg);
	cursor: pointer;
	text-align: left;
}

.chev {
	width: 10px;
	height: 10px;
	flex-shrink: 0;
	transition: transform 0.2s;
}

.has-children.expanded > .nav-toggle .chev {
	transform: rotate(180deg);
}

.nav-l2,
.nav-l3 {
	list-style: none;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.has-children.expanded > .nav-l2 {
	max-height: 900px;
}

.nav-l2 li.has-children.expanded > .nav-l3 {
	max-height: 500px;
}

.nav-l2 {
	padding-left: 14px;
}

.nav-l2 .nav-link,
.nav-l2 a {
	font-family: var(--font);
	font-size: 14px;
	text-transform: none;
	padding: 11px 2px;
	color: var(--sub);
}

.nav-l3 {
	padding-left: 14px;
}

.nav-l3 a {
	display: block;
	font-size: 13px;
	color: var(--muted);
	padding: 9px 2px;
}

@media (min-width: 1160px) {
	.burger {
		display: none;
	}

	.nav-backdrop {
		display: none;
	}

	.mainnav {
		position: static;
		max-height: none;
		overflow: visible;
		opacity: 1;
		transform: none;
		pointer-events: auto;
		background: none;
		border: none;
		padding: 0;
		flex: 1;
	}

	.nav {
		flex-wrap: nowrap;
	}

	.nav-l1 {
		display: flex;
		gap: 16px;
		align-items: center;
	}

	.nav-l1 > li {
		border-top: none;
		position: relative;
	}

	.nav-link {
		width: auto;
		padding: 8px 0;
		font-size: 11px;
	}

	.nav-l2 {
		position: absolute;
		top: 100%;
		left: 0;
		margin-top: 10px;
		min-width: 240px;
		background: var(--bg-2);
		border: 1px solid var(--line);
		border-radius: 14px;
		padding: 8px;
		box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.35);
		opacity: 0;
		pointer-events: none;
		transform: translateY(8px);
		max-height: none;
		overflow: visible;
		transition:
			opacity 0.2s ease,
			transform 0.2s ease;
		padding-left: 8px;
	}

	.has-children.expanded > .nav-l2 {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
		max-height: none;
	}

	.nav-l2 .nav-link,
	.nav-l2 a {
		padding: 10px 12px;
		border-radius: 8px;
		display: block;
	}

	.nav-l3 {
		padding-left: 10px;
		max-height: 0;
	}

	.nav-l2 li.has-children.expanded > .nav-l3 {
		max-height: 400px;
	}

	.nav-l3 a {
		padding: 8px 12px;
	}

	.nav-right {
		gap: 12px;
	}
}

/* ---------- HERO (влезает в экран целиком) ---------- */
.hero {
	/* height: calc(100dvh - var(--header-h)); 
      min-height: 520px;
      max-height: 900px;*/
	display: flex;
	align-items: center;

	overflow: hidden;
	/* padding: 28px 0; */
}

.hero__img {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hero__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero__location,
.hero__slogan {
	position: absolute;
	z-index: 3;
}

.hero__location {
	bottom: 40px;
	right: 40px;
}

.hero__slogan {
	top: 60px;
	right: 40px;
}

.hero-slogan {
	position: relative;
	display: inline-block;
	font-family: var(--font-cursive);
	font-size: 28px;
	line-height: 0.85;
	color: #fff;
	transform: rotate(-6deg);
	text-align: center;
}

.hero-slogan::after {
	content: "";
	position: absolute;
	left: 2px;
	bottom: -10px;
	width: 160px;
	height: 5px;
	background: #e31e24;
	border-radius: 50%;
	transform: rotate(-6deg) skewX(-20deg);
	clip-path: polygon(0 35%, 20% 20%, 45% 30%, 70% 15%, 100% 0, 78% 65%, 50% 55%, 25% 75%, 0 65%);
}

.hero-location {
	display: flex;
	align-items: center;
	gap: 6px;

	padding: 10px 18px 10px 6px;

	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);

	border-radius: 14px;
}

.hero-location__title {
	font-size: 14px;
	line-height: 18px;
	font-weight: 600;
	color: #202020;
}

.hero-location__subtitle {
	font-size: 11px;
	line-height: 16px;
	letter-spacing: 0.3px;
	color: #4d4d4d;
}

.hero-location__icon {
	flex: 0 0 36px;
	width: 36px;
	height: 36px;

	display: flex;
	align-items: center;
	justify-content: center;
}

/* .hero-location {
      display: flex;
      align-items: center;
      gap: 12px;

      width: fit-content;
      padding: 12px 20px 12px 14px;

      background: rgba(255, 255, 255, 0.94);
      border-radius: 16px;

      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }

   

    .hero-location__text {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .hero-location__title {
      font-size: 15px;
      line-height: 1.2;
      font-weight: 700;
      color: #222;
    }

    .hero-location__subtitle {
      font-size: 12px;
      line-height: 1.3;
      color: #777;
    } */

.blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(40px);
	z-index: 0;
	width: 16vw;
	max-width: 280px;
	aspect-ratio: 2 / 1;
	background: #0072af;
	opacity: 0.56;
	top: 92px;
	right: 4px;
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 80px 20px;
}

.hero .kicker-row {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
}

.pill {
	font-family: var(--font-title);
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: 1px solid var(--line);
	border-radius: 100px;
	padding: 6px 14px;
	color: var(--sub);
}

.hero h1 {
	font-weight: 700;
	font-size: clamp(28px, 6.5vw, 50px);
	line-height: 1.06;
	letter-spacing: -0.01em;
	margin-bottom: 16px;
}

.hero h1 .word {
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
	max-width: 100%;
}

.hero h1 .word span {
	display: inline-block;
	transform: translateY(110%);
	animation: rise 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

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

.hero h1 em {
	font-style: normal;
	color: var(--accent);
	font-size: 1.2em;
}

.hero p.sub {
	font-size: clamp(14px, 2.2vw, 17px);
	color: var(--sub);
	max-width: 520px;
	margin-bottom: 22px;
}

@media (max-height: 720px) {
	.hero h1 {
		font-size: clamp(24px, 5vw, 42px);
	}

	.hero p.sub {
		margin-bottom: 16px;
	}
}

.cta-row {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.cats-row {
	display: flex;
	gap: 8px;
}

.cats-row a {
	width: 36px;
	height: 36px;
	border: 1.5px solid var(--line);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-title);
	font-size: 12px;
	transition:
		border-color 0.2s,
		color 0.2s,
		transform 0.18s ease-out;
}

/* ---------- CATEGORIES (крупные иконки-чипы) ---------- */
.cat-icon-wrap {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: rgba(228, 4, 4, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.cat-icon-wrap {
	width: 68px;
	height: 68px;
	border-radius: 50%;
}

.cat-icon {
	width: 48px;
	height: 48px;
	color: var(--accent);
}

.cat-icon--sm {
	width: 42px;
	height: 42px;
}

.icon-red {
	fill: var(--accent);
}

.cat-icon.big-icon {
	width: 34px;
	height: 34px;
}

.cat-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.cat-card {
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: 24px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, var(--bg-2), var(--bg-3));
	height: 100%;
}

.cat-card .num {
	font-family: var(--font-title);
	font-size: clamp(28px, 6vw, 38px);
	font-weight: 900;
	color: var(--accent);
	line-height: 1;
	margin-bottom: 10px;
}

.cat-card.big .num {
	font-size: clamp(42px, 7vw, 62px);
}

.cat-card h3 {
	font-size: clamp(15px, 3vw, 16px);
	font-weight: 500;
	margin-bottom: 8px;
}

.cat-card.big h3 {
	font-size: clamp(17px, 3.4vw, 20px);
}

.cat-card p,
.cat-card ul {
	font-size: 14px;
	color: var(--sub);
	line-height: 1.5;
}

.cat-card ul {
	margin-top: 16px;
	padding-left: 20px;
}

.cat-card ul li {
	padding-left: 10px;
}

.cat-card ul li + li {
	margin-top: 8px;
}

.cat-card ul li::marker {
	content: "✔";
	color: var(--accent);
}

.cat-card.linkish {
	cursor: pointer;
}

@media (min-width: 640px) {
	.cat-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cat-span-big {
		grid-column: span 2;
	}
}

@media (min-width: 1000px) {
	.cat-grid {
		grid-template-columns: repeat(4, 1fr);
		grid-auto-rows: minmax(190px, auto);
	}

	.cat-span-big {
		grid-row: span 2;
	}
}

/* ---------- ACCENT BLOCKS ---------- */
.accent-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.accent-block {
	background: var(--bg-2);
	border: 1px solid var(--line);
	border-radius: 24px;
	padding: clamp(28px, 5vw, 48px);
	position: relative;
	overflow: hidden;
}

.accent-block::before {
	content: "";
	position: absolute;
	width: 220px;
	height: 220px;
	background: var(--accent);
	opacity: 0.15;
	filter: blur(70px);
	border-radius: 50%;
	top: -60px;
	right: -60px;
}

.accent-block h2 {
	font-size: clamp(21px, 4vw, 26px);
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.18;
}

.accent-block p {
	color: var(--sub);
	font-size: 14.5px;
	line-height: 1.65;
	margin-bottom: 26px;
	position: relative;
	z-index: 2;
}

@media (min-width: 860px) {
	.accent-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* ---------- PROCESS ---------- */
.steps {
	display: flex;
	flex-direction: column;
}

.step {
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 18px;
	padding: 24px 0;
	border-top: 1px solid var(--line);
	align-items: start;
}

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

.step .n {
	font-family: var(--font-title);
	font-size: clamp(26px, 5vw, 34px);
	font-weight: 900;
	color: var(--accent);
	opacity: 0.5;
}

.step h3 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 6px;
}

.step p {
	font-size: 14px;
	color: var(--sub);
	max-width: 520px;
}

/* ---------- WHY US ---------- */
.why-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media (min-width: 640px) {
	.why-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.why-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.why-card {
	padding: 24px 20px;
}

.why-card h3 {
	font-size: 15.5px;
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 1.3;
}

.why-card p {
	font-size: 13.5px;
	color: var(--sub);
	line-height: 1.55;
}

/* ---------- INSTRUCTORS (mobile-first горизонтальный скролл) ---------- */
.instr-grid {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 16px;
	-webkit-overflow-scrolling: touch;
}

.instr-grid .reveal {
	flex: 0 0 74%;
	scroll-snap-align: start;
}

@media (min-width: 760px) {
	.instr-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		overflow-x: visible;
		padding-bottom: 0;
	}

	.instr-grid .reveal {
		flex: none;
	}
}

.instr-card {
	padding: 0 0 22px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.instr-avatar {
	aspect-ratio: 1;
	background: var(--bg-3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-title);
	font-size: 34px;
	font-weight: 700;
	color: var(--muted);
	margin-bottom: 18px;
	border-radius: 20px 20px 0 0;
}

.instr-card h3 {
	padding: 0 20px;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 4px;
}

.instr-card .role {
	padding: 0 20px;
	font-family: var(--font-title);
	font-size: 10.5px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 10px;
}

.instr-card p {
	padding: 0 20px;
	font-size: 12.5px;
	color: var(--sub);
	line-height: 1.5;
}

/* ---------- REVIEWS ---------- */
.review-full-text {
	font-size: 14px;
	line-height: 1.7;
	color: var(--sub);
	margin-top: 6px;
}

.rev-grid {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 16px;
	-webkit-overflow-scrolling: touch;
}

.rev-grid .reveal {
	flex: 0 0 78%;
	scroll-snap-align: start;
}

@media (min-width: 720px) {
	.rev-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		overflow-x: visible;
		padding-bottom: 0;
	}

	.rev-grid .reveal {
		flex: none;
	}
}

.rev-card {
	padding: 26px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.rev-card .quote {
	font-family: var(--font-title);
	font-size: 36px;
	color: var(--accent);
	line-height: 0.4;
	margin-bottom: 16px;
	display: block;
}

.rev-card p {
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--fg);
	margin-bottom: 14px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.rev-card .who {
	font-family: var(--font-title);
	font-size: 11.5px;
	color: var(--sub);
	margin-top: auto;
}

.rev-card .read-more {
	font-family: var(--font-title);
	font-size: 11px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--accent);
	margin-top: 10px;
}

/* ---------- PRICES ---------- */
.price-tabs {
	display: flex;
	gap: 6px;
	margin-bottom: 8px;
	padding: 5px;
	border: 1px solid var(--line);
	border-radius: 100px;
	position: relative;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.price-tab {
	position: relative;
	z-index: 2;
	flex-shrink: 0;
	font-family: var(--font-title);
	font-size: 12px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 11px 18px;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--sub);
	transition: color 0.25s;
	white-space: nowrap;
}

.price-tab.active {
	color: #fff;
}

.tab-indicator {
	position: absolute;
	top: 5px;
	left: 5px;
	height: calc(100% - 10px);
	background: var(--accent);
	border-radius: 100px;
	transition:
		transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
		width 0.3s;
	z-index: 1;
}

.price-panel {
	display: none;
	margin-top: 28px;
}

.price-panel.active {
	display: block;
}

.theory-info {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 22px;
}

.theory-badge {
	font-family: var(--font-title);
	font-size: 12px;
	background: var(--bg-3);
	border: 1px solid var(--line);
	padding: 9px 15px;
	border-radius: 10px;
}

.mode-tag {
	font-family: var(--font-title);
	font-size: 10.5px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 7px 14px;
	border-radius: 100px;
}

.mode-tag.online {
	background: rgba(20, 140, 200, 0.13);
	color: #1488c8;
}

.mode-tag.offline {
	background: rgba(228, 140, 4, 0.16);
	color: #c67600;
}

.price-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.price-card {
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 22px 20px;
	background: var(--bg-2);
	display: flex;
	flex-direction: column;
}

.price-card__sub {
	font-size: 14px;
	color: var(--sub);
	padding: 0;
	line-height: 1.4;
}

.price-card.featured {
	border-color: var(--accent);
	box-shadow: 0 0 40px -15px var(--glow);
}

.price-card h3 {
	font-size: 18px;
	line-height: 1.3;
	margin-bottom: 2px;
	color: var(--fg);
	font-family: var(--font-title);
	font-weight: 500;
}

.price-card .amt {
	font-family: var(--font-title);
	font-size: clamp(19px, 4vw, 24px);
	font-weight: 700;
	margin: 12px 0;
}

.price-card .amt span {
	font-size: clamp(11px, 4vw, 14px);
	font-weight: 400;
	color: var(--muted);
}

.amt-old {
	display: block;
	margin-bottom: 2px;
	font-family: var(--font);
	font-size: 13px;
	font-weight: 500;
	color: var(--muted);
}

.amt-old span {
	position: relative;
	display: inline-block;
}

.amt-old span::after {
	content: "";
	position: absolute;
	left: -6%;
	right: -6%;
	top: 52%;
	height: 2px;
	background: var(--muted);
	transform: rotate(-10deg);
	border-radius: 2px;
}

.amt-sale {
	color: var(--accent);
}

.hours-badge {
	display: inline-flex;
	align-self: flex-start;
	font-family: var(--font-title);
	font-size: 10px;
	line-height: 140%;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	background: rgba(228, 4, 4, 0.1);
	color: var(--accent);
	padding: 6px 10px;
	border-radius: 8px;
	margin-bottom: 16px;
}

.price-card ul {
	list-style: none;
	margin-bottom: 20px;
}

.price-card li {
	font-size: 12px;
	color: var(--sub);
	padding: 6px 0;
	border-top: 1px solid var(--line);
	line-height: 1.4;
}

.price-card .btn {
	width: 100%;
	margin-top: auto;
}

@media (min-width: 640px) {
	.price-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.price-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ---------- LOCATION ---------- */
.loc-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.loc-info {
	padding: clamp(26px, 5vw, 44px);
	border: 1px solid var(--line);
	border-radius: 24px;
	background: var(--bg-2);
}

.loc-info .row {
	margin-bottom: 22px;
}

.loc-info .row .k {
	font-family: var(--font-title);
	font-size: 10.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 6px;
}

.loc-info .row .v {
	font-size: 15px;
	line-height: 1.5;
}

.loc-info .row .v span {
	opacity: 0.6;
}

[data-theme="dark"] .loc-info .row .v span {
	opacity: 0.5;
}

/* .loc-map {
	border-radius: 24px;
	overflow: hidden;
	min-height: 100%;
	height: 100%;
	border: 1px solid var(--line);
}

.loc-map iframe {
	width: 100%;
	height: 100%;
	min-height: 320px;
	display: block;
	border: 0;
} */

.loc-map {
	position: relative; /* Обязательно для позиционирования iframe */
	border-radius: 24px;
	overflow: hidden;
	min-height: 100%;
	height: 100%;
	border: 1px solid var(--line);
}

.loc-map iframe {
	position: absolute; /* Привязываем iframe к нашему контейнеру */
	top: 0;
	left: 0;
	width: 100%;
	/* Делаем iframe выше контейнера на 75px, чтобы реклама ушла вниз за экран */
	height: calc(100% + 158px);
	display: block;
	border: 0;
}

@media (min-width: 860px) {
	.loc-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* ---------- FAQ ---------- */
.faq-item {
	border-top: 1px solid var(--line);
}

.faq-item:last-child {
	border-bottom: 1px solid var(--line);
}

.faq-q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	padding: 22px 0;
	cursor: pointer;
	font-family: var(--font-title);
	font-size: clamp(14px, 2.6vw, 15px);
	font-weight: 500;
}

.faq-q .plus {
	font-size: 20px;
	color: var(--accent);
	transition: transform 0.25s;
	flex-shrink: 0;
}

.faq-item.open .plus {
	transform: rotate(45deg);
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.faq-item.open .faq-a {
	max-height: 420px;
}

.faq-a p {
	font-size: 14px;
	color: var(--sub);
	line-height: 1.6;
	padding-bottom: 24px;
	max-width: 640px;
}

/* ---------- ДОКУМЕНТЫ ---------- */
.docs-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.docs-side {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding-bottom: 14px;
	-webkit-overflow-scrolling: touch;
}

.docs-side button {
	flex-shrink: 0;
	font-family: var(--font-title);
	font-size: 12px;
	text-align: left;
	background: var(--bg-2);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 12px 16px;
	color: var(--sub);
	cursor: pointer;
	white-space: nowrap;
	transition:
		border-color 0.2s,
		color 0.2s;
}

.docs-side button.active {
	border-color: var(--accent);
	color: var(--fg);
	background: rgba(228, 4, 4, 0.06);
}

.docs-content {
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: clamp(24px, 4vw, 36px);
	background: var(--bg-2);
}

.docs-panel {
	display: none;
}

.docs-panel.active {
	display: block;
}

.docs-panel h3 {
	font-size: 19px;
	margin-bottom: 12px;
}

.docs-panel p {
	font-size: 14px;
	color: var(--sub);
	line-height: 1.65;
	margin-bottom: 16px;
}

/* ссылки внутри "Документов": стиль зависит от расширения href, а не задаётся вручную.
   .pdf/.doc/.docx -> иконка документа; .jpg/.png/.jpeg/.gif/.webp -> иконка изображения;
   любая другая ссылка -> обычный текстовый стиль. */
.docs-panel a {
	color: var(--fg);
	text-decoration: underline;
	text-decoration-color: var(--line);
	text-underline-offset: 3px;
	transition: color 0.2s;
}

.docs-panel a[href$=".pdf"],
.docs-panel a[href$=".doc"],
.docs-panel a[href$=".docx"],
.docs-panel a[href$=".jpg"],
.docs-panel a[href$=".jpeg"],
.docs-panel a[href$=".png"],
.docs-panel a[href$=".gif"],
.docs-panel a[href$=".webp"] {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	padding: 11px 0;
	border-top: 1px solid var(--line);
}

.docs-panel a[href$=".pdf"] + a[href$=".pdf"],
.docs-panel a[href$=".doc"] + a,
.docs-panel p + a[href$=".pdf"],
.docs-panel h3 + a[href$=".pdf"],
.docs-panel h3 + p + a[href$=".pdf"] {
}

.docs-panel a[href$=".pdf"]::before,
.docs-panel a[href$=".doc"]::before,
.docs-panel a[href$=".docx"]::before {
	content: "";
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	background-color: var(--accent);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M14%202H6a2%202%200%200%200-2%202v16a2%202%200%200%200%202%202h12a2%202%200%200%200%202-2V8Z%22/%3E%3Cpath%20d%3D%22M14%202v6h6%22/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M14%202H6a2%202%200%200%200-2%202v16a2%202%200%200%200%202%202h12a2%202%200%200%200%202-2V8Z%22/%3E%3Cpath%20d%3D%22M14%202v6h6%22/%3E%3C/svg%3E");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

.docs-panel a[href$=".jpg"]::before,
.docs-panel a[href$=".jpeg"]::before,
.docs-panel a[href$=".png"]::before,
.docs-panel a[href$=".gif"]::before,
.docs-panel a[href$=".webp"]::before {
	content: "";
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	background-color: var(--accent);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%223%22%20y%3D%223%22%20width%3D%2218%22%20height%3D%2218%22%20rx%3D%222%22/%3E%3Ccircle%20cx%3D%228.5%22%20cy%3D%228.5%22%20r%3D%221.5%22/%3E%3Cpath%20d%3D%22M21%2015l-5-5L5%2021%22/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%223%22%20y%3D%223%22%20width%3D%2218%22%20height%3D%2218%22%20rx%3D%222%22/%3E%3Ccircle%20cx%3D%228.5%22%20cy%3D%228.5%22%20r%3D%221.5%22/%3E%3Cpath%20d%3D%22M21%2015l-5-5L5%2021%22/%3E%3C/svg%3E");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

.docs-note {
	font-size: 12px;
	color: var(--muted);
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px dashed var(--line);
}

@media (min-width: 860px) {
	.docs-layout {
		grid-template-columns: 260px 1fr;
	}

	.docs-side {
		flex-direction: column;
		overflow-x: visible;
		padding-bottom: 0;
	}

	.docs-side button {
		white-space: normal;
	}
}

/* ---------- АКЦИИ (слайдер) ---------- */
.promo-slider {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 16px;
	-webkit-overflow-scrolling: touch;
}

.promo-card {
	flex: 0 0 82%;
	scroll-snap-align: start;
	border: 1px solid var(--line);
	border-radius: 20px;
	overflow: hidden;
	background: var(--bg-2);
	display: flex;
	flex-direction: column;
}

@media (min-width: 640px) {
	.promo-card {
		flex: 0 0 46%;
	}
}

@media (min-width: 1000px) {
	.promo-card {
		flex: 0 0 31%;
	}
}

.promo-photo {
	aspect-ratio: 16/10;
	background: linear-gradient(135deg, var(--bg-3), var(--accent) 180%);
	position: relative;
	display: flex;
	align-items: flex-end;
	padding: 16px;
}

.promo-photo .tag {
	font-family: var(--font-title);
	font-size: 10.5px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: var(--accent);
	color: #fff;
	padding: 6px 12px;
	border-radius: 100px;
}

.promo-body {
	padding: 22px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.promo-body h3 {
	font-size: 17px;
	margin-bottom: 10px;
	line-height: 1.3;
}

.promo-body p {
	font-size: 13.5px;
	color: var(--sub);
	line-height: 1.55;
	margin-bottom: 16px;
	flex: 1;
}

.promo-body .link {
	font-family: var(--font-title);
	font-size: 11.5px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--accent);
}

/* ---------- СТРАНИЦА ТЕКСТОВАЯ ---------- */
.mock-page {
	border: 1px solid var(--line);
	border-radius: 24px;
	overflow: hidden;
	background: var(--bg-2);
}

.mock-crumbs {
	padding: 20px clamp(20px, 4vw, 44px) 0;
	font-size: 12.5px;
	color: var(--muted);
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.mock-crumbs a {
	color: var(--muted);
}

.mock-article {
	padding: 20px clamp(20px, 4vw, 44px) clamp(32px, 5vw, 52px);
}

.mock-article h1 {
	font-size: clamp(24px, 4.5vw, 36px);
	font-weight: 700;
	margin: 14px 0 22px;
	line-height: 1.15;
}

.mock-slide {
	aspect-ratio: 21/9;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--bg-3), var(--accent) 200%);
	margin-bottom: 28px;
}

.mock-article h2 {
	font-size: clamp(19px, 3vw, 24px);
	margin: 30px 0 12px;
}

.mock-article h3 {
	font-size: clamp(16px, 2.4vw, 18px);
	margin: 22px 0 10px;
}

.mock-article p {
	font-size: 14.5px;
	line-height: 1.75;
	color: var(--sub);
	margin-bottom: 14px;
	max-width: 720px;
}

.mock-article ul,
.mock-article ol {
	margin: 0 0 18px 20px;
	color: var(--sub);
	font-size: 14.5px;
	line-height: 1.7;
	max-width: 700px;
}

.mock-article li {
	margin-bottom: 6px;
}

.mock-article ul {
	list-style: disc;
}

.mock-article ol {
	list-style: decimal;
}

/* ---------- CTA ---------- */
.cta-final {
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-final h2 {
	font-size: clamp(28px, 7vw, 58px);
	font-weight: 700;
	margin-bottom: 20px;
}

.cta-final p {
	color: var(--sub);
	margin-bottom: 32px;
}

.cta-final .cta-row {
	justify-content: center;
}

.float-cta {
	position: fixed;
	bottom: 22px;
	right: 22px;
	z-index: 90;
	opacity: 0;
	transform: translateY(20px) scale(0.9);
	pointer-events: none;
	transition:
		opacity 0.3s,
		transform 0.3s;
}

.float-cta.show {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

@media (max-width: 560px) {
	.float-cta {
		left: 5%;
		right: 5%;
		bottom: 14px;
	}

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

/* ---------- FOOTER ---------- */
footer {
	padding: 44px 0 26px;
	border-top: 1px solid var(--line);
}

.foot-grid {
	display: flex;
	flex-direction: column;
	gap: 26px;
	margin-bottom: 26px;
}

.foot-cols {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.foot-col h4 {
	font-family: var(--font-title);
	font-size: 10.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 12px;
}

.foot-col a,
.foot-col p {
	display: block;
	font-size: 14px;
	margin-bottom: 8px;
	color: var(--sub);
}

.legal {
	font-size: 11px;
	color: var(--muted);
	line-height: 1.6;
	border-top: 1px solid var(--line);
	padding-top: 20px;
}

@media (min-width: 700px) {
	.foot-grid {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}

	.foot-cols {
		flex-direction: row;
		gap: 56px;
	}
}

/* ============================================================
   ВСЕ hover-эффекты сайта — только для устройств
   с настоящим курсором (мышь/трекпад).
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
	.styled-scroll::-webkit-scrollbar-thumb:hover {
		background: var(--accent);
	}

	.btn:hover {
		box-shadow: 0 0 30px var(--glow);
	}

	.btn.ghost:hover {
		border-color: var(--accent);
	}

	.tilt:hover {
		border-color: rgba(228, 4, 4, 0.4);
		box-shadow: 0 20px 50px -20px var(--glow);
	}

	.theme-toggle:hover {
		border-color: var(--accent);
	}

	.nav-l2 a:hover,
	.nav-l3 a:hover,
	.nav-link:hover {
		color: var(--accent);
	}

	.nav-l2 .nav-link:hover,
	.nav-l2 a:hover {
		background: var(--bg-3);
		color: var(--fg);
	}

	.cats-row a:hover {
		border-color: var(--accent);
		color: var(--accent);
		transform: translateY(-3px);
	}

	.docs-panel a:hover {
		color: var(--accent);
	}

	.mock-crumbs a:hover {
		color: var(--accent);
	}

	.foot-col a:hover {
		color: var(--fg);
	}
}
