@font-face {
	font-family: 'RobotoCustom';
	src: url('../fonts/Roboto-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'TacticSans';
	src: url('../fonts/TacticSansExd-Bld.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: #000;
	color: white;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 18px;
	overflow-x: clip;
}

img,
video {
	max-width: 100%;
	height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'TacticSans', sans-serif;
	font-weight: 700;
}

p {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 18px;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 60px clamp(16px, 4vw, 28px);
	box-sizing: border-box;
}

h1 {
	font-size: 54px;
	margin-bottom: 32px;
}

h2 {
	font-size: 28px;
	margin-bottom: 30px;
}

.header {
	border-bottom: 1px solid #bded45;
}

.hero-p {
	display: block;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 22px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #000;
}

/* Как на странице профиля: не тянуть секционные 60px от .container — иначе шапка выглядит иначе */
.site-header .container.nav {
	padding-top: 24px;
	padding-bottom: 24px;
	padding-left: 20px;
	padding-right: 20px;
}

.nav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 24px 0;
	flex-wrap: nowrap;
}

.nav .logo {
	flex-shrink: 0;
	min-width: 0;
}

.logo {
	color: #bded45;
	font-family: 'TacticSans', sans-serif;
	font-weight: 700;
	font-size: 20px;
}

/* Логотип слева, пункты меню по центру, «Личный кабинет» справа */
.nav .logo.nav-brand {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	display: flex;
	align-items: center;
	line-height: 0;
	text-decoration: none;
}

.nav .logo.nav-brand img {
	height: 60px;
	width: auto;
	max-width: min(340px, 64vw);
	display: block;
	object-fit: contain;
	object-position: center center;
}

nav a,
.nav-drawer-nav a {
	color: white;
	text-decoration: none;
	margin: 0 10px;
	transition: text-shadow 0.3s ease, transform 0.3s ease;
	display: inline-block;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
}

nav a:hover,
.nav-drawer-nav a:hover {
	text-shadow: 0 0 12px #bded45, 0 0 24px rgba(189, 237, 69, 0.5);
	transform: scale(1.08);
}

/* Кнопка «бургер» — только на узких экранах */
.nav-toggle {
	display: none;
	flex-shrink: 0;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(189, 237, 69, 0.45);
	border-radius: 10px;
	background: transparent;
	cursor: pointer;
	color: #fff;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
	border-color: #bded45;
	background: rgba(189, 237, 69, 0.08);
}

.nav-toggle-bar {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	border-radius: 1px;
	transition: transform 0.25s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

body.nav-open .nav-toggle-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Десктоп: выдвижная панель = обычная строка меню */
.nav-drawer {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex: 1;
	min-width: 0;
	width: 100%;
	position: relative;
	box-sizing: border-box;
	gap: 12px;
	padding-left: clamp(150px, 24vw, 270px);
	padding-right: clamp(130px, 20vw, 210px);
}

.nav-drawer-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 4px 0;
}

.nav-cabinet-btn {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	flex-shrink: 0;
	white-space: nowrap;
	text-align: center;
	text-decoration: none;
}

.hero {
	position: relative;
	overflow: hidden;
	text-align: center;
	padding: 200px 0 140px;
	background-color: #000;
}

.hero-content {
	position: relative;
	z-index: 1;
}

.hero-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
}

.btn-main {
	background: #bded45;
	border: 2px solid transparent;
	color: #000;
	padding: 8px 16px;
	border-radius: 8px;
	cursor: pointer;
	font-family: 'TacticSans', sans-serif;
	font-weight: 700;
	font-size: 16px;
	margin-top: 64px;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-main:hover {
	background: transparent;
	border-color: #bded45;
	color: #fff;
}

.btn-outline {
	background: transparent;
	border: 1px solid #b6ff00;
	color: white;
	padding: 8px 16px;
	border-radius: 8px;
	cursor: pointer;
	font-family: 'TacticSans', sans-serif;
	font-weight: 700;
	font-size: 16px;
	transition: background 0.25s ease, color 0.25s ease;
}

.btn-outline:hover {
	background: #bded45;
	color: #0a0a0a;
}

.grid {
	display: grid;
	gap: 20px;
}

.grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.card {
	height: 180px;
	border: 1px solid #bded45;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	text-align: center;
}

.card-label {
	font-family: 'TacticSans', sans-serif;
	font-size: 16px;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.9);
}

/* Секция «С чем сталкиваются компании»: сдвиг вниз, 4 карточки 2×2 справа */
.tasks-section {
	padding-top: 100px;
}

.tasks-layout {
	display: flex;
	align-items: flex-start;
	gap: 48px;
	flex-wrap: wrap;
}

.tasks-head {
	flex: 1;
	min-width: 280px;
}

.tasks-head .section-lead {
	margin-bottom: 0;
}

.tasks-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	width: 100%;
	max-width: 520px;
	flex-shrink: 0;
}

.card-tasks {
	height: auto;
	aspect-ratio: 1;
	position: relative;
	border-radius: 24px;
	border: none;
	background: #bded45;
}

.card-tasks .card-label {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	color: #0a0a0a;
}

.card-tasks-outline {
	background: transparent;
	border: 1px solid #bded45;
}

.card-tasks-outline .card-label {
	color: #fff;
}

.section-lead,
.form-lead {
	color: rgba(255, 255, 255, 0.75);
	font-size: 17px;
	margin-bottom: 32px;
}

.reviews-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.review-role {
	display: block;
	color: #bded45;
	font-size: 14px;
	margin-bottom: 8px;
}

.review p {
	font-size: 16px;
	line-height: 1.5;
}

/* Бегущая строка отзывов */
.reviews-marquee-wrap {
	overflow: hidden;
	padding: 8px 0;
}

.reviews-marquee-wrap:hover .reviews-marquee {
	animation-play-state: paused;
}

.reviews-marquee {
	display: flex;
	width: max-content;
	animation: reviews-scroll 45s linear infinite;
}

@keyframes reviews-scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.reviews-track {
	display: flex;
	gap: 20px;
	flex-shrink: 0;
	padding: 0 20px;
}

#reviews .review {
	flex-shrink: 0;
	width: 320px;
	padding: 14px 16px;
	gap: 12px;
	border-radius: 12px;
}

#reviews .avatar {
	display: none;
}

#reviews .review-body h4 {
	font-size: 15px;
	margin-bottom: 2px;
}

#reviews .review-role {
	font-size: 12px;
	margin-bottom: 6px;
}

#reviews .review p {
	font-size: 13px;
	line-height: 1.45;
}

/* ---- scroll reveal (минимальные анимации) ---- */
.section-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.section-reveal.in-view {
	opacity: 1;
	transform: translateY(0);
}

.cards-reveal .card-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.cards-reveal.in-view .card-reveal {
	opacity: 1;
	transform: translateY(0);
}

.cards-reveal .card-reveal:nth-child(1) { transition-delay: 0.05s; }
.cards-reveal .card-reveal:nth-child(2) { transition-delay: 0.1s; }
.cards-reveal .card-reveal:nth-child(3) { transition-delay: 0.15s; }
.cards-reveal .card-reveal:nth-child(4) { transition-delay: 0.2s; }
.cards-reveal .card-reveal:nth-child(5) { transition-delay: 0.25s; }
.cards-reveal .card-reveal:nth-child(6) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
	.section-reveal,
	.cards-reveal .card-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.resh-back {
	background-color: #000;
}

/* Чёрный фон у всех секций и размытие на стыках */
section {
	position: relative;
	background: #000;
}

section::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 80px;
	background: linear-gradient(to top, rgba(189, 237, 69, 0.03), transparent 40%);
	filter: blur(20px);
	pointer-events: none;
	z-index: 0;
}

section:last-of-type::after {
	display: none;
}

.footer::after {
	display: none;
}

.service {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.service-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #bded45;
	aspect-ratio: 1;
	background: #0a0a0a;
}

.service-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.service .service-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-end;
	padding: 0 10px 14px 0;
}

.service-card-title {
	position: absolute;
	top: 28px;
	left: 24px;
	right: 16px;
	margin: 0;
	font-size: 24px;
	line-height: 1.3;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	color: #fff;
	z-index: 1;
}

.service .service-card img {
	width: 72%;
	height: auto;
	max-height: 92%;
	object-fit: contain;
	object-position: right bottom;
}

.service-info {
	padding-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.service-info h3 {
	font-size: 20px;
	line-height: 1.3;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
}

.service-price {
	color: #bded45;
	font-family: 'TacticSans', sans-serif;
	font-size: 20px;
}

.service-info .btn-outline {
	width: fit-content;
}

.service .service-info {
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 12px 20px;
}

.section-text {
	margin-bottom: 30px;
}

.solutions-head {
	margin-bottom: 40px;
	text-align: center;
}

#solutions .solutions-head .section-title {
	text-align: center;
}

#solutions .section-text {
	text-align: center;
	margin: 0 auto;
	margin-top: 12px;
	max-width: 420px;
	line-height: 1.55;
	color: #fff;
	font-size: 18px;
}

#solutions .grid.grid-3.cards-reveal {
	margin-top: 28px;
}

#clients {
	padding-top: 48px;
}

#clients .logos {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.logos .logo-card {
	height: auto;
	aspect-ratio: 1;
	background: white;
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.logo-card img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.card-text {
	border: 1px solid #bded45;
	padding: 20px;
	border-radius: 10px;
}

/* Аккордеон «Почему выбирают нас» */
.accordion-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px 32px;
}

.accordion-col {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.accordion-item {
	background: #1a1a1a;
	border-radius: 12px;
	overflow: hidden;
}

.accordion-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	cursor: pointer;
}

.accordion-title {
	font-family: 'TacticSans', sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.35;
	color: #fff;
	flex: 1;
}

.accordion-btn {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border: none;
	border-radius: 8px;
	background: #bded45;
	color: #000;
	font-size: 22px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.accordion-btn:hover {
	opacity: 0.9;
}

.accordion-item.is-open .accordion-btn .accordion-icon {
	transform: rotate(45deg);
}

.accordion-icon {
	display: inline-block;
	transition: transform 0.25s ease;
}

.accordion-body {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}

.accordion-item.is-open .accordion-body {
	grid-template-rows: 1fr;
}

.accordion-inner {
	overflow: hidden;
	min-height: 0;
}

.accordion-text {
	margin: 0;
	padding: 0 20px 18px 20px;
	font-size: 15px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.85);
}

.review {
	display: flex;
	gap: 20px;
	border: 1px solid #bded45;
	padding: 20px;
	border-radius: 15px;
}

.avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 2px solid #bded45;
}

.form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	border: 1px solid #bded45;
	padding: 40px;
	border-radius: 15px;
}

.form textarea {
	grid-column: 1/3;
	height: 120px;
}

.form input,
.form textarea {
	background: transparent;
	border: 1px solid #bded45;
	padding: 10px;
	border-radius: 8px;
	color: white;
}

.form button {
	grid-column: 1/3;
	margin: auto;
}

/* Форма заявки — два столбца, подписи, выпадающий список */
.form-request {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px 32px;
	background: #141414;
	border: none;
	border-radius: 12px;
	padding: 40px;
}

.form-request .form-col {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.form-request .form-field-full {
	grid-column: 1 / -1;
}

.form-request .form-submit-wrap {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	margin-top: 8px;
}

.form-label {
	display: block;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 8px;
}

.form-field {
	display: flex;
	flex-direction: column;
}

.form-request .form-input,
.form-request .form-select,
.form-request .form-textarea {
	background: #1a1a1a;
	border: 1px solid #bded45;
	border-radius: 8px;
	color: #fff;
	padding: 12px 16px;
	font-size: 16px;
	outline: none;
	width: 100%;
}

.form-request .form-input::placeholder,
.form-request .form-textarea::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.form-request .form-input:focus,
.form-request .form-select:focus,
.form-request .form-textarea:focus {
	box-shadow: 0 0 0 2px rgba(189, 237, 69, 0.25);
}

.form-request .form-textarea {
	height: 120px;
	min-height: 120px;
	resize: vertical;
}

.form-select-wrap {
	position: relative;
	display: block;
}

.form-request .form-select {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	padding-right: 44px;
	cursor: pointer;
}

.form-select-chevron {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: #bded45;
}

.form-request .form-select option {
	background: #1a1a1a;
	color: #fff;
}

@media (max-width: 640px) {
	.form-request {
		grid-template-columns: 1fr;
		padding: 24px;
	}
	.form-request .form-field-full,
	.form-request .form-submit-wrap {
		grid-column: 1;
	}
}

.footer {
	background: #000;
	border-top: 1px solid #bded45;
	padding: 40px 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
}

.footer ul {
	list-style: none;
}

.footer li {
	margin: 8px 0;
}

.footer a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

.footer a:hover {
	color: #bded45;
}

.footer-copy {
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
}

.foot-con {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* Модальное окно «нужна регистрация» на главной */
.auth-required-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s, visibility 0.2s;
}
.auth-required-overlay.is-open {
	opacity: 1;
	visibility: visible;
}
.auth-required-modal {
	background: #111;
	border: 1px solid #333;
	border-radius: 12px;
	padding: 32px;
	max-width: 440px;
	width: 90%;
}
.auth-required-title {
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 24px;
	color: #fff;
	font-weight: 400;
}
.auth-required-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.auth-required-actions .btn-main {
	margin-top: 0;
}
.auth-required-cancel {
	order: 1;
}
.auth-required-register {
	order: 2;
	text-decoration: none;
	text-align: center;
	display: inline-block;
}

/* ========== Адаптив: планшеты и телефоны ========== */
@media (max-width: 1100px) {
	.grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	#clients .logos {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	body.nav-open {
		overflow: hidden;
	}

	.nav {
		justify-content: space-between;
	}

	.nav .logo.nav-brand {
		position: relative;
		left: auto;
		top: auto;
		transform: none;
	}

	.nav .logo,
	.nav-toggle {
		position: relative;
		z-index: 1003;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-drawer {
		position: fixed;
		inset: 0;
		z-index: 1001;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		width: auto;
		padding-left: clamp(16px, 4vw, 24px);
		padding-right: clamp(16px, 4vw, 24px);
		padding-top: calc(76px + env(safe-area-inset-top, 0px));
		padding-bottom: max(28px, env(safe-area-inset-bottom));
		background: rgba(8, 8, 8, 0.98);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.22s ease, visibility 0.22s ease;
	}

	.nav-drawer.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.nav-drawer-nav {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.nav-drawer-nav a {
		margin: 0;
		padding: 16px 12px;
		border-bottom: 1px solid rgba(189, 237, 69, 0.12);
		font-size: 17px;
	}

	.nav-drawer-nav a:hover {
		transform: none;
		background: rgba(189, 237, 69, 0.06);
	}

	.nav-cabinet-btn {
		position: static;
		transform: none;
		margin-top: 20px;
		width: 100%;
		box-sizing: border-box;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 12px 18px;
	}

	h1 {
		font-size: clamp(26px, 7.5vw, 44px);
		margin-bottom: 20px;
		line-height: 1.12;
	}

	h2 {
		font-size: clamp(20px, 5vw, 28px);
		margin-bottom: 20px;
	}

	.hero {
		padding: 96px 0 64px;
	}

	.hero-p {
		font-size: clamp(15px, 3.8vw, 20px);
		line-height: 1.45;
	}

	.btn-main {
		margin-top: 36px;
		width: 100%;
		max-width: 340px;
		box-sizing: border-box;
	}

	.tasks-section {
		padding-top: 48px;
	}

	.tasks-layout {
		flex-direction: column;
		gap: 28px;
		align-items: stretch;
	}

	.tasks-grid {
		max-width: none;
		margin: 0 auto;
	}

	.grid-3 {
		grid-template-columns: 1fr;
	}

	.accordion-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.auth-required-modal {
		padding: 24px 20px;
		margin: 0 12px;
		width: auto;
		max-width: 440px;
	}

	.auth-required-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.auth-required-actions .btn-main,
	.auth-required-actions .btn-outline {
		width: 100%;
		text-align: center;
		justify-content: center;
	}

	#solutions .section-text {
		font-size: 16px;
		max-width: none;
	}
}

@media (max-width: 640px) {
	.container {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.grid-4 {
		grid-template-columns: 1fr;
	}

	#clients .logos {
		grid-template-columns: 1fr;
	}

	p,
	.section-lead,
	.form-lead {
		font-size: 16px;
		line-height: 1.55;
	}

	.service-card-title {
		font-size: clamp(17px, 4.8vw, 22px);
		left: 14px;
		right: 12px;
		top: 16px;
	}

	#reviews .review {
		width: min(288px, 88vw);
	}

	.card {
		height: auto;
		min-height: 100px;
	}

	.tasks-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.review {
		flex-direction: column;
		gap: 12px;
		padding: 16px;
	}

	.section-form-wrap .section-title {
		margin-bottom: 12px;
	}
}

@media (max-width: 480px) {
	.nav {
		padding: 16px 0;
	}

	.logo:not(.nav-brand) {
		font-size: clamp(14px, 4vw, 18px);
		line-height: 1.2;
	}

	.nav .logo.nav-brand img {
		height: clamp(42px, 12vw, 58px);
		max-width: min(320px, 82vw);
	}

	.hero {
		padding: 72px 0 48px;
	}
}

@media (min-width: 901px) {
	body.nav-open {
		overflow: visible;
	}

	/* Та же логика, что .profile-nav: логотип | ссылки по центру | кабинет справа */
	.nav {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
		grid-template-areas: 'logo links cabinet';
		align-items: center;
		gap: 16px;
		justify-content: initial;
	}

	.nav .logo.nav-brand {
		position: static;
		transform: none;
		grid-area: logo;
		justify-self: start;
	}

	.nav-drawer {
		display: contents;
		padding-left: 0;
		padding-right: 0;
		width: auto;
	}

	.nav-drawer-nav {
		grid-area: links;
		justify-self: center;
	}

	.nav-cabinet-btn {
		grid-area: cabinet;
		justify-self: end;
		position: static;
		transform: none;
	}
}
