:root {
	--black: #282828;
	--blue: #384c6f;
	--yellow: #f4d046;
	--bg: #f7f7f7;
	--card: #edeef0;
	--border: #dcdfe3;
	--white: #fff;
	--muted: #909090;
	--container: 1200px;
	--header-h: 126px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

html {
	scrollbar-width: thin;
	scrollbar-color: var(--blue) var(--card);
	scrollbar-gutter: stable;
}

* {
	scrollbar-width: thin;
	scrollbar-color: var(--blue) var(--card);
}

::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-track {
	background: var(--card);
}

::-webkit-scrollbar-thumb {
	background: var(--blue);
	border: 2px solid var(--card);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--yellow);
}

::-webkit-scrollbar-corner {
	background: var(--card);
}

body {
	margin: 0;
	font-family: Inter, system-ui, sans-serif;
	color: var(--black);
	background: var(--bg);
	font-size: 16px;
	line-height: 1.4;
	padding-bottom: 64px;
}

@media (min-width: 992px) {
	body {
		padding-bottom: 0;
	}
}

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

a {
	color: inherit;
}

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

@media (min-width: 1200px) {
	.container-ob {
		width: min(100% - 48px, var(--container));
	}
}

.h-section {
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.2;
	margin: 0 0 28px;
}

.btn-yellow,
.btn-blue,
.btn-ghost,
.btn-ghost-dark,
.btn-white {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 39px;
	padding: 11px 20px;
	border: 0;
	font: 600 17px/1 Inter, sans-serif;
	letter-spacing: -0.02em;
	text-decoration: none;
	cursor: pointer;
	z-index: 0;
	transition: transform 0.28s ease, background 0.28s ease,
		border-color 0.28s ease, color 0.28s ease;
}
.btn-yellow > *,
.btn-blue > *,
.btn-ghost > *,
.btn-ghost-dark > *,
.btn-white > * {
	position: relative;
	z-index: 2;
}
.btn-yellow::before,
.btn-blue::before,
.btn-ghost::before,
.btn-ghost-dark::before,
.btn-white::before {
	content: "";
	position: absolute;
	inset: -40% -70%;
	background: linear-gradient(
		115deg,
		transparent 28%,
		rgba(255, 255, 255, 0.08) 40%,
		rgba(255, 255, 255, 0.72) 50%,
		rgba(255, 248, 200, 0.45) 54%,
		rgba(255, 255, 255, 0.12) 62%,
		transparent 74%
	);
	transform: translateX(-70%) skewX(-20deg);
	animation: shine-idle 3.6s ease-in-out infinite;
	pointer-events: none;
	z-index: 1;
}
.btn-yellow:hover,
.btn-blue:hover,
.btn-ghost:hover,
.btn-ghost-dark:hover,
.btn-white:hover {
	transform: translateY(-2px);
}
.btn-yellow:hover::before,
.btn-blue:hover::before,
.btn-ghost:hover::before,
.btn-ghost-dark:hover::before,
.btn-white:hover::before {
	animation: shine-hover 0.65s ease-out;
}
.btn-yellow:active,
.btn-blue:active,
.btn-ghost:active,
.btn-ghost-dark:active,
.btn-white:active {
	transform: translateY(0);
}

.btn-yellow {
	color: var(--black);
	background: var(--yellow);
}
.btn-yellow:hover {
	background: #ffd84f;
}
.btn-blue {
	color: #fff;
	border: 0;
	background: var(--blue);
}
.btn-blue:hover {
	background: #42597f;
}
.btn-ghost {
	color: #fff;
	background: transparent;
	border: 1px solid var(--yellow);
}
.btn-ghost:hover {
	background: rgba(244, 208, 70, 0.16);
}
.btn-ghost-dark {
	color: var(--black);
	background: transparent;
	border: 1px solid var(--border);
}
.btn-ghost-dark:hover {
	border-color: var(--blue);
	color: var(--blue);
}
.btn-white {
	color: var(--black);
	background: #fff;
	border: 1px solid #fff;
}
.btn-white:hover {
	background: var(--yellow);
	border-color: var(--yellow);
}

@keyframes shine-idle {
	0%,
	35% {
		transform: translateX(-75%) skewX(-20deg);
		opacity: 0.35;
	}
	70% {
		transform: translateX(75%) skewX(-20deg);
		opacity: 1;
	}
	100% {
		transform: translateX(75%) skewX(-20deg);
		opacity: 0;
	}
}
@keyframes shine-hover {
	0% {
		transform: translateX(-80%) skewX(-20deg);
		opacity: 0.3;
	}
	100% {
		transform: translateX(80%) skewX(-20deg);
		opacity: 1;
	}
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	max-width: none;
	z-index: 40;
	color: #fff;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.45) 0%,
		rgba(0, 0, 0, 0.12) 70%,
		transparent 100%
	);
}
.site-header.is-stuck {
	background: rgba(28, 28, 28, 0.34);
	backdrop-filter: blur(8px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.page-static .site-header {
	background: #384c6f;
	position: sticky;
	margin-bottom: 2rem;
}

.site-header__top .container-ob,
.site-header__nav-row {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 66px;
}

.site-header__nav {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.site-header__nav-row {
	min-height: 60px;
	justify-content: space-between;
	position: relative;
}

.brand {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	color: #fff;
	transition: transform 0.25s ease, opacity 0.25s ease;
}
.brand__logo {
	width: 150px;
	height: 32px;
	object-fit: contain;
	color: #fff;
}
.brand__fallback {
	display: none;
	align-items: center;
	gap: 8px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.brand__tagline {
	margin: 0;
	max-width: 199px;
	font-size: 14px;
	opacity: 0.7;
}
.header-hours {
	margin: 0 0 0 auto;
	font-size: 14px;
	opacity: 0.7;
}
.header-socials {
	display: flex;
	gap: 4px;
}
.soc {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.08);
	transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.soc:hover {
	transform: translateY(-2px);
	background: rgba(244, 208, 70, 0.22);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}
.soc img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}
.header-contacts {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4;
}
.header-contacts a {
	text-decoration: none;
	color: #fff;
	transition: color 0.2s ease;
}
.header-contacts a:hover {
	color: var(--yellow);
}
.header-phone {
	white-space: nowrap;
}
.brand:hover {
	transform: translateY(-1px);
	opacity: 0.92;
}

/* menu */

.main-nav,
.main-nav ul,
.main-nav li {
	list-style: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.main-nav {
	display: flex;
	align-items: center;
	gap: 36px;
	flex: 1;
}
.main-nav > li {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: center;
}
.main-nav > li > .nav-link {
	display: inline-flex;
	align-items: center;
	position: relative;
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	height: 100%;
	padding: 0;
	transition: color 0.2s ease;
}
.main-nav > li > .nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--yellow), transparent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.28s ease;
}
.main-nav > li > .nav-link:hover,
.main-nav > li > .nav-link.is-active,
.main-nav > li.active > .nav-link {
	color: var(--yellow);
}
.main-nav > li > .nav-link:hover::after,
.main-nav > li > .nav-link.is-active::after,
.main-nav > li.active > .nav-link::after {
	transform: scaleX(1);
}
.main-nav li > ul {
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 220px;
	padding: 12px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	z-index: 100;
}
.main-nav li > ul::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	height: 20px;
}
.main-nav li:hover > ul,
.main-nav li:focus-within > ul,
.main-nav li.is-open > ul {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}
.main-nav ul .nav-link {
	display: block;
	font-size: 14px;
	color: var(--black, #1a1a1a);
	text-decoration: none;
	padding: 6px 10px;
	border-radius: 4px;
	transition: color 0.2s ease, background 0.2s ease;
}
.main-nav ul .nav-link:hover {
	color: var(--blue);
	background: rgba(56, 76, 111, 0.08);
}
.main-nav > li.mega {
	position: static;
}
.main-nav > li.mega > ul {
	left: 0;
	right: 0;
	top: calc(100% - 14px);
	width: 100%;
	min-width: 0;
	display: flex;
	align-items: flex-start;
	gap: 32px;
	padding: 38px 24px 24px;
	border-radius: 8px;
	transform: none;
}
.main-nav > li.mega > ul::before {
	height: 14px;
}
.main-nav > li.mega > ul > li {
	flex: 1 1 0;
	min-width: 0;
	position: relative;
}
.main-nav > li.mega > ul > li > .nav-link {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 8px;
	padding: 0;
	background: none;
	border-radius: 0;
}
.main-nav > li.mega > ul > li > .nav-link:hover {
	background: none;
	color: var(--blue);
}
.main-nav > li.mega ul ul {
	position: static;
	opacity: 1;
	visibility: inherit;
	pointer-events: inherit;
	transform: none;
	min-width: 0;
	padding: 0;
	background: transparent;
	box-shadow: none;
	border-radius: 0;
}
.main-nav > li.mega ul ul::before {
	content: none;
}
.main-nav > li.mega ul ul .nav-link {
	padding: 6px 8px;
	margin: 0 -8px;
	border-radius: 0;
	transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}
.main-nav > li.mega ul ul .nav-link:hover {
	color: var(--blue);
	background: rgba(56, 76, 111, 0.08);
	padding-left: 14px;
}

.nav-toggle {
	margin-left: auto;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: transparent;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	padding: 10px;
	transition: border-color 0.2s ease, background 0.2s ease;
}
.nav-toggle:hover {
	border-color: var(--yellow);
	background: rgba(244, 208, 70, 0.12);
}
.nav-toggle span {
	display: block;
	height: 2px;
	background: #fff;
}

.hero {
	position: relative;
	overflow: hidden;
	min-height: 750px;
	display: flex;
	align-items: flex-end;
	color: #fff;
	background-color: #1b1b1b;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: calc(var(--header-h) + 32px) 0 64px;
}
.hero > *:not(.parallax-layer) {
	position: relative;
	z-index: 2;
}
.hero h1 {
	max-width: 580px;
	font-size: clamp(32px, 5vw, 54px);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.2;
	margin: 0 0 20px;
}
.hero p {
	max-width: 580px;
	font-size: 18px;
	margin: 0;
}
.hero-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin: 24px 0;
}
.hero-icon {
	width: 115px;
	transition: transform 0.25s ease;
	text-decoration: none;
	display: inline;
}
.hero-icon:hover {
	transform: translateY(-3px);
}
.hero-icon img,
.hero-icon span {
	display: block;
	margin-top: 6px;
	font-weight: 500;
	font-size: 20px;
	letter-spacing: -0.03em;
}

.section {
	padding: 72px 0;
}
.section-tight {
	padding: 48px 0;
}
.section-static {
	padding: 32px 0;
}

.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 340px;
	color: #fff;
	overflow: hidden;
	text-decoration: none;
	background: #333 center/cover no-repeat;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(40, 40, 40, 0.22);
}
.service-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		115deg,
		transparent 35%,
		rgba(255, 255, 255, 0.22) 50%,
		transparent 65%
	);
	transform: translateX(-80%);
	transition: transform 0.6s ease;
	pointer-events: none;
	z-index: 1;
}
.service-card:hover::after {
	transform: translateX(80%);
}
.service-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(40, 40, 40, 0.3);
}
.service-card > * {
	position: relative;
	z-index: 1;
}
.service-card h3 {
	font-size: 23px;
	font-weight: 500;
	letter-spacing: -0.03em;
	margin: 0 16px 6px;
}
.service-card p {
	margin: 0 16px 16px;
	font-size: 14px;
}
.service-card .btn-white {
	margin: 0 16px 20px;
	align-self: stretch;
}

.guarantee {
	background: var(--card);
	border: 1px solid var(--border);
	padding: 16px;
	min-height: 215px;
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto 1fr;
	gap: 8px 12px;
	transition: transform 0.25s ease, border-color 0.25s ease,
		box-shadow 0.25s ease;
}
.guarantee:hover {
	transform: translateY(-3px);
	border-color: #8591a6;
	box-shadow: 0 10px 24px rgba(56, 76, 111, 0.1);
}
.guarantee img {
	grid-column: 2;
	grid-row: 1;
	width: 64px;
	height: 64px;
	object-fit: contain;
	align-self: start;
}
.guarantee h3 {
	grid-column: 1;
	grid-row: 1;
	font-size: 23px;
	font-weight: 500;
	letter-spacing: -0.03em;
	margin: 0;
	align-self: start;
}
.guarantee p {
	grid-column: 1 / -1;
	grid-row: 2;
	align-self: end;
	margin: 0;
	font-size: 14px;
}

.projects-head {
	display: grid;
	gap: 16px;
}
@media (min-width: 992px) {
	.projects-head {
		grid-template-columns: 1fr 1fr;
		align-items: end;
	}
}

.carousel-nav {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 20px;
}
.carousel-nav .line {
	flex: 1;
	height: 1px;
	background: var(--border);
}
.round-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: #fff;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: transform 0.25s ease, background 0.25s ease,
		border-color 0.25s ease, box-shadow 0.25s ease;
}
.round-btn:hover {
	background: var(--yellow);
	border-color: var(--yellow);
	transform: scale(1.06);
	box-shadow: 0 6px 14px rgba(244, 208, 70, 0.35);
}
.round-btn img {
	width: 16px;
	height: 16px;
}

.price-card {
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 28px rgba(40, 40, 40, 0.12);
}
.price-card img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}
.price-tags {
	position: absolute;
	top: 20px;
	left: 20px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.price-tags span {
	background: var(--blue);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	padding: 11px;
}
.price-card figcaption {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 242px;
	background: rgba(237, 238, 240, 0.8);
	padding: 20px;
	font-size: 16px;
}

.form-band {
	position: relative;
	overflow: hidden;
	min-height: 560px;
	background-color: #333;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 80px 0;
	display: flex;
	align-items: center;
}
.form-band::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		90deg,
		rgba(20, 20, 20, 0.28) 0%,
		rgba(20, 20, 20, 0.12) 55%,
		transparent 100%
	);
	pointer-events: none;
}
.form-band > *:not(.parallax-layer) {
	position: relative;
	z-index: 2;
}
.form-card {
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
	padding: 40px;
	max-width: 580px;
}
.has-parallax {
	background-image: none !important;
}
.parallax-layer {
	position: absolute;
	inset: -18% 0;
	z-index: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	will-change: transform;
	pointer-events: none;
}

.lead-field {
	display: block;
	margin-bottom: 20px;
}
.lead-field span,
.lead-field label {
	display: block;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--muted);
}
.lead-field input {
	width: 100%;
	border: 0;
	border-bottom: 1px solid var(--border);
	background: transparent;
	padding: 8px 0;
	font: 16px Inter, sans-serif;
	transition: border-color 0.2s ease;
}
.lead-field input:hover,
.lead-field input:focus {
	outline: none;
	border-bottom-color: var(--blue);
}
.lead-check {
	position: relative;
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 14px;
	color: var(--muted);
	margin: 16px 0 24px;
	cursor: pointer;
	user-select: none;
}
.lead-check__input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	pointer-events: none;
}
.lead-check__box {
	position: relative;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	margin-top: 1px;
	border: 1.5px solid #c9ced6;
	background: #fff;
	border-radius: 4px;
	transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease,
		transform 0.2s ease;
}
.lead-check__box::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 2px;
	width: 6px;
	height: 11px;
	border: solid #282828;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg) scale(0);
	transition: transform 0.18s ease;
}
.lead-check:hover .lead-check__box {
	border-color: var(--yellow);
	box-shadow: 0 0 0 4px rgba(244, 208, 70, 0.18);
}
.lead-check__input:focus-visible + .lead-check__box {
	box-shadow: 0 0 0 4px rgba(56, 76, 111, 0.22);
}
.lead-check__input:checked + .lead-check__box {
	background: var(--yellow);
	border-color: var(--yellow);
}
.lead-check__input:checked + .lead-check__box::after {
	transform: rotate(45deg) scale(1);
}
.lead-check a {
	color: var(--blue);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.lead-check a:hover {
	color: #2d3d5a;
}

/* Fluent forms fix  */
.ff-el-form-check.ff-el-tc {
	margin: 16px 0 24px;
}
.ff-el-form-check.ff-el-tc .ff_tc_label {
	position: relative;
	display: flex !important;
	gap: 12px;
	align-items: flex-start;
	font-size: 14px;
	color: var(--muted);
	cursor: pointer;
	user-select: none;
	margin: 0;
	font-weight: 400;
}
.ff-el-form-check.ff-el-tc .ff_tc_checkbox {
	position: relative;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	padding: 0 !important;
	margin: 0 !important;
	border: 1.5px solid #c9ced6;
	background: #fff;
	border-radius: 4px;
	box-sizing: border-box;
	display: inline-block;
	line-height: 0;
	transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.ff-el-form-check.ff-el-tc .ff_tc_checkbox input.ff-el-form-check-input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
	opacity: 0;
	cursor: pointer;
	pointer-events: auto;
	z-index: 2;
}
.ff-el-form-check.ff-el-tc .ff_tc_checkbox::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 2px;
	width: 6px;
	height: 11px;
	border: solid #282828;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg) scale(0);
	transition: transform 0.18s ease;
	pointer-events: none;
	box-sizing: content-box;
	z-index: 1;
}
.ff-el-form-check.ff-el-tc .ff_tc_label:hover .ff_tc_checkbox {
	border-color: var(--yellow);
	box-shadow: 0 0 0 4px rgba(244, 208, 70, 0.18);
}
.ff-el-form-check.ff-el-tc .ff_tc_checkbox:has(input:focus-visible) {
	box-shadow: 0 0 0 4px rgba(56, 76, 111, 0.22);
}
.ff-el-form-check.ff-el-tc .ff_tc_checkbox:has(input:checked) {
	background: var(--yellow);
	border-color: var(--yellow);
}
.ff-el-form-check.ff-el-tc .ff_tc_checkbox:has(input:checked)::after {
	transform: rotate(45deg) scale(1);
}
.ff-el-form-check.ff-el-tc .ff_t_c {
	margin: 0;
	line-height: 1.4;
	flex: 1 1 auto;
	min-width: 0;
}
.ff-el-form-check.ff-el-tc .ff_t_c p {
	margin: 0;
	font-size: 14px;
	color: var(--muted);
}
.ff-el-form-check.ff-el-tc .ff_t_c a {
	color: var(--blue);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.ff-el-form-check.ff-el-tc .ff_t_c a:hover {
	color: #2d3d5a;
}
.fluentform .ff-el-tc label.ff_tc_label > div, .fluentform .ff-el-tc label.ff_tc_label > span {
	display: inline-block !important;
}
.fluentform .ff-el-input--label.ff-el-is-required.asterisk-right label::after {
	margin-left: 0 !important;
	color: red !important;
}

.step-card {
	display: grid;
	grid-template-columns: 1fr 250px;
	border: 1px solid #8591a6;
	min-height: 217px;
	overflow: hidden;
	background: #fff;
}
.step-card__text {
	padding: 20px;
}
.step-card__num {
	color: var(--blue);
	font-weight: 500;
	font-size: 20px;
}
.step-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rating-box {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	border: 1px solid var(--card);
	padding: 18px;
	background: #fff;
}
.rating-box strong {
	font-size: 54px;
	letter-spacing: -0.03em;
	line-height: 1;
}

.review-card {
	background: var(--card);
}
.review-card img.cover {
	width: 100%;
	height: 350px;
	object-fit: cover;
}
.review-card .body {
	padding: 20px;
}
.review-meta {
	display: flex;
	gap: 12px;
	align-items: center;
}

.accordion-item {
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--border);
}
.accordion-button {
	font-size: 23px;
	font-weight: 500;
	letter-spacing: -0.03em;
	background: transparent;
	box-shadow: none !important;
	transition: color 0.2s ease;
}
.accordion-button:hover {
	color: var(--blue);
}
.accordion-button:not(.collapsed) {
	background: transparent;
	color: var(--black);
}

.inner-content {
	font-size: 18px;
}
.inner-content p {
	margin: 0 0 16px;
}

.mobile-call {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 12px;
	z-index: 30;
	background: var(--yellow);
	color: var(--black);
	text-align: center;
	padding: 14px;
	font-weight: 600;
	text-decoration: none;
}

.site-footer {
	background: var(--blue);
	color: rgba(255, 255, 255, 0.82);
	padding: 60px 0 24px;
	min-height: 521px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 270px 270px 270px 270px;
	column-gap: 40px;
	justify-content: space-between;
	align-items: start;
}
.footer-brand {
	display: flex;
	align-items: center;
	gap: 11px;
	color: #fff;
	text-decoration: none;
	font-weight: 800;
	font-size: 15px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1;
}
.footer-brand__rehau {
	width: 100%;
	height: auto;
	object-fit: contain;
}
.footer-brand img:not(.footer-brand__rehau) {
	width: 40px;
	height: 40px;
	object-fit: contain;
	flex-shrink: 0;
}
.footer-brand__div {
	width: 1px;
	height: 36px;
	background: rgba(255, 255, 255, 0.15);
}
.footer-about {
	margin: 16px 0 0;
	font-size: 14px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.62);
}
.footer-links a {
	display: block;
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
	font-size: 16px;
	line-height: 1.4;
	margin: 0 0 20px;
	transition: color 0.2s ease, transform 0.2s ease, padding-left 0.2s ease;
}
.footer-links a:hover {
	color: var(--yellow);
	padding-left: 6px;
}
.footer-links a:last-child {
	margin-bottom: 0;
}
.footer-nav a {
	display: block;
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
	font-weight: 500;
	font-size: 18px;
	letter-spacing: -0.01em;
	line-height: 1.4;
	margin: 0 0 22px;
	transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-nav a:hover {
	color: var(--yellow);
	padding-left: 6px;
}
.footer-phone {
	display: block;
	font-weight: 800;
	font-size: 20px;
	letter-spacing: -0.02em;
	color: #fff;
	text-decoration: none;
	line-height: 24px;
	transition: color 0.2s ease;
}
.footer-phone:hover {
	color: var(--yellow);
}
.footer-brand {
	transition: opacity 0.2s ease;
}
.footer-brand:hover {
	opacity: 0.85;
}
.footer-cta__note {
	margin: 4px 0 16px;
	font-size: 11px;
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.48);
}
.footer-cta .btn-yellow,
.footer-cta .btn-ghost {
	display: flex;
	width: 270px;
	max-width: 100%;
	min-height: 39px;
	margin-bottom: 14px;
}
.footer-cta .btn-ghost {
	color: #fff;
	border-color: var(--yellow);
	box-shadow: none;
}
.footer-soc {
	display: flex;
	gap: 17px;
	margin-bottom: 16px;
}
.footer-soc a {
	width: 40px;
	height: 40px;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	display: grid;
	place-items: center;
	transition: transform 0.25s ease, background 0.25s ease,
		border-color 0.25s ease;
}
.footer-soc a:hover {
	transform: translateY(-2px);
	background: rgba(244, 208, 70, 0.22);
	border-color: var(--yellow);
}
.footer-soc img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}
.footer-hours {
	width: 270px;
	max-width: 100%;
	min-height: 47px;
	background: rgba(0, 0, 0, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.07);
	padding: 8px 12px;
	font-size: 12px;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.78);
}
.footer-hours span {
	display: block;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 2px;
}
.footer-legal {
	font-size: 14px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.62);
}
.footer-legal p {
	margin: 0 0 8px;
}
.footer-mid {
	margin-top: 28px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-bottom {
	display: grid;
	grid-template-columns: 270px 270px minmax(180px, 1fr) auto;
	column-gap: 40px;
	align-items: center;
	margin-top: 28px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	font-size: 12px;
	transition: color 0.2s ease;
}
.footer-bottom a:hover {
	color: #fff;
}
.footer-rating {
	width: 146px;
	height: 48px;
	object-fit: cover;
	border-radius: 4px;
}

@media (max-width: 1199.98px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
	.footer-bottom {
		grid-template-columns: 1fr;
		justify-items: start;
	}
}

@media (max-width: 575.98px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}
}

.modal {
	--bs-modal-border-radius: 24px;
}
.modal-backdrop.show {
	background: rgba(18, 22, 32, 0.62);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.modal.fade .modal-dialog {
	transform: translateY(28px) scale(0.94);
	filter: blur(4px);
	transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), filter 0.42s ease,
		opacity 0.42s ease;
}
.modal.show .modal-dialog {
	transform: none;
	filter: none;
}
.lead-modal {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 0 0 1px rgba(56, 76, 111, 0.06),
		0 24px 60px rgba(20, 28, 44, 0.28), 0 2px 8px rgba(20, 28, 44, 0.08);
}
.lead-modal::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 4px;
	background: var(--yellow);
}
.lead-modal::after {
	content: "";
	position: absolute;
	width: 180px;
	height: 180px;
	right: -60px;
	top: -70px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(244, 208, 70, 0.22),
		transparent 70%
	);
	pointer-events: none;
}
.lead-modal .modal-header {
	position: relative;
	z-index: 1;
	padding: 32px 32px 8px;
	border: 0;
	align-items: flex-start;
}
.lead-modal .modal-title {
	font-size: 28px;
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.2;
	max-width: 80%;
}
.lead-modal__lead {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
}
.lead-modal .modal-body {
	position: relative;
	z-index: 1;
	padding: 8px 32px 32px;
}
.modal-close {
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: var(--card);
	color: var(--black);
	font-size: 22px;
	line-height: 1;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
	margin-left: auto;
}
.modal-close:hover {
	background: var(--yellow);
}
.lead-modal .lead-field input:focus {
	border-bottom-color: var(--yellow);
}
.page-success {
	min-height: 50vh;
	display: grid;
	place-items: center;
	padding: 160px 16px 80px;
	text-align: center;
}

@media (max-width: 991.98px) {
	.site-header__top .container-ob {
		min-height: 64px;
	}
	.hero {
		min-height: 560px;
		padding-top: 96px;
	}
	.price-card figcaption {
		position: static;
		width: 100%;
	}
	.step-card {
		grid-template-columns: 1fr;
	}
	.form-card {
		padding: 24px;
	}
	.header-contacts {
		display: none;
	}
}

@media (max-width: 575.98px) {
	.hero-icon {
		width: 72px;
	}
	.hero-icon span {
		font-size: 14px;
	}
}

.offcanvas-body a {
	transition: color 0.2s ease, padding-left 0.2s ease;
}
.offcanvas-body a:hover {
	color: var(--blue);
	padding-left: 6px;
}

/* Form: замер и расчет бесплатно */
.form-card h2 {
	margin-bottom: 16px;
}
.form-card > p {
	font-size: 18px;
	letter-spacing: -0.01em;
	margin: 0 0 30px;
}
.form-card {
	background: #fff;
	width: 100%;
}

/* Steps: всего 4 шага */
.steps-grid {
	display: grid;
	gap: 40px 40px;
}
@media (min-width: 992px) {
	.steps-grid {
		grid-template-columns: 1fr 1fr;
	}
}
.step-card {
	align-items: stretch;
	background: #fff;
}
.step-card__text {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
}
.step-card__num {
	margin: 0 0 12px;
}
.step-card__text p:last-child {
	margin: 0;
	font-size: 16px;
}
.step-card img {
	width: 250px;
	max-width: 100%;
	object-fit: cover;
	justify-self: end;
	align-self: center;
}
@media (max-width: 575.98px) {
	.step-card {
		grid-template-columns: 1fr;
		min-height: 0;
	}
	.step-card img {
		width: 100%;
		height: 180px;
	}
}

/* Reviews */
.reviews-head {
	display: grid;
	gap: 20px;
	margin-bottom: 40px;
}
@media (min-width: 992px) {
	.reviews-head {
		grid-template-columns: 1fr auto;
		align-items: end;
		gap: 40px;
	}
}
.rating-box {
	justify-content: space-between;
	min-height: 92px;
	min-width: min(100%, 580px);
	border-color: var(--card);
	gap: 16px 20px;
}
.rating-box div p {
	margin: 4px 0 0;
	font-size: 12px;
	color: rgba(40, 40, 40, 0.6);
}
.rating-box .btn-blue {
	margin-left: auto;
	min-width: 208px;
	padding: 15px 24px;
}
.reviews-grid {
	display: grid;
	gap: 40px;
}
@media (min-width: 992px) {
	.reviews-grid {
		grid-template-columns: 1fr 1fr;
	}
}
.review-card {
	background: var(--card);
}
.review-card .body {
	padding: 20px;
}
.review-meta {
	margin-bottom: 10px;
}
.review-meta img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	opacity: 0.6;
}
.review-meta strong {
	display: block;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.03em;
}
.review-meta span {
	font-size: 12px;
	color: rgba(40, 40, 40, 0.6);
}
.review-card .body > img {
	margin: 0 0 10px;
}
.review-card .body p {
	margin: 0 0 10px;
	font-size: 16px;
}
.review-card .body p:last-child {
	margin-bottom: 0;
}

/* FAQ */
.faq-list {
	border-top: 1px solid var(--border);
}
.faq-item {
	border-bottom: 1px solid var(--border);
}
.faq-item summary {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 16px 40px;
	align-items: start;
	padding: 30px 0;
	cursor: pointer;
	list-style: none;
	font-size: 23px;
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1.4;
}
.faq-item summary::-webkit-details-marker {
	display: none;
}
.faq-item[open] summary {
	padding-bottom: 0;
}
@media (min-width: 992px) {
	.faq-item[open] {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0 40px;
		align-items: start;
	}
	.faq-item[open] summary {
		display: contents;
	}
	.faq-item[open] summary span {
		padding: 30px 0;
	}
	.faq-item[open] .faq-icon {
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
		margin-top: 34px;
	}
	.faq-item[open] p {
		grid-column: 2;
		grid-row: 1;
		padding: 30px 48px 30px 0;
		margin: 0;
	}
}
.faq-item p {
	margin: 0;
	padding: 16px 0 30px;
	font-size: 18px;
	letter-spacing: -0.01em;
	opacity: 0.8;
}
.faq-icon {
	position: relative;
	width: 28px;
	height: 28px;
	flex-shrink: 0;
}
.faq-icon::before {
	content: "";
	position: absolute;
	left: 6px;
	top: 10px;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--yellow);
	border-bottom: 2px solid var(--yellow);
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}
.faq-item[open] .faq-icon::before {
	top: 14px;
	transform: rotate(-135deg);
}

/* Form: готовы заказать остекление */
.form-band--cta {
	min-height: 859px;
}
.form-card a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 991.98px) {
	.rating-box {
		min-width: 0;
	}
	.rating-box .btn-blue {
		width: 100%;
		margin-left: 0;
	}
	.form-band,
	.form-band--cta {
		min-height: 0;
		padding: 48px 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.btn-yellow::before,
	.btn-blue::before,
	.btn-ghost::before,
	.btn-ghost-dark::before,
	.btn-white::before,
	.service-card::after {
		animation: none;
		display: none;
	}
	* {
		scroll-behavior: auto !important;
	}
}

/* Aluminum: intro */
.alu-intro {
	display: grid;
	gap: 40px;
}
@media (min-width: 992px) {
	.alu-intro {
		grid-template-columns: 1fr 1fr;
		align-items: start;
		gap: 40px;
	}
}
.alu-intro__lead {
	margin: 0 0 12px;
	font-size: 18px;
}
.alu-intro .h-section {
	margin-bottom: 20px;
}
.alu-intro p {
	font-size: 18px;
	margin: 0 0 24px;
}
.alu-video {
	position: relative;
	overflow: hidden;
}
.alu-video > img:first-child {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
}
.alu-video__play {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 75px;
	height: 75px;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

/* Aluminum: advantages */
.alu-adv-head {
	display: grid;
	gap: 16px;
	margin-bottom: 32px;
}
@media (min-width: 992px) {
	.alu-adv-head {
		grid-template-columns: 1fr 1fr;
		align-items: end;
	}
}
.alu-adv-head p {
	margin: 0;
	font-size: 18px;
}
.alu-adv-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 1fr;
}
@media (min-width: 992px) {
	.alu-adv-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 40px;
	}
}
.alu-adv {
	background: var(--card);
	border: 1px solid var(--border);
	padding: 20px 16px 16px;
	min-height: 180px;
}
.alu-adv h3 {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.03em;
	margin: 0 0 12px;
}
.alu-adv p {
	margin: 0;
	font-size: 14px;
}

/* Aluminum: price offers */
.alu-offer {
	position: relative;
	min-height: 520px;
	margin-bottom: 40px;
	background: #333 center/cover no-repeat;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	padding: 40px;
}
.alu-offer--slide {
	min-height: 396px;
}
.alu-offer--left {
	justify-content: flex-start;
}
.alu-offer--sys {
	min-height: 714px;
	align-items: flex-end;
}
.alu-offer--sys .alu-offer__card > p {
	max-width: none;
}
.alu-offer--sys .alu-specs {
	grid-template-columns: 1fr 1fr;
}
.alu-offer__accent {
	font-weight: 500;
	letter-spacing: -0.01em;
	max-width: none !important;
}
.alu-offer__list {
	margin: 0 0 20px;
	padding-left: 18px;
	font-size: 16px;
}
.alu-offer__list li {
	margin-bottom: 8px;
}
.alu-offer__list li span,
.alu-offer__card .alu-specs span {
	max-width: none;
}
.alu-offer__card {
	width: min(100%, 580px);
	background: rgba(237, 238, 240, 0.8);
	border: 1px solid var(--border);
	padding: 20px;
	backdrop-filter: blur(8px);
}
.alu-offer__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}
.alu-offer__card h3 {
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 400;
	letter-spacing: -0.04em;
	margin: 0;
	line-height: 1.2;
}
.alu-offer__card > p {
	margin: 0 0 20px;
	font-size: 16px;
	max-width: 360px;
}
.alu-specs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.alu-specs--split {
	grid-template-columns: 160px 1fr;
	align-items: start;
}
.alu-specs strong {
	display: block;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.03em;
	padding-bottom: 8px;
	margin-bottom: 8px;
	border-bottom: 1px solid var(--black);
}
.alu-specs span,
.alu-specs p {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 0 0 8px;
	font-size: 14px;
	color: rgba(40, 40, 40, 0.6);
}
.alu-specs img {
	width: 19px;
	height: 19px;
	flex-shrink: 0;
}
@media (max-width: 767.98px) {
	.alu-offer {
		padding: 16px;
		align-items: stretch;
	}
	.alu-specs,
	.alu-specs--split {
		grid-template-columns: 1fr;
	}
}

/* Aluminum: compare */
.alu-compare__lead {
	max-width: 640px;
	margin: -8px auto 40px;
	text-align: center;
	font-size: 18px;
}
.section-alu-compare {
	background: var(--card);
}
.alu-compare-grid {
	display: grid;
	gap: 40px;
}
@media (min-width: 992px) {
	.alu-compare-grid {
		grid-template-columns: 1fr 1fr;
	}
}
.alu-compare-card {
	position: relative;
	background: var(--bg);
	border: 1px solid var(--border);
	padding: 28px 20px 20px;
}
.alu-tag {
	position: absolute;
	top: -12px;
	right: 20px;
	padding: 5px 10px;
	font: italic 500 14px/1 Inter, sans-serif;
	letter-spacing: -0.03em;
}
.alu-tag--blue {
	background: var(--blue);
	color: #fff;
}
.alu-tag--yellow {
	background: var(--yellow);
	color: var(--black);
}
.alu-compare-card h3 {
	font-size: 34px;
	font-weight: 400;
	letter-spacing: -0.04em;
	margin: 0 0 16px;
	line-height: 1.2;
}
.alu-compare-card > p {
	margin: 0 0 12px;
	font-size: 16px;
}
.alu-facts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 16px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #d9d9d9;
}
.alu-facts h4 {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.03em;
	margin: 0 0 8px;
}
.alu-facts p {
	margin: 0;
	font-size: 14px;
	color: rgba(40, 40, 40, 0.6);
}

/* Aluminum: install accordion */
.alu-install-head {
	display: grid;
	gap: 16px;
	margin-bottom: 32px;
}
@media (min-width: 992px) {
	.alu-install-head {
		grid-template-columns: 1fr 1fr;
		align-items: end;
	}
}
.alu-install-head p {
	margin: 0;
	font-size: 18px;
}
.alu-acc-grid {
	display: grid;
	gap: 0 40px;
}
@media (min-width: 992px) {
	.alu-acc-grid {
		grid-template-columns: 1fr 1fr;
	}
}
.alu-acc {
	border-top: 1px solid #d9d9d9;
	border-bottom: 1px solid #d9d9d9;
	margin-top: -1px;
}
.alu-acc summary {
	padding: 20px 0;
	cursor: pointer;
	list-style: none;
	font-size: 18px;
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	gap: 12px;
}
.alu-acc summary::-webkit-details-marker {
	display: none;
}
.alu-acc summary::after {
	content: "+";
	font-weight: 400;
	color: var(--muted);
}
.alu-acc[open] summary::after {
	content: "×";
	font-size: 22px;
}
.alu-acc__body {
	display: grid;
	gap: 16px;
	padding: 0 20px 24px;
	background: #f4f4f4;
}
@media (min-width: 576px) {
	.alu-acc__body {
		grid-template-columns: 1fr 250px;
		align-items: start;
	}
	.alu-acc__body img {
		grid-column: 2;
		grid-row: 1;
		width: 250px;
		height: 200px;
		object-fit: cover;
	}
	.alu-acc__body p {
		grid-column: 1;
		align-self: end;
	}
}
.alu-acc__body p {
	margin: 0;
	font-size: 18px;
}

/* Aluminum: why us */
.alu-why {
	display: grid;
	gap: 40px;
}
@media (min-width: 992px) {
	.alu-why {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}
}
.alu-why-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 24px;
}
.alu-why-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.alu-why-list strong {
	display: block;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 6px;
}
.alu-why-list p {
	margin: 0;
	font-size: 18px;
}

/* Aluminum: cases */
.alu-cases-head {
	display: grid;
	gap: 16px;
	margin-bottom: 28px;
}
@media (min-width: 992px) {
	.alu-cases-head {
		grid-template-columns: 1fr 1fr;
		align-items: end;
	}
}
.alu-cases-head p {
	margin: 0;
	font-size: 18px;
}
.alu-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-bottom: 28px;
}
.alu-tags button {
	border: 1px solid var(--border);
	background: #fff;
	padding: 9px 16px;
	font: 500 16px/1.4 Inter, sans-serif;
	cursor: pointer;
}
.alu-tags button.is-active {
	background: var(--yellow);
	border-color: var(--yellow);
}
.alu-cases-swiper {
	overflow: hidden;
}
.alu-cases-swiper .swiper-slide {
	height: auto;
}
.swiper-slide.is-hidden-slide {
	display: none;
}
.alu-case {
	background: #f4f4f4;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.alu-case > img {
	width: 100%;
	height: 255px;
	object-fit: cover;
}
.alu-case__body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 8px;
}
.alu-case h3 {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.03em;
	margin: 0 0 8px;
}
.alu-case__body > p {
	margin: 0;
	font-size: 16px;
	color: rgba(40, 40, 40, 0.6);
}
.alu-case ul {
	margin: 8px 0 16px;
	padding-left: 18px;
	font-size: 14px;
	flex: 1;
}
.alu-case .btn-yellow {
	width: 100%;
}

/* Aluminum: certificates */
.alu-certs-text {
	display: grid;
	gap: 24px;
	margin-bottom: 40px;
}
@media (min-width: 992px) {
	.alu-certs-text {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}
.alu-certs-text__title {
	font-size: 23px;
	font-weight: 500;
	letter-spacing: -0.03em;
	margin: 0;
}
.alu-certs-text p {
	margin: 0 0 10px;
	font-size: 18px;
}
.alu-certs-swiper {
	overflow: hidden;
}
.alu-certs-swiper .swiper-slide {
	height: auto;
}
.alu-cert {
	background: var(--card);
	border: 1px solid var(--border);
	height: 100%;
}
.alu-cert img {
	width: 100%;
	height: 345px;
	object-fit: cover;
}
.alu-cert h3 {
	margin: 16px 20px 0;
	font-size: 25px;
	font-weight: 700;
	opacity: 0.3;
}
.alu-cert p {
	margin: 8px 20px 20px;
	font-size: 18px;
}

/* Aluminum: CTA card on the right */
.form-band--right .container-ob {
	display: flex;
	justify-content: flex-end;
}
.form-band--right .form-card {
	background: rgba(237, 238, 240, 0.8);
}

/* Panoramic: gallery */
.pano-gallery-swiper {
	overflow: hidden;
}
.pano-gallery-slide {
	position: relative;
	height: 420px;
}
@media (min-width: 992px) {
	.pano-gallery-slide {
		height: 630px;
	}
}
.pano-gallery-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pano-gallery-slide span {
	position: absolute;
	top: 30px;
	left: 30px;
	background: var(--card);
	padding: 12px 20px;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -0.01em;
}

/* Panoramic: advantages */
.pano-benefits {
	display: grid;
	gap: 20px;
}
@media (min-width: 992px) {
	.pano-benefits {
		grid-template-columns: 1fr 1fr;
		gap: 40px 40px;
	}
}
.pano-benefit {
	border: 1px solid var(--border);
	background: #fff;
	padding: 20px;
	display: grid;
	grid-template-columns: 1fr 162px;
	gap: 16px 20px;
	align-items: start;
}
.pano-benefit h3 {
	margin: 0 0 12px;
	font-size: 23px;
	font-weight: 500;
	letter-spacing: -0.03em;
	color: var(--blue);
}
.pano-benefit p {
	margin: 0;
	font-size: 16px;
}
.pano-benefit img {
	width: 162px;
	height: 177px;
	object-fit: cover;
	grid-column: 2;
	grid-row: 1;
}
.pano-benefit__note {
	grid-column: 1 / -1;
	color: rgba(40, 40, 40, 0.6);
}
.pano-benefit--wide {
	grid-column: 1 / -1;
	min-height: 420px;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: #fff;
	padding: 29px;
}
@media (min-width: 992px) {
	.pano-benefit--wide {
		min-height: 600px;
	}
}
.pano-benefit--wide h3 {
	color: #fff;
	font-size: 38px;
	font-weight: 600;
	letter-spacing: -0.03em;
	max-width: 480px;
	margin-bottom: 16px;
}
.pano-benefit--wide p {
	font-size: 18px;
	font-weight: 500;
	max-width: 315px;
}
.pano-benefit--wide .pano-benefit__note {
	color: #fff;
	font-weight: 400;
	font-size: 16px;
	max-width: 540px;
}
@media (max-width: 767px) {
	.pano-benefit {
		grid-template-columns: 1fr;
	}
	.pano-benefit img {
		width: 100%;
		height: 180px;
		grid-column: auto;
		grid-row: auto;
	}
}

/* Panoramic: prices */
.pano-prices-head {
	display: grid;
	gap: 16px;
	margin-bottom: 40px;
}
@media (min-width: 992px) {
	.pano-prices-head {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
		align-items: start;
	}
	.pano-prices-head p {
		margin: 0;
		font-size: 18px;
		letter-spacing: -0.01em;
	}
}
.pano-programs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 40px;
}
@media (min-width: 992px) {
	.pano-programs {
		grid-template-columns: repeat(4, 1fr);
		gap: 40px;
	}
}
.pano-program {
	background: var(--blue);
	color: #fff;
	display: flex;
	flex-direction: column;
}
.pano-program img {
	width: 100%;
	height: 187px;
	object-fit: cover;
	border-radius: 4px 4px 0 0;
}
.pano-program__body {
	padding: 15px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}
.pano-program h3 {
	margin: 0;
	font-size: 23px;
	font-weight: 500;
	letter-spacing: -0.03em;
}
.pano-program ul {
	margin: 0;
	padding-left: 18px;
	color: #d9d9d9;
	font-size: 16px;
	flex: 1;
}
.pano-program span {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--card);
	color: var(--black);
	min-height: 25px;
	font-size: 16px;
}
.pano-price-banner {
	min-height: 420px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 24px;
}
@media (min-width: 992px) {
	.pano-price-banner {
		min-height: 670px;
		padding: 40px;
	}
}
.pano-price-banner__card {
	background: var(--card);
	border: 1px solid var(--border);
	display: grid;
	gap: 16px;
	padding: 19px;
	max-width: 580px;
	width: 100%;
}
@media (min-width: 768px) {
	.pano-price-banner__card {
		grid-template-columns: 1fr 233px;
		gap: 20px;
		align-items: stretch;
	}
}
.pano-price-banner__card h3 {
	margin: 0 0 8px;
	font-size: 34px;
	font-weight: 400;
	letter-spacing: -0.04em;
}
.pano-price-banner__card ul {
	margin: 0 0 24px;
	padding-left: 22px;
	font-size: 18px;
}
.pano-price-banner__card p {
	margin: 0 0 20px;
	font-size: 16px;
}
.pano-price-banner__card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}
@media (min-width: 768px) {
	.pano-price-banner__card img {
		height: 100%;
		min-height: 338px;
	}
}

/* Panoramic: dark cards */
.pano-adv-grid {
	display: grid;
	gap: 20px;
}
@media (min-width: 992px) {
	.pano-adv-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}
.pano-adv {
	background: var(--blue);
	color: #fff;
	border-radius: 4px;
	padding: 20px;
	display: grid;
	gap: 16px;
}
@media (min-width: 768px) {
	.pano-adv {
		grid-template-columns: 248px 1fr;
		gap: 30px;
		align-items: stretch;
		min-height: 288px;
	}
}
.pano-adv img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}
@media (min-width: 768px) {
	.pano-adv img {
		height: 248px;
	}
}
.pano-adv h3 {
	margin: 0 0 24px;
	font-size: 23px;
	font-weight: 500;
	letter-spacing: -0.03em;
	color: #f7f7f7;
}
.pano-adv p {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	max-width: 260px;
}
@media (min-width: 768px) {
	.pano-adv div {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding-top: 0;
	}
}

/* Panoramic: myths */
.pano-myth {
	display: grid;
	gap: 16px;
	padding: 30px 0;
	border-top: 1px solid var(--card);
}
.pano-myth:last-child {
	border-bottom: 1px solid var(--card);
}
@media (min-width: 992px) {
	.pano-myth {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
		align-items: start;
	}
}
.pano-myth h3 {
	margin: 0;
	font-size: 23px;
	font-weight: 500;
	letter-spacing: -0.03em;
}
.pano-myth p {
	margin: 0 0 15px;
	font-size: 18px;
	letter-spacing: -0.01em;
}
.pano-myth p:last-child {
	margin-bottom: 0;
}

/* Panoramic: opening types */
.pano-open-grid {
	display: grid;
	gap: 40px 40px;
}
@media (min-width: 992px) {
	.pano-open-grid {
		grid-template-columns: 1fr 1fr;
	}
}
.pano-open h3 {
	margin: 20px 0 12px;
	font-size: 23px;
	font-weight: 500;
	letter-spacing: -0.03em;
}
.pano-open p {
	margin: 0 0 12px;
	font-size: 16px;
}
.pano-open__media {
	position: relative;
	height: 400px;
	overflow: hidden;
}
.pano-open__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pano-open__badge {
	position: absolute;
	top: 20px;
	left: 20px;
	background: var(--yellow);
	padding: 11px 14px 11px 36px;
	font-size: 16px;
	max-width: calc(100% - 40px);
}
.pano-open__badge::before {
	content: "+";
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	line-height: 1;
}
.pano-open__cap {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 270px;
	min-height: 106px;
	background: rgba(237, 238, 240, 0.8);
	padding: 20px 15px;
	font-size: 16px;
}

/* Panoramic: which profile */
.pano-profile-grid {
	display: grid;
	gap: 20px;
}
@media (min-width: 992px) {
	.pano-profile-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 40px;
	}
}
.pano-profile {
	position: relative;
	background: var(--card);
	border: 1px solid var(--border);
	padding: 20px;
	display: flex;
	flex-direction: column;
	min-height: 428px;
}
.pano-profile img {
	width: 157px;
	height: 197px;
	object-fit: contain;
	margin-bottom: 20px;
}
.pano-profile__meta {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}
.pano-profile h3 {
	margin: 0;
	font-size: 23px;
	font-weight: 500;
	letter-spacing: -0.03em;
}
.pano-profile__meta span {
	font-size: 18px;
	letter-spacing: -0.01em;
	color: rgba(40, 40, 40, 0.8);
	white-space: nowrap;
}
.pano-profile p {
	margin: 0 0 20px;
	font-size: 14px;
	flex: 1;
}
.pano-profile .btn-white {
	width: 100%;
}
.pano-profile__hot {
	position: absolute;
	top: -12px;
	right: 12px;
	background: var(--yellow);
	padding: 5px 10px;
	font-size: 14px;
	line-height: 1;
}

/* Lamination: glazing services */
.lam-services {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
@media (min-width: 992px) {
	.lam-services {
		grid-template-columns: repeat(4, 1fr);
		gap: 40px;
	}
}
.lam-service {
	display: flex;
	flex-direction: column;
}
.lam-service img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 4px 4px 0 0;
}
@media (min-width: 992px) {
	.lam-service img {
		height: 295px;
	}
}
.lam-service h3 {
	margin: 0;
	background: var(--card);
	border: 1px solid var(--border);
	border-top: 0;
	min-height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 16px 12px;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.03em;
}
@media (min-width: 992px) {
	.lam-service h3 {
		font-size: 23px;
	}
}

/* Lamination: PVC advantages */
.lam-pvc-grid {
	display: grid;
	gap: 16px;
}
@media (min-width: 992px) {
	.lam-pvc-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 40px;
	}
}
.lam-pvc {
	background: var(--card);
	border: 1px solid var(--border);
	min-height: 128px;
	padding: 20px;
	display: grid;
	grid-template-columns: 1fr 52px;
	gap: 16px;
	align-items: start;
}
.lam-pvc h3 {
	margin: 0 0 8px;
	font-size: 23px;
	font-weight: 500;
	letter-spacing: -0.03em;
}
.lam-pvc p {
	margin: 0;
	font-size: 14px;
}
.lam-pvc__icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #fbfcfc;
	border: 1px solid #fff;
	display: grid;
	place-items: center;
	flex-shrink: 0;
}
.lam-pvc__icon img {
	width: 30px;
	height: 30px;
}

/* Lamination: popular shades */
.lam-shades {
	display: grid;
	gap: 24px;
}
@media (min-width: 768px) {
	.lam-shades {
		grid-template-columns: 1fr 1fr;
		gap: 40px 40px;
	}
}
@media (min-width: 992px) {
	.lam-shades {
		grid-template-columns: repeat(3, 1fr);
	}
}
.lam-shade h3 {
	margin: 20px 0 8px;
	font-size: 23px;
	font-weight: 500;
	letter-spacing: -0.03em;
}
.lam-shade p {
	margin: 0;
	font-size: 16px;
}
.lam-shade img,
.lam-shade__solid {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}
@media (min-width: 992px) {
	.lam-shade img,
	.lam-shade__solid {
		height: 300px;
	}
}

/* Doors: REHAU profile cards */
.door-lead {
	max-width: 640px;
	margin: 0 0 40px;
	font-size: 18px;
	letter-spacing: -0.01em;
}
.door-prof-grid {
	display: grid;
	gap: 40px;
}
@media (min-width: 992px) {
	.door-prof-grid {
		grid-template-columns: 1fr 1fr;
	}
	.door-prof--wide {
		grid-column: 1 / -1;
	}
}
.door-prof {
	position: relative;
	background: var(--card);
	border: 1px solid var(--border);
	padding: 20px;
	display: grid;
	gap: 16px;
}
@media (min-width: 768px) {
	.door-prof {
		grid-template-columns: 1fr 250px;
		align-items: stretch;
	}
}
.door-prof h3 {
	margin: 0 0 12px;
	font-size: 23px;
	font-weight: 500;
	letter-spacing: -0.03em;
}
.door-prof p {
	margin: 0 0 16px;
	font-size: 16px;
}
.door-prof ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.door-prof li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 10px;
	font-size: 16px;
}
.door-prof img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}
@media (min-width: 768px) {
	.door-prof img {
		height: 100%;
		min-height: 250px;
	}
}

/* Doors: safety list + photo */
.door-safety {
	display: grid;
	gap: 40px;
}
@media (min-width: 992px) {
	.door-safety {
		grid-template-columns: 1fr 580px;
		align-items: start;
	}
}
.door-safety__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 24px;
}
.door-safety__list li {
	display: grid;
	grid-template-columns: 25px 1fr;
	gap: 10px;
	align-items: start;
}
.door-safety__list strong {
	display: block;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -0.01em;
	margin-bottom: 4px;
}
.door-safety__list p {
	margin: 0;
	font-size: 16px;
}
.door-safety__photo img {
	width: 100%;
	height: 100%;
	max-height: 534px;
	object-fit: cover;
	display: block;
}

/* Sliding pick */
.section-slide-pick {
	background: var(--card);
}
.alu-compare-card ul {
	margin: 0 0 8px;
	padding-left: 18px;
	font-size: 16px;
}

/* Terrace type table */
.ob-table {
	display: grid;
	gap: 0;
}
.ob-table__head,
.ob-table__row {
	display: grid;
	gap: 24px;
	padding: 24px 0;
	border-top: 1px solid var(--border);
}
@media (min-width: 992px) {
	.ob-table__head,
	.ob-table__row {
		grid-template-columns: 141px 1fr 1fr;
		column-gap: 200px;
	}
}
.ob-table__head {
	border-top: 0;
	font-weight: 600;
	font-size: 16px;
}
.ob-table__row strong {
	font-size: 16px;
	font-weight: 500;
}
.ob-table__row span {
	font-size: 16px;
}

/* Constructor: gray price plaque */
.section-price-note {
	padding-top: 0;
}
.price-note {
	background: #edeef0;
	border: 1px solid var(--border);
	padding: 28px 32px;
}
.price-note p {
	margin: 0;
	font-size: 18px;
	letter-spacing: -0.01em;
	max-width: 960px;
}

/* Balcony systems */
.balc-sys-grid {
	display: grid;
	gap: 30px;
}
@media (min-width: 992px) {
	.balc-sys-grid {
		grid-template-columns: 1fr 1fr;
	}
}
.balc-sys {
	position: relative;
	background: var(--card);
	border: 1px solid var(--border);
	padding: 20px;
	display: grid;
	gap: 16px;
}
@media (min-width: 768px) {
	.balc-sys {
		grid-template-columns: 197px 1fr;
	}
}
.balc-sys img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}
@media (min-width: 768px) {
	.balc-sys img {
		height: 219px;
	}
}
.balc-sys h3 {
	margin: 0 0 8px;
	font-size: 23px;
	font-weight: 500;
	letter-spacing: -0.03em;
}
.balc-sys p {
	margin: 0 0 12px;
	font-size: 16px;
}
.balc-sys ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.balc-sys li {
	margin-bottom: 8px;
	font-size: 16px;
}

/* Works: before/after */
.works-ba {
	display: grid;
	gap: 40px;
}
@media (min-width: 992px) {
	.works-ba {
		grid-template-columns: 1fr 1fr;
	}
}
.works-ba__card {
	background: var(--card);
	border: 1px solid var(--border);
	padding: 20px;
}
.works-ba__card h3 {
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.03em;
}
.works-ba__card dl {
	margin: 0;
}
.works-ba__card dl > div {
	display: grid;
	gap: 8px;
	padding: 12px 0;
	border-top: 1px solid var(--border);
}
@media (min-width: 768px) {
	.works-ba__card dl > div {
		grid-template-columns: 140px 1fr;
	}
}
.works-ba__card dt {
	font-weight: 500;
	font-size: 18px;
}
.works-ba__card dd {
	margin: 0;
	font-size: 16px;
}
.works-ba__photo {
	position: relative;
	margin: 0;
}
.works-ba__photo img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	display: block;
}
.works-ba__photo .alu-tag {
	left: 20px;
	right: auto;
	top: 20px;
}

/* Works / about stats */
.works-stats {
	display: grid;
	gap: 24px;
	background: var(--card);
	border: 1px solid var(--border);
	padding: 24px;
}
@media (min-width: 992px) {
	.works-stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 40px;
	}
}
.works-stats strong {
	display: block;
	font-size: 34px;
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1.2;
}
.works-stats span {
	display: block;
	margin-top: 8px;
	font-size: 16px;
}

/* About: services */
.about-offer {
	display: grid;
	gap: 40px 40px;
}
@media (min-width: 768px) {
	.about-offer {
		grid-template-columns: 1fr 1fr;
	}
}
@media (min-width: 992px) {
	.about-offer {
		grid-template-columns: repeat(3, 1fr);
	}
}
.about-offer img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}
.about-offer article > div {
	background: var(--card);
	border: 1px solid var(--border);
	padding: 20px;
}
.about-offer h3 {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 500;
}
.about-offer p {
	margin: 0 0 16px;
	font-size: 16px;
}

/* About: picker */
.section-about-pick {
	background: var(--card);
}
.about-pick {
	display: grid;
	gap: 20px;
}
@media (min-width: 992px) {
	.about-pick {
		grid-template-columns: repeat(3, 1fr);
		align-items: start;
	}
}
.about-pick article {
	background: #fff;
	border: 1px solid var(--border);
	padding: 20px;
}
.about-pick h3 {
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: 500;
}
.about-pick ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.about-pick li {
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
	font-size: 16px;
}
.about-pick li:last-child {
	border-bottom: 0;
}

/* About: guarantees */
.about-garant {
	display: grid;
	gap: 20px;
}
@media (min-width: 992px) {
	.about-garant {
		grid-template-columns: repeat(3, 1fr);
	}
}
.about-garant article {
	background: var(--card);
	border: 1px solid var(--border);
	padding: 24px 20px;
	min-height: 220px;
}
.about-garant h3 {
	margin: 48px 0 16px;
	font-size: 20px;
	font-weight: 500;
}
.about-garant p {
	margin: 0;
	font-size: 16px;
}

.about-visit-note {
	margin: 16px 0 0;
	text-align: center;
	font-size: 16px;
}

@media (max-width: 767.98px) {
	.alu-offer--sys {
		min-height: 420px;
		padding: 16px;
	}
	.ob-table__head,
	.ob-table__row {
		grid-template-columns: 1fr;
	}
}

.blog-lead {
	max-width: 640px;
	margin: -12px 0 28px;
	color: #5c5c5c;
	font-size: 17px;
}

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

.blog-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 16px;
	color: inherit;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 32px rgba(40, 40, 40, 0.12);
	color: inherit;
}

.blog-card__media {
	height: 200px;
	overflow: hidden;
	display: block;
	background: var(--card);
}

.blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-card__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
	padding: 16px 18px 18px;
}

.blog-card__title {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

.blog-card__text {
	color: #5c5c5c;
	font-size: 14px;
	line-height: 1.45;
}

.blog-card__time {
	margin-top: auto;
	color: var(--muted);
	font-size: 13px;
}

.section-blog .navigation.pagination {
	margin-top: 28px;
}

.section-blog .nav-links {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 12px;
	width: 100%;
}

.section-blog .nav-pages {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.section-blog .page-numbers.prev {
	justify-self: start;
}

.section-blog .page-numbers.next {
	justify-self: end;
}

.section-blog .page-numbers.is-edge {
	opacity: 0.35;
	pointer-events: none;
}

.section-article, .section-blog {
	padding: 30px 0;
}

.section-blog .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--border);
	color: var(--black);
	text-decoration: none;
	font-weight: 600;
}

.section-blog .page-numbers.current {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff;
}

.article-back {
	display: inline-flex;
	margin-bottom: 16px;
	color: var(--blue);
	font-weight: 600;
	text-decoration: none;
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	margin: -8px 0 24px;
	color: var(--muted);
	font-size: 14px;
}

.article-cover {
	margin: 0 0 28px;
}

.article-cover img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	object-fit: cover;
}

.article-content h2,
.article-content h3 {
	margin: 32px 0 12px;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.25;
}

.article-content h2 {
	font-size: 28px;
}

.article-content h3 {
	font-size: 22px;
}

.article-content ul,
.article-content ol {
	margin: 0 0 16px;
	padding-left: 1.2em;
}

.article-content li {
	margin: 0 0 6px;
}

.article-content img {
	height: auto;
	border-radius: 12px;
}

.article-content a {
	color: var(--blue);
}

.section-blog-more {
	padding-top: 0;
}

@media (max-width: 991.98px) {
	.blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767.98px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}
}
