:root {
	--accent: #ff6600;
	--accent-hover: #e55a00;
	--accent-light: #ff8533;
	--bg: #141824;
	--surface: #1f2433;
	--surface-2: #1a1f2e;
	--text: #e8eaef;
	--text-muted: #d5dae6;
	--radius: 16px;
	--radius-pill: 999px;
	--shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
	--font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font);
	font-size: 15px;
	line-height: 1.5;
	color: var(--text);
	background: var(--bg);
	overflow-x: hidden;
}

a {
	color: var(--accent);
	text-decoration: none;
}

a:hover {
	color: var(--accent-light);
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
}

.icon {
	width: 1em;
	height: 1em;
	display: inline-block;
	vertical-align: -0.125em;
	flex-shrink: 0;
	fill: currentColor;
}

.container {
	width: min(1140px, calc(100% - 32px));
	margin: 0 auto;
}

/* Header */
.site-header {
	background: linear-gradient(90deg, #141824 0%, #1f2433 100%);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: var(--shadow);
}

.topbar {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 10px 16px;
	max-width: 1400px;
	margin: 0 auto;
}

.topbar__logo {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.logo-link {
	display: inline-flex;
	background: #1f2433;
	padding: 8px 12px;
	border-radius: 12px;
	border: 1px solid rgba(255, 102, 0, 0.35);
}

.logo-img {
	display: block;
	max-height: 48px;
	width: auto;
}

.logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.logo-text__name {
	color: #fff;
	font-weight: 700;
	font-size: 15px;
}

.logo-text__tag {
	color: var(--text-muted);
	font-size: 12px;
}

.main-nav {
	flex: 1;
}

.main-nav__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 102, 0, 0.35);
	color: #fff !important;
	font-weight: 600;
	font-size: 14px;
	transition: 0.2s ease;
}

.main-nav__link .icon {
	color: var(--accent);
}

.main-nav__link:hover,
.main-nav__link.is-active {
	background: var(--accent);
	border-color: var(--accent);
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(255, 102, 0, 0.4);
}

.main-nav__link:hover .icon,
.main-nav__link.is-active .icon {
	color: #fff;
}

.topbar__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	justify-content: flex-end;
	flex-shrink: 0;
}

.topbar-address {
	display: inline-flex;
	align-items: flex-start;
	gap: 8px;
	max-width: 220px;
	text-align: right;
}

.topbar-address .icon {
	color: var(--accent);
	margin-top: 3px;
}

.topbar-address a {
	color: var(--text) !important;
	font-size: 12px;
	line-height: 1.35;
	font-weight: 500;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: var(--radius-pill);
	background: var(--accent);
	color: #fff !important;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	box-shadow: 0 6px 18px rgba(255, 102, 0, 0.35);
	border: none;
	cursor: pointer;
	transition: 0.2s ease;
}

.btn-primary:hover {
	background: var(--accent-hover);
	color: #fff !important;
}

.nav-toggle {
	display: none;
	background: transparent;
	border: 1px solid rgba(255, 102, 0, 0.4);
	color: #fff;
	border-radius: 10px;
	width: 42px;
	height: 42px;
	font-size: 18px;
	cursor: pointer;
}

/* Главная: один экран, без прокрутки */
html:has(body.page-home),
body.page-home {
	height: 100%;
	overflow: hidden;
}

body.page-home {
	display: flex;
	flex-direction: column;
	height: 100vh;
	height: 100dvh;
	max-height: 100vh;
	max-height: 100dvh;
}

body.page-home .site-header {
	flex: 0 0 auto;
	position: relative;
}

body.page-home main {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
	overflow: hidden;
}

body.page-home .hero {
	flex: 1 1 auto;
	min-height: 0;
	display: flex;
	flex-direction: column;
}

body.page-home .hero__track {
	flex: 1 1 auto;
	height: auto;
	min-height: 0;
}

body.page-home .contact-bar,
body.page-home .contact-strip {
	flex: 0 0 auto;
}

body.page-home .contact-bar {
	padding: 10px 0;
}

body.page-home .contact-strip {
	padding: 10px 0 12px;
	margin-top: 0;
}

/* Hero */
.hero {
	position: relative;
	background: #000;
}

.hero__track {
	position: relative;
	height: calc(100vh - 88px);
	min-height: 620px;
	overflow: hidden;
}

.hero__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.6s ease;
	background-color: #141824;
	display: flex;
	align-items: center;
}

.hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}

.hero__slide picture,
.hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero__img {
	object-fit: cover;
	object-position: center center;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(20, 24, 36, 0.85) 0%, rgba(20, 24, 36, 0.35) 70%);
}

.hero__content {
	position: relative;
	z-index: 1;
	padding: 48px 0;
	max-width: 640px;
	margin-left: max(16px, calc((100% - 1140px) / 2));
}

.hero__title {
	margin: 0 0 12px;
	color: #fff;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	line-height: 1.15;
	text-transform: none;
	font-family: var(--font);
	letter-spacing: normal;
}

.hero__desc {
	margin: 0 0 20px;
	color: var(--text-muted);
	font-size: 16px;
	max-width: 520px;
}

.hero__dots {
	position: absolute;
	left: 50%;
	bottom: 18px;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 2;
}

.hero__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	padding: 0;
}

.hero__dot.is-active {
	background: var(--accent);
}

/* Contact bar */
.contact-bar {
	background: var(--bg);
	padding: 14px 0;
	box-shadow: var(--shadow);
}

.contact-bar__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.contact-bar__item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #fff;
}

.contact-bar__item .icon {
	color: var(--accent);
	width: 1.25em;
	height: 1.25em;
	font-size: 20px;
	border: 2px solid var(--accent);
	border-radius: 8px;
	padding: 8px;
	box-sizing: content-box;
}

.contact-bar__label {
	display: block;
	font-weight: 700;
	font-size: 16px;
}

.contact-bar__item a,
.contact-bar__item span:not(.contact-bar__label) {
	color: #fff;
	font-size: 15px;
}

/* Contact strip */
.contact-strip {
	background: var(--bg);
	padding: 14px 0 16px;
	margin-top: 4px;
	border-top: 1px solid rgba(255, 102, 0, 0.25);
}

.contact-strip__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px 24px;
	align-items: center;
	text-align: center;
}

.contact-strip__title {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.icon-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.icon-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--surface);
	color: #fff !important;
	border: 1px solid rgba(255, 102, 0, 0.35);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	transition: 0.2s ease;
}

.icon-pill:hover {
	transform: translateY(-2px);
	color: #fff !important;
}

.icon-pill .icon,
.side-contacts__btn .icon,
.nav-toggle .icon {
	width: 1.15em;
	height: 1.15em;
}

.icon-pill--phone:hover { background: #ff6600; border-color: #ff6600; }
.icon-pill--viber:hover { background: #7360f2; border-color: #7360f2; }
.icon-pill--telegram:hover { background: #229ed9; border-color: #229ed9; }
.icon-pill--facebook:hover { background: #1877f2; border-color: #1877f2; }
.icon-pill--instagram:hover { background: #e4405f; border-color: #e4405f; }
.icon-pill--vk:hover { background: #4c75a3; border-color: #4c75a3; }
.icon-pill--youtube:hover { background: #ff0000; border-color: #ff0000; }

.icon-pill.is-stub {
	opacity: 0.55;
	cursor: default;
}

.icon-pill.is-stub:hover {
	background: transparent;
	border-color: rgba(255, 102, 0, 0.45);
	color: var(--accent);
	transform: none;
}

.contact-strip__phone-link {
	font-size: 20px;
	font-weight: 700;
	color: var(--accent) !important;
}

/* Phone number — стиль и анимация */
.phone-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 20px 12px 16px;
	border-radius: var(--radius-pill);
	background: rgba(255, 102, 0, 0.1);
	border: 1px solid rgba(255, 102, 0, 0.45);
	color: #fff !important;
	text-decoration: none !important;
	overflow: visible;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	animation: phone-link-glow 2.2s ease-in-out infinite;
}

.phone-link:hover {
	transform: translateY(-2px) scale(1.03);
	background: rgba(255, 102, 0, 0.22);
	border-color: var(--accent);
	box-shadow: 0 10px 28px rgba(255, 102, 0, 0.35);
	animation-play-state: paused;
}

.phone-link__pulse {
	position: absolute;
	inset: -4px;
	border-radius: inherit;
	border: 1px solid rgba(255, 102, 0, 0.5);
	pointer-events: none;
	animation: phone-link-ring 1.8s ease-out infinite;
}

.phone-link__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--accent);
	color: #fff;
	flex-shrink: 0;
	box-shadow: 0 4px 14px rgba(255, 102, 0, 0.45);
	animation: phone-link-shake 2.8s ease-in-out infinite;
}

.phone-link__icon .icon {
	width: 16px;
	height: 16px;
}

.phone-link__num {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1;
	background: linear-gradient(90deg, #fff 0%, var(--accent-light) 45%, #fff 90%);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: phone-link-shine 2.4s linear infinite;
}

.phone-link:hover .phone-link__num {
	animation-play-state: paused;
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	color: #fff;
}

.side-contacts__btn--phone {
	animation: phone-side-pulse 1.8s ease-in-out infinite;
}

.side-contacts__btn--phone:hover {
	animation-play-state: paused;
	background: #ff6600;
	border-color: #ff6600;
}

@keyframes phone-link-glow {
	0%, 100% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.25), 0 6px 18px rgba(0, 0, 0, 0.2); }
	50% { box-shadow: 0 0 0 8px rgba(255, 102, 0, 0), 0 8px 22px rgba(255, 102, 0, 0.28); }
}

@keyframes phone-link-ring {
	0% { transform: scale(1); opacity: 0.65; }
	100% { transform: scale(1.12); opacity: 0; }
}

@keyframes phone-link-shake {
	0%, 78%, 100% { transform: rotate(0deg); }
	82% { transform: rotate(-12deg); }
	86% { transform: rotate(10deg); }
	90% { transform: rotate(-8deg); }
	94% { transform: rotate(6deg); }
}

@keyframes phone-link-shine {
	0% { background-position: 100% 0; }
	100% { background-position: -100% 0; }
}

@keyframes phone-side-pulse {
	0%, 100% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(255, 102, 0, 0.45); }
	50% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 0 10px rgba(255, 102, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
	.phone-link,
	.phone-link__pulse,
	.phone-link__icon,
	.phone-link__num,
	.side-contacts__btn--phone {
		animation: none;
	}
}

/* Side contacts */
.side-contacts {
	position: fixed;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.side-contacts__btn {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--surface);
	color: #fff !important;
	border: 1px solid rgba(255, 102, 0, 0.35);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	font-size: 18px;
	transition: 0.2s ease;
}

.side-contacts__btn:hover {
	transform: translateY(-2px);
}

.side-contacts__btn--phone:hover { background: #ff6600; border-color: #ff6600; }
.side-contacts__btn--viber:hover { background: #7360f2; border-color: #7360f2; }
.side-contacts__btn--telegram:hover { background: #229ed9; border-color: #229ed9; }

/* Online chat widget — у адреса в шапке, мигает */
.chat-widget {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	overflow: visible;
}

.chat-widget:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 4px;
	border-radius: 50%;
}

.chat-widget__avatar {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	padding: 2px;
	background: transparent;
	border: 2px solid var(--accent);
	box-shadow: none;
	overflow: hidden;
	transition: transform 0.2s ease, border-color 0.2s ease;
	animation: chat-widget-blink 1.1s ease-in-out infinite;
}

.chat-widget:hover .chat-widget__avatar {
	transform: scale(1.08);
	border-color: var(--accent-light);
	animation-play-state: paused;
	opacity: 1 !important;
	filter: none;
}

.chat-widget__avatar picture {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
	background: transparent;
}

.chat-widget__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center 58%;
	border-radius: 50%;
	background: transparent;
}

.chat-widget__online {
	position: absolute;
	right: 1px;
	bottom: 1px;
	z-index: 3;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #22c55e;
	border: 2px solid var(--bg);
	box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
	animation: chat-widget-online 1.8s ease-out infinite;
}

.chat-widget__pulse {
	position: absolute;
	z-index: 1;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(255, 102, 0, 0.28);
	pointer-events: none;
	animation: chat-widget-ring 1.4s ease-out infinite;
}

.chat-widget__tip {
	position: absolute;
	right: 0;
	top: calc(100% + 10px);
	transform: translateY(-4px);
	white-space: nowrap;
	padding: 8px 12px;
	border-radius: 10px;
	background: var(--surface);
	color: var(--text);
	border: 1px solid rgba(255, 102, 0, 0.35);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 20;
}

.chat-widget__tip::after {
	content: '';
	position: absolute;
	right: 18px;
	top: -5px;
	width: 12px;
	height: 12px;
	background: var(--surface);
	border-top: 1px solid rgba(255, 102, 0, 0.35);
	border-left: 1px solid rgba(255, 102, 0, 0.35);
	transform: rotate(45deg);
	border-radius: 2px;
}

.chat-widget:hover .chat-widget__tip,
.chat-widget:focus-visible .chat-widget__tip {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.modal__panel--chat {
	max-width: 420px;
}

.chat-stub {
	margin: 0 0 16px;
	color: var(--text-muted);
	line-height: 1.55;
}

.chat-stub__actions {
	margin: 0;
}

@keyframes chat-widget-blink {
	0%, 100% {
		opacity: 1;
		filter: brightness(1);
	}
	50% {
		opacity: 0.35;
		filter: brightness(1.45);
	}
}

@keyframes chat-widget-ring {
	0% { transform: scale(1); opacity: 0.55; }
	100% { transform: scale(1.55); opacity: 0; }
}

@keyframes chat-widget-online {
	0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
	70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
	100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (prefers-reduced-motion: reduce) {
	.chat-widget__avatar,
	.chat-widget__pulse,
	.chat-widget__online {
		animation: none;
	}
}

/* Inner pages — фон со слайдеров главной */
body.has-page-bg {
	background: #141824;
}

body.has-page-bg::before {
	content: '';
	position: fixed;
	inset: 0;
	z-index: -2;
	background-image: var(--page-bg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

body.has-page-bg::after {
	content: '';
	position: fixed;
	inset: 0;
	z-index: -1;
	background: linear-gradient(
		180deg,
		rgba(20, 24, 36, 0.45) 0%,
		rgba(20, 24, 36, 0.55) 50%,
		rgba(20, 24, 36, 0.7) 100%
	);
}

.inner-page {
	padding: 28px 0 48px;
	background: transparent;
	min-height: 50vh;
}

.inner-card {
	background: rgba(31, 36, 51, 0.78);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 28px 24px;
}

.inner-card h1 {
	margin: 0 0 16px;
	color: #fff;
	font-size: clamp(24px, 3vw, 32px);
}

.content-html {
	color: var(--text-muted);
	margin-bottom: 28px;
}

.content-html p {
	margin: 0 0 12px;
}

.content-html h2 {
	margin: 28px 0 12px;
	color: #fff;
	font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 700;
}

.content-html h3 {
	margin: 22px 0 10px;
	color: #fff;
	font-size: clamp(17px, 2vw, 20px);
	font-weight: 600;
}

.content-html h2 + h3 {
	margin-top: 14px;
}

.content-html h3 + p {
	color: var(--text-muted);
}

.content-html ul {
	margin: 0 0 16px;
	padding-left: 1.25em;
}

.content-html ol {
	margin: 0 0 16px;
	padding-left: 1.35em;
}

.content-html li {
	margin: 0 0 8px;
}

.content-html a,
.content-html strong {
	color: var(--accent);
}

.service-back {
	margin: 0 0 18px;
}

.btn-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 102, 0, 0.45);
	color: #fff !important;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	transition: 0.2s ease;
}

.btn-back__icon {
	width: 1em;
	height: 1em;
	color: var(--accent);
	transform: scaleX(-1);
}

.btn-back:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff !important;
	box-shadow: 0 8px 22px rgba(255, 102, 0, 0.4);
	transform: translateY(-1px);
}

.btn-back:hover .btn-back__icon {
	color: #fff;
}

.service-hero {
	margin: 0 0 22px;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-hero img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.service-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin: 8px 0 0;
}

.service-cta__link {
	color: var(--accent);
	font-weight: 600;
}

.content-html .service-stub {
	margin-top: 16px;
	padding: 14px 16px;
	border-left: 3px solid var(--accent);
	background: rgba(255, 102, 0, 0.08);
	color: var(--text-muted);
}

.content-html .service-price {
	margin: 16px 0 20px;
	padding: 14px 16px;
	border-radius: 10px;
	background: rgba(255, 102, 0, 0.12);
	border: 1px solid rgba(255, 102, 0, 0.35);
	color: #fff;
	font-size: 1.05em;
}

/* Services grid — 2 ряда по 6 на десктопе */
.services-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px 12px;
	margin: 0;
}

.service-item__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: inherit;
	transition: transform 0.2s ease;
}

.service-item__link:hover {
	transform: translateY(-4px);
}

.service-item__circle {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 96px;
	margin: 0 auto 12px;
	border-radius: 50%;
	background: linear-gradient(145deg, #1a1f2e 0%, #141824 100%);
	border: 2px solid rgba(255, 102, 0, 0.55);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
	transition: 0.2s ease;
}

.service-item__circle .icon {
	width: 30px;
	height: 30px;
	color: var(--accent);
}

.service-item__price {
	position: absolute;
	left: 50%;
	bottom: -2px;
	transform: translateX(-50%);
	white-space: nowrap;
	padding: 3px 8px;
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.02em;
	box-shadow: 0 4px 10px rgba(255, 102, 0, 0.45);
}

.service-item__link:hover .service-item__circle {
	border-color: var(--accent);
	box-shadow: 0 12px 28px rgba(255, 102, 0, 0.35);
}

.service-item__label {
	max-width: 110px;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	text-align: center;
}

.service-item__link:hover .service-item__label {
	color: var(--accent-light);
}

/* Contacts / map */
.contacts-info {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px 20px;
	margin-bottom: 24px;
}

.contacts-info__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 12px;
	background: rgba(20, 24, 36, 0.55);
	border: 1px solid rgba(255, 102, 0, 0.25);
}

.contacts-info__item .icon {
	color: var(--accent);
	width: 18px;
	height: 18px;
	margin-top: 2px;
}

.contacts-info__item strong {
	display: block;
	color: #fff;
	font-size: 14px;
	margin-bottom: 4px;
}

.contacts-info__item p {
	margin: 0;
	color: var(--text-muted);
	font-size: 14px;
}

.yandex-map__title {
	margin: 0 0 14px;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}

.yandex-map__frame-wrap {
	border-radius: var(--radius);
	overflow: hidden;
	border: 2px solid rgba(255, 102, 0, 0.35);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.yandex-map__frame {
	display: block;
	width: 100%;
	height: 420px;
	border: 0;
}

.yandex-map__link-wrap {
	margin: 12px 0 0;
	text-align: right;
}

.yandex-map__link {
	color: var(--accent);
	font-weight: 600;
}

.yandex-map__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.yandex-map__toolbar .yandex-map__title {
	margin: 0;
}

.yandex-map__toolbar .yandex-map__link {
	flex-shrink: 0;
	font-size: 13px;
}

/* Contacts page — one screen, centered compact card */
html:has(body.nav-kontakty),
body.nav-kontakty {
	height: 100%;
}

body.nav-kontakty {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	min-height: 100dvh;
	max-height: 100vh;
	max-height: 100dvh;
	overflow: hidden;
}

body.nav-kontakty .site-header {
	flex-shrink: 0;
}

body.nav-kontakty main {
	flex: 1 1 auto;
	min-height: 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

body.nav-kontakty .site-footer {
	display: none;
}

body.nav-kontakty .contact-strip {
	flex-shrink: 0;
	background: rgba(20, 24, 36, 0.88);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-top: 1px solid rgba(255, 102, 0, 0.25);
}

body.nav-kontakty .inner-page--contacts {
	flex: 1;
	min-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	overflow: hidden;
}

body.nav-kontakty .inner-page--contacts > .container {
	width: auto;
	max-width: 100%;
	margin: 0;
	display: flex;
	justify-content: center;
}

body.nav-kontakty .inner-card--contacts {
	width: min(1109px, 100%);
	margin: 0 auto;
	padding: 24px 28px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	overflow: hidden;
}

body.nav-kontakty .contacts-head {
	margin: 0;
	text-align: center;
}

body.nav-kontakty .contacts-head h1 {
	margin: 0 0 6px;
	font-size: clamp(26px, 3vw, 35px);
}

body.nav-kontakty .contacts-head__text {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
	color: var(--text-muted);
}

body.nav-kontakty .contacts-head__text p {
	margin: 0;
}

body.nav-kontakty .contacts-block {
	display: grid;
	grid-template-columns: 370px 1fr;
	gap: 22px;
	align-items: stretch;
	margin: 0;
}

body.nav-kontakty .contacts-info {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin: 0;
}

body.nav-kontakty .contacts-info__item {
	padding: 13px 15px;
	gap: 12px;
	border-radius: 12px;
}

body.nav-kontakty .contacts-info__item .icon {
	width: 20px;
	height: 20px;
	margin-top: 2px;
}

body.nav-kontakty .contacts-info__item strong {
	font-size: 15px;
	margin-bottom: 2px;
}

body.nav-kontakty .contacts-info__item p {
	font-size: 15px;
	line-height: 1.35;
}

body.nav-kontakty .yandex-map {
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 100%;
	align-self: stretch;
}

body.nav-kontakty .yandex-map__toolbar {
	margin-bottom: 11px;
	flex-shrink: 0;
}

body.nav-kontakty .yandex-map__toolbar .yandex-map__title {
	font-size: 20px;
}

body.nav-kontakty .yandex-map__toolbar .yandex-map__link {
	font-size: 15px;
}

body.nav-kontakty .yandex-map__frame-wrap {
	flex: 1 1 auto;
	min-height: 220px;
	position: relative;
}

body.nav-kontakty .yandex-map__frame {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

body.nav-kontakty .contacts-info__item--btn {
	width: 100%;
	margin: 0;
	font: inherit;
	text-align: left;
	cursor: pointer;
	color: inherit;
	appearance: none;
	-webkit-appearance: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}

body.nav-kontakty .contacts-info__item--btn:hover,
body.nav-kontakty .contacts-info__item--btn:focus-visible {
	border-color: rgba(255, 102, 0, 0.55);
	background: rgba(255, 102, 0, 0.12);
	outline: none;
}

body.nav-kontakty .contacts-info__item--btn p {
	color: var(--accent);
}

.modal {
	padding: 0;
	border: none;
	background: transparent;
	max-width: min(560px, calc(100vw - 32px));
	color: inherit;
}

.modal::backdrop {
	background: rgba(8, 10, 16, 0.72);
	backdrop-filter: blur(4px);
}

.modal__panel {
	padding: 20px 22px;
	border-radius: 14px;
	background: rgba(20, 24, 36, 0.96);
	border: 1px solid rgba(255, 102, 0, 0.35);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.modal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.modal__head h2 {
	margin: 0;
	color: #fff;
	font-size: 20px;
}

.modal__close {
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 102, 0, 0.35);
	border-radius: 10px;
	background: transparent;
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.modal__close:hover {
	background: rgba(255, 102, 0, 0.2);
	border-color: var(--accent);
}

.modal__requisites {
	display: grid;
	gap: 12px;
	margin: 0;
}

.modal__requisites dt {
	margin: 0 0 2px;
	color: var(--accent-light);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.modal__requisites dd {
	margin: 0;
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.4;
	word-break: break-word;
}

/* Footer */
@keyframes footerFadeUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes footerGlow {
	0%,
	100% {
		box-shadow: 0 0 0 rgba(255, 102, 0, 0);
	}
	50% {
		box-shadow: 0 0 18px rgba(255, 102, 0, 0.35);
	}
}

.site-footer {
	background: var(--surface-2);
	border-top: 1px solid rgba(255, 102, 0, 0.2);
	padding: 18px 0;
	color: var(--text-muted);
	font-size: 17px;
}

body.has-page-bg .site-footer {
	background: rgba(20, 24, 36, 0.72);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.site-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
	animation: footerFadeUp 0.55s ease both;
}

.site-footer p {
	margin: 0;
}

.site-footer__copy {
	font-size: 17px;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.site-footer__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px 16px;
}

.site-footer__sites {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.site-footer__site {
	display: inline-flex;
	align-items: center;
	padding: 5px 10px;
	border-radius: var(--radius-pill);
	border: 1px solid rgba(255, 102, 0, 0.4);
	background: rgba(255, 255, 255, 0.05);
	color: #fff !important;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-footer__site:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff !important;
	transform: translateY(-2px);
	animation: footerGlow 1.4s ease infinite;
}

.site-footer__contacts {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
}

.site-footer__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	border-radius: var(--radius-pill);
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	color: #fff !important;
	text-decoration: none;
	transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-footer__link .icon {
	width: 1em;
	height: 1em;
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.site-footer__link:hover {
	transform: translateY(-2px);
}

.site-footer__link:hover .icon {
	transform: scale(1.12);
}

.site-footer__telegram {
	border-color: rgba(42, 171, 238, 0.45);
}

.site-footer__telegram .icon {
	color: #2aabee;
}

.site-footer__telegram:hover {
	background: rgba(42, 171, 238, 0.18);
	border-color: #2aabee;
	box-shadow: 0 8px 22px rgba(42, 171, 238, 0.25);
}

.site-footer__mail {
	border-color: rgba(255, 102, 0, 0.4);
}

.site-footer__mail .icon {
	color: var(--accent);
}

.site-footer__mail:hover {
	background: rgba(255, 102, 0, 0.16);
	border-color: var(--accent);
	box-shadow: 0 8px 22px rgba(255, 102, 0, 0.28);
}

.page-home .site-footer {
	display: none;
}

@media (max-width: 900px) {
	.site-footer__copy {
		white-space: normal;
		font-size: 15px;
	}

	.site-footer__row {
		justify-content: flex-start;
	}
}

/* Tablet */
@media (max-width: 1199px) {
	.topbar-address {
		display: none;
	}

	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.hero__track {
		height: calc(100vh - 120px);
		min-height: 480px;
	}

	body.page-home .hero__track {
		height: auto;
		min-height: 0;
	}

	body.page-home .contact-bar__item {
		font-size: 13px;
	}

	body.page-home .contact-bar__label {
		font-size: 14px;
	}
}

@media (max-width: 991px) {
	.contact-strip__grid {
		grid-template-columns: 1fr 1fr;
	}

	.contact-strip__phone {
		grid-column: 1 / -1;
	}

	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	body.nav-kontakty .contacts-block {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	body.nav-kontakty .contacts-info {
		grid-template-columns: 1fr 1fr;
	}

	body.nav-kontakty .yandex-map__frame-wrap {
		height: 187px;
	}

	body.nav-kontakty .contacts-head__text {
		display: none;
	}

	body.nav-kontakty .inner-card--contacts {
		width: min(858px, 100%);
	}
}

/* Mobile */
@media (max-width: 767px) {
	.container {
		width: calc(100% - 24px);
	}

	.site-header {
		position: sticky;
	}

	.topbar {
		position: relative;
		padding: 8px 12px;
		gap: 10px;
	}

	.topbar__actions {
		display: none;
	}

	.logo-link {
		padding: 6px 8px;
	}

	.logo-img {
		max-height: 36px;
	}

	.nav-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		margin-left: auto;
	}

	.main-nav {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: var(--surface);
		padding: 12px 16px 16px;
		border-bottom: 1px solid rgba(255, 102, 0, 0.25);
		z-index: 120;
		box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
	}

	.main-nav.is-open {
		display: block;
	}

	.main-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 6px;
	}

	.main-nav__link {
		width: 100%;
		justify-content: flex-start;
		padding: 12px 14px;
	}

	.logo-text {
		display: none;
	}

	.hero__track {
		height: 55vh;
		min-height: 280px;
	}

	.hero__content {
		margin-left: 12px;
		margin-right: 12px;
		padding: 20px 0;
		max-width: none;
	}

	.hero__title {
		font-size: 22px;
	}

	.hero__desc {
		font-size: 13px;
	}

	.btn-primary {
		padding: 9px 14px;
		font-size: 12px;
	}

	/* Home: one screen, compact bottom blocks */
	body.page-home {
		overflow: hidden;
	}

	body.page-home .hero__title {
		font-size: 20px;
	}

	body.page-home .hero__desc {
		font-size: 12px;
		margin-bottom: 10px;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	body.page-home .hero__content {
		padding: 16px 0;
	}

	body.page-home .contact-bar {
		padding: 6px 0;
	}

	body.page-home .contact-bar__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 4px;
	}

	body.page-home .contact-bar__item {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 4px;
		font-size: 11px;
		min-width: 0;
	}

	body.page-home .contact-bar__item .icon {
		font-size: 14px;
		padding: 5px;
		border-width: 1.5px;
	}

	body.page-home .contact-bar__label {
		display: none;
	}

	body.page-home .contact-bar__item a,
	body.page-home .contact-bar__item span:not(.contact-bar__label) {
		font-size: 11px;
		line-height: 1.25;
		word-break: break-word;
	}

	body.page-home .contact-strip {
		padding: 6px 0 8px;
	}

	body.page-home .contact-strip__title {
		font-size: 10px;
		margin-bottom: 6px;
	}

	body.page-home .side-contacts {
		display: none;
	}

	.contact-strip__grid {
		grid-template-columns: 1fr 1fr;
		gap: 8px 10px;
	}

	.contact-strip__phone {
		grid-column: 1 / -1;
	}

	.phone-link {
		padding: 10px 14px 10px 12px;
		gap: 8px;
	}

	.phone-link__num {
		font-size: 17px;
	}

	.phone-link__icon {
		width: 30px;
		height: 30px;
	}

	.icon-pill {
		width: 38px;
		height: 38px;
	}

	.icon-row {
		gap: 8px;
	}

	.side-contacts {
		left: auto;
		right: 10px;
		top: auto;
		bottom: 12px;
		transform: none;
		flex-direction: column;
		gap: 8px;
	}

	.side-contacts__btn {
		width: 44px;
		height: 44px;
		font-size: 15px;
	}

	.chat-widget {
		width: 48px;
		height: 48px;
	}

	.chat-widget__avatar,
	.chat-widget__pulse {
		width: 44px;
		height: 44px;
	}

	.chat-widget__tip {
		display: none;
	}

	.services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px 10px;
	}

	.service-item__circle {
		width: 84px;
		height: 84px;
	}

	.service-item__circle .icon {
		width: 24px;
		height: 24px;
	}

	.service-item__price {
		font-size: 10px;
		padding: 2px 6px;
	}

	.service-item__label {
		font-size: 12px;
		line-height: 1.3;
	}

	.inner-card {
		padding: 16px 14px;
	}

	.inner-page h1 {
		font-size: clamp(22px, 6vw, 28px);
	}

	.yandex-map__frame {
		height: 280px;
	}

	/* Contacts page: scrollable, full width, 1 column */
	html:has(body.nav-kontakty),
	body.nav-kontakty {
		height: auto;
		max-height: none;
		overflow: auto;
	}

	body.nav-kontakty {
		display: block;
		min-height: 100dvh;
	}

	body.nav-kontakty main {
		display: block;
		overflow: visible;
		min-height: 0;
	}

	body.nav-kontakty .inner-page--contacts {
		display: block;
		padding: 12px 0 16px;
		overflow: visible;
		min-height: 0;
	}

	body.nav-kontakty .inner-page--contacts > .container {
		width: calc(100% - 24px);
		margin: 0 auto;
		display: block;
	}

	body.nav-kontakty .inner-card--contacts {
		width: 100%;
		padding: 14px 12px;
		gap: 12px;
		overflow: visible;
	}

	body.nav-kontakty .contacts-head h1 {
		font-size: 24px;
	}

	body.nav-kontakty .contacts-block {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	body.nav-kontakty .contacts-info {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	body.nav-kontakty .contacts-info__item {
		padding: 10px 12px;
	}

	body.nav-kontakty .contacts-info__item strong {
		font-size: 14px;
	}

	body.nav-kontakty .contacts-info__item p {
		font-size: 13px;
	}

	body.nav-kontakty .yandex-map__toolbar .yandex-map__title {
		font-size: 16px;
	}

	body.nav-kontakty .yandex-map__frame-wrap {
		height: 220px;
		min-height: 220px;
		position: relative;
	}

	body.nav-kontakty .yandex-map__frame {
		position: absolute;
		inset: 0;
		height: 100%;
	}

	body.nav-kontakty .side-contacts {
		display: none;
	}

	body.nav-kontakty .contact-strip {
		position: relative;
		z-index: 1;
	}

	.service-cta {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.service-cta .btn-primary {
		justify-content: center;
		text-align: center;
	}

	.service-hero {
		margin: 12px 0;
	}

	.modal {
		max-width: calc(100vw - 24px);
	}

	.modal__panel {
		padding: 16px;
	}

	.site-footer {
		padding: 14px 0 72px;
	}

	.site-footer__copy {
		font-size: 13px;
		line-height: 1.4;
	}

	.site-footer__row {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.site-footer__sites {
		flex-wrap: wrap;
	}
}
