@font-face {
	font-family: "Evolventa";
	src: url("../fonts/Evolventa-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Evolventa";
	src: url("../fonts/Evolventa-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "VCR OSD Mono";
	src: url("../fonts/vcrosdmonorusbydaymarius.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--bg-dark: #2f3035;
	--bg-deep: #242529;
	--text-main: #ffffff;
	--text-muted: #d1d1d3;
	--accent: #ea4452;
	--border-light: rgba(255, 255, 255, 0.28);
	--border-accent: rgba(234, 68, 82, 0.7);
	--container: 1380px;
	--header-h: 95px;
	--guide-offset: max(20px, calc((100vw - var(--container)) / 2));
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Evolventa", sans-serif;
	font-size: 18px;
	line-height: 1;
	color: #242529;
	background: #f5f5f7;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	width: min(100% - 40px, var(--container));
	margin-inline: auto;
}

.section {
	padding: 92px 0;
}

.section-dark {
	position: relative;
	color: var(--text-main);
	background: var(--bg-dark) center / cover no-repeat;
	background-image: url("../img/background.png");
}

.section-title {
	margin: 0 0 42px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.section-title--left {
	text-align: left;
}

.site-grid-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.site-grid-overlay::before,
.site-grid-overlay::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1px;
	background: rgba(255, 255, 255, 0.12);
}

.site-grid-overlay::before {
	left: var(--guide-offset);
}

.site-grid-overlay::after {
	left: calc(100vw - var(--guide-offset));
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(36, 37, 41, 0.92) center / cover no-repeat;
	background-image: url("../img/background.png");
	backdrop-filter: blur(6px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header::before,
.site-header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.12);
	pointer-events: none;
	z-index: 2;
}

.site-header::before {
	display: none;
}

.site-header::after {
	bottom: 0;
}

.header-inner {
	position: relative;
	z-index: 1;
	min-height: var(--header-h);
	display: grid;
	grid-template-columns: 138px 1fr auto auto auto;
	align-items: center;
	gap: 22px;
}

.site-logo img {
	width: 123px;
	height: 40px;
	object-fit: contain;
}

.site-logo {
	transform: translateX(18px);
}

.main-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	font-size: 15px;
	color: #d9d9dd;
}

.main-nav a {
	transition: color 0.25s ease;
}

.main-nav a:hover {
	color: #fff;
}

.header-contacts {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 9px;
}

.contact-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #f0f0f0;
}

.contact-item img {
	width: 16px;
	height: 16px;
}

.header-socials {
	display: flex;
	gap: 8px;
}

.header-contacts,
.header-socials,
.header-inner > .accent-button {
	transform: translateX(-2px);
}

.header-socials a {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0;
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	transition: transform 0.25s ease;
}

.header-socials a:hover {
	transform: scale(1.12);
}

.header-socials a img {
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.accent-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px;
	border: 0;
	background: var(--accent);
	color: #fff;
	font-family: "Evolventa", sans-serif;
	font-size: 16px;
	cursor: pointer;
	transition: transform 0.25s ease, background-color 0.25s ease;
}

.accent-button::before,
.accent-button::after {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	border-color: var(--accent);
	border-style: solid;
	transition: transform 0.25s ease;
}

.accent-button::before {
	top: -5px;
	left: -5px;
	border-width: 2px 0 0 2px;
}

.accent-button::after {
	right: -5px;
	bottom: -5px;
	border-width: 0 2px 2px 0;
}

.accent-button:hover {
	transform: scale(1.03);
}

.accent-button:hover::before {
	transform: translate(-2px, -2px);
}

.accent-button:hover::after {
	transform: translate(2px, 2px);
}

.menu-toggle,
.mobile-menu {
	display: none;
}

.header-mobile-social {
	display: none;
}

.hero-section {
	position: relative;
	background: var(--bg-dark) center / cover no-repeat;
	background-image: url("../img/background.png");
	padding: 0;
	color: #fff;
	overflow: hidden;
	height: calc(100svh - var(--header-h));
	min-height: calc(100svh - var(--header-h));
	display: flex;
	flex-direction: column;
}

.service-landing-section {
	height: calc(100svh - var(--header-h));
	min-height: calc(100svh - var(--header-h));
}

.service-landing-main {
	flex: 1;
}

.service-landing-inner {
	align-items: start;
}

.service-landing-content {
	align-content: start;
	padding-top: 0;
	transform: none;
	min-height: 0;
	align-self: start;
	gap: 20px;
}

.service-landing-breadcrumbs {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 20px;
	font-size: 12px;
	line-height: 1;
	color: #efeff1;
}

.service-landing-breadcrumbs span:last-child {
	color: var(--accent);
}

.service-landing-breadcrumbs a:hover {
	color: #fff;
}

.service-landing-content h1 {
	max-width: 900px;
	margin: 0 0 18px;
	font-size: 56px;
	font-weight: 400;
	line-height: 1.2;
}

.service-landing-title-accent {
	color: var(--accent);
}

.service-landing-content p {
	max-width: 800px;
	margin: 0 0 26px;
	font-size: 26px;
	color: #f0f0f2;
	line-height: 1.3;
}

.service-landing-content .accent-button {
	justify-self: start;
}

.service-landing-image img {
	width: 100%;
	height: 100%;
	max-height: 940px;
	object-fit: cover;
	object-position: top center;
}

.service-about-section {
	background: #ececee;
	color: #2b2d33;
	border-top: 1px solid rgba(234, 56, 76, 0.4);
}

.service-about-title {
	margin: 0 0 28px;
	text-align: center;
	font-family: "Evolventa", sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.service-about-grid {
	display: grid;
	grid-template-columns: 663px minmax(0, 1fr);
	gap: 34px;
	align-items: start;
	justify-content: center;
}

.service-about-image-wrap {
	position: relative;
	width: 663px;
	height: 295px;
}

.service-about-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.service-about-pin {
	position: absolute;
	left: -27px;
	top: -29px;
	width: 66px;
	height: 64px;
	transform: rotate(25deg);
	object-fit: contain;
	z-index: 2;
}

.service-about-corner {
	position: absolute;
	width: 24px;
	height: 24px;
	pointer-events: none;
}

.service-about-corner::before,
.service-about-corner::after {
	content: "";
	position: absolute;
	background: var(--accent);
}

.service-about-corner--top-right {
	right: -8px;
	top: -8px;
}

.service-about-corner--top-right::before {
	top: 0;
	right: 0;
	width: 2px;
	height: 24px;
}

.service-about-corner--top-right::after {
	top: 0;
	right: 0;
	width: 24px;
	height: 2px;
}

.service-about-corner--bottom-left {
	left: -8px;
	bottom: -8px;
}

.service-about-corner--bottom-left::before {
	bottom: 0;
	left: 0;
	width: 2px;
	height: 24px;
}

.service-about-corner--bottom-left::after {
	bottom: 0;
	left: 0;
	width: 24px;
	height: 2px;
}

.service-about-content {
	display: grid;
	gap: 20px;
	align-content: start;
	padding-top: 0;
	align-self: start;
}

.service-about-text {
	margin: 0;
	font-family: "Evolventa", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
	color: #3b3d44;
}

.service-about-content .accent-button {
	justify-self: start;
}

.service-about-toggle {
	display: none;
}

.service-rates-section {
	background: #ececee;
	color: #2b2d33;
	padding-top: 70px;
}

.service-rates-title {
	margin: 0 0 32px;
	text-align: center;
	font-family: "Evolventa", sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
}

.service-rates-slider {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
}

.service-rates-arrow {
	transition: opacity 0.2s ease;
}

.service-rates-track {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	cursor: grab;
}

.service-rates-track.is-dragging {
	cursor: grabbing;
}

.service-rates-card {
	border: 1px solid rgba(234, 56, 76, 0.4);
	background: transparent;
	padding: 22px 18px 20px;
	min-height: 246px;
	display: flex;
	flex-direction: column;
}

.service-rates-card h3 {
	margin: 0 0 12px;
	font-family: "Evolventa", sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	color: var(--accent);
	text-transform: uppercase;
}

.service-rates-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.service-rates-card li {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 8px;
	font-family: "Evolventa", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	color: #2e3037;
}

.service-rates-card li img {
	width: 10px;
	height: 10px;
	flex-shrink: 0;
	object-fit: contain;
}

.service-rates-price {
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
	text-align: right;
	white-space: nowrap;
}

.service-rates-mobile-toggle {
	display: none;
	margin-top: 14px;
	border: 1px solid var(--accent);
	background: transparent;
	color: var(--accent);
	font-family: "Evolventa", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	padding: 10px 16px;
	cursor: pointer;
}

.service-stages-section {
	background: #ececee;
	color: #2b2d33;
	padding-top: 40px;
}

.service-stages-title {
	margin: 0 0 70px;
	font-family: "Evolventa", sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
}

.service-stages-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 6px;
	padding-top: 24px;
}

.service-stage-card {
	position: relative;
	border: 1px solid rgba(234, 56, 76, 0.6);
	padding: 10px 10px 9px;
	min-height: 74px;
	background: transparent;
}

.service-stage-number {
	position: absolute;
	left: -1px;
	top: -22px;
	width: calc(var(--stage-fill) + 2px);
	max-width: calc(100% + 2px);
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--accent);
	color: #fff;
	font-family: "Evolventa", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.service-stage-card p {
	margin: 0;
	text-align: center;
	font-family: "Evolventa", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	color: #2e3037;
}

.service-info-section {
	background: #ececee;
	color: #2b2d33;
}

.service-info-layout {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.service-info-layout__title {
	padding-top: 36px;
}

.service-info-layout__list {
	min-width: 0;
}

.service-info-title {
	margin: 0;
	font-family: "Evolventa", sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
}

.service-info-list {
	display: flex;
	flex-direction: column;
	border-top: 1px solid rgba(56, 56, 56, 0.2);
}

.service-info-item {
	position: relative;
	padding: 20px 0;
	border-bottom: 1px solid rgba(56, 56, 56, 0.2);
	min-height: 190px;
	height: auto;
	display: grid;
	align-content: center;
	overflow: hidden;
}

.service-info-item.has-desc {
	min-height: 252px;
}

.service-info-item__body {
	display: grid;
	gap: 10px;
	max-width: 760px;
}

.service-info-item__titleline {
	display: flex;
	align-items: center;
	min-height: 60px;
	position: relative;
	padding-left: 82px;
	cursor: default;
}

.service-info-item__titleline .icon-outline {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 35px;
	height: 35px;
	border: 1px solid var(--accent);
}

.service-info-item h3 {
	margin: 0;
	font-family: "Evolventa", sans-serif;
	font-size: 38px;
	font-weight: 400;
	line-height: 1.1;
	transition: color 0.25s ease, font-size 0.25s ease, line-height 0.25s ease;
}

.service-info-item p {
	margin: 0;
	font-family: "Evolventa", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	color: #9a9aa0;
	opacity: 0;
	min-height: 48px;
	padding-left: 82px;
	transform: translateY(8px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	max-width: 620px;
	pointer-events: none;
}

.service-info-item:not(.has-desc) p {
	display: none;
}

.service-info-item.has-desc:hover .spin-icon,
.service-info-item.has-desc:focus-within .spin-icon {
	transform: rotate(360deg);
}

.service-info-item.has-desc:hover h3,
.service-info-item.has-desc:focus-within h3 {
	color: var(--accent);
	font-size: 48px;
	line-height: 1;
}

.service-info-item.has-desc:hover p,
.service-info-item.has-desc:focus-within p {
	opacity: 1;
	transform: translateY(0);
}

.hero-main {
	flex: 1;
	display: flex;
	align-items: stretch;
	width: 100%;
	min-height: 0;
}

.hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 998px) 336px;
	justify-content: space-between;
	gap: 46px;
	align-items: center;
	min-height: 100%;
}

.hero-content h1 {
	max-width: 900px;
	margin: 0;
	font-size: 56px;
	font-weight: 400;
	line-height: 1.2;
}

.hero-content {
	width: 998px;
	max-width: 100%;
	min-height: 326px;
	display: grid;
	gap: 32px;
	align-content: center;
	padding: 0;
	padding-left: 26px;
	align-self: center;
}

.hero-content p {
	max-width: 800px;
	margin: 0;
	font-size: 26px;
	color: #f2f2f4;
	line-height: 1.3;
}

.hero-content > .accent-button {
	justify-self: start;
	align-self: start;
}

.hero-image {
	align-self: stretch;
	display: flex;
	justify-content: flex-end;
	justify-self: end;
	width: 336px;
}

.hero-image img {
	width: 100%;
	height: 100%;
	max-height: 940px;
	object-fit: cover;
	object-position: top center;
}

.hero-inner.service-landing-inner {
	align-items: center;
}

.hero-inner.service-landing-inner .service-landing-content {
	align-self: center;
	align-content: center;
	padding-top: 0;
	margin-top: 0;
	min-height: 0;
	gap: 24px;
}

.hero-inner.service-landing-inner .service-landing-breadcrumbs {
	position: absolute;
	top: 18px;
	left: 26px;
	margin: 0;
}

.marquee-section {
	background: var(--accent);
	overflow: hidden;
	height: 68px;
	padding: 0;
	position: relative;
	z-index: 3;
	flex: 0 0 68px;
	display: flex;
	align-items: center;
}

.marquee-items {
	display: flex;
	flex: 0 0 auto;
	gap: 16px;
	white-space: nowrap;
	align-items: center;
}

.marquee-track {
	display: flex;
	width: max-content;
	animation: ticker 30s linear infinite;
	align-items: center;
	height: 100%;
}

.marquee-items span {
	font-family: "VCR OSD Mono", monospace;
	font-size: 26px;
	color: #fff;
	text-transform: uppercase;
	line-height: 1;
	padding: 0 8px;
}

@keyframes ticker {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.about-section {
	background: #f4f4f6;
}

.about-inner {
	display: grid;
	grid-template-columns: minmax(290px, 420px) 455px minmax(290px, 420px);
	gap: 24px 40px;
	align-items: center;
	justify-content: center;
}

.about-title {
	grid-column: 1 / -1;
	margin: 0 0 10px;
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
}

.about-side h2 {
	margin: 0 0 24px;
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
}

.about-caps {
	font-family: "VCR OSD Mono", monospace;
	font-size: 30px;
	line-height: 1.1;
	text-transform: uppercase;
	max-width: 390px;
	position: relative;
	padding: 12px 14px;
}

.about-caps::before,
.about-caps::after {
	content: "";
	position: absolute;
	width: 22px;
	height: 22px;
	border-color: var(--accent);
	border-style: solid;
	border-width: 2px;
}

.about-caps::before {
	top: 0;
	left: 0;
	border-right: 0;
	border-bottom: 0;
}

.about-caps::after {
	right: 50;
	bottom: 0;
	border-left: 0;
	border-top: 0;
}

.about-caps__first {
	color: var(--accent);
}

.about-side--right p {
	margin: 0 0 30px;
	line-height: 1.25;
}

.about-photo {
	position: relative;
	padding: 0;
	transform: rotate(2.37deg);
	justify-self: center;
}

.about-photo > img:last-child {
	width: 455px;
	height: 580px;
	max-width: 100%;
	object-fit: cover;
	transform: rotate(0);
}

.about-photo::before,
.about-photo::after {
	content: "";
	position: absolute;
	width: 22px;
	height: 22px;
	border-color: var(--accent);
	border-style: solid;
	border-width: 2px;
	z-index: 3;
}

.about-photo::before {
	left: 10px;
	top: -7px;
	border-right: 0;
	border-bottom: 0;
}

.about-photo::after {
	right: 17px;
	bottom: -7px;
	border-left: 0;
	border-top: 0;
}

.about-pin {
	position: absolute;
	width: 58px;
	top: -12px;
	right: -16px;
	z-index: 3;
	transform: rotate(-2.37deg);
}

.about-note {
	max-width: 390px;
	margin-top: 74px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
}

.about-side--right {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	justify-self: start;
}

.about-side--left {
	justify-self: end;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(4, 337px);
	grid-auto-rows: 210px;
	gap: 14px;
	justify-content: center;
}

.advantage-card {
	border: 1px solid var(--accent);
	padding: 20px;
	height: 116px;
	text-align: center;
	background: transparent;
	display: grid;
	gap: 7px;
	align-content: start;
	align-self: start;
	transition: border-color 0.3s ease, transform 0.3s ease, height 0.32s ease;
	overflow: hidden;
}

.advantage-icon-wrap {
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.spin-icon {
	width: 18px;
	height: 18px;
	transition: transform 0.5s ease;
}

.advantage-card h3 {
	margin: 0;
	font-family: "VCR OSD Mono", monospace;
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}

.advantage-card h3 span {
	color: var(--accent);
}

.advantage-card p {
	margin: 0;
	font-size: 16px;
	line-height: 1.2;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: opacity 0.3s ease, transform 0.3s ease;
	color: #d8d8dc;
	font-family: "Evolventa", sans-serif;
	text-align: center;
	transform: translateY(8px);
}

.advantage-card:hover {
	border-color: var(--accent);
	transform: translateY(-2px);
	height: 250px;
}

.advantage-card:hover .spin-icon {
	transform: rotate(360deg);
}

.advantage-card:hover p {
	opacity: 1;
	transform: translateY(0);
	max-height: 130px;
}

.advantages-stats {
	margin: 22px 0 32px;
	background: var(--accent);
	height: 84px;
	padding: 6px 0;
}

.advantages-section .section-title {
	text-align: left;
}

.advantages-stats__inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 116px;
}

.stat-item {
	text-align: center;
	font-family: "Evolventa", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1;
}

.stat-item strong,
.stat-item span {
	display: block;
	font-weight: 400;
	font-size: 18px;
	line-height: 1;
}

.stat-item span {
	margin-top: 8px;
}

.services-layout {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.services-layout__title {
	padding-top: 36px;
}

.services-layout__list {
	min-width: 0;
}

.services-list {
	display: flex;
	flex-direction: column;
	border-top: 1px solid rgba(56, 56, 56, 0.2);
}

.services-item {
	position: relative;
	padding: 20px 0;
	border-bottom: 1px solid rgba(56, 56, 56, 0.2);
	min-height: 246px;
	display: grid;
	align-content: center;
}

.services-item__hit {
	position: absolute;
	inset: 0;
	z-index: 9;
}

.icon-outline {
	width: 42px;
	height: 42px;
	border: 1px solid var(--accent);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.services-item h3 {
	margin: 0;
	font-size: 38px;
	font-weight: 400;
	line-height: 1.1;
	transition: color 0.25s ease;
	position: relative;
	z-index: 3;
}

.services-item h3 a {
	color: inherit;
}

.services-item__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 337px;
	gap: 26px;
	margin-top: 0;
	min-height: 180px;
	max-height: 180px;
	overflow: hidden;
	opacity: 1;
	transition: opacity 0.3s ease;
	position: relative;
	z-index: 2;
	align-items: center;
}

.services-item__text {
	position: relative;
	display: grid;
	gap: 8px;
	align-content: center;
	max-width: 440px;
	justify-self: end;
}

.services-item__titleline {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding-left: 0;
	position: relative;
}

.services-item__titleline .icon-outline {
	position: absolute;
	left: -260px;
	top: 50%;
	transform: translateY(-50%);
}

.services-item__body p {
	margin: 0;
	font-size: 16px;
	line-height: 1;
	color: #9a9aa0;
	max-width: 340px;
	padding-left: 0;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.services-item__preview img {
	width: 337px;
	height: 180px;
	object-fit: cover;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.services-item:hover h3 {
	color: var(--accent);
}

.services-item:hover .services-item__body {
	opacity: 1;
}

.services-item:hover .spin-icon {
	transform: rotate(360deg);
}

.services-item:hover .services-item__body p,
.services-item:hover .services-item__preview img {
	opacity: 1;
	transform: translateY(0);
}

.spheres-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.spheres-section .section-title {
	text-align: center;
}

.sphere-card {
	position: relative;
	min-height: 365px;
	border: 1px solid var(--accent);
	padding: 26px 18px;
	overflow: hidden;
}

.sphere-card h3 {
	margin: 0 0 16px;
	font-size: 22px;
	font-family: "VCR OSD Mono", monospace;
	text-transform: uppercase;
	color: var(--accent);
}

.sphere-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.sphere-card li {
	display: flex;
	gap: 8px;
	align-items: center;
	font-size: 16px;
}

.sphere-card li img {
	width: 12px;
	height: 12px;
}

.sphere-image {
	position: absolute;
	right: 18px;
	width: 180px;
	height: 180px;
	object-fit: cover;
	border: 1px solid var(--accent);
}

.sphere-card--bottom-right .sphere-image {
	bottom: 18px;
}

.sphere-card--top-right .sphere-image {
	top: 15px;
}

.cta-section {
	padding: 0px 0 0;
	position: relative;
	color: #fff;
	background: var(--bg-dark) center / cover no-repeat;
	background-image: url("../img/form.png");
	overflow: visible;
}

.cta-inner {
	display: grid;
	grid-template-columns: minmax(0, 685px) minmax(280px, 380px);
	gap: 40px;
	align-items: end;
	background: transparent;
	padding: 0;
	border: 0;
	overflow: visible;
}

.cta-content {
	margin-top: 110px;
	align-self: start;
}

.cta-content h2 {
	margin: 0 0 18px;
	max-width: 520px;
	font-family: "VCR OSD Mono", monospace;
	font-size: 30px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
}

.cta-content p {
	margin: 0 0 24px;
	max-width: 349px;
	font-size: 18px;
	line-height: 1;
	color: #f0f0f2;
}

.cta-success h2 {
	margin: 0 0 16px;
	max-width: 520px;
	font-family: "VCR OSD Mono", monospace;
	font-size: 30px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
}

.cta-success p {
	margin: 0;
	font-family: "Evolventa", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	color: #f0f0f2;
}

.oc-form {
	display: grid;
	gap: 10px;
	max-width: 500px;
}

.cta-content .oc-form {
	gap: 8px;
	max-width: 450px;
}

.oc-form input[type="text"] {
	width: 450px;
	max-width: 100%;
	height: 42px;
	padding: 15px;
	font-family: "Evolventa", sans-serif;
	font-size: 16px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: transparent;
	color: #fff;
}

.oc-form input[type="text"]::placeholder {
	color: rgba(255, 255, 255, 0.75);
}

.consent {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.82);
}

.consent a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.consent input {
	width: 14px;
	height: 14px;
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid rgba(255, 255, 255, 0.7);
	background: transparent;
	position: relative;
	cursor: pointer;
}

.consent input::after {
	content: "";
	position: absolute;
	left: 3px;
	top: 0;
	width: 4px;
	height: 8px;
	border: solid #fff;
	border-width: 0 1.5px 1.5px 0;
	transform: rotate(45deg);
	opacity: 0;
}

.consent input:checked::after {
	opacity: 1;
}

.cta-content .oc-form .accent-button {
	justify-self: start;
	width: auto;
	min-width: 0;
	margin-top: 10px;
}

.cta-content .oc-form input[type="text"] {
	height: 40px;
	padding: 10px 15px;
}

.cta-image {
	display: flex;
	align-self: end;
	justify-content: flex-end;
	overflow: visible;
}

.cta-image img {
	width: 430px;
	max-width: none;
	height: auto;
	margin-top: -40px;
	margin-bottom: 0px;
	transform: translateX(18px);
	object-fit: contain;
	object-position: bottom right;
}

.form-honeypot {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.tariffs-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	align-items: stretch;
}

.tariffs-title {
	text-align: center;
}

.tariff-card {
	border: 1px solid var(--accent);
	background: #fff;
	padding: 12px 12px 14px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.tariff-card h3 {
	margin: 0 0 10px;
	font-family: "VCR OSD Mono", monospace;
	font-size: 38px;
	font-weight: 400;
	line-height: 1;
	color: var(--accent);
	text-transform: uppercase;
}

.tariff-card ul {
	list-style: none;
	margin: 0 0 14px;
	padding: 0;
	display: grid;
	gap: 10px;
	flex: 1;
}

.tariff-card li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: "Evolventa", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
}

.tariff-dot {
	width: 10px;
	min-width: 10px;
	height: 10px;
	min-height: 10px;
	border-radius: 50%;
	background: #57af64;
	flex: 0 0 10px;
}

.tariff-card li.is-inactive .tariff-dot {
	background: var(--accent);
}

.tariff-card li.is-inactive span:last-child {
	color: #9a9aa0;
}

.tariff-prices {
	display: grid;
	gap: 0;
	margin-top: auto;
}

.tariff-prices div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	line-height: 1;
}

.tariff-prices div + div {
	border-top: 1px solid rgba(56, 56, 56, 0.25);
}

.tariff-prices span,
.tariff-prices strong {
	font-family: "Evolventa", sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.reviews-section {
	background: #ececee;
}

.reviews-slider {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 14px;
	overflow: visible;
}

.reviews-arrow {
	border: 0;
	background: transparent;
	cursor: pointer;
	display: grid;
	place-items: center;
	padding: 0;
	width: 92px;
	height: 60px;
	line-height: 1;
	overflow: visible;
}

.reviews-arrow:disabled {
	pointer-events: none;
}

.reviews-arrow__lane {
	position: relative;
	width: 92px;
	height: 60px;
	overflow: visible;
}

.reviews-arrow__slot,
.reviews-arrow__red {
	position: absolute;
	width: 21.998px;
	height: 30.001px;
	top: 15px;
	left: 19px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.reviews-arrow__slot {
	background-image: url("../img/reviews_arrow_black_left.png");
}

.reviews-arrow__slot:nth-child(1) {
	left: 19px;
}

.reviews-arrow__slot:nth-child(2) {
	left: 33px;
}

.reviews-arrow__slot:nth-child(3) {
	left: 47px;
}

.reviews-arrow__red {
	background-image: url("../img/reviews_arrow_red_left.png");
	z-index: 2;
	left: 19px;
}

.reviews-arrow--next .reviews-arrow__lane {
	transform: scaleX(-1);
}

@keyframes reviewsArrowRedStep {
	0%,
	24.99% {
		left: 19px;
	}
	25%,
	49.99% {
		left: 33px;
	}
	50%,
	74.99% {
		left: 47px;
	}
	75%,
	100% {
		left: 19px;
	}
}

@keyframes reviewsArrowBlack1 {
	0%,
	24.99% {
		opacity: 0;
	}
	25%,
	100% {
		opacity: 1;
	}
}

@keyframes reviewsArrowBlack2 {
	0%,
	24.99% {
		opacity: 1;
	}
	25%,
	49.99% {
		opacity: 0;
	}
	50%,
	100% {
		opacity: 1;
	}
}

@keyframes reviewsArrowBlack3 {
	0%,
	49.99% {
		opacity: 1;
	}
	50%,
	74.99% {
		opacity: 0;
	}
	75%,
	100% {
		opacity: 1;
	}
}

.reviews-arrow:hover .reviews-arrow__red {
	animation: reviewsArrowRedStep 1.1s steps(1, end) infinite;
}

.reviews-arrow:hover .reviews-arrow__slot:nth-child(1) {
	animation: reviewsArrowBlack1 1.1s steps(1, end) infinite;
}

.reviews-arrow:hover .reviews-arrow__slot:nth-child(2) {
	animation: reviewsArrowBlack2 1.1s steps(1, end) infinite;
}

.reviews-arrow:hover .reviews-arrow__slot:nth-child(3) {
	animation: reviewsArrowBlack3 1.1s steps(1, end) infinite;
}

.reviews-arrow:disabled .reviews-arrow__slot,
.reviews-arrow:disabled .reviews-arrow__red {
	opacity: 0.4;
}

.reviews-track {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 6px;
	min-height: 260px;
	align-items: stretch;
	touch-action: pan-y;
	user-select: none;
	cursor: grab;
	overflow: visible;
}

.reviews-track.is-dragging {
	cursor: grabbing;
}

.reviews-mobile-toggle {
	display: none;
	margin-top: 14px;
	border: 1px solid var(--accent);
	background: transparent;
	color: var(--accent);
	font-family: "Evolventa", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	padding: 10px 16px;
	cursor: pointer;
}

.review-card {
	background: transparent;
	border: 1px solid rgba(234, 56, 76, 0.65);
	padding: 14px 14px 12px;
	height: 260px;
	display: flex;
	flex-direction: column;
}

.review-meta {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	font-size: 14px;
	line-height: 1;
	color: #2f3137;
	margin-bottom: 8px;
}

.review-stars {
	display: flex;
	gap: 3px;
	margin: 0;
}

.review-stars img {
	width: 14.64px;
	height: 14.64px;
	object-fit: contain;
}

.review-stars img.inactive {
	filter: grayscale(1) brightness(1.05);
	opacity: 0.4;
}

.review-card h3 {
	margin: 0 0 8px;
	color: var(--accent);
	font-family: "Evolventa", sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
}

.review-card p {
	margin: 0;
	font-family: "Evolventa", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	color: #4f4f58;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
}

.review-more {
	border: 0;
	background: none;
	color: var(--accent);
	padding: 0;
	font-family: inherit;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	margin-top: auto;
	padding-top: 8px;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.review-more.is-hidden {
	visibility: hidden;
}

.review-full {
	display: none;
}

.review-full h4 {
	display: none;
}

.review-modal {
	position: fixed;
	inset: 0;
	display: none;
	z-index: 120;
}

.review-modal.is-open {
	display: block;
}

.review-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.review-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(760px, calc(100% - 40px));
	max-height: calc(100vh - 60px);
	overflow: auto;
	margin: 30px auto;
	background: #fff;
	border: 1px solid rgba(234, 56, 76, 0.65);
	padding: 20px;
}

.review-modal__close {
	position: absolute;
	top: 10px;
	right: 10px;
	border: 0;
	background: transparent;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: #2f3137;
}

.review-modal__dialog h3 {
	margin: 0 34px 10px 0;
	color: var(--accent);
	font-size: 32px;
	font-weight: 400;
	line-height: 1.05;
}

.review-modal__body {
	font-size: 20px;
	line-height: 1.15;
	color: #2f3137;
}

.review-modal__body p {
	margin: 0 0 10px;
}

.work-section-page {
	padding-top: 14px;
	background: #ececee;
}

.work-section-page__lead {
	margin: 10px 0 24px;
	max-width: 720px;
	font-size: 18px;
	line-height: 1.2;
	color: #4d4d56;
}

.work-media-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.work-media-card {
	border: 1px solid rgba(56, 56, 56, 0.2);
	padding: 10px;
	background: #fff;
}

.work-media-card__cover {
	display: grid;
	gap: 10px;
	color: inherit;
}

.work-media-card__media {
	aspect-ratio: 16 / 10;
	background: #f0f0f3;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.work-media-card__media img,
.work-media-card__media video,
.work-media-card__media iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 0;
}

.work-media-card h3 {
	margin: 0;
	font-size: 18px;
	line-height: 1.1;
}

.work-media-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.15;
	color: #6f6f78;
}

.work-media-card__link {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.work-album-content {
	display: grid;
	gap: 14px;
}

.work-album-content .wp-block-gallery,
.work-album-content .wp-block-video,
.work-album-content .wp-block-embed,
.work-album-content .wp-block-image {
	margin: 0;
}

.work-breadcrumbs {
	display: flex;
	margin: 0 0 18px;
	color: #2b2d33 !important;
}

.work-page-title {
	text-align: center;
}

.work-breadcrumbs a {
	color: #2b2d33 !important;
}

.work-breadcrumbs span {
	color: #2b2d33;
}

.work-breadcrumbs span:last-child {
	color: var(--accent) !important;
}

.work-albums-list {
	display: grid;
	gap: 26px;
}

.work-album-row {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 24px;
	padding-bottom: 18px;
}

.work-album-row__title h3 {
	margin: 0;
	font-family: "Evolventa", sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--accent);
}

.work-album-row__media {
	display: grid;
	gap: 10px;
}

.work-album-thumb-grid,
.work-album-hidden-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.work-thumb {
	appearance: none;
	border: 0;
	padding: 0;
	background: #f0f0f3;
	cursor: pointer;
	width: 338px;
	height: 212px;
	overflow: hidden;
}

.work-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.work-thumb:hover img {
	transform: scale(1.03);
}

.work-thumb--video {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(234, 56, 76, 0.5);
	background: rgba(234, 56, 76, 0.08);
	height: 58px;
}

.work-thumb--video span {
	color: var(--accent);
	font-size: 16px;
}

.work-album-row__actions {
	display: flex;
	justify-content: flex-end;
}

.work-album-toggle {
	border: 0;
	background: transparent;
	color: var(--accent);
	font-family: "Evolventa", sans-serif;
	font-size: 16px;
	text-decoration: underline;
	text-underline-offset: 2px;
	cursor: pointer;
	padding: 0;
}

.work-album-hidden {
	display: none;
}

.work-album-hidden.is-open {
	display: block;
}

.work-viewer {
	position: fixed;
	inset: 0;
	display: none;
	z-index: 130;
	padding: 24px;
}

.work-viewer.is-open {
	display: flex;
	align-items: center;
	justify-content: center;
}

.work-viewer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
}

.work-viewer__dialog {
	position: relative;
	z-index: 1;
	width: min(1180px, 100%);
	max-height: calc(100vh - 48px);
	margin: 0;
	background: linear-gradient(180deg, #15161c 0%, #090a0e 100%);
	border: 1px solid rgba(234, 56, 76, 0.65);
	padding: 14px;
	box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	gap: 12px;
	overflow: hidden;
}

.work-viewer__top {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 0 0 10px;
}

.work-viewer__close {
	position: static;
	justify-self: end;
	border: 0;
	background: transparent;
	width: 42px;
	height: 42px;
	padding: 0;
	cursor: pointer;
}

.work-viewer__close img {
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.work-viewer__stage {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) 56px;
	gap: 14px;
	align-items: center;
	min-height: 0;
}

.work-viewer__nav {
	position: static;
	width: 56px;
	height: 56px;
	border: 1px solid rgba(234, 56, 76, 0.65);
	border-radius: 50%;
	background: rgba(10, 11, 16, 0.7);
	color: transparent;
	font-size: 0;
	line-height: 1;
	padding: 0;
	cursor: pointer;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.work-viewer__nav::before {
	content: "";
	width: 14px;
	height: 14px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	display: block;
}

.work-viewer__nav--prev::before {
	transform: rotate(-45deg);
	margin-left: 5px;
}

.work-viewer__nav--next::before {
	transform: rotate(135deg);
	margin-right: 5px;
}

.work-viewer__nav:hover {
	background: rgba(234, 56, 76, 0.95);
	border-color: rgba(234, 56, 76, 0.95);
	transform: translateY(-1px);
}

.work-viewer__nav--prev {
	justify-self: start;
}

.work-viewer__nav--next {
	justify-self: end;
}

.work-viewer__meta {
	grid-column: 2;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	text-align: center;
}

.work-viewer__content {
	min-width: 0;
	min-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.work-viewer__content.is-loading::before {
	content: "";
	position: absolute;
	width: 42px;
	height: 42px;
	border: 2px solid rgba(255, 255, 255, 0.25);
	border-top-color: var(--accent);
	border-radius: 50%;
	animation: viewerSpin 0.85s linear infinite;
	z-index: 2;
}

@keyframes viewerSpin {
	to {
		transform: rotate(360deg);
	}
}

.work-viewer__content img,
.work-viewer__content video,
.work-viewer__content iframe {
	width: 100%;
	max-height: calc(100vh - 170px);
	object-fit: contain;
	border: 0;
	background: #05060a;
	box-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
}

.work-viewer__content img.is-preview {
	filter: blur(2px);
	opacity: 0.75;
}

.site-main {
	background: #ececee;
	padding-bottom: 0;
}

.contacts-page-main {
	background: #ececee;
}

.contacts-page {
	padding-top: 34px;
	padding-bottom: 92px;
}

.contacts-breadcrumbs {
	display: flex;
	margin: 0 0 28px;
	color: #2b2d33 !important;
}

.contacts-breadcrumbs a,
.contacts-breadcrumbs span {
	color: #2b2d33;
}

.contacts-breadcrumbs span:last-child {
	color: var(--accent) !important;
}

.contacts-page__title {
	margin: 0 0 22px;
	font-family: "Evolventa", sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.contacts-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 560px) minmax(360px, 1fr);
	gap: 14px;
	align-items: start;
}

.contacts-page__map {
	width: 560px;
	max-width: 100%;
	height: 282px;
	overflow: hidden;
	background: #dedee2;
}

.contacts-page__map > div,
.contacts-page__map iframe {
	width: 100% !important;
	height: 100% !important;
	display: block;
	border: 0;
}

.contacts-page__info {
	padding-top: 6px;
}

.contacts-page__info h2 {
	margin: 0 0 12px;
	font-family: "Evolventa", sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	color: var(--accent);
}

.contacts-page__links {
	display: grid;
	gap: 2px;
	max-width: 520px;
	font-size: 18px;
	line-height: 1.3;
	color: #2b2d33;
}

.contacts-page__links a,
.contacts-page__links p {
	margin: 0;
	color: #2b2d33;
}

.contacts-page__socials {
	display: flex;
	gap: 10px;
	margin-top: 44px;
}

.contacts-page__socials a,
.contacts-page__socials img {
	width: 42px;
	height: 42px;
	border-radius: 50%;
}

.work-gallery-archive {
	padding-bottom: 0;
}

.work-gallery-archive + .albums-section {
	padding-top: 28px;
}

.site-footer {
	margin-top: 0;
	padding: 26px 0 20px;
	color: #fff;
	background: var(--bg-dark) center top / cover no-repeat;
	background-image: url("../img/footer.png");
}

.footer-top {
	display: grid;
	grid-template-columns: minmax(340px, 1.15fr) minmax(280px, 1fr) auto;
	gap: 52px;
	align-items: start;
	margin-top: 30px;
}

.footer-form-col {
	display: grid;
	gap: 16px;
}

.footer-logo {
	display: inline-flex;
	align-items: center;
	width: fit-content;
}

.footer-logo img {
	width: 122px;
	height: auto;
}

.footer-form-wrap h2 {
	margin: 0 0 12px;
	font-family: "VCR OSD Mono", monospace;
	font-size: 30px;
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: 0;
	text-transform: uppercase;
}

.footer-form-wrap p {
	margin: 0 0 12px;
	color: rgba(255, 255, 255, 0.82);
}

.footer-success h2 {
	margin: 0 0 12px;
	font-family: "VCR OSD Mono", monospace;
	font-size: 30px;
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
}

.footer-success p {
	margin: 0;
	max-width: 420px;
	font-family: "Evolventa", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	color: rgba(255, 255, 255, 0.9);
}

.footer-form {
	max-width: 460px;
	display: grid;
	gap: 6px;
}

.footer-form input[type="text"] {
	width: 100%;
	height: 36px;
	padding: 10px 12px;
	border: 1px solid rgba(255, 255, 255, 0.62);
	background: transparent;
	color: #fff;
	font-family: "Evolventa", sans-serif;
	font-size: 14px;
}

.footer-form input[type="text"]::placeholder {
	color: rgba(255, 255, 255, 0.85);
}

.footer-form .consent {
	margin-top: 2px;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.9);
}

.footer-form .consent a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.footer-form .accent-button {
	margin-top: 8px;
	min-width: 264px;
	height: 44px;
	font-size: 18px;
	line-height: 1;
	justify-content: center;
}

.footer-contacts-col {
	display: grid;
	align-content: start;
	gap: 22px;
	padding-top: 58px;
}

.footer-socials-col {
	display: flex;
	align-items: flex-start;
	padding-top: 58px;
}

.footer-contacts,
.footer-socials {
	display: grid;
	align-content: start;
	gap: 4px;
}

.footer-contacts h3 {
	margin: 0 0 8px;
	font-size: 28px;
	line-height: 1;
	font-weight: 700;
}

.footer-contacts a,
.footer-contacts p {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	line-height: 1.25;
}

.footer-socials {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-socials a {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.footer-socials a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.footer-bottom {
	padding: 18px 0 0;
	margin-top: 16px;
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 14px;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.82);
	text-align: center;
}

.footer-bottom a,
.footer-bottom span {
	color: inherit;
}

.oc-popup {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 12px;
	visibility: hidden;
	opacity: 0;
	transition: 0.25s ease;
	z-index: 110;
	pointer-events: none;
}

.oc-popup.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.oc-popup__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.oc-popup__content {
	position: relative;
	z-index: 1;
	width: min(945px, calc(100% - 24px));
	min-height: 420px;
	margin: 0;
	background: #ececee;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	gap: 0;
    padding: 0px 34px 0px 28px;
	overflow: hidden;
	align-items: center;
}

.oc-popup__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 48px;
	height: 48px;
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
	z-index: 3;
}

.oc-popup__close img {
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.oc-popup__main,
.oc-popup__success {
	max-width: 450px;
	padding-top: 0;
	align-self: center;
}

.oc-popup__text h3,
.oc-popup__success h3 {
	margin: 0 0 12px;
	font-family: "VCR OSD Mono", monospace;
	font-size: 30px;
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #2b2c32;
}

.oc-popup__text p,
.oc-popup__success p {
	margin: 0 0 14px;
	font-family: "Evolventa", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	color: #4a4a52;
}

.popup-form {
	display: grid;
	gap: 8px;
	max-width: 450px;
}

.popup-form input[type="text"] {
	width: 450px;
	max-width: 100%;
	height: 42px;
	padding: 15px;
	border: 1px solid rgba(54, 54, 58, 0.45);
	background: transparent;
	color: #2a2b31;
	font-family: "Evolventa", sans-serif;
	font-size: 14px;
}

.popup-form input[type="text"]::placeholder {
	color: #3f4046;
}

.popup-form .consent {
	margin-top: -1px;
	font-size: 11px;
	color: #2e2f35;
}

.popup-form .consent input {
	border-color: rgba(38, 39, 43, 0.55);
}

.popup-form .consent input::after {
	border-color: #2e2f35;
}

.popup-form .consent a {
	color: #2e2f35;
}

.popup-form .accent-button {
	margin-top: 10px;
	width: fit-content;
}

.oc-popup__media {
	display: flex;
	align-items: end;
	justify-content: flex-end;
	pointer-events: none;
}

.oc-popup__media img {
	width: 300px;
	max-width: none;
	height: auto;
	transform: translate(-30px, 33px);
	object-fit: contain;
}

.oc-popup__success {
	display: grid;
	align-content: center;
	min-height: 320px;
}

.oc-toast {
	position: fixed;
	right: 20px;
	bottom: 20px;
	background: #1f2f23;
	color: #fff;
	padding: 12px 16px;
	z-index: 90;
	border-left: 3px solid #57af64;
}

@media (max-width: 1200px) {
	.header-inner {
		grid-template-columns: 110px 1fr auto auto;
	}

	.main-nav,
	.header-contacts,
	.header-socials,
	.header-inner > .accent-button {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		border: 0;
		background: transparent;
		cursor: pointer;
		justify-self: end;
		grid-column: 4;
	}

	.menu-toggle img {
		width: 22px;
		height: 14px;
		object-fit: contain;
	}

	.header-mobile-social {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 42px;
		height: 42px;
		grid-column: 3;
		justify-self: end;
	}

	.header-mobile-social img {
		width: 42px;
		height: 42px;
		object-fit: contain;
	}

	.mobile-menu {
		position: fixed;
		inset: 0;
		width: 100%;
		height: 100vh;
		display: block;
		background: rgba(28, 29, 33, 0.34);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.25s ease, visibility 0.25s ease;
		z-index: 95;
		overflow: hidden;
		pointer-events: none;
	}

	.mobile-menu.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.mobile-menu__inner {
		width: 100%;
		background: #ececee;
		padding: 62px 20px 28px;
		display: grid;
		align-content: start;
		transform: translateY(-105%);
		transition: transform 0.32s ease;
	}

	.mobile-menu.is-open .mobile-menu__inner {
		transform: translateY(0);
	}

	.mobile-menu__head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 22px;
	}

	.mobile-menu__logo img {
		width: 123px;
		height: 40px;
		object-fit: contain;
	}

	.mobile-menu__close {
		border: 0;
		background: transparent;
		width: 42px;
		height: 42px;
		padding: 0;
		cursor: pointer;
	}

	.mobile-menu__close img {
		width: 42px;
		height: 42px;
		object-fit: contain;
	}

	.mobile-nav {
		display: grid;
		gap: 14px;
		font-family: "Evolventa", sans-serif;
		font-size: 22px;
		font-weight: 400;
		line-height: 1;
		color: #2e2f35;
		margin-bottom: 26px;
	}

	.mobile-menu__contacts {
		display: grid;
		gap: 10px;
		margin-bottom: 18px;
	}

	.mobile-menu__contacts .contact-item {
		font-size: 16px;
		color: #2f3037;
	}

	.mobile-menu__contacts .contact-item img {
		width: 24px;
		height: 24px;
		filter: brightness(0) saturate(100%);
	}

	.mobile-menu__socials {
		display: flex;
		align-items: center;
		gap: 10px;
		margin-bottom: 24px;
	}

	.mobile-menu__socials a {
		width: 42px;
		height: 42px;
		display: inline-flex;
	}

	.mobile-menu__socials a img {
		width: 42px;
		height: 42px;
		object-fit: contain;
	}

	.mobile-menu__cta {
		width: 100%;
		margin-top: 8px;
	}

	.hero-inner {
		grid-template-columns: 1fr;
		min-height: unset;
		gap: 20px;
		align-items: center;
	}

	.hero-content {
		padding-top: 44px;
		min-height: auto;
	}

	.hero-image {
		max-width: 300px;
		margin-inline: auto;
		align-self: end;
	}

	.service-about-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.service-about-image-wrap {
		width: 100%;
		max-width: 663px;
		height: auto;
		aspect-ratio: 663 / 295;
	}

	.marquee-section {
		flex: 0 0 84px;
	}

	.about-inner {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.about-note {
		max-width: unset;
		margin-top: 0;
	}

	.about-caps {
		max-width: unset;
	}

	.advantages-stats__inner {
		gap: 34px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.advantages-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.advantage-card {
		height: auto;
		min-height: 116px;
	}

	.services-layout {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.services-layout__title {
		padding-top: 0;
	}

	.services-item h3 {
		font-size: 32px;
	}

	.services-item__text {
		max-width: none;
		justify-self: stretch;
	}

	.services-item__titleline .icon-outline {
		left: -160px;
	}

	.spheres-grid {
		grid-template-columns: 1fr;
	}

	.cta-inner {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.tariffs-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.reviews-track {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.work-media-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-top {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	:root {
		--header-h: 62px;
	}

	body {
		font-size: 16px;
	}

	.container {
		width: calc(100% - 40px);
	}

	.section {
		padding: 64px 0;
	}

	.hero-section {
		padding: 0;
		height: auto;
		min-height: 0;
	}

	.cta-section {
		background-image: url("../img/formmob.png");
		padding: 100px 0 0;
	}

	.cta-inner {
		grid-template-columns: 1fr;
		padding-bottom: 40px;
	}

	.cta-image {
		display: none;
	}

	.cta-content {
		margin-top: 10px;
	}

	.cta-content h2 {
		font-size: 30px;
	}

	.cta-content p {
		font-size: 18px;
	}

	.cta-content .oc-form {
		max-width: 100%;
		padding-inline: 8px;
	}

	.cta-content .oc-form input[type="text"],
	.cta-content .oc-form .accent-button {
		width: calc(100% - 16px);
		max-width: 100%;
	}

	.cta-content .oc-form .accent-button {
		justify-self: stretch;
	}

	.oc-form input[type="text"],
	.oc-form .accent-button {
		width: 100%;
		max-width: 100%;
	}

	.footer-form-wrap .oc-form {
		max-width: 100%;
	}

	.consent {
		flex-wrap: wrap;
	}

	.consent span {
		word-break: break-word;
	}

	.hero-main {
		display: block;
	}

	.site-header {
		min-height: var(--header-h);
	}

	.header-inner {
		min-height: var(--header-h);
		grid-template-columns: 123px 1fr 42px 50px;
		gap: 6px;
		align-items: center;
	}

	.site-logo {
		transform: translateX(0);
	}

	.site-logo img {
		width: 123px;
		height: 40px;
		margin-top: 5px;
		object-fit: contain;
	}

	.header-mobile-social {
		width: 36px;
		height: 36px;
	}

	.header-mobile-social img {
		width: 36px;
		height: 36px;
	}

	.menu-toggle {
		width: 50px;
		height: 50px;
		padding: 0;
	}

	.menu-toggle img {
		width: 45px;
		height: 45px;
		object-fit: contain;
	}

	.hero-inner {
		display: block;
		min-height: 0;
	}

	.hero-content {
		width: 100%;
		display: grid;
		gap: 18px;
		padding: 14px 0 16px;
		min-height: 0;
	}

	.hero-content h1 {
		max-width: 100%;
		margin: 0;
		font-size: 26px;
		line-height: 1.2;
		letter-spacing: 0;
		font-weight: 400;
	}

	.hero-content p {
		max-width: 400px;
		font-size: 16px;
		line-height: 1.3;
		letter-spacing: 0;
		margin-bottom: 0;
	}

	.service-landing-content {
		align-content: center;
		transform: none;
		padding-top: 0;
	}

	.service-landing-breadcrumbs {
		position: static;
		margin-bottom: 10px;
		font-size: 11px;
	}

	.hero-inner.service-landing-inner .service-landing-breadcrumbs {
		position: static;
		top: auto;
		left: auto;
		margin: 10px 0 10px;
		font-size: 11px;
	}

	.hero-content > .accent-button {
		width: 325px;
		max-width: 100%;
		min-height: 50px;
		padding: 20px 26px;
		font-size: 16px;
		line-height: 1;
		justify-self: center;
	}

	.hero-image {
		width: 100vw;
		max-width: none;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		display: block;
	}

	.hero-image img {
		width: 100%;
		height: 258px;
		max-height: none;
		object-fit: cover;
		object-position: center 38%;
	}

	.service-about-section {
		padding: 52px 0;
	}

	.service-about-title {
		font-size: 26px;
		margin-bottom: 18px;
	}

	.service-about-content {
		gap: 14px;
		padding-top: 0;
	}

	.service-about-content p {
		font-size: 16px;
		line-height: 1.2;
	}

	.service-landing-content .accent-button,
	.service-about-content .accent-button {
		width: 100%;
		max-width: 100%;
		justify-self: stretch;
	}

	.service-about-text[data-collapsed="1"] {
		display: -webkit-box;
		-webkit-line-clamp: 10;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.service-about-toggle {
		display: inline-flex;
		width: fit-content;
		border: 0;
		padding: 0;
		background: transparent;
		color: var(--accent);
		font-family: "Evolventa", sans-serif;
		font-size: 16px;
		line-height: 1;
		text-decoration: underline;
		text-underline-offset: 2px;
		cursor: pointer;
	}

	.service-rates-section {
		padding: 52px 0 36px;
	}

	.service-rates-title {
		font-size: 32px;
		margin-bottom: 20px;
	}

	.service-rates-slider {
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
	}

	.service-rates-track {
		grid-template-columns: 1fr;
	}

	.service-rates-arrow {
		display: none;
	}

	.service-rates-mobile-toggle {
		display: inline-flex;
	}

	.service-rates-card {
		min-height: 0;
		padding: 18px 16px;
	}

	.service-rates-card h3 {
		font-size: 22px;
		margin-bottom: 10px;
	}

	.service-rates-card li {
		font-size: 18px;
		line-height: 1;
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 8px;
	}

	.service-rates-price {
		font-size: 18px;
		line-height: 1;
		white-space: nowrap;
	}

	.service-stages-section {
		padding: 50px 0 60px;
	}

	.service-stages-title {
		font-size: 32px;
		margin-bottom: 42px;
	}

	.service-stages-grid {
		display: flex;
		gap: 10px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		overscroll-behavior-x: contain;
		scrollbar-width: none;
		padding-top: 24px;
		padding-bottom: 4px;
	}

	.service-stages-grid::-webkit-scrollbar {
		display: none;
	}

	.service-stage-card {
		flex: 0 0 min(86vw, 320px);
		scroll-snap-align: start;
		min-height: 88px;
		padding: 12px 10px;
	}

	.service-stage-card p {
		font-size: 18px;
		line-height: 1;
	}

	.service-info-layout {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.service-info-layout__title {
		padding-top: 0;
	}

	.service-info-title {
		font-size: 32px;
		margin-bottom: 10px;
	}

	.service-info-item {
		height: auto;
		min-height: 0;
		padding: 16px 0;
	}

	.service-info-item.has-desc {
		min-height: 0;
	}

	.service-info-item__titleline {
		padding-left: 68px;
		min-height: 44px;
		cursor: pointer;
	}

	.service-info-item__titleline .icon-outline {
		left: 0;
	}

	.service-info-item h3 {
		font-size: 26px;
		line-height: 1.1;
	}

	.service-info-item.has-desc p {
		opacity: 1;
		min-height: 0;
		transform: none;
		margin-top: 8px;
		padding-left: 68px;
	}

	.service-info-item.has-desc.is-open h3 {
		color: var(--accent);
		font-size: 30px;
		line-height: 1.1;
	}

	.service-info-item.has-desc:hover h3,
	.service-info-item.has-desc:focus-within h3 {
		color: inherit;
		font-size: 26px;
		line-height: 1.1;
	}

	.service-info-item.has-desc:hover .spin-icon,
	.service-info-item.has-desc:focus-within .spin-icon {
		transform: none;
	}

	.service-info-item.has-desc p {
		display: none;
	}

	.service-info-item.has-desc.is-open p {
		display: block;
	}

	.marquee-section {
		height: 84px;
		flex-basis: 84px;
		padding: 6px 0;
	}

	.marquee-items span {
		font-size: 26px;
		line-height: 1;
		letter-spacing: 0;
	}

	.marquee-items {
		gap: 16px;
	}

	.advantages-stats {
		height: auto;
		padding: 10px 0;
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scrollbar-width: none;
	}

	.advantages-stats::-webkit-scrollbar {
		display: none;
	}

	.advantages-stats .container {
		width: 100%;
		margin: 0;
	}

	.advantages-stats__inner {
		gap: 16px;
		flex-wrap: nowrap;
		justify-content: flex-start;
		display: inline-flex;
		min-width: max-content;
		width: max-content;
		max-width: none;
		padding: 0 14px;
	}

	.stat-item strong,
	.stat-item span,
	.stat-item {
		font-size: 16px;
	}

	.stat-item {
		flex: 0 0 auto;
		min-width: 130px;
	}

	.advantages-section .section-title {
		line-height: 1.3;
	}

	.about-title {
		margin-bottom: 0;
		font-size: 32px;
		line-height: 1;
	}

	.about-section {
		padding: 52px 0 40px;
	}

	.about-inner {
		gap: 18px;
	}

	.about-photo {
		order: 1;
		width: 318px;
		transform: rotate(2.37deg);
		margin-left: 0;
		justify-self: center;
	}

	.about-photo::before {
		left: -2px;
		top: -10px;
	}

	.about-photo::after {
		right: -2px;
		bottom: -10px;
	}

	.about-photo > img:last-child {
		width: 318px;
		height: 207px;
		object-fit: cover;
	}

	.about-pin {
		width: 34px;
		top: -8px;
		right: -2px;
	}

	.about-side--left {
		order: 2;
		text-align: center;
	}

	.about-side--right {
		order: 3;
		gap: 10px;
		align-items: center;
		text-align: center;
	}

	.about-caps {
		font-size: 30px;
		max-width: 100%;
		padding: 12px 14px;
		line-height: 1.1;
		text-align: center;
	}

	.about-note {
		font-size: 18px;
		line-height: 1.5;
		max-width: 100%;
		text-align: left;
		margin-top: 0;
	}

	.about-side--right p {
		text-align: left;
		line-height: 1.5;
	}

	.about-side--right .accent-button {
		width: 325px;
		max-width: 100%;
		min-height: 50px;
		padding: 20px 26px;
		font-size: 16px;
		line-height: 1;
		justify-self: center;
	}

	.site-grid-overlay::before,
	.site-grid-overlay::after {
		display: none;
	}

	.services-item h3 {
		font-size: 30px;
	}

	.services-item__body {
		grid-template-columns: 1fr;
		max-height: none;
		min-height: 0;
	}

	.services-item {
		min-height: 0;
	}

	.services-item__titleline {
		padding-left: 54px;
	}

	.services-item__titleline .icon-outline {
		left: 0;
	}

	.services-item__body p {
		padding-left: 54px;
		opacity: 1;
		transform: none;
	}

	.services-item__preview img {
		width: 100%;
		height: 200px;
		opacity: 1;
		transform: none;
	}

	.advantages-grid {
		display: flex;
		flex-wrap: nowrap;
		gap: 12px;
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scroll-snap-type: x mandatory;
		justify-content: flex-start;
		align-items: stretch;
		padding: 0 0 8px;
		margin: 0;
		scrollbar-width: none;
		scroll-padding-left: 0;
		-webkit-overflow-scrolling: touch;
		touch-action: pan-x;
	}

	.advantages-grid::-webkit-scrollbar {
		display: none;
	}

	.advantages-grid .advantage-card {
		flex: 0 0 86%;
		height: 250px;
		min-height: 250px;
		scroll-snap-align: start;
	}

	.advantages-grid .advantage-card p {
		opacity: 1;
		transform: none;
		max-height: 132px;
	}

	.advantages-grid .advantage-icon-wrap {
		display: inline-flex;
		visibility: visible;
		opacity: 1;
	}

	.tariffs-grid {
		grid-template-columns: 1fr;
	}

	.site-footer {
		background-image: url("../img/footer_mbl.png");
		background-position: center top;
		padding: 34px 0 16px;
		margin-top: 0;
	}

	.footer-top {
		grid-template-columns: 1fr;
		gap: 16px;
		padding-top: 70px;
	}

	.footer-logo img {
		width: 118px;
	}

	.footer-form-wrap h2 {
		font-size: 30px;
		margin-bottom: 8px;
	}

	.footer-form {
		max-width: 100%;
	}

	.footer-form .accent-button {
		width: 100%;
		min-width: 0;
		height: 42px;
	}

	.footer-contacts-col {
		gap: 12px;
		padding-top: 0;
	}

	.footer-socials-col {
		padding-top: 0;
	}

	.footer-contacts h3 {
		font-size: 34px;
		margin-bottom: 6px;
	}

	.footer-socials {
		gap: 8px;
	}

	.reviews-track {
		grid-template-columns: 1fr;
		min-height: 0;
		gap: 10px;
		cursor: default;
	}

	.reviews-arrow {
		display: none;
	}

	.reviews-slider {
		grid-template-columns: 1fr;
	}

	.review-card {
		height: 250px;
	}

	.reviews-mobile-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.work-media-grid {
		grid-template-columns: 1fr;
	}

	.work-album-row {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.work-album-row__title h3 {
		font-size: 20px;
	}

	.work-album-thumb-grid,
	.work-album-hidden-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.work-thumb {
		width: 100%;
		height: 124px;
	}

	.work-viewer__dialog {
		width: 100%;
		max-height: calc(100svh - 20px);
		padding: 10px;
		gap: 10px;
	}

	.work-viewer {
		padding: 10px;
	}

	.work-viewer__top {
		min-height: 44px;
		padding-bottom: 8px;
	}

	.work-viewer__close,
	.work-viewer__close img {
		width: 38px;
		height: 38px;
	}

	.work-viewer__stage {
		grid-template-columns: 44px minmax(0, 1fr) 44px;
		gap: 8px;
	}

	.work-viewer__nav {
		width: 44px;
		height: 44px;
		font-size: 0;
	}

	.work-viewer__content img,
	.work-viewer__content video,
	.work-viewer__content iframe {
		max-height: calc(100svh - 150px);
	}

	.work-viewer__meta {
		font-size: 13px;
	}

	.contacts-page {
		padding-top: 22px;
		padding-bottom: 52px;
	}

	.contacts-breadcrumbs {
		margin-bottom: 20px;
		font-size: 12px;
	}

	.contacts-page__title {
		font-size: 32px;
		margin-bottom: 18px;
	}

	.contacts-page__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.contacts-page__map {
		width: 100%;
		height: 260px;
	}

	.contacts-page__info {
		padding-top: 0;
	}

	.contacts-page__links {
		max-width: 100%;
		font-size: 16px;
		line-height: 1.3;
		gap: 4px;
	}

	.contacts-page__socials {
		margin-top: 18px;
	}

	.oc-popup__content {
		grid-template-columns: 1fr;
		width: calc(100% - 12px);
		min-height: 0;
        padding: 50px 12px 30px;
		margin: 0;
	}

	.oc-popup__main,
	.oc-popup__success,
	.popup-form {
		max-width: 100%;
	}

	.popup-form input[type="text"] {
		width: 100%;
	}

	.oc-popup__close {
		top: 8px;
		right: 8px;
		width: 42px;
		height: 42px;
	}

	.oc-popup__close img {
		width: 42px;
		height: 42px;
	}

	.oc-popup__text h3,
	.oc-popup__success h3 {
		font-size: 29px;
		max-width: none;
	}

	.oc-popup__text p,
	.oc-popup__success p {
		font-size: 18px;
	}

	.oc-popup__media {
		display: none;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		margin-top: 8px;
		padding-top: 8px;
	}
}

.legal-page-main {
	background: #ececee;
}

.legal-page {
	padding-top: 34px;
	padding-bottom: 92px;
}

.legal-page__container {
	max-width: 860px;
}

.legal-page__breadcrumbs {
	display: flex;
	margin: 0 0 28px;
	color: #2b2d33 !important;
}

.legal-page__breadcrumbs a,
.legal-page__breadcrumbs span {
	color: #2b2d33;
}

.legal-page__breadcrumbs span:last-child {
	color: var(--accent) !important;
}

.legal-page__title {
	margin: 0 0 12px;
	font-family: "Evolventa", sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.15;
	text-transform: uppercase;
	color: #2b2d33;
}

.legal-page__updated {
	margin: 0 0 28px;
	font-size: 15px;
	line-height: 1.5;
	color: #5c5f69;
}

.legal-page__content {
	padding: 28px 32px;
	background: #fff;
	border-radius: 4px;
	color: #2b2d33;
	font-size: 16px;
	line-height: 1.6;
}

.legal-page__content h2 {
	margin: 28px 0 10px;
	font-family: "Evolventa", sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--accent);
}

.legal-page__content h2:first-of-type {
	margin-top: 0;
}

.legal-page__content p {
	margin: 0 0 14px;
}

.legal-page__content ul {
	margin: 0 0 14px;
	padding-left: 22px;
}

.legal-page__content li {
	margin-bottom: 6px;
}

.legal-page__content a {
	color: var(--accent);
	text-decoration: underline;
}

.legal-page__back {
	margin: 28px 0 0;
}

.legal-page__back-link {
	display: inline-flex;
	text-decoration: none;
}

@media (max-width: 767px) {
	.legal-page {
		padding-top: 24px;
		padding-bottom: 64px;
	}

	.legal-page__title {
		font-size: 26px;
	}

	.legal-page__content {
		padding: 20px 18px;
		font-size: 15px;
	}
}
