@charset "UTF-8";
@font-face {
	font-family: "Micra";
	src: url("./../img/Micra.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Micra";
	src: url("./../img/Micra-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
:root {
	--page-bg: #eff0f3;
	--dark: #0c0d16;
	--white: #ffffff;
	--muted: rgba(12, 13, 22, 0.6);
	--gradient: linear-gradient(136.64deg, #05412e 7.72%, #2ca7a5 30.07%, #558682 53.09%, #094633 82.68%, #6ca7a7 109.64%, #013d38 136.6%);
	--shadow-green: #0a362f;
	--container: 1276px;
	--heading-font: "Micra", "Orbitron", "Arial Black", sans-serif;
	--body-font: "Manrope", Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	width: 100vw;
	overflow-x: hidden;
}

body {
	min-width: 320px;
	margin: 0;
	font-family: var(--body-font);
	color: var(--dark);
	background: var(--page-bg);
}

body.menu-open {
	overflow: hidden;
}

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

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

.container {
	width: min(var(--container), calc(100% - 48px));
	margin-inline: auto;
}

.icon {
	width: 24px;
	height: 24px;
	flex: 0 0 auto;
	fill: none;
	stroke: url(#none);
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-header .icon,
.footer-card .icon,
.visit-card .icon {
	stroke: #168679;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 311px;
	min-height: 46px;
	padding: 10px 22px;
	border: 0;
	text-align: center;
	border-radius: 8px;
	background: var(--gradient);
	box-shadow: 0 6px 0 var(--shadow-green);
	color: #fff;
	font-family: var(--heading-font);
	font-weight: 800;
	font-size: 14px;
	line-height: 1.3;
	text-transform: uppercase;
	cursor: pointer;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		filter 0.2s ease;
}

.button:hover {
	transform: translateY(-2px);
	filter: saturate(1.08);
}

.button:active {
	transform: translateY(4px);
	box-shadow: 0 2px 0 var(--shadow-green);
}

.button--large {
	min-height: 60px;
}

/* Header */

.site-header {
	position: relative;
	z-index: 5;
	height: 111px;
	background: #fff;
}

.header-inner {
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 34px;
}

.logo-link {
	width: 260px;
	flex: 0 0 auto;
}

.logo {
	width: 260px;
	height: auto;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 32px;
	margin-left: 8px;
	font-weight: 500;
	font-size: 18px;
	line-height: 25px;
}

.main-nav a {
	transition: color 0.2s ease;
}

.main-nav a:hover {
	color: #168679;
}

.header-info {
	margin-left: auto;
	display: flex;
	align-items: flex-start;
	gap: 34px;
}

.address-block,
.phone-link {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.address-block strong,
.phone-link strong {
	display: block;
	font-size: 16px;
	line-height: 22px;
	font-weight: 700;
	white-space: nowrap;
}

.address-block span {
	display: block;
	margin-top: 2px;
	font-size: 14px;
	line-height: 19px;
	color: rgba(12, 13, 22, 0.6);
}

.phone-link {
	align-items: center;
}

.phone-link .icon {
	width: 20px;
	height: 20px;
}

/* Hero */
.hero {
	position: relative;
	min-height: 774px;
	isolation: isolate;
	overflow: hidden;
	background-image: var(--hero-bg);
	background-repeat: no-repeat;
	background-position: center 39%;
	background-size: cover;
	transition: background-image 0.35s ease;
}

/* Основное затемнение поверх фото */
.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: rgba(0, 0, 0, 0.52);
}

/* Дополнительный радиальный затемняющий слой */
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: radial-gradient(circle at 72% 40%, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.36) 48%, rgba(0, 0, 0, 0.52));
}

.hero-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 774px;
}

.hero-content {
	width: 736px;
	color: #fff;
}

.hero h1 {
	margin: 0;
	color: #fff;
	font-family: var(--heading-font);
	font-weight: 900;
	font-size: 40px;
	line-height: 1.3;
	text-transform: uppercase;
}

.hero h1 span {
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero p,
.hero ul,
.hero ol {
	width: 540px;
	margin: 28px 0 56px;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

.hero-menu {
	position: relative;
	right: 0;
	width: 225px;
	color: #fff;
}
.swiper-wrapper {
	align-items: center !important;
}

.hero-tab {
	display: block;
	width: 100%;
	padding: 0 0 48px;
	margin: 0 0 28px;
	border: 0;
	background: transparent;
	text-align: left;
	color: inherit;
	cursor: pointer;
}

.hero-tab span {
	display: block;
	min-height: 42px;
	font-family: var(--heading-font);
	font-weight: 800;
	font-size: 16px;
	line-height: 1.3;
	text-transform: uppercase;
}

.hero-tab.is-active span {
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-tab i {
	position: relative;
	display: block;
	width: 100%;
	height: 4px;
	margin-top: 20px;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.3);
	overflow: hidden;
}

.hero-tab i::after {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: var(--progress, 0%);
	border-radius: inherit;
	background: var(--gradient);
}

.hero-arrows {
	display: flex;
	gap: 8px;
	margin-top: -18px;
}

.arrow {
	position: relative;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 8px;
	background: var(--gradient);
	box-shadow: 0 3px 0 var(--shadow-green);
	cursor: pointer;
}

.arrow::after {
	content: "";
	position: absolute;
	top: 10px;
	left: 14px;
	width: 10px;
	height: 10px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
}

.hero-next::after {
	left: 10px;
	transform: rotate(-135deg);
}

/* Services */

.services-section {
	padding-top: 120px;
}

.section-title {
	margin: 0 0 60px;
	color: var(--dark);
	font-family: var(--heading-font);
	font-weight: 900;
	font-size: 40px;
	line-height: 1.3;
	text-transform: uppercase;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.service-card {
	position: relative;
	overflow: hidden;
	padding: 32px;
	border-radius: 16px;
	color: #fff;
	background:
		linear-gradient(0deg, rgba(12, 13, 22, 0.56), rgba(12, 13, 22, 0.56)),
		var(--bg) center / cover no-repeat;
}

.service-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(12, 13, 22, 0.24), rgba(12, 13, 22, 0.02));
	pointer-events: none;
}

.service-card > * {
	position: relative;
	z-index: 1;
}

.service-card h3 {
	max-width: 240px;
	margin: 0 0 20px;
	font-family: var(--heading-font);
	font-weight: 900;
	font-size: 16px;
	line-height: 1.3;
	text-transform: uppercase;
}

.service-card p,
.service-card li {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

.service-card p {
	max-width: 240px;
	margin: 0;
}

.service-card--large {
	grid-column: span 2;
	padding: 40px;
}

.service-card--large h3 {
	margin-bottom: 28px;
	font-size: 20px;
}

.service-lists {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 54px;
}

.service-lists ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-lists li + li {
	margin-top: 12px;
}

/* Partners */

.partners-section {
	padding-top: 120px;
}

.partners-card {
	min-height: 540px;
	padding: 48px 90px 56px 48px;
	border-radius: 16px;
	background: #fff;
}

.partners-card h2 {
	max-width: 879px;
	margin: 0 0 70px;
	color: var(--dark);
	font-family: var(--heading-font);
	font-weight: 900;
	font-size: 40px;
	line-height: 1.3;
	word-wrap: break-word;
	text-transform: uppercase;
}

.partners-grid {
	display: grid;
	grid-template-columns: 318px 270px 396px;
	align-items: center;
	justify-content: space-between;
	row-gap: 58px;
}

.partners-grid img {
	max-height: 98px;
	width: 100%;
	object-fit: contain;
}

.partners-grid img[alt="MonsterShield"] {
	width: 170px;
	height: 97px;
	justify-self: center;
}

.quantum-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: "Orbitron", Arial, sans-serif;
	font-size: 40px;
	font-weight: 400;
	letter-spacing: 0.16em;
	color: #111;
	text-transform: uppercase;
}

/* Contacts / map */

.contacts-section {
	padding-top: 120px;
}

.map-card {
	position: relative;
	min-height: 578px;
	overflow: hidden;
	border-radius: 16px;
}

.map-card iframe {
	min-height: 580px;
}

.visit-card {
	position: absolute;
	top: 67px;
	left: 48px;
	width: 415px;
	min-height: 445px;
	padding: 32px 40px 37px;
	border-radius: 16px;
	background: #fff;
}

.visit-card h2 {
	margin: 0 0 28px;
	color: var(--dark);
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
}

.visit-address {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 145px;
	font-family: var(--heading-font);
	font-size: 14px;
	line-height: 1.3;
	text-transform: uppercase;
}

.visit-address .icon {
	width: 24px;
	height: 24px;
}

/* Footer */

.site-footer {
	padding: 60px 0 25px;
}

.footer-card {
	min-height: 372px;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	column-gap: 240px;
	padding: 31px 41px 34px;
	border-radius: 16px;
	background: #fff;
}

.footer-logo {
	width: 260px;
	margin-bottom: 76px;
}

.footer-brand a {
	display: block;
	margin-bottom: 20px;
	font-size: 12px;
	line-height: 1.3;
	text-decoration: underline;
}

.footer-brand p {
	margin: 20px 0 0;
	color: rgba(12, 13, 22, 0.5);
	font-size: 10px;
	line-height: 1.3;
}

.footer-title {
	display: block;
	margin: 13px 0 24px;
	font-family: var(--heading-font);
	font-size: 12px;
	line-height: 1.3;
	text-transform: uppercase;
	color: rgba(12, 13, 22, 0.4);
}

.footer-menu nav {
	display: grid;
	gap: 12px;
}

.footer-menu a,
.footer-contacts a,
.footer-contacts span {
	font-size: 14px;
	line-height: 1.3;
}

.footer-menu a:hover,
.footer-contacts a:hover {
	color: #168679;
}

.footer-contacts ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 22px;
}

.footer-contacts li {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.footer-contacts .icon {
	width: 24px;
	height: 24px;
}

/* Responsive */

@media (max-width: 1440px) {
	:root {
		--container: 1180px;
	}

	.header-inner {
		gap: 22px;
	}

	.logo-link,
	.logo {
		width: 230px;
	}

	.main-nav {
		gap: 22px;
		font-size: 16px;
	}

	.address-block strong,
	.phone-link strong {
		font-size: 14px;
	}

	.address-block span {
		font-size: 12px;
	}

	.partners-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		column-gap: 65px;
	}

	.footer-card {
		grid-template-columns: 1.2fr 0.6fr 1fr;
		column-gap: 80px;
	}
}

@media (max-width: 1180px) {
	.site-header {
		height: auto;
	}

	.header-inner {
		min-height: 92px;
		flex-wrap: wrap;
		padding-block: 12px;
	}

	.header-info {
		width: 100%;
		justify-content: space-between;
		order: 4;
		margin-left: 0;
	}

	.hero-menu {
		display: none;
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.service-card--large {
		grid-column: span 2;
	}

	.partners-card h2 {
		font-size: 34px;
	}

	.contacts-section,
	.partners-section {
		padding-top: 90px;
	}

	.footer-card {
		grid-template-columns: 1fr 1fr;
		row-gap: 40px;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-logo {
		margin-bottom: 36px;
	}
}

@media (max-width: 760px) {
	.container {
		width: min(100% - 32px, var(--container));
	}

	.site-header {
		position: sticky;
		top: 0;
	}

	.header-inner {
		min-height: 76px;
	}

	.logo-link,
	.logo {
		width: 188px;
	}

	.burger {
		display: block;
	}

	.main-nav,
	.header-info {
		position: fixed;
		left: 16px;
		right: 16px;
		z-index: 10;
		display: none;
		background: #fff;
		border-radius: 16px;
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
	}

	.main-nav {
		top: 90px;
		padding: 22px;
		flex-direction: column;
		align-items: flex-start;
	}

	.header-info {
		top: 250px;
		padding: 22px;
		flex-direction: column;
		gap: 18px;
	}

	body.menu-open .main-nav,
	body.menu-open .header-info {
		display: flex;
	}

	.hero,
	.hero-inner {
		min-height: 670px;
	}

	.hero-content {
		width: 100%;
	}

	.hero h1 {
		font-size: 24px;
	}

	.hero p {
		width: 100%;
		margin-bottom: 42px;
		font-size: 15px;
	}

	.button,
	.button--large {
		width: 100%;
	}

	.services-section {
		padding-top: 70px;
	}

	.section-title {
		margin-bottom: 34px;
		font-size: 32px;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.service-card,
	.service-card--large {
		grid-column: auto;
		min-height: 280px;
		padding: 28px;
	}

	.service-lists {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.partners-section,
	.contacts-section {
		padding-top: 70px;
	}

	.partners-card {
		min-height: auto;
		padding: 32px 24px;
	}

	.partners-card h2 {
		margin-bottom: 40px;
		font-size: 20px;
	}

	.partners-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.partners-grid img,
	.partners-grid img[alt="MonsterShield"] {
		width: min(280px, 100%);
		height: auto;
		justify-self: start;
	}

	.quantum-logo {
		justify-content: flex-start;
		font-size: 30px;
	}

	.map-card {
		min-height: 680px;
		background-position: 58% center;
	}

	.visit-card {
		top: 24px;
		left: 24px;
		right: 24px;
		width: auto;
		min-height: auto;
		padding: 28px 24px;
	}

	.visit-card h2 {
		font-size: 21px;
	}

	.visit-address {
		margin-bottom: 42px;
		font-size: 12px;
	}

	.site-footer {
		padding-top: 40px;
	}

	.footer-card {
		grid-template-columns: 1fr;
		padding: 28px 24px;
	}

	.footer-logo {
		width: 220px;
	}
}

/* Inner pages */
.main-nav a.is-active {
	color: #168679;
}

.service-page-main,
.contacts-page-main,
.about-page-main {
	background: var(--page-bg);
}

.white-card {
	border-radius: 16px;
	background: #fff;
}

.service-detail-hero {
	padding-top: 60px;
}

.service-detail-grid {
	display: grid;
	grid-template-columns: 671px 605px;
	min-height: 844px;
}

.service-intro-card {
	min-height: 844px;
	padding: 48px 40px 55px;
	border-radius: 16px 0 0 16px;
	background: #fff;
}

.service-intro-card h1,
.about-text h1,
.contact-page-card h1,
.subsection-title {
	margin: 0;
	color: var(--dark);
	font-family: var(--heading-font);
	font-weight: 900;
	line-height: 1.3;
	text-transform: uppercase;
}

.service-intro-card h1,
.about-text h1,
.contact-page-card h1,
.subsection-title {
	font-size: 32px;
}

.service-intro-card .lead {
	max-width: 540px;
	margin: 24px 0 28px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

.feature-list,
.contact-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.feature-list {
	display: grid;
	gap: 32px;
	margin-bottom: 45px;
}

.feature-list li,
.purpose-grid article {
	position: relative;
	padding-left: 40px;
	color: #094641;
}

.feature-list li::before,
.purpose-grid article::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
	height: 12px;
	display: grid;
	background-image: url(../img/li.svg);
	place-items: center;
	color: #168679;
	font-weight: 800;
}

.feature-list strong,
.purpose-grid h3 {
	display: block;
	margin: 0 0 13px;
	font-family: var(--heading-font);
	font-size: 16px;
	line-height: 1.3;
	text-transform: uppercase;
}

.feature-list span,
.purpose-grid p {
	display: block;
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

.service-detail-image {
	min-height: 844px;
	border-radius: 0 16px 16px 0;
	background: url("../img/service-protective-film.jpg") center / cover no-repeat;
}

.page-block {
	padding-top: 120px;
}

.purpose-card {
	padding: 48px 40px;
}

.purpose-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 88px;
	row-gap: 40px;
	margin-top: 65px;
}

.price-card {
	padding: 48px 40px;
}

.price-table {
	margin-top: 65px;
	overflow: hidden;
	border-radius: 16px;
	background: var(--page-bg);
}

.price-head,
.price-row {
	display: grid;
	grid-template-columns: 1fr 190px;
	align-items: center;
}

.price-head {
	min-height: 40px;
	background: #054141;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}

.price-head span,
.price-row span,
.price-row strong {
	padding-inline: 40px;
}

.price-head span + span,
.price-row strong {
	border-left: 1px solid rgba(5, 65, 55, 0.22);
}

.price-row {
	min-height: 70px;
	color: #054137;
	font-size: 20px;
	font-weight: 700;
	border-bottom: 1px solid rgba(5, 65, 55, 0.2);
}

.price-row:last-child {
	border-bottom: 0;
}

.price-row strong {
	align-self: stretch;
	display: flex;
	align-items: center;
	font-size: 16px;
	white-space: nowrap;
}

.center-action {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}

.works-card {
	min-height: 752px;
	padding: 48px 40px;
}

.works-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 32px;
}

.works-grid img {
	width: 100%;
	height: 281px;
	object-fit: cover;
	border-radius: 16px;
}

.faq-card {
	padding: 48px 40px;
}

.faq-list {
	display: grid;
	gap: 20px;
	margin-top: 32px;
}

.faq-item {
	overflow: hidden;
	border-radius: 8px;
	background: var(--page-bg);
}

.faq-question {
	position: relative;
	width: 100%;
	min-height: 60px;
	padding: 15px 72px 15px 32px;
	border: 0;
	background: transparent;
	color: #054137;
	text-align: left;
	font-family: var(--body-font);
	font-size: 20px;
	line-height: 1.5;
	font-weight: 700;
	cursor: pointer;
}

.faq-question::after {
	content: "";
	position: absolute;
	right: 34px;
	top: 24px;
	width: 12px;
	height: 12px;
	border-right: 2px solid #054137;
	border-bottom: 2px solid #054137;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question::after {
	top: 29px;
	transform: rotate(-135deg);
}

.faq-answer {
	display: none;
	padding: 0 32px 23px;
}

.faq-item.is-open .faq-answer {
	display: block;
}

.faq-answer p {
	max-width: 990px;
	margin: 0;
	color: var(--dark);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

.services-section--inner {
	padding-top: 120px;
}

.contacts-section--standalone {
	padding-top: 80px;
}

.map-card--contacts {
	min-height: 578px;
}

.contact-page-card h1 {
	margin-bottom: 36px;
}

.contact-page-card {
	top: 67px;
	min-height: 445px;
}

.contact-list {
	display: grid;
	gap: 20px;
	margin-bottom: 73px;
}

.contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	color: var(--dark);
	font-size: 14px;
	line-height: 1.3;
}

.contact-list .icon {
	stroke: #168679;
}

.about-intro-section {
	padding-top: 80px;
}

.about-intro {
	min-height: 360px;
	display: grid;
	grid-template-columns: 711px 1fr;
	align-items: start;
	gap: 120px;
}

.about-text p {
	margin: 36px 0 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

.about-symbol {
	width: 548px;
	max-width: 100%;
	margin-top: -30px;
	mix-blend-mode: multiply;
}

.about-partners-section {
	padding-top: 120px;
}

.blog-section {
	padding-top: 120px;
}

.blog-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 60px;
}

.blog-head .section-title {
	margin: 0;
}

.blog-arrows {
	display: flex;
	gap: 12px;
}

.blog-arrows .arrow {
	width: 60px;
	height: 60px;
	box-shadow: 0 6px 0 var(--shadow-green);
}

.blog-arrows .arrow::after {
	top: 19px;
	left: 23px;
	width: 13px;
	height: 13px;
}
.blog-next::after {
	transform: rotate(225deg);
}
.blog-arrows .hero-next::after {
	left: 19px;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.blog-card {
	position: relative;
	min-height: 416px;
	overflow: hidden;
	border-radius: 8px;
	color: #fff;
	background:
		linear-gradient(180deg, rgba(12, 13, 22, 0) 26.2%, rgba(12, 13, 22, 0.82) 74.76%),
		var(--bg) center / cover no-repeat;
}

.blog-date {
	position: absolute;
	top: 20px;
	left: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 141px;
	min-height: 23px;
	padding: 5px 10px;
	border-radius: 4px;
	background: #fff;
	color: var(--dark);
	font-family: var(--heading-font);
	font-size: 10px;
	font-weight: 900;
	line-height: 1.4;
	text-transform: uppercase;
}

.blog-content {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 32px;
}

.blog-content h3 {
	max-width: 227px;
	margin: 0 0 20px;
	font-family: var(--heading-font);
	font-size: 14px;
	line-height: 1.4;
	font-weight: 400;
	text-transform: uppercase;
}

.blog-content .fake-button {
	font-family: var(--heading-font);
	font-size: 10px;
	line-height: 1.4;
	font-weight: 900;
	text-transform: uppercase;
}

.blog-content .fake-button::after {
	content: " →";
}

.blog-more .button {
	width: 412px;
}

@media (max-width: 1440px) {
	.service-detail-grid {
		grid-template-columns: 52.6% 47.4%;
	}

	.about-intro {
		grid-template-columns: 1fr 420px;
		gap: 60px;
	}

	.about-symbol {
		width: 420px;
	}
}

@media (max-width: 1180px) {
	.service-detail-grid {
		grid-template-columns: 1fr;
	}

	.service-intro-card {
		min-height: auto;
		border-radius: 16px 16px 0 0;
	}

	.service-detail-image {
		min-height: 520px;
		border-radius: 0 0 16px 16px;
	}

	.purpose-grid {
		grid-template-columns: 1fr;
	}

	.price-head,
	.price-row {
		grid-template-columns: 1fr 170px;
	}

	.works-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-intro {
		grid-template-columns: 1fr;
	}

	.about-symbol {
		display: none;
	}
}

@media (max-width: 760px) {
	.service-detail-hero,
	.contacts-section--standalone,
	.about-intro-section {
		padding-top: 40px;
	}

	.service-intro-card,
	.purpose-card,
	.price-card,
	.works-card,
	.faq-card {
		padding: 30px 24px;
	}

	.service-intro-card h1,
	.about-text h1,
	.contact-page-card h1,
	.subsection-title {
		font-size: 27px;
	}

	.service-detail-image {
		min-height: 360px;
	}

	.page-block,
	.services-section--inner,
	.about-partners-section,
	.blog-section {
		padding-top: 70px;
	}

	.feature-list li,
	.purpose-grid article {
		padding-left: 32px;
	}

	.purpose-grid {
		margin-top: 34px;
		row-gap: 28px;
	}

	.feature-list strong,
	.purpose-grid h3 {
		font-size: 13px;
	}

	.feature-list span,
	.purpose-grid p,
	.service-intro-card .lead,
	.faq-answer p,
	.about-text p {
		font-size: 15px;
	}

	.price-table {
		margin-top: 34px;
	}

	.price-head,
	.price-row {
		grid-template-columns: 1fr;
	}

	.price-head span + span,
	.price-row strong {
		border-left: 0;
	}

	.price-head span:last-child {
		display: none;
	}

	.price-row {
		gap: 8px;
		padding-block: 14px;
		font-size: 16px;
	}

	.price-head span,
	.price-row span,
	.price-row strong {
		padding-inline: 22px;
	}

	.price-row strong {
		display: block;
		font-size: 15px;
	}

	.center-action {
		margin-top: 36px;
	}

	.works-grid,
	.blog-grid {
		grid-template-columns: 1fr;
	}

	.works-grid img {
		height: 240px;
	}

	.faq-question {
		min-height: 56px;
		padding: 14px 52px 14px 18px;
		font-size: 15px;
	}

	.faq-question::after {
		right: 22px;
	}

	.faq-answer {
		padding: 0 18px 18px;
	}

	.contact-page-card {
		min-height: auto;
	}

	.contact-list {
		margin-bottom: 42px;
	}

	.about-intro {
		min-height: auto;
	}

	.blog-head {
		align-items: flex-start;
		gap: 20px;
		margin-bottom: 34px;
	}

	.blog-arrows .arrow {
		width: 44px;
		height: 44px;
	}

	.blog-arrows .arrow::after {
		top: 14px;
		left: 17px;
	}

	.blog-arrows .hero-next::after {
		left: 13px;
	}

	.blog-card {
		min-height: 390px;
	}

	.blog-more .button {
		width: 100%;
	}
	.button {
		min-width: auto;
	}
}

/* Extra pages: portfolio, blog, article, partner */
.portfolio-page-main,
.blog-page-main,
.article-page-main,
.partner-page-main {
	background: var(--page-bg);
}

.portfolio-section,
.blog-page-section,
.article-section,
.partner-section {
	padding-top: 80px;
}

.portfolio-section {
	padding-bottom: 60px;
}

.portfolio-card {
	padding: 48px 40px 60px;
}

.filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 8px;
	margin-top: 30px;
	margin-bottom: 40px;
}

.filter-chip {
	min-height: 48px;
	padding: 10px 28px;
	border: 0;
	border-radius: 100px;
	background: var(--page-bg);
	color: var(--dark);
	font: 400 16px/1.5 var(--body-font);
	cursor: pointer;
	transition:
		transform 0.2s ease,
		color 0.2s ease,
		background 0.2s ease,
		box-shadow 0.2s ease;
}

.filter-chip:hover {
	transform: translateY(-1px);
}

.filter-chip.is-active {
	color: #fff;
	background: var(--gradient);
	box-shadow: 0 2px 0 var(--shadow-green);
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.portfolio-item {
	display: block;
	overflow: hidden;
	border-radius: 16px;
	background: #d7d9df;
}

.portfolio-item img {
	width: 100%;
	height: 281px;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.portfolio-item:hover img {
	transform: scale(1.04);
}

.portfolio-item.is-hidden {
	display: none;
}

.blog-page-title {
	margin: 0 0 60px;
}

.blog-page-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 60px 20px;
}

.article-section {
	padding-bottom: 120px;
}

.article-card {
	overflow: hidden;
}

.article-card .breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 40px 40px 0;
	color: rgba(12, 13, 22, 0.35);
	font-size: 12px;
	line-height: 1.4;
}

.article-card .breadcrumbs span:last-of-type {
	color: #000;
}

.article-card .breadcrumbs a:hover {
	color: #168679;
}

.article-card h1 {
	max-width: 1090px;
	margin: 20px 40px 26px;
	font-family: var(--heading-font);
	font-size: 40px;
	line-height: 1.25;
	text-transform: uppercase;
}

.article-lead {
	max-width: 1110px;
	margin: 0 40px 34px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

.article-hero {
	width: 100%;
	height: 414px;
	object-fit: cover;
	object-position: center 45%;
}

.article-body {
	padding: 42px 40px 58px;
}

.article-body h2 {
	margin: 0 0 18px;
	font-size: 18px;
	line-height: 1.35;
	font-weight: 800;
}

.article-body p {
	max-width: 1110px;
	margin: 0 0 36px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

.article-body p:last-child {
	margin-bottom: 0;
}

.recommend-section {
	padding-bottom: 20px;
}

.partner-section {
	padding-bottom: 60px;
}

.partner-content h1 {
	margin: 0 0 30px;
	font-family: var(--body-font);
	font-size: 40px;
	line-height: 1.2;
	font-weight: 800;
}

.partner-content p {
	max-width: 920px;
	margin: 0 0 24px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

.partner-preview {
	width: 100%;
	max-width: 1276px;
	margin-top: 50px;
	overflow: hidden;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 0 0 1px rgba(12, 13, 22, 0.04);
}

.partner-preview-top {
	display: grid;
	grid-template-columns: 260px 1fr 54px;
	align-items: center;
	min-height: 72px;
	padding: 0 24px;
	background: #171717;
	color: #fff;
}

.partner-preview-top strong {
	font-size: 30px;
	line-height: 1;
}

.partner-preview-top span {
	display: block;
	height: 34px;
	padding: 8px 18px;
	border-radius: 2px;
	background: #fff;
	color: rgba(12, 13, 22, 0.55);
	font-size: 14px;
}

.partner-preview-top i {
	display: grid;
	place-items: center;
	height: 34px;
	background: #f3f3f3;
	color: #0c0d16;
	font-style: normal;
}

.partner-hero {
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 46px 70px;
	color: #fff;
	background: radial-gradient(circle at 76% 45%, rgba(115, 255, 155, 0.38), transparent 26%), linear-gradient(135deg, #101a1a 0%, #101111 45%, #05362b 100%);
}

.partner-hero span,
.partner-hero strong {
	display: block;
	font-family: var(--heading-font);
	text-transform: uppercase;
}

.partner-hero span {
	font-size: 40px;
	line-height: 1.15;
}

.partner-hero strong {
	margin-top: 10px;
	color: #d0fb84;
	font-size: 28px;
	line-height: 1.2;
}

.partner-hero img {
	width: 260px;
	padding: 28px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.92);
}

.partner-categories {
	display: flex;
	justify-content: center;
	gap: 42px;
	padding: 38px 30px 48px;
}

.partner-categories span {
	width: 112px;
	text-align: center;
	color: var(--dark);
	font-size: 14px;
	font-weight: 600;
}

.partner-categories span::before {
	content: "";
	display: block;
	width: 92px;
	height: 92px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: var(--cat) center / cover no-repeat;
	box-shadow:
		inset 0 0 0 4px #fff,
		0 12px 30px rgba(12, 13, 22, 0.16);
}

.partner-logos-section {
	padding-top: 0;
}

@media (max-width: 1180px) {
	.portfolio-grid,
	.blog-page-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.partner-hero {
		padding: 38px 36px;
	}

	.partner-hero span {
		font-size: 30px;
	}

	.partner-categories {
		flex-wrap: wrap;
	}
}

@media (max-width: 760px) {
	.portfolio-section,
	.blog-page-section,
	.article-section,
	.partner-section {
		padding-top: 40px;
	}

	.portfolio-card,
	.article-card .breadcrumbs,
	.article-body {
		padding-left: 24px;
		padding-right: 24px;
	}

	.portfolio-grid,
	.blog-page-grid {
		grid-template-columns: 1fr;
	}

	.filter-chip {
		min-height: 42px;
		padding-inline: 18px;
		font-size: 14px;
	}

	.portfolio-item img {
		height: 240px;
	}

	.blog-page-title {
		margin-bottom: 34px;
	}

	.blog-page-grid {
		gap: 24px;
	}

	.article-card h1 {
		margin-left: 24px;
		margin-right: 24px;
		font-size: 26px;
	}

	.article-lead {
		margin-left: 24px;
		margin-right: 24px;
		font-size: 15px;
	}

	.article-hero {
		height: 260px;
	}

	.article-body h2 {
		font-size: 16px;
	}

	.article-body p,
	.partner-content p {
		font-size: 15px;
	}

	.partner-content h1 {
		font-size: 32px;
	}

	.partner-preview-top {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 18px;
	}

	.partner-preview-top i {
		display: none;
	}

	.partner-hero {
		display: grid;
		gap: 28px;
	}

	.partner-hero img {
		width: 210px;
	}

	.partner-categories {
		gap: 20px;
	}
}

/* Callback popup */

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

body.modal-open {
	overflow: hidden;
}

.callback-popup {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	place-items: center;
	padding: 24px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.22s ease,
		visibility 0.22s ease;
}

.callback-popup.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.callback-popup__overlay {
	position: absolute;
	inset: 0;
	background: #222222;
	opacity: 0.5;
}

.callback-popup__dialog {
	position: relative;
	z-index: 1;
	width: min(542px, 100%);
	min-height: 413px;
	padding: 48px;
	border-radius: 16px;
	background: #fff;
	color: var(--dark);
	box-shadow: 0 24px 80px rgba(12, 13, 22, 0.22);
	transform: translateY(16px) scale(0.98);
	transition: transform 0.22s ease;
}

.callback-popup.is-open .callback-popup__dialog {
	transform: translateY(0) scale(1);
}

.callback-popup__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 28px;
	height: 28px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.callback-popup__close::before,
.callback-popup__close::after {
	content: "";
	position: absolute;
	left: 7px;
	top: 13px;
	width: 14px;
	height: 2px;
	border-radius: 100px;
	background: rgba(12, 13, 22, 0.45);
	transition: background 0.2s ease;
}

.callback-popup__close::before {
	transform: rotate(45deg);
}

.callback-popup__close::after {
	transform: rotate(-45deg);
}

.callback-popup__close:hover::before,
.callback-popup__close:hover::after {
	background: var(--dark);
}

.callback-popup__title {
	margin: 0 0 10px;
	font-family: var(--heading-font);
	font-weight: 900;
	font-size: 28px;
	line-height: 1.3;
	text-transform: uppercase;
	color: var(--dark);
}

.callback-popup__subtitle {
	margin: 0 0 42px;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	color: var(--dark);
}

.callback-popup__form {
	display: grid;
	gap: 20px;
}

.callback-popup__field {
	display: block;
}

.callback-popup__input {
	width: 100%;
	height: 60px;
	padding: 0 20px;
	border: 1px solid #d7d8da;
	border-radius: 8px;
	outline: none;
	background: #eff0f3;
	color: var(--dark);
	font-family: var(--heading-font);
	font-weight: 400;
	font-size: 12px;
	line-height: 1.3;
	text-transform: uppercase;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease;
}

.callback-popup__input::placeholder {
	color: var(--dark);
	opacity: 1;
}

.callback-popup__input:focus {
	border-color: #2ca7a5;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(44, 167, 165, 0.16);
}

.callback-popup__submit {
	width: 100%;
	min-height: 60px;
}

.callback-popup__policy {
	margin: 6px 0 0;
	font-size: 12px;
	line-height: 1.3;
	color: rgba(12, 13, 22, 0.5);
}

.callback-popup__success {
	min-height: 18px;
	margin: -8px 0 0;
	color: #168679;
	font-size: 13px;
	line-height: 1.35;
}

@media (max-width: 640px) {
	.callback-popup {
		padding: 16px;
	}

	.callback-popup__dialog {
		min-height: auto;
		padding: 36px 22px 28px;
	}

	.callback-popup__title {
		max-width: 260px;
		font-size: 22px;
	}

	.callback-popup__subtitle {
		margin-bottom: 28px;
		font-size: 14px;
	}

	.callback-popup__input,
	.callback-popup__submit {
		min-height: 56px;
		height: 56px;
	}
}
.error-page-main {
	min-height: 70vh;
	background: #eff0f3;
}

.error-404-section {
	padding: 150px 0 90px;
	overflow: hidden;
}

.error-404-container {
	position: relative;
}

.error-404-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
	gap: 40px;
	align-items: center;
	min-height: 430px;
	padding: clamp(30px, 5vw, 70px);
	overflow: hidden;
}

.error-404-card::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 38%), radial-gradient(circle at 86% 22%, rgba(237, 24, 71, 0.18), transparent 30%);
}

.error-404-content,
.error-404-visual {
	position: relative;
	z-index: 1;
}

.error-404-label {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 16px;
	border: 1px solid rgba(237, 24, 71, 0.28);
	border-radius: 999px;
	color: #ed1847;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	background: rgba(237, 24, 71, 0.08);
}

.error-404-content h1 {
	max-width: 720px;
	margin: 24px 0 20px;
	font-family: "Orbitron", "Manrope", sans-serif;
	font-size: clamp(38px, 6vw, 76px);
	font-weight: 900;
	line-height: 0.98;
	text-transform: uppercase;
	color: #11131c;
}

.error-404-content p {
	max-width: 620px;
	margin: 0;
	color: rgba(17, 19, 28, 0.78);
	font-size: clamp(16px, 1.5vw, 20px);
	line-height: 1.65;
}

.error-404-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px 24px;
	margin-top: 34px;
}

.error-404-phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 52px;
	color: #11131c;
	font-weight: 800;
	text-decoration: none;
	transition:
		color 0.2s ease,
		transform 0.2s ease;
}

.error-404-phone .icon {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
}

.error-404-phone:hover {
	color: #ed1847;
	transform: translateY(-1px);
}

.error-404-visual {
	display: grid;
	place-items: center;
	min-height: 300px;
}

.error-404-number {
	position: relative;
	z-index: 2;
	font-family: "Orbitron", "Manrope", sans-serif;
	font-size: clamp(88px, 13vw, 188px);
	font-weight: 900;
	line-height: 1;
	color: #11131c;
	text-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.error-404-ring {
	position: absolute;
	border-radius: 999px;
	border: 1px solid rgba(237, 24, 71, 0.28);
	pointer-events: none;
}

.error-404-ring--one {
	width: 330px;
	height: 330px;
	background: rgba(237, 24, 71, 0.06);
}

.error-404-ring--two {
	width: 220px;
	height: 220px;
	border-color: rgba(17, 19, 28, 0.12);
	transform: translate(42px, -28px);
}

.error-404-links {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 22px;
}

.error-404-links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 78px;
	padding: 20px 22px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 22px;
	color: #000;
	font-weight: 800;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.055);
	backdrop-filter: blur(8px);
	transition:
		border-color 0.2s ease,
		background 0.2s ease,
		transform 0.2s ease;
}

.error-404-links a:hover {
	border-color: rgba(237, 24, 71, 0.58);
	background: rgba(237, 24, 71, 0.12);
	transform: translateY(-2px);
}

.error-404-links svg {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@media (max-width: 1024px) {
	.error-404-section {
		padding: 125px 0 70px;
	}

	.error-404-card {
		grid-template-columns: 1fr;
	}

	.error-404-visual {
		min-height: 220px;
		order: -1;
	}

	.error-404-links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.error-404-section {
		padding: 105px 0 54px;
	}

	.error-404-card {
		padding: 28px 20px 34px;
		border-radius: 26px;
	}

	.error-404-visual {
		min-height: 160px;
	}

	.error-404-ring--one {
		width: 210px;
		height: 210px;
	}

	.error-404-ring--two {
		width: 145px;
		height: 145px;
	}

	.error-404-actions,
	.error-404-actions .button,
	.error-404-phone {
		width: 100%;
	}

	.error-404-actions .button,
	.error-404-phone {
		justify-content: center;
	}

	.error-404-links {
		grid-template-columns: 1fr;
	}
}
/* Portfolio Modal Styles */
.portfolio-modal-gallery {
	position: relative;
	margin-bottom: 24px;
}

.portfolio-modal-gallery-main {
	border-radius: 8px;
	overflow: hidden;
	background: #f5f5f5;
}

.portfolio-modal-gallery-main .swiper-slide {
	height: auto;
}

.portfolio-modal-gallery-main .swiper-slide img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
}

.portfolio-modal-gallery-thumbs {
	margin-top: 10px;
}

.portfolio-modal-gallery-thumbs .swiper-slide {
	width: 80px;
	height: 60px;
	cursor: pointer;
	opacity: 0.6;
	transition: opacity 0.3s ease;
	border-radius: 4px;
	overflow: hidden;
}

.portfolio-modal-gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
	border: 2px solid #007cba;
}

.portfolio-modal-gallery-thumbs .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.portfolio-modal-gallery-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 10px;
	pointer-events: none;
	z-index: 10;
}

.portfolio-modal-gallery-nav button {
	pointer-events: all;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 24px;
	cursor: pointer;
	transition: background 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.portfolio-modal-gallery-nav button:hover {
	background: rgba(0, 0, 0, 0.8);
}

.portfolio-modal-info {
	padding: 20px 0;
}

.portfolio-modal-info h2 {
	margin-bottom: 12px;
	font-size: 24px;
	color: #1a1a1a;
}

.portfolio-modal-meta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 16px;
	font-size: 14px;
	color: #666;
}

.portfolio-modal-meta span {
	padding: 4px 12px;
	background: #f5f5f5;
	border-radius: 4px;
}

#portfolioModalText {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
}

#portfolioModalText p {
	margin-bottom: 12px;
}

/* Portfolio Grid */
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.portfolio-item {
	position: relative;
	display: block;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 4/3;
}

.portfolio-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.portfolio-item:hover img {
	transform: scale(1.05);
}

.portfolio-item-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-item-overlay {
	opacity: 1;
}

.portfolio-item-title {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}
.burger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 28px;
	height: 20px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
	position: relative;
}

.burger span {
	display: block;
	width: 100%;
	height: 2.5px;
	background: #222;
	border-radius: 4px;
	transition: all 0.3s ease;
	transform-origin: center;
}

/* Анимация бургера в крестик */
.burger.active span:nth-child(1) {
	transform: translateY(8.5px) rotate(45deg);
}
.burger.active span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.burger.active span:nth-child(3) {
	transform: translateY(-8.5px) rotate(-45deg);
}

/* === Мобильное меню (выпадающее) === */
.mobile-menu {
	display: none;
	flex-direction: column;
	background: #fff;
	padding: 20px 20px 30px;
	border-radius: 0 0 12px 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	gap: 18px;
	width: 100%;
	order: 10;
	animation: slideDown 0.3s ease forwards;
}

.mobile-menu.open {
	display: flex;
}

.mobile-menu a {
	text-decoration: none;
	color: #222;
	font-size: 18px;
	font-weight: 500;
	padding: 8px 0;
	border-bottom: 1px solid #f0f0f0;
	transition: color 0.2s;
}

.mobile-menu a:last-child {
	border-bottom: none;
}

.mobile-menu a:hover {
	color: #0077cc;
}

.mobile-menu .mobile-address,
.mobile-menu .mobile-phone {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	color: #444;
	padding: 8px 0;
	border-bottom: 1px solid #f0f0f0;
}

.mobile-menu .mobile-phone {
	border-bottom: none;
	font-weight: 600;
}

.mobile-menu .mobile-phone a {
	all: unset;
	color: #222;
	font-weight: 700;
	cursor: pointer;
}

.mobile-menu .mobile-phone a:hover {
	color: #0077cc;
}

/* Анимация */
@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* === Адаптив === */
@media (max-width: 992px) {
	.main-nav {
		display: none;
	}

	.header-info {
		display: none;
	}

	.burger {
		display: flex;
	}

	.header-inner {
		flex-wrap: wrap;
	}

	/* Меню показываем между логотипом и бургером, но технически оно в конце */
	.mobile-menu {
		display: none;
		flex-direction: column;
	}

	.mobile-menu.open {
		display: flex;
	}
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
	.header-inner {
		padding: 12px 15px;
	}

	.logo {
		max-height: 40px;
		width: auto;
	}

	.mobile-menu a {
		font-size: 16px;
	}
}

/* Показываем мобильное меню только при открытом бургере */
.header-inner.menu-open .mobile-menu {
	display: flex;
}
