:root {
	--mc-bg: #0d0d0f;
	--mc-bg-alt: #15161a;
	--mc-surface: #f3f2ef;
	--mc-surface-alt: #edeae5;
	--mc-surface-line: #e5e3de;
	--mc-text: #f3f2ef;
	--mc-text-dark: #0d0d0f;
	--mc-text-muted: rgba(243, 242, 239, 0.6);
	--mc-text-muted-strong: rgba(243, 242, 239, 0.7);
	--mc-text-dark-muted: #5c5d61;
	--mc-border: rgba(255, 255, 255, 0.1);
	--mc-border-strong: rgba(255, 255, 255, 0.12);
	--mc-border-dark: rgba(0, 0, 0, 0.12);
	--mc-accent: #d5372c;
	--mc-accent-deep: #b82c22;
	--mc-accent-soft: #e8574c;
	--mc-radius-lg: 18px;
	--mc-radius-md: 12px;
	--mc-radius-sm: 4px;
	--mc-container: 1320px;
	--mc-side: 28px;
}

.metalconstruct-home,
.metalconstruct-home * {
	box-sizing: border-box;
}

.metalconstruct-home {
	background: var(--mc-bg);
	color: var(--mc-text);
	overflow-x: clip;
}

.metalconstruct-home a {
	color: inherit;
	text-decoration: none;
}

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

.metalconstruct-container {
	width: min(100%, var(--mc-container));
	margin: 0 auto;
	padding: 0 var(--mc-side);
}

.metalconstruct-section {
	position: relative;
}

.metalconstruct-section--light {
	background: var(--mc-surface);
	color: var(--mc-text-dark);
}

.metalconstruct-section--dark {
	background: var(--mc-bg);
	color: var(--mc-text);
}

.metalconstruct-shell-section {
	padding: 120px 0;
}

.metalconstruct-kicker {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	font: 400 12px/1 "IBM Plex Mono", monospace;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.metalconstruct-kicker::before {
	content: "";
	width: 34px;
	height: 1px;
	background: currentColor;
}

.metalconstruct-section--light .metalconstruct-kicker {
	color: var(--mc-accent-deep);
}

.metalconstruct-section--dark .metalconstruct-kicker {
	color: var(--mc-accent-soft);
}

.metalconstruct-section-heading {
	display: grid;
	gap: 20px;
}

.metalconstruct-section-heading h2 {
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

.metalconstruct-section-heading p:last-child {
	margin: 0;
	font: 400 16.5px/1.7 "IBM Plex Sans", sans-serif;
	color: var(--mc-text-dark-muted);
}

.metalconstruct-section-heading--split {
	grid-template-columns: minmax(0, 616px) minmax(0, 460px);
	align-items: end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 60px;
}

.metalconstruct-section-heading__copy {
	display: grid;
	gap: 20px;
}

.metalconstruct-section-heading__aside {
	display: grid;
	gap: 0;
	padding-bottom: 3px;
}

.metalconstruct-section-heading__aside p {
	margin: 0;
	font: 400 17px/1.7 "IBM Plex Sans", sans-serif;
	color: var(--mc-text-dark-muted);
}

.metalconstruct-reveal {
	transform: translate3d(0, 28px, 0);
	transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
	will-change: transform;
}

.metalconstruct-reveal--scale {
	transform: translate3d(0, 24px, 0) scale(0.985);
}

.metalconstruct-reveal.is-visible {
	transform: none;
}

[data-reveal-group] > .metalconstruct-reveal:nth-child(1) {
	transition-delay: 30ms;
}

[data-reveal-group] > .metalconstruct-reveal:nth-child(2) {
	transition-delay: 110ms;
}

[data-reveal-group] > .metalconstruct-reveal:nth-child(3) {
	transition-delay: 190ms;
}

[data-reveal-group] > .metalconstruct-reveal:nth-child(4) {
	transition-delay: 270ms;
}

[data-reveal-group] > .metalconstruct-reveal:nth-child(5) {
	transition-delay: 350ms;
}

[data-reveal-group] > .metalconstruct-reveal:nth-child(6) {
	transition-delay: 430ms;
}

.metalconstruct-section-heading--compact {
	margin-bottom: 40px;
	max-width: 820px;
}

.metalconstruct-section-heading--contacts {
	width: 100%;
	max-width: none;
	gap: 20px;
}

.metalconstruct-section-heading--contacts h2 {
	width: 100%;
	font-size: 40px;
	line-height: 1.04;
}

.metalconstruct-section-heading--faq {
	width: 100%;
	max-width: none;
	align-self: stretch;
	gap: 19.3px;
}

.metalconstruct-section-heading--faq h2 {
	width: 100%;
	font-size: 40px;
	line-height: 1.04;
}

.metalconstruct-section-heading--faq p:last-child {
	width: 100%;
	padding-top: 4.7px;
}

.metalconstruct-home-header {
	display: grid;
	grid-template-columns: 180px 1fr auto;
	align-items: center;
	gap: 16px;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 16px;
	background: rgba(20, 20, 20, 0.52);
	backdrop-filter: blur(10px);
}

.metalconstruct-home-header__brand {
	font: 800 14px/1 "Montserrat", sans-serif;
	letter-spacing: -0.035em;
}

.metalconstruct-home-header__brand span {
	color: var(--mc-accent-soft);
}

.metalconstruct-home-header__top,
.metalconstruct-home-header__panel {
	display: contents;
}

.metalconstruct-home-header__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 24px;
	font: 600 13px/1.2 "Manrope", sans-serif;
	opacity: 0.82;
}

.metalconstruct-home-header__burger {
	display: none;
}

.metalconstruct-home-header__meta {
	display: flex;
	align-items: center;
	gap: 14px;
}

.metalconstruct-home-header__language {
	display: inline-flex;
	padding: 3px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
}

.metalconstruct-home-header__language a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 10px;
	border-radius: 999px;
	font: 700 12px/1 "Manrope", sans-serif;
	letter-spacing: 0.03em;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.metalconstruct-home-header__language a:hover {
	color: #fff;
}

.metalconstruct-home-header__language .is-active {
	background: #c63f36;
	color: #fff;
}

.home .trp-floating-switcher,
.home .trp-language-switcher.trp-floating-switcher,
.privacy-policy .trp-floating-switcher,
.privacy-policy .trp-language-switcher.trp-floating-switcher,
.metalconstruct-legal-view .trp-floating-switcher,
.metalconstruct-legal-view .trp-language-switcher.trp-floating-switcher {
	display: none !important;
}

.metalconstruct-home-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font: 700 14px/1 "Manrope", sans-serif;
}

.metalconstruct-home-header__phone img {
	width: 16px;
	height: 16px;
}

.metalconstruct-home-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 26px;
	border-radius: 12px;
	background: #c63f36;
	font: 700 13.5px/1 "Manrope", sans-serif;
}

.metalconstruct-hero-shell {
	padding-top: 18px;
}

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

.metalconstruct-hero {
	position: relative;
	overflow: hidden;
	width: calc(100% + 132px);
	margin-right: -132px;
	min-height: 628px;
}

.metalconstruct-hero__track {
	display: flex;
	transition: transform 450ms ease;
	will-change: transform;
}

.metalconstruct-hero__slide {
	display: grid;
	grid-template-columns: minmax(0, 664px) minmax(0, 522px);
	align-items: center;
	gap: 72px;
	flex: 0 0 100%;
	overflow: hidden;
	min-height: 628px;
	padding: 8px 0 120px;
}

.metalconstruct-hero__slide.is-active .metalconstruct-hero__kicker,
.metalconstruct-hero__slide.is-active .metalconstruct-hero__title,
.metalconstruct-hero__slide.is-active .metalconstruct-hero__description,
.metalconstruct-hero__slide.is-active .metalconstruct-hero__actions,
.metalconstruct-hero__slide.is-active .metalconstruct-hero__badge {
	animation: mcHeroFadeUp 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.metalconstruct-hero__slide.is-active .metalconstruct-hero__title {
	animation-delay: 120ms;
}

.metalconstruct-hero__slide.is-active .metalconstruct-hero__description {
	animation-delay: 220ms;
}

.metalconstruct-hero__slide.is-active .metalconstruct-hero__actions {
	animation-delay: 320ms;
}

.metalconstruct-hero__slide.is-active .metalconstruct-hero__badge {
	animation-delay: 420ms;
}

.metalconstruct-hero__copy {
	display: grid;
	align-content: center;
	gap: 14px;
}

.metalconstruct-hero__kicker {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin: 0;
	font: 700 12px/1 "Manrope", sans-serif;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #f08077;
}

.metalconstruct-hero__kicker::before {
	content: "";
	width: 42px;
	height: 1px;
	background: #e9685f;
}

.metalconstruct-hero__title {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 60px;
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.metalconstruct-hero__title > span {
	display: block;
}

.metalconstruct-hero__accent {
	position: relative;
	display: inline-grid;
	justify-content: start;
	padding-bottom: 14px;
}

.metalconstruct-hero__accent::after {
	content: "";
	position: absolute;
	left: 0;
	right: auto;
	width: var(--mc-hero-accent-underline-width, 100%);
	bottom: 0;
	height: 6px;
	background: rgba(198, 63, 54, 0.85);
	transform: skewX(-18deg);
}

.metalconstruct-hero__description {
	max-width: 660px;
	margin: 0;
	font: 400 18px/1.65 "Manrope", sans-serif;
	color: rgba(255, 255, 255, 0.62);
}

.metalconstruct-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	padding-top: 8px;
}

.metalconstruct-hero__call {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 17px 24px;
	border-radius: 12px;
	background: #c63f36;
	font: 700 15px/1 "Manrope", sans-serif;
}

.metalconstruct-hero__call img {
	width: 16px;
	height: 16px;
}

.metalconstruct-hero__phone {
	display: grid;
	gap: 2px;
}

.metalconstruct-hero__phone strong {
	font: 800 19px/1 "Montserrat", sans-serif;
}

.metalconstruct-hero__phone span {
	font: 400 12.5px/1.2 "Manrope", sans-serif;
	color: rgba(255, 255, 255, 0.5);
}

.metalconstruct-hero__visual {
	position: relative;
	height: 560px;
}

.metalconstruct-hero__visual-glow {
	position: absolute;
	inset: 40px 20px auto;
	width: 480px;
	height: 480px;
	background: radial-gradient(circle, rgba(198, 63, 54, 0.24) 0%, rgba(198, 63, 54, 0) 66%);
	border-radius: 999px;
	filter: blur(12px);
}

.metalconstruct-hero__slide.is-active .metalconstruct-hero__visual-glow {
	animation: mcHeroGlowFloat 8.8s ease-in-out infinite;
}

.metalconstruct-hero__visual-frame {
	position: absolute;
	inset: 80px 37px 69px 57px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	opacity: 0.55;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.035) 3%, rgba(255, 255, 255, 0) 3.2%),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 3%, rgba(255, 255, 255, 0) 3.2%);
	background-size: 34% 34%;
}

.metalconstruct-hero__visual > img {
	position: absolute;
	max-width: none;
	transform-origin: 50% 56%;
	will-change: transform;
}

.metalconstruct-hero__visual--doors > img {
	top: -42px;
	left: -62px;
	width: 708px;
	filter: drop-shadow(0 32px 26px rgba(0, 0, 0, 0.42));
}

.metalconstruct-hero__visual--canopy > img {
	top: 30px;
	left: -38px;
	width: 618px;
}

.metalconstruct-hero__visual--frames > img {
	top: 60px;
	left: -84px;
	width: 690px;
}

.metalconstruct-hero__slide.is-active .metalconstruct-hero__visual--doors > img {
	animation: mcHeroProductFloatDoors 6.5s ease-in-out infinite;
}

.metalconstruct-hero__slide.is-active .metalconstruct-hero__visual--canopy > img {
	animation: mcHeroProductFloatCanopy 6.5s ease-in-out infinite;
}

.metalconstruct-hero__slide.is-active .metalconstruct-hero__visual--frames > img {
	animation: mcHeroProductFloatFrames 6.5s ease-in-out infinite;
}

.metalconstruct-hero__badge {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 13px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.58);
	backdrop-filter: blur(4px);
	box-shadow: 0 16px 32px -24px rgba(0, 0, 0, 0.72);
	opacity: 0;
	transform: translate3d(0, 20px, 0);
}

.metalconstruct-hero__badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(185, 66, 62, 0.38);
	border-radius: 9px;
	background: linear-gradient(150deg, rgba(185, 66, 62, 0.28) 0%, rgba(185, 66, 62, 0.06) 100%);
}

.metalconstruct-hero__badge-icon img {
	width: 18px;
	height: 18px;
}

.metalconstruct-hero__badge-copy {
	display: grid;
	gap: 1px;
	min-width: 0;
}

.metalconstruct-hero__badge-value {
	font: 800 17px/1.2 "Montserrat", sans-serif;
	color: var(--mc-accent-soft);
}

.metalconstruct-hero__badge-text {
	display: grid;
	font: 600 11.5px/1.3 "Manrope", sans-serif;
	color: rgba(255, 255, 255, 0.72);
}

.metalconstruct-hero__badge.is-market {
	top: 82px;
	right: 46px;
	min-width: 142px;
}

.metalconstruct-hero__badge.is-experience {
	top: 250px;
	left: 118px;
	min-width: 132px;
}

.metalconstruct-hero__badge.is-response {
	right: 22px;
	bottom: 94px;
	min-width: 147px;
}

.metalconstruct-hero__controls {
	position: absolute;
	left: 50%;
	bottom: 92px;
	display: inline-flex;
	align-items: center;
	gap: 22px;
	padding: 22px 0;
	transform: translateX(-50%);
}

.metalconstruct-hero__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transition:
		background-color 300ms ease,
		border-color 300ms ease,
		transform 300ms ease;
}

.metalconstruct-hero__arrow:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

.metalconstruct-hero__dots {
	display: inline-flex;
	gap: 10px;
}

.metalconstruct-hero__dot {
	position: relative;
	width: 52px;
	height: 3px;
	padding: 0;
	border: 0;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.25);
	cursor: pointer;
	overflow: hidden;
}

.metalconstruct-hero__dot::after {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 0;
	background: #c63f36;
	opacity: 0;
}

.metalconstruct-hero__dot.is-active {
	background: rgba(255, 255, 255, 0.25);
}

.metalconstruct-hero__dot.is-active::after {
	opacity: 1;
	animation: mcHeroDotFill 6000ms linear forwards;
}

.metalconstruct-mobile-scroller {
	position: relative;
}

.metalconstruct-mobile-scroller__controls {
	display: none;
}

.metalconstruct-mobile-scroller__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: #111214;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: transform 220ms ease, border-color 220ms ease, opacity 220ms ease;
}

.metalconstruct-mobile-scroller__button:hover:not(:disabled) {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.26);
}

.metalconstruct-mobile-scroller__button:disabled {
	opacity: 0.42;
	cursor: default;
}

.metalconstruct-mobile-scroller__button img {
	width: 18px;
	height: 18px;
}

.metalconstruct-facts-shell {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.metalconstruct-facts-shell__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metalconstruct-facts-shell__item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 92px;
	padding: 29.5px 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.metalconstruct-facts-shell__item:last-child {
	border-right: 0;
}

.metalconstruct-facts-shell__item.has-indicator::before {
	content: "";
	flex: 0 0 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #c63f36;
	box-shadow: 0 0 0 7px rgba(198, 63, 54, 0.15);
	animation: mcFactsPulse 1.8s ease-in-out infinite;
}

.metalconstruct-facts-shell__value {
	display: block;
	flex: 0 0 auto;
	font: 700 27px/1 "Montserrat", sans-serif;
	letter-spacing: -0.04em;
	white-space: nowrap;
}

.metalconstruct-facts-shell__label {
	display: grid;
	align-self: center;
	gap: 0;
	font: 400 12px/16.2px "Manrope", sans-serif;
	color: rgba(255, 255, 255, 0.55);
}

.metalconstruct-facts-shell__label > span {
	display: block;
}

.metalconstruct-facts-shell__item:nth-child(1) .metalconstruct-facts-shell__label {
	width: 57px;
}

.metalconstruct-facts-shell__item:nth-child(2) .metalconstruct-facts-shell__label,
.metalconstruct-facts-shell__item:nth-child(3) .metalconstruct-facts-shell__label {
	width: 130px;
}

.metalconstruct-facts-shell__item:nth-child(4) .metalconstruct-facts-shell__label {
	width: 120px;
}

.metalconstruct-production-grid,
.metalconstruct-services-grid,
.metalconstruct-advantages-grid {
	display: grid;
	gap: 1px;
	border: 1px solid var(--mc-border-dark);
	background: var(--mc-border-dark);
}

.metalconstruct-production-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metalconstruct-production-card {
	background: var(--mc-surface);
}

.metalconstruct-production-card__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 262px;
	overflow: hidden;
	border-bottom: 1px solid var(--mc-border-dark);
	background:
		linear-gradient(134.89deg, #e5e3de 0%, #e5e3de 1.45%, #edeae5 1.45%, #edeae5 2.9%);
}

.metalconstruct-production-card__index {
	position: absolute;
	top: 0;
	left: 0;
	padding: 7px 11px;
	background: #0d0d0f;
	font: 400 11px/1 "IBM Plex Mono", monospace;
	letter-spacing: 0.1em;
	color: #fff;
}

.metalconstruct-production-card__media img {
	width: 86%;
	height: 86%;
	object-fit: contain;
}

.metalconstruct-production-card.is-card-01 img {
	width: auto;
	height: 97%;
	max-width: none;
}

.metalconstruct-production-card.is-card-02 img {
	width: 78%;
	height: 80%;
}

.metalconstruct-production-card.is-card-03 img {
	width: 90%;
	height: 78%;
}

.metalconstruct-production-card.is-card-04 img {
	position: absolute;
	width: 138.844%;
	height: 125.123%;
	left: -19.541%;
	top: -16.426%;
	max-width: none;
	object-fit: fill;
}

.metalconstruct-production-card.is-card-05 img {
	position: absolute;
	width: 110.994%;
	height: 100.234%;
	left: -5.497%;
	top: -0.17%;
	max-width: none;
	object-fit: fill;
}

.metalconstruct-production-card.is-card-06 img {
	position: absolute;
	width: 124.208%;
	height: 112.342%;
	left: -12.223%;
	top: -6.225%;
	max-width: none;
	object-fit: fill;
}

.metalconstruct-production-card__content {
	display: grid;
	gap: 16px;
	padding: 26px 28px 24px;
}

.metalconstruct-production-card__content h3,
.metalconstruct-service-card h3,
.metalconstruct-solutions-benefit h3,
.metalconstruct-advantages-card h3,
.metalconstruct-faq-item__toggle span,
.metalconstruct-testimonial-card__text,
.metalconstruct-lead-success h3 {
	margin: 0;
}

.metalconstruct-production-card__content h3 {
	font-family: "Space Grotesk", sans-serif;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--mc-text-dark);
}

.metalconstruct-production-card__list {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.metalconstruct-production-card__list li {
	position: relative;
	padding-left: 16px;
	font: 400 15px/1.4 "IBM Plex Sans", sans-serif;
	color: var(--mc-text-dark-muted);
}

.metalconstruct-production-card__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 6px;
	height: 1px;
	background: var(--mc-accent);
}

.metalconstruct-section--dark.metalconstruct-shell-section {
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.metalconstruct-services-grid {
	position: relative;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-bottom: 24px;
	border-color: rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.1);
}

.metalconstruct-services-grid::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
	pointer-events: none;
}

.metalconstruct-service-card {
	display: grid;
	align-content: start;
	gap: 10px;
	padding: 36px 30px 40px;
	background: var(--mc-bg);
	transition:
		transform 350ms ease,
		background-color 350ms ease;
}

.metalconstruct-service-card:hover {
	transform: translateY(-6px);
	background: #1f1f21;
}

.metalconstruct-service-card__accent {
	width: 30px;
	height: 2px;
	background: var(--mc-accent);
}

.metalconstruct-service-card__index,
.metalconstruct-advantages-card__index {
	font: 400 12px/1 "IBM Plex Mono", monospace;
	letter-spacing: 0.1em;
	color: var(--mc-accent);
}

.metalconstruct-service-card h3,
.metalconstruct-advantages-card h3 {
	padding-top: 13px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.22;
	color: var(--mc-text);
}

.metalconstruct-service-card p,
.metalconstruct-advantages-card p {
	margin: 0;
	font: 400 15.5px/1.65 "IBM Plex Sans", sans-serif;
	color: rgba(243, 242, 239, 0.55);
}

.metalconstruct-service-audience {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 1px;
}

.metalconstruct-service-audience__item {
	display: inline-flex;
	align-items: center;
	height: 40px;
	padding: 0 18px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	font: 400 12px/1 "IBM Plex Mono", monospace;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(243, 242, 239, 0.7);
	transition:
		border-color 240ms ease,
		background-color 240ms ease,
		color 240ms ease,
		box-shadow 240ms ease;
}

.metalconstruct-service-audience__item:hover,
.metalconstruct-service-audience__item.is-active {
	border-color: rgba(213, 55, 44, 0.55);
	background: rgba(213, 55, 44, 0.1);
	color: var(--mc-text);
	box-shadow: inset 0 0 0 1px rgba(213, 55, 44, 0.12);
}

.metalconstruct-solutions-stage {
	position: relative;
	min-height: 707px;
	overflow: visible;
}

#solutions .metalconstruct-section-heading,
#solutions .metalconstruct-solutions-summary,
#solutions .metalconstruct-solutions-benefits {
	max-width: 1160px;
	margin-left: auto;
	margin-right: auto;
}

#solutions .metalconstruct-section-heading h2 {
	max-width: 1051px;
	font-size: 40px;
	line-height: 1.15;
	letter-spacing: 0.01em;
}

#solutions .metalconstruct-kicker {
	gap: 10px;
	font-size: 13px;
	letter-spacing: 0.14em;
	color: #c12d00;
}

#solutions .metalconstruct-kicker::before {
	width: 28px;
	height: 2px;
	background: #c12d00;
}

#solutions .metalconstruct-solutions-stage__image {
	position: absolute;
	top: 0;
	left: 50%;
	width: 1446px;
	max-width: none;
	margin: 0;
	transform: translateX(-50%);
}

.metalconstruct-solutions-callout {
	position: absolute;
	transform: translate3d(0, 12px, 0);
	transition: transform 600ms ease;
}

.metalconstruct-solutions-stage.is-visible .metalconstruct-solutions-callout {
	transform: none;
}

.metalconstruct-solutions-stage.is-visible .metalconstruct-solutions-callout:nth-of-type(2) {
	transition-delay: 90ms;
}

.metalconstruct-solutions-stage.is-visible .metalconstruct-solutions-callout:nth-of-type(3) {
	transition-delay: 140ms;
}

.metalconstruct-solutions-stage.is-visible .metalconstruct-solutions-callout:nth-of-type(4) {
	transition-delay: 190ms;
}

.metalconstruct-solutions-stage.is-visible .metalconstruct-solutions-callout:nth-of-type(5) {
	transition-delay: 240ms;
}

.metalconstruct-solutions-stage.is-visible .metalconstruct-solutions-callout:nth-of-type(6) {
	transition-delay: 290ms;
}

.metalconstruct-solutions-stage.is-visible .metalconstruct-solutions-callout:nth-of-type(7) {
	transition-delay: 340ms;
}

.metalconstruct-solutions-stage.is-visible .metalconstruct-solutions-callout:nth-of-type(8) {
	transition-delay: 390ms;
}

.metalconstruct-solutions-callout__label {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 10px 18px;
	border: 1px solid var(--mc-accent);
	border-radius: 4px;
	background: #fff;
	font: 700 17px/1 "IBM Plex Sans", sans-serif;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #181611;
}

.metalconstruct-solutions-callout__line,
.metalconstruct-solutions-callout__dot {
	position: absolute;
	max-width: none;
}

.metalconstruct-solutions-callout.is-canopy {
	top: 87.5px;
	left: 25.87px;
}

.metalconstruct-solutions-callout.is-canopy .metalconstruct-solutions-callout__line {
	top: 24.5px;
	left: 125.85px;
	width: 61.96px;
	height: 104.2px;
}

.metalconstruct-solutions-callout.is-canopy .metalconstruct-solutions-callout__dot {
	top: 125.5px;
	left: 184.35px;
	width: 6px;
	height: 6px;
}

.metalconstruct-solutions-callout.is-railings {
	top: 351px;
	left: 494.22px;
}

.metalconstruct-solutions-callout.is-railings .metalconstruct-solutions-callout__line {
	top: 24.5px;
	left: 1.5px;
	width: 62.89px;
	height: 57.81px;
	transform: rotate(180deg);
	transform-origin: top left;
}

.metalconstruct-solutions-callout.is-railings .metalconstruct-solutions-callout__dot {
	top: -36.5px;
	left: -63.5px;
	width: 6px;
	height: 6px;
}

.metalconstruct-solutions-callout.is-wicket {
	top: 551px;
	left: 215.72px;
}

.metalconstruct-solutions-callout.is-wicket .metalconstruct-solutions-callout__line {
	top: 29px;
	left: 126.5px;
	width: 47.46px;
	height: 66.7px;
	transform: scaleY(-1);
	transform-origin: top left;
}

.metalconstruct-solutions-callout.is-wicket .metalconstruct-solutions-callout__dot {
	top: -34px;
	left: 170.5px;
	width: 6px;
	height: 6px;
}

.metalconstruct-solutions-callout.is-gate {
	top: 620px;
	left: 565.22px;
}

.metalconstruct-solutions-callout.is-gate .metalconstruct-solutions-callout__line {
	top: 21px;
	left: 111.5px;
	width: 47.46px;
	height: 66.7px;
	transform: scaleY(-1);
	transform-origin: top left;
}

.metalconstruct-solutions-callout.is-gate .metalconstruct-solutions-callout__dot {
	top: -42px;
	left: 155.5px;
	width: 6px;
	height: 6px;
}

.metalconstruct-solutions-callout.is-stairs {
	top: 127px;
	left: 938.22px;
}

.metalconstruct-solutions-callout.is-stairs .metalconstruct-solutions-callout__line {
	top: 23.5px;
	left: 0.5px;
	width: 56.98px;
	height: 165.13px;
	transform: scaleY(-1) rotate(180deg);
	transform-origin: top left;
}

.metalconstruct-solutions-callout.is-stairs .metalconstruct-solutions-callout__dot {
	top: 185.5px;
	left: -59px;
	width: 6px;
	height: 6px;
}

.metalconstruct-solutions-callout.is-frame {
	top: 42px;
	left: 464.37px;
}

.metalconstruct-solutions-callout.is-frame .metalconstruct-solutions-callout__line {
	top: 40.5px;
	left: 134.85px;
	width: 1px;
	height: 115px;
}

.metalconstruct-solutions-callout.is-frame .metalconstruct-solutions-callout__dot {
	top: 152.5px;
	left: 131.85px;
	width: 6px;
	height: 6px;
}

.metalconstruct-solutions-callout.is-fence {
	top: 365px;
	left: -24.78px;
}

.metalconstruct-solutions-callout.is-fence .metalconstruct-solutions-callout__line {
	top: 22px;
	left: 98.5px;
	width: 44.94px;
	height: 48.75px;
}

.metalconstruct-solutions-callout.is-fence .metalconstruct-solutions-callout__dot {
	top: 67px;
	left: 140px;
	width: 6px;
	height: 6px;
}

.metalconstruct-solutions-callout.is-carport {
	top: 201px;
	left: 1078.22px;
}

.metalconstruct-solutions-callout.is-carport .metalconstruct-solutions-callout__line {
	top: 40.5px;
	left: 50.35px;
	width: 1px;
	height: 115px;
}

.metalconstruct-solutions-callout.is-carport .metalconstruct-solutions-callout__dot {
	top: 152.5px;
	left: 47.35px;
	width: 6px;
	height: 6px;
}

.metalconstruct-solutions-summary {
	margin-top: -2px;
	margin-bottom: 28px;
	font: 500 17.5px/1.4 "IBM Plex Sans", sans-serif;
	color: #181611;
}

.metalconstruct-solutions-benefits {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}

.metalconstruct-solutions-benefit {
	display: grid;
	gap: 12px;
}

.metalconstruct-solutions-benefit__marker {
	width: 14px;
	height: 14px;
	background: var(--mc-accent);
	border-radius: 7px;
}

.metalconstruct-solutions-benefit:nth-child(2) .metalconstruct-solutions-benefit__marker {
	border-radius: 2px;
}

.metalconstruct-solutions-benefit:nth-child(3) .metalconstruct-solutions-benefit__marker {
	transform: rotate(45deg);
	border-radius: 0;
}

.metalconstruct-solutions-benefit h3 {
	font-family: "Space Grotesk", sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: #181611;
}

.metalconstruct-solutions-benefit p {
	margin: 0;
	font: 400 13.1px/1.6 "IBM Plex Sans", sans-serif;
	color: #57554f;
}

.metalconstruct-advantages-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 612px;
	align-items: end;
	gap: 40px;
	margin-bottom: 56px;
}

.metalconstruct-advantages-heading__media {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background:
		linear-gradient(134.926deg, #1a1b1e 0%, #1a1b1e 1.04%, #131417 1.04%, #131417 2.08%);
}

.metalconstruct-advantages-heading__media img {
	width: 100%;
	height: 344px;
	object-fit: cover;
	opacity: 0.72;
}

.metalconstruct-advantages-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-color: rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.1);
}

.metalconstruct-advantages-card {
	display: grid;
	align-content: start;
	gap: 9px;
	min-height: 189px;
	padding: 32px 28px 36px;
	background: var(--mc-bg);
	transition:
		transform 350ms ease,
		box-shadow 350ms ease;
}

.metalconstruct-advantages-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 48px -30px rgba(0, 0, 0, 0.55);
}

.metalconstruct-advantages-card h3 {
	padding-top: 9px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.24;
}

.metalconstruct-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	padding-top: 12px;
}

.metalconstruct-testimonial-card {
	display: grid;
	gap: 18px;
	padding: 34px 30px 30px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #fff;
	transition:
		transform 350ms ease,
		box-shadow 350ms ease,
		border-color 350ms ease;
}

.metalconstruct-testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 26px 55px -34px rgba(0, 0, 0, 0.28);
}

.metalconstruct-testimonial-card__quote {
	font-family: "Space Grotesk", sans-serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1;
	color: var(--mc-accent);
}

.metalconstruct-testimonial-card__text {
	padding-bottom: 6px;
	font: 400 16.5px/1.7 "IBM Plex Sans", sans-serif;
	color: #0d0d0f;
}

.metalconstruct-testimonial-card__author {
	padding-top: 16px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	font: 400 11.5px/1.5 "IBM Plex Mono", monospace;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #5c5d61;
}

.metalconstruct-lead-layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.12);
}

.metalconstruct-lead-panel {
	display: grid;
	align-content: start;
	gap: 20px;
	min-height: 726px;
	padding: 56px 46px;
	border-top: 3px solid var(--mc-accent);
	background: var(--mc-bg);
}

.metalconstruct-lead-panel h2 {
	margin: 0;
	max-width: 539px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

.metalconstruct-lead-panel__description {
	max-width: 420px;
	margin: 0;
	font: 400 17px/1.7 "IBM Plex Sans", sans-serif;
	color: rgba(243, 242, 239, 0.6);
}

.metalconstruct-lead-panel__contacts {
	display: grid;
	gap: 14px;
	padding-top: 18px;
}

.metalconstruct-lead-panel__phone {
	font-family: "Space Grotesk", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}

.metalconstruct-lead-panel__email {
	font: 400 16px/1.4 "IBM Plex Sans", sans-serif;
	text-decoration: none;
	color: rgba(243, 242, 239, 0.7);
}

.metalconstruct-lead-panel__meta {
	padding-top: 6px;
	font: 400 12px/1.5 "IBM Plex Mono", monospace;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(243, 242, 239, 0.45);
}

.metalconstruct-lead-form-shell {
	display: grid;
	align-content: start;
	min-height: 726px;
	padding: 56px 46px;
	background: var(--mc-bg-alt);
	position: relative;
}

.metalconstruct-lead-form-shell .wpcf7,
.metalconstruct-lead-form-shell .wpcf7 form,
.metalconstruct-lead-form {
	display: grid;
	gap: 14px;
}

.metalconstruct-lead-form-shell .wpcf7 {
	width: 100%;
}

.metalconstruct-lead-form-shell .wpcf7 form {
	align-content: start;
}

.metalconstruct-lead-form-shell .wpcf7 form p {
	margin: 0;
}

.metalconstruct-lead-form-shell .screen-reader-response {
	display: none;
}

.metalconstruct-lead-form-shell .wpcf7-form-control-wrap {
	display: block;
}

.metalconstruct-lead-form-shell .wpcf7-form-control-wrap > * {
	display: block;
	width: 100%;
}

.metalconstruct-lead-form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.metalconstruct-lead-field {
	display: grid;
	gap: 9px;
}

.metalconstruct-lead-field--textarea {
	padding-top: 4px;
	padding-bottom: 14px;
}

.metalconstruct-lead-field__label {
	font: 400 11px/1 "IBM Plex Mono", monospace;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(243, 242, 239, 0.5);
}

.metalconstruct-lead-field input,
.metalconstruct-lead-field select,
.metalconstruct-lead-field textarea {
	width: 100%;
	padding: 15px 16px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 2px;
	background: var(--mc-bg);
	font: 400 15.5px/1.3 "IBM Plex Sans", sans-serif;
	color: var(--mc-text);
	appearance: none;
}

.metalconstruct-lead-field select {
	padding-left: 20px;
	padding-right: 32px;
}

.metalconstruct-lead-field input::placeholder,
.metalconstruct-lead-field textarea::placeholder {
	color: #757575;
}

.metalconstruct-lead-field textarea {
	min-height: 140px;
	resize: vertical;
}

.metalconstruct-lead-field .wpcf7-not-valid {
	border-color: rgba(213, 55, 44, 0.9);
}

.metalconstruct-lead-form .wpcf7-not-valid-tip {
	margin-top: 7px;
	font: 400 12px/1.45 "IBM Plex Sans", sans-serif;
	color: #ff9288;
}

.metalconstruct-lead-form__actions {
	display: grid;
	gap: 10px;
	padding-top: 6px;
}

.metalconstruct-lead-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 19px 24px;
	border: 0;
	border-radius: 2px;
	background: var(--mc-accent);
	font: 600 16px/1 "IBM Plex Sans", sans-serif;
	color: #fff;
	cursor: pointer;
}

.metalconstruct-lead-form .wpcf7-spinner {
	margin: 0;
	width: 16px;
	height: 16px;
	align-self: center;
	background: rgba(213, 55, 44, 0.85);
}

.metalconstruct-lead-form__consent {
	padding-top: 6px;
}

.metalconstruct-lead-form__consent .wpcf7-list-item {
	margin: 0;
}

.metalconstruct-lead-form__consent label {
	display: grid;
	grid-template-columns: 14px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	cursor: pointer;
}

.metalconstruct-lead-form__consent input[type="checkbox"] {
	appearance: none;
	width: 14px;
	height: 14px;
	margin: 2px 0 0;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 2px;
	background: transparent;
	position: relative;
}

.metalconstruct-lead-form__consent input[type="checkbox"]::after {
	content: "";
	position: absolute;
	top: 1px;
	left: 4px;
	width: 4px;
	height: 8px;
	border-right: 1.5px solid #fff;
	border-bottom: 1.5px solid #fff;
	opacity: 0;
	transform: rotate(45deg);
}

.metalconstruct-lead-form__consent input[type="checkbox"]:checked {
	border-color: var(--mc-accent);
	background: rgba(213, 55, 44, 0.2);
}

.metalconstruct-lead-form__consent input[type="checkbox"]:checked::after {
	opacity: 1;
}

.metalconstruct-lead-form__consent .wpcf7-list-item-label {
	margin: 0;
	font: 400 11px/1.5 "IBM Plex Mono", monospace;
	letter-spacing: 0.04em;
	color: rgba(243, 242, 239, 0.44);
}

.metalconstruct-lead-form__consent a {
	text-decoration: underline;
	text-underline-offset: 0.18em;
	color: rgba(243, 242, 239, 0.72);
}

.metalconstruct-lead-form .wpcf7-response-output,
.metalconstruct-lead-form__response {
	margin: 0;
	padding: 12px 14px;
	border: 1px solid rgba(213, 55, 44, 0.34);
	background: rgba(213, 55, 44, 0.08);
	font: 400 12px/1.5 "IBM Plex Sans", sans-serif;
	color: var(--mc-text);
}

.metalconstruct-lead-form.sent .wpcf7-response-output {
	display: none;
}

.metalconstruct-lead-form-shell.is-sent {
	align-content: center;
}

.metalconstruct-lead-form-shell.is-sent .wpcf7 {
	display: none;
}

.metalconstruct-lead-success {
	display: none;
	gap: 12px;
	max-width: 420px;
	align-content: start;
}

.metalconstruct-lead-form-shell.is-sent .metalconstruct-lead-success {
	display: grid;
}

.metalconstruct-lead-success__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(213, 55, 44, 0.48);
	border-radius: 999px;
	background: rgba(213, 55, 44, 0.12);
}

.metalconstruct-lead-success__icon img {
	width: 18px;
	height: 18px;
}

.metalconstruct-lead-success h3 {
	font-family: "Space Grotesk", sans-serif;
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.01em;
	text-transform: uppercase;
}

.metalconstruct-lead-success p {
	margin: 0;
	font: 400 15px/1.6 "IBM Plex Sans", sans-serif;
	color: rgba(243, 242, 239, 0.6);
}

.metalconstruct-faq-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 56px;
}

.metalconstruct-faq-list {
	border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.metalconstruct-faq-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.14);
	transition: border-color 250ms ease;
}

.metalconstruct-faq-item__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 22px 4px;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
	transition: color 250ms ease;
}

.metalconstruct-faq-item__toggle span:first-child {
	font-family: "Space Grotesk", sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--mc-text-dark);
}

.metalconstruct-faq-item__icon {
	font-family: "Space Grotesk", sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	color: var(--mc-accent);
}

.metalconstruct-faq-item__answer {
	padding: 0 4px 22px;
}

.metalconstruct-faq-item__answer p {
	margin: 0;
	font: 400 16px/1.75 "IBM Plex Sans", sans-serif;
	color: var(--mc-text-dark-muted);
}

.metalconstruct-faq-item.is-open .metalconstruct-faq-item__icon {
	transform: rotate(45deg);
}

.metalconstruct-contacts-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 40px;
}

.metalconstruct-contacts-map {
	position: relative;
	display: flex;
	min-height: 360px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: #e5e3df;
}

.metalconstruct-contacts-panel {
	display: grid;
	gap: 20px;
	align-content: start;
}

.metalconstruct-contacts-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: 98px 95px;
	gap: 1px;
	min-height: 211px;
	padding-top: 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.12);
}

.metalconstruct-contacts-grid__item {
	display: grid;
	align-content: start;
	gap: 10px;
	min-height: 0;
	padding: 22px 22px 24px;
	border-top: 2px solid var(--mc-accent);
	background: var(--mc-bg);
}

.metalconstruct-contacts-grid__item span,
.metalconstruct-footer__label {
	font: 400 11px/1 "IBM Plex Mono", monospace;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(243, 242, 239, 0.45);
}

.metalconstruct-contacts-grid__item a,
.metalconstruct-footer__nav a,
.metalconstruct-footer__contacts a,
.metalconstruct-footer__contacts p {
	margin: 0;
	font: 400 15px/1.5 "IBM Plex Sans", sans-serif;
	color: var(--mc-text);
}

.metalconstruct-contacts-grid__item p {
	margin: 0;
	color: var(--mc-text);
}

.metalconstruct-contacts-grid__item--phone {
	padding-bottom: 24px;
}

.metalconstruct-contacts-grid__item--phone a {
	font: 400 19px/1 "Space Grotesk", sans-serif;
	text-decoration: none;
}

.metalconstruct-contacts-grid__item--email {
	gap: 11px;
	padding-bottom: 29px;
}

.metalconstruct-contacts-grid__item a {
	text-decoration: underline;
	text-underline-offset: 0.1em;
}

.metalconstruct-contacts-grid__item--phone a {
	text-decoration: none;
}

.metalconstruct-contacts-grid__item--address a {
	font: 400 15.5px/1.5 "IBM Plex Sans", sans-serif;
	color: var(--mc-text);
	text-decoration: none;
}

.metalconstruct-contacts-grid__item--address,
.metalconstruct-contacts-grid__item--schedule {
	padding-bottom: 23px;
}

.metalconstruct-contacts-grid__item--address p,
.metalconstruct-contacts-grid__item--schedule p {
	font: 400 15.5px/1.5 "IBM Plex Sans", sans-serif;
}

.metalconstruct-contacts-map {
	align-self: stretch;
}

.metalconstruct-contacts-map iframe {
	display: block;
	flex: 1 1 auto;
	width: 100%;
	height: 100%;
	min-height: 360px;
	border: 0;
}

.metalconstruct-contacts-map__frame {
	display: flex;
	flex: 1 1 auto;
	width: 100%;
	min-height: 360px;
}

.metalconstruct-contacts-map__placeholder {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: grid;
	align-content: center;
	gap: 14px;
	padding: 32px;
	background:
		linear-gradient(180deg, rgba(17, 18, 20, 0.76) 0%, rgba(17, 18, 20, 0.88) 100%),
		linear-gradient(135deg, rgba(213, 55, 44, 0.18) 0%, rgba(17, 18, 20, 0) 55%);
	color: var(--mc-text);
}

.metalconstruct-contacts-map__status {
	width: fit-content;
	padding: 7px 11px;
	border: 1px solid rgba(213, 55, 44, 0.28);
	border-radius: 999px;
	background: rgba(213, 55, 44, 0.12);
	font: 400 11px/1 "IBM Plex Mono", monospace;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #f08a81;
}

.metalconstruct-contacts-map__placeholder h3 {
	margin: 0;
	font: 700 28px/1.1 "Space Grotesk", sans-serif;
	letter-spacing: -0.03em;
}

.metalconstruct-contacts-map__placeholder p {
	margin: 0;
	max-width: 520px;
	font: 400 15px/1.6 "IBM Plex Sans", sans-serif;
	color: rgba(243, 242, 239, 0.68);
}

.metalconstruct-contacts-map__actions,
.metalconstruct-cookie-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.metalconstruct-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 20px;
	border-radius: 14px;
	border: 1px solid transparent;
	font: 600 14px/1 "IBM Plex Sans", sans-serif;
	text-decoration: none;
	transition: background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease, transform 0.24s ease;
	cursor: pointer;
}

.metalconstruct-button:hover {
	transform: translateY(-1px);
}

.metalconstruct-button--primary {
	background: var(--mc-accent);
	border-color: var(--mc-accent);
	color: #f6f4ef;
}

.metalconstruct-button--primary:hover {
	background: var(--mc-accent-deep);
	border-color: var(--mc-accent-deep);
	color: #f6f4ef;
}

.metalconstruct-button--ghost {
	background: rgba(255, 255, 255, 0.03);
	border-color: rgba(255, 255, 255, 0.14);
	color: var(--mc-text);
}

.metalconstruct-button--ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	color: var(--mc-text);
}

.metalconstruct-contacts-map.is-loaded .metalconstruct-contacts-map__placeholder {
	opacity: 0;
	pointer-events: none;
}

.metalconstruct-shell-section--footer {
	padding-bottom: 28px;
}

.metalconstruct-footer {
	margin-top: 80px;
	padding-top: 56px;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.metalconstruct-footer__columns {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 40px;
	padding-bottom: 40px;
}

.metalconstruct-footer__column {
	display: grid;
	align-content: start;
	gap: 16px;
}

.metalconstruct-footer__column--about {
	gap: 17px;
}

.metalconstruct-footer__brand {
	margin: 0;
	display: flex;
	align-items: flex-start;
	min-height: 28px;
	padding-left: 16px;
	font: 400 16px/1 "IBM Plex Sans", sans-serif;
	color: var(--mc-text);
}

.metalconstruct-footer__description {
	margin: 0;
	max-width: 300px;
	font: 400 14.5px/24.65px "IBM Plex Sans", sans-serif;
	color: rgba(243, 242, 239, 0.45);
}

.metalconstruct-footer__nav,
.metalconstruct-footer__contacts {
	display: grid;
	gap: 11px;
}

.metalconstruct-footer__nav a,
.metalconstruct-footer__contact {
	font: 400 14.5px/1.35 "IBM Plex Sans", sans-serif;
}

.metalconstruct-footer__contact {
	color: var(--mc-text);
}

.metalconstruct-footer__contact--email {
	display: inline-block;
	width: fit-content;
	padding-bottom: 1px;
	border-bottom: 1px solid currentColor;
	line-height: 1.2;
}

.metalconstruct-footer__contact--address {
	display: inline-block;
	width: fit-content;
	color: rgba(243, 242, 239, 0.6);
	text-decoration: none;
}

.metalconstruct-footer__legal {
	display: grid;
	gap: 12px;
	padding: 0 0 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.metalconstruct-footer__legal-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
}

.metalconstruct-footer__legal-links a,
.metalconstruct-footer__legal-button {
	padding: 0;
	border: 0;
	background: none;
	font: 400 11.5px/1.45 "IBM Plex Mono", monospace;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(243, 242, 239, 0.56);
	text-decoration: none;
	cursor: pointer;
}

.metalconstruct-footer__legal-links a:hover,
.metalconstruct-footer__legal-button:hover {
	color: var(--mc-text);
}

.metalconstruct-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	font: 400 11.5px/1.4 "IBM Plex Mono", monospace;
	letter-spacing: 0.06em;
	color: rgba(243, 242, 239, 0.4);
}

.metalconstruct-footer__credit {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: inherit;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
}

.metalconstruct-footer__credit-label {
	font: 400 11px/1 "IBM Plex Sans", sans-serif;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: rgba(243, 242, 239, 0.54);
}

.metalconstruct-footer__credit-brand {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 8px 16px 8px 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 20px rgba(0, 0, 0, 0.22);
}

.metalconstruct-footer__credit-brand::before {
	content: none;
}

.metalconstruct-footer__credit-brand img {
	display: block;
	width: 72px;
	height: auto;
	image-rendering: auto;
}

.metalconstruct-cookie-banner {
	position: fixed;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 48;
	pointer-events: none;
}

.metalconstruct-cookie-banner__body {
	width: min(100%, 700px);
	margin-left: auto;
	padding: 16px 18px 18px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(17, 18, 20, 0.98) 100%),
		linear-gradient(135deg, rgba(213, 55, 44, 0.12) 0%, rgba(17, 18, 20, 0) 60%);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
	pointer-events: auto;
}

.metalconstruct-cookie-banner__eyebrow {
	margin: 0 0 7px;
	font: 400 10px/1 "IBM Plex Mono", monospace;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--mc-accent);
}

.metalconstruct-cookie-banner__body h2 {
	margin: 0;
	font: 700 23px/1.06 "Space Grotesk", sans-serif;
	letter-spacing: -0.03em;
	color: var(--mc-text);
}

.metalconstruct-cookie-banner__description {
	margin: 8px 0 0;
	max-width: 560px;
	font: 400 13.5px/1.5 "IBM Plex Sans", sans-serif;
	color: rgba(243, 242, 239, 0.68);
}

.metalconstruct-cookie-banner__description a {
	color: var(--mc-text);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.metalconstruct-cookie-banner__actions {
	margin-top: 14px;
	justify-content: flex-end;
}

.metalconstruct-cookie-banner .metalconstruct-button {
	min-height: 42px;
	padding: 0 16px;
	border-radius: 12px;
	font-size: 13px;
}

.metalconstruct-privacy-page,
.metalconstruct-legal-page {
	min-height: 100vh;
}

.metalconstruct-privacy-intro,
.metalconstruct-legal-intro {
	padding: 32px 0 0;
}

.metalconstruct-privacy-header .metalconstruct-home-header__brand,
.metalconstruct-legal-header .metalconstruct-home-header__brand {
	text-decoration: none;
}

.metalconstruct-privacy-header__current,
.metalconstruct-legal-header__current {
	display: inline-flex;
	align-items: center;
	font: 600 13px/1.2 "Manrope", sans-serif;
	opacity: 0.94;
}

.metalconstruct-privacy-shell,
.metalconstruct-legal-shell {
	padding-top: 48px;
	padding-bottom: 104px;
}

.metalconstruct-privacy-heading,
.metalconstruct-legal-heading {
	margin-bottom: 34px;
}

.metalconstruct-privacy-heading h1,
.metalconstruct-legal-heading h1 {
	margin: 0;
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: -0.03em;
	text-transform: uppercase;
}

.metalconstruct-privacy-heading__meta,
.metalconstruct-legal-heading__meta {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 10px;
	margin: 6px 0 0;
	font: 400 12px/1.55 "IBM Plex Mono", monospace;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mc-text-muted);
}

.metalconstruct-privacy-heading__meta strong,
.metalconstruct-legal-heading__meta strong {
	font-weight: 400;
	color: var(--mc-text);
}

.metalconstruct-privacy-card,
.metalconstruct-legal-card {
	max-width: 980px;
	padding: 36px 40px 42px;
	border: 1px solid var(--mc-border-strong);
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
		rgba(17, 18, 21, 0.92);
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.metalconstruct-privacy-card__intro,
.metalconstruct-legal-card__intro {
	margin: 0 0 24px;
	font: 500 17px/1.72 "IBM Plex Sans", sans-serif;
	color: var(--mc-text);
}

.metalconstruct-legal-context {
	display: grid;
	gap: 10px;
	padding: 20px 22px;
	border: 1px solid rgba(213, 55, 44, 0.22);
	background: rgba(213, 55, 44, 0.06);
}

.metalconstruct-legal-context__label {
	font: 400 11px/1 "IBM Plex Mono", monospace;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #f08a81;
}

.metalconstruct-legal-context h2 {
	margin: 0;
	font: 700 24px/1.1 "Space Grotesk", sans-serif;
	letter-spacing: -0.02em;
	color: var(--mc-text);
}

.metalconstruct-legal-context p {
	margin: 0;
	font: 400 15px/1.6 "IBM Plex Sans", sans-serif;
	color: rgba(243, 242, 239, 0.74);
}

.metalconstruct-privacy-block + .metalconstruct-privacy-block,
.metalconstruct-legal-block + .metalconstruct-legal-block {
	margin-top: 26px;
	padding-top: 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metalconstruct-privacy-block h2,
.metalconstruct-legal-block h2 {
	margin: 0 0 12px;
	font-family: "Manrope", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.02em;
}

.metalconstruct-privacy-block p,
.metalconstruct-legal-block p {
	margin: 0;
	font: 400 16px/1.72 "IBM Plex Sans", sans-serif;
	color: var(--mc-text-muted-strong);
}

.metalconstruct-privacy-block p + p,
.metalconstruct-legal-block p + p {
	margin-top: 12px;
}

.metalconstruct-privacy-block ul,
.metalconstruct-legal-block ul {
	display: grid;
	gap: 10px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.metalconstruct-privacy-block li,
.metalconstruct-legal-block li {
	position: relative;
	padding-left: 18px;
	font: 400 16px/1.66 "IBM Plex Sans", sans-serif;
	color: rgba(243, 242, 239, 0.72);
}

.metalconstruct-privacy-block li::before,
.metalconstruct-legal-block li::before {
	content: "";
	position: absolute;
	top: 11px;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--mc-accent);
}

@keyframes mcHeroFadeUp {
	from {
		opacity: 0;
		transform: translate3d(0, 22px, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes mcHeroGlowFloat {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}

	50% {
		transform: translate3d(16px, -18px, 0);
	}
}

@keyframes mcHeroDotFill {
	from {
		width: 0;
	}

	to {
		width: 100%;
	}
}

@keyframes mcFactsPulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
		box-shadow: 0 0 0 7px rgba(198, 63, 54, 0.15);
	}

	50% {
		opacity: 0.82;
		transform: scale(0.92);
		box-shadow: 0 0 0 9px rgba(198, 63, 54, 0.08);
	}
}

@keyframes mcHeroProductFloatDoors {
	0%,
	100% {
		transform: translate3d(0, 8px, 0) scale(1.008);
	}

	50% {
		transform: translate3d(0, -2px, 0) scale(1.008);
	}
}

@keyframes mcHeroProductFloatCanopy {
	0%,
	100% {
		transform: translate3d(4px, 8px, 0) scale(1.012);
	}

	50% {
		transform: translate3d(4px, -6px, 0) scale(1.012);
	}
}

@keyframes mcHeroProductFloatFrames {
	0%,
	100% {
		transform: translate3d(6px, 10px, 0) scale(1.016);
	}

	50% {
		transform: translate3d(6px, 0, 0) scale(1.016);
	}
}

@media (prefers-reduced-motion: reduce) {
	.metalconstruct-reveal,
	.metalconstruct-reveal--scale,
	.metalconstruct-hero__badge,
	.metalconstruct-hero__slide.is-active .metalconstruct-hero__kicker,
	.metalconstruct-hero__slide.is-active .metalconstruct-hero__title,
	.metalconstruct-hero__slide.is-active .metalconstruct-hero__description,
	.metalconstruct-hero__slide.is-active .metalconstruct-hero__actions,
	.metalconstruct-hero__slide.is-active .metalconstruct-hero__badge,
	.metalconstruct-hero__slide.is-active .metalconstruct-hero__visual-glow,
	.metalconstruct-hero__slide.is-active .metalconstruct-hero__visual img,
	.metalconstruct-facts-shell__item.has-indicator::before,
	.metalconstruct-hero__dot.is-active::after,
	.metalconstruct-solutions-stage .metalconstruct-solutions-callout {
		animation: none !important;
		transition-duration: 1ms !important;
	}
}

@media (min-width: 1280px) and (max-height: 820px) {
	.metalconstruct-hero__controls {
		bottom: 170px;
	}
}

@media (max-width: 1279px) {
	.metalconstruct-hero {
		width: 100%;
		margin-right: 0;
	}

	.metalconstruct-home-header {
		grid-template-columns: 1fr;
		justify-items: start;
	}

	.metalconstruct-home-header__nav {
		justify-content: flex-start;
	}

	.metalconstruct-privacy-shell,
	.metalconstruct-legal-shell {
		padding-bottom: 88px;
	}

	.metalconstruct-privacy-card,
	.metalconstruct-legal-card {
		padding: 32px 28px 34px;
	}

	.metalconstruct-section-heading--split,
	.metalconstruct-advantages-heading,
	.metalconstruct-contacts-layout,
	.metalconstruct-faq-layout,
	.metalconstruct-lead-layout {
		grid-template-columns: 1fr;
	}

	.metalconstruct-hero__slide {
		grid-template-columns: 1fr;
		gap: 36px;
		padding-bottom: 160px;
	}

	.metalconstruct-hero__visual {
		justify-self: center;
	}

	.metalconstruct-facts-shell__list,
	.metalconstruct-production-grid,
	.metalconstruct-advantages-grid,
	.metalconstruct-testimonials-grid,
	.metalconstruct-solutions-benefits,
	.metalconstruct-footer__columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.metalconstruct-solutions-stage {
		min-height: 640px;
	}
}

@media (max-width: 1024px) {
	.metalconstruct-hero__title {
		font-size: 52px;
	}

	.metalconstruct-solutions-stage {
		min-height: 540px;
	}

	.metalconstruct-solutions-callout__label {
		font-size: 14px;
		padding: 8px 14px;
	}

	.metalconstruct-lead-form__row,
	.metalconstruct-contacts-grid,
	.metalconstruct-testimonials-grid,
	.metalconstruct-footer__columns {
		grid-template-columns: 1fr;
	}

	.metalconstruct-contacts-grid {
		grid-template-rows: none;
		min-height: 0;
		padding-top: 0;
	}

	.metalconstruct-contacts-map__placeholder {
		padding: 28px;
	}

	.metalconstruct-cookie-banner {
		left: 18px;
		right: 18px;
		bottom: 18px;
	}

	.metalconstruct-cookie-banner__body {
		width: 100%;
	}
}

@media (max-width: 900px) {
	.metalconstruct-shell-section {
		padding: 88px 0;
	}

	.metalconstruct-home-header {
		gap: 0;
		padding: 0;
	}

	.metalconstruct-home-header__top {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		padding: 14px 16px;
	}

	.metalconstruct-home-header__panel {
		display: none;
		padding: 14px 16px 16px;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.metalconstruct-home-header.is-menu-open .metalconstruct-home-header__panel {
		display: grid;
		gap: 16px;
	}

	.metalconstruct-home-header__burger {
		position: relative;
		display: inline-flex;
		flex: 0 0 auto;
		align-items: center;
		justify-content: center;
		width: 42px;
		height: 42px;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.16);
		border-radius: 12px;
		background: rgba(255, 255, 255, 0.02);
		cursor: pointer;
	}

	.metalconstruct-home-header__burger span,
	.metalconstruct-home-header__burger::before,
	.metalconstruct-home-header__burger::after {
		content: "";
		position: absolute;
		width: 16px;
		height: 2px;
		border-radius: 999px;
		background: #fff;
		transition: transform 240ms ease, opacity 240ms ease;
	}

	.metalconstruct-home-header__burger span {
		transform: translateY(0);
	}

	.metalconstruct-home-header__burger::before {
		transform: translateY(-5px);
	}

	.metalconstruct-home-header__burger::after {
		transform: translateY(5px);
	}

	.metalconstruct-home-header.is-menu-open .metalconstruct-home-header__burger span {
		opacity: 0;
	}

	.metalconstruct-home-header.is-menu-open .metalconstruct-home-header__burger::before {
		transform: rotate(45deg);
	}

	.metalconstruct-home-header.is-menu-open .metalconstruct-home-header__burger::after {
		transform: rotate(-45deg);
	}

	.metalconstruct-home-header__nav {
		display: grid;
		justify-content: stretch;
		gap: 14px;
	}

	.metalconstruct-home-header__nav a,
	.metalconstruct-privacy-header__current,
	.metalconstruct-legal-header__current {
		font-size: 16px;
		line-height: 1.2;
	}

	.metalconstruct-home-header__meta {
		display: grid;
		justify-items: start;
		gap: 12px;
	}

	.metalconstruct-section-heading h2,
	.metalconstruct-section-heading--faq h2 {
		font-size: 34px;
	}

	.metalconstruct-production-grid,
	.metalconstruct-services-grid,
	.metalconstruct-advantages-grid,
	.metalconstruct-facts-shell__list,
	.metalconstruct-solutions-benefits {
		grid-template-columns: 1fr;
	}

	.metalconstruct-hero__controls {
		position: static;
		justify-content: center;
		padding: 0;
		transform: none;
	}

	.metalconstruct-hero__visual {
		width: min(100%, 521px);
	}

	.metalconstruct-home-header__meta {
		flex-wrap: wrap;
	}

	.metalconstruct-privacy-heading h1,
	.metalconstruct-legal-heading h1 {
		font-size: 42px;
	}

	.metalconstruct-mobile-scroller.is-mobile-scroll-active .metalconstruct-mobile-scroller__controls {
		display: flex;
		justify-content: flex-end;
		gap: 10px;
		margin-top: 16px;
	}

	[data-mobile-scroll-slider] {
		display: flex;
		gap: 16px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-ms-overflow-style: none;
		background: transparent;
	}

	[data-mobile-scroll-slider]::-webkit-scrollbar {
		display: none;
	}

	[data-mobile-scroll-slider] > * {
		flex: 0 0 min(86vw, 420px);
		scroll-snap-align: start;
	}

	.metalconstruct-facts-shell__list,
	.metalconstruct-production-grid,
	.metalconstruct-services-grid,
	.metalconstruct-advantages-grid,
	.metalconstruct-testimonials-grid {
		border: 0;
	}

	.metalconstruct-facts-shell__list > * {
		flex-basis: min(72vw, 260px);
		border: 1px solid rgba(255, 255, 255, 0.09);
		border-right: 1px solid rgba(255, 255, 255, 0.09);
		background: #0f1012;
	}

	.metalconstruct-facts-shell__list .metalconstruct-facts-shell__item:last-child {
		border-right: 1px solid rgba(255, 255, 255, 0.09);
	}

	.metalconstruct-production-grid > * {
		border: 1px solid var(--mc-border-dark);
	}

	.metalconstruct-services-grid,
	.metalconstruct-advantages-grid {
		background: transparent;
	}

	.metalconstruct-services-grid::after {
		display: none;
	}

	.metalconstruct-services-grid > *,
	.metalconstruct-advantages-grid > * {
		border: 1px solid rgba(255, 255, 255, 0.1);
	}

	.metalconstruct-testimonials-grid > * {
		border-color: rgba(0, 0, 0, 0.1);
	}

	.metalconstruct-service-audience {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 6px;
		scrollbar-width: none;
	}

	.metalconstruct-service-audience::-webkit-scrollbar {
		display: none;
	}

	.metalconstruct-contacts-map__placeholder h3 {
		font-size: 24px;
	}

	.metalconstruct-footer__legal {
		padding-bottom: 24px;
	}

	.metalconstruct-lead-form-shell {
		min-height: auto;
	}

	#solutions .metalconstruct-solutions-stage {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		min-height: auto;
	}

	#solutions .metalconstruct-solutions-stage__image {
		position: relative;
		order: 9;
		grid-column: 1 / -1;
		top: auto;
		left: auto;
		width: 100%;
		max-width: 100%;
		margin: 6px 0 0;
		transform: none;
	}

	#solutions .metalconstruct-solutions-callout {
		position: static;
		display: block;
		align-items: center;
		margin: 0;
		transform: none;
	}

	#solutions .metalconstruct-solutions-callout__line,
	#solutions .metalconstruct-solutions-callout__dot {
		display: none;
	}

	#solutions .metalconstruct-solutions-summary {
		margin-top: 18px;
		font-size: 15px;
		line-height: 1.55;
	}

	#solutions .metalconstruct-solutions-benefits {
		gap: 14px;
	}

	#solutions .metalconstruct-solutions-benefit {
		padding: 16px 18px;
		border: 1px solid rgba(24, 22, 17, 0.1);
		background: #fff;
	}

	.metalconstruct-lead-panel,
	.metalconstruct-lead-form-shell {
		padding: 40px 28px;
	}

	.metalconstruct-lead-panel {
		min-height: auto;
	}

	.metalconstruct-lead-panel h2 {
		font-size: 32px;
	}

	.metalconstruct-lead-panel__description {
		max-width: 100%;
		font-size: 16px;
	}
}

@media (max-width: 640px) {
	.metalconstruct-container {
		padding: 0 18px;
	}

	.metalconstruct-home-header__top {
		padding: 13px 14px;
	}

	.metalconstruct-home-header__panel {
		padding: 14px 14px 14px;
	}

	.metalconstruct-home-header__meta {
		width: 100%;
	}

	.metalconstruct-home-header__cta,
	.metalconstruct-home-header__phone {
		width: 100%;
		justify-content: center;
	}

	.metalconstruct-privacy-card,
	.metalconstruct-legal-card {
		padding: 26px 22px 30px;
		border-radius: 18px;
	}

	.metalconstruct-privacy-heading__meta,
	.metalconstruct-legal-heading__meta {
		gap: 6px;
	}

	.metalconstruct-privacy-block h2,
	.metalconstruct-legal-block h2 {
		font-size: 21px;
	}

	.metalconstruct-privacy-block p,
	.metalconstruct-legal-block p,
	.metalconstruct-privacy-card__intro,
	.metalconstruct-legal-card__intro {
		font-size: 15px;
		line-height: 1.66;
	}

	.metalconstruct-legal-context {
		padding: 18px 18px 20px;
	}

	.metalconstruct-legal-context h2 {
		font-size: 22px;
	}

	.metalconstruct-contacts-map__placeholder {
		padding: 22px 20px;
		gap: 12px;
	}

	.metalconstruct-contacts-map__placeholder h3 {
		font-size: 22px;
	}

	.metalconstruct-contacts-map__placeholder p {
		font-size: 14px;
		line-height: 1.55;
	}

	.metalconstruct-contacts-map__actions,
	.metalconstruct-cookie-banner__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.metalconstruct-button {
		width: 100%;
	}

	.metalconstruct-hero {
		min-height: auto;
	}

	.metalconstruct-hero__slide {
		gap: 24px;
		min-height: auto;
		padding: 6px 0 0;
	}

	.metalconstruct-hero__title {
		font-size: 36px;
	}

	.metalconstruct-hero__description {
		font-size: 16px;
		line-height: 1.58;
	}

	.metalconstruct-hero__actions {
		display: grid;
		gap: 12px;
	}

	.metalconstruct-hero__phone {
		gap: 4px;
	}

	.metalconstruct-hero__visual {
		height: 360px;
	}

	.metalconstruct-hero__visual-glow {
		inset: 42px 40px auto;
		width: auto;
		height: 240px;
	}

	.metalconstruct-hero__visual-frame {
		inset: 58px 24px 52px;
	}

	.metalconstruct-hero__visual--doors img,
	.metalconstruct-hero__visual--canopy img,
	.metalconstruct-hero__visual--frames img {
		top: 24px;
		left: 50%;
		width: auto;
		height: 270px;
		transform: translateX(-50%);
	}

	.metalconstruct-hero__badge {
		padding: 8px 10px;
		gap: 8px;
		max-width: 132px;
	}

	.metalconstruct-hero__badge-icon {
		flex-basis: 28px;
		width: 28px;
		height: 28px;
	}

	.metalconstruct-hero__badge-icon img {
		width: 14px;
		height: 14px;
	}

	.metalconstruct-hero__badge-value {
		font-size: 14px;
	}

	.metalconstruct-hero__badge-text {
		font-size: 10px;
	}

	.metalconstruct-hero__badge.is-market {
		top: 18px;
		right: 8px;
	}

	.metalconstruct-hero__badge.is-experience {
		top: 118px;
		left: 0;
	}

	.metalconstruct-hero__badge.is-response {
		right: 0;
		bottom: 24px;
	}

	#solutions .metalconstruct-section-heading h2 {
		font-size: 34px;
	}

	#solutions .metalconstruct-solutions-stage {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	#solutions .metalconstruct-solutions-callout__label {
		width: 100%;
		min-height: 36px;
		padding: 8px 10px;
		justify-content: center;
		font-size: 12px;
		letter-spacing: 0.02em;
	}

	.metalconstruct-production-card__media {
		height: 236px;
	}

	.metalconstruct-production-card__content,
	.metalconstruct-service-card,
	.metalconstruct-advantages-card,
	.metalconstruct-testimonial-card {
		padding-left: 22px;
		padding-right: 22px;
	}

	.metalconstruct-production-card__content {
		padding-top: 22px;
		padding-bottom: 22px;
	}

	.metalconstruct-service-card,
	.metalconstruct-advantages-card {
		padding-top: 28px;
		padding-bottom: 30px;
	}

	.metalconstruct-service-card h3,
	.metalconstruct-advantages-card h3 {
		font-size: 20px;
	}

	.metalconstruct-testimonial-card {
		gap: 16px;
	}

	.metalconstruct-testimonial-card__text {
		font-size: 15px;
		line-height: 1.65;
	}

	.metalconstruct-lead-panel,
	.metalconstruct-lead-form-shell {
		padding: 36px 24px;
	}

	.metalconstruct-lead-field textarea {
		min-height: 124px;
	}

	.metalconstruct-lead-form__consent label {
		grid-template-columns: 13px minmax(0, 1fr);
		gap: 8px;
	}

	.metalconstruct-lead-form__consent .wpcf7-list-item-label {
		font-size: 10.5px;
	}

	.metalconstruct-lead-success {
		gap: 10px;
	}

	.metalconstruct-lead-success__icon {
		width: 38px;
		height: 38px;
	}

	.metalconstruct-lead-success__icon img {
		width: 16px;
		height: 16px;
	}

	.metalconstruct-lead-success h3 {
		font-size: 18px;
	}

	.metalconstruct-lead-success p {
		font-size: 14px;
		line-height: 1.55;
	}

	.metalconstruct-footer {
		margin-top: 56px;
		padding-top: 40px;
	}

	.metalconstruct-footer__legal {
		gap: 10px;
		padding-bottom: 22px;
	}

	.metalconstruct-footer__legal-links {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.metalconstruct-cookie-banner {
		left: 14px;
		right: 14px;
		bottom: 14px;
	}

	.metalconstruct-cookie-banner__body {
		padding: 16px 16px 17px;
		border-radius: 18px;
	}

	.metalconstruct-cookie-banner__body h2 {
		font-size: 20px;
		line-height: 1.08;
	}

	.metalconstruct-cookie-banner__description {
		font-size: 13px;
		line-height: 1.5;
	}

	.metalconstruct-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 430px) {
	.metalconstruct-shell-section {
		padding: 76px 0;
	}

	.metalconstruct-hero__title {
		font-size: 31px;
	}

	.metalconstruct-hero__accent {
		padding-bottom: 12px;
	}

	.metalconstruct-hero__accent::after {
		height: 5px;
	}

	.metalconstruct-hero__visual {
		height: 318px;
	}

	.metalconstruct-hero__visual-frame {
		inset: 54px 18px 46px;
	}

	.metalconstruct-hero__visual--doors img,
	.metalconstruct-hero__visual--canopy img,
	.metalconstruct-hero__visual--frames img {
		height: 236px;
	}

	.metalconstruct-hero__badge.is-market {
		top: 10px;
		right: 0;
	}

	.metalconstruct-hero__badge.is-experience {
		top: 98px;
		left: 4px;
	}

	.metalconstruct-hero__badge.is-response {
		right: 4px;
		bottom: 16px;
	}

	.metalconstruct-facts-shell__item {
		padding: 20px 18px;
		min-height: 84px;
	}

	#solutions .metalconstruct-solutions-stage {
		grid-template-columns: 1fr;
	}
}
