: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;
}

html,
body.metalconstruct-body {
	background-color: #0d0d0f;
}

body.metalconstruct-menu-locked {
	overflow: hidden !important;
	touch-action: none;
}

.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-scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #b9423e 0%, #d5372c 50%, #ff5d4e 100%);
	transform-origin: 0 50%;
	transform: scaleX(0);
	z-index: 99999;
	pointer-events: none;
	box-shadow: 0 0 10px rgba(213, 55, 44, 0.7);
}

.metalconstruct-reveal {
	opacity: 0;
	transform: translate3d(0, 24px, 0);
	transition:
		opacity 650ms cubic-bezier(0.16, 1, 0.3, 1),
		transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}

.metalconstruct-reveal--scale {
	opacity: 0;
	transform: translate3d(0, 18px, 0) scale(0.96);
	transition:
		opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
		transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}

.metalconstruct-reveal--left {
	opacity: 0;
	transform: translate3d(-28px, 0, 0);
	transition:
		opacity 650ms cubic-bezier(0.16, 1, 0.3, 1),
		transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}

.metalconstruct-reveal--right {
	opacity: 0;
	transform: translate3d(28px, 0, 0);
	transition:
		opacity 650ms cubic-bezier(0.16, 1, 0.3, 1),
		transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}

.metalconstruct-reveal.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
}

.metalconstruct-reveal:not(.is-visible) {
	transition-delay: 0s !important;
	transition-duration: 320ms !important;
}

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

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

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

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

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

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

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

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

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

.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 {
	position: fixed;
	top: 14px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: calc(100% - 32px);
	max-width: 1320px;
	z-index: 1000;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: clamp(12px, 1.8vw, 24px);
	padding: 12px 20px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 16px;
	background: rgba(20, 20, 20, 0.7);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
	transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
	will-change: transform;
}

.metalconstruct-home-header.is-scrolled {
	background: rgba(14, 15, 18, 0.92);
	border-color: rgba(255, 255, 255, 0.18);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
}

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

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

.metalconstruct-home-header__brand--image {
	display: inline-flex;
	align-items: center;
}

.metalconstruct-home-header__brand--image img {
	display: block;
	width: auto;
	max-width: 266px;
	max-height: 34px;
	object-fit: contain;
	transform-origin: left center;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.metalconstruct-home-header.is-scrolled .metalconstruct-home-header__brand--image img {
	transform: scale(0.827);
}

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

.metalconstruct-home-header__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: clamp(10px, 1.3vw, 22px);
	font: 600 13px/1.2 "Manrope", sans-serif;
	white-space: nowrap;
}

.metalconstruct-home-header__nav a {
	white-space: nowrap;
	opacity: 0.85;
	transition: opacity 0.2s ease, color 0.2s ease;
}

.metalconstruct-home-header__nav a:hover {
	opacity: 1;
	color: #ffffff;
}

.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: 108px;
}

.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: clamp(38px, 3.8vw, 56px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
}

:lang(ro) .metalconstruct-hero__title,
html[lang*="ro"] .metalconstruct-hero__title {
	font-size: clamp(36px, 3.6vw, 52px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.1;
}

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

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

.metalconstruct-hero__accent::after {
	content: "";
	position: absolute;
	left: 0;
	right: auto;
	width: var(--mc-hero-accent-underline-width, 100%);
	max-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;
	text-decoration: none;
	color: inherit;
	transition: opacity 180ms ease, transform 180ms ease;
}

.metalconstruct-hero__phone:hover {
	opacity: 0.85;
	transform: translateY(-1px);
}

.metalconstruct-hero__phone:focus-visible {
	outline: 2px solid #c63f36;
	outline-offset: 4px;
	border-radius: 4px;
}

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

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

.metalconstruct-inline-phone,
.metalconstruct-inline-email {
	color: inherit;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(198, 63, 54, 0.6);
	transition: color 180ms ease, text-decoration-color 180ms ease;
}

.metalconstruct-inline-phone:hover,
.metalconstruct-inline-email:hover {
	color: #c63f36;
	text-decoration-color: #c63f36;
}

.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);
	z-index: 0;
}

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

.metalconstruct-hero__visual-frame {
	position: absolute;
	inset: 50px 37px 50px 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%;
	z-index: 1;
}

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

.metalconstruct-hero__visual--doors > img,
.metalconstruct-hero__visual--canopy > img,
.metalconstruct-hero__visual--frames > img {
	top: 14px;
	left: -32px;
	width: 664px;
}

.metalconstruct-hero__visual--doors > img {
	filter: drop-shadow(0 32px 26px rgba(0, 0, 0, 0.42));
}

.metalconstruct-hero__visual--canopy > img {
	top: 20px;
}

.metalconstruct-hero__visual--frames > img {
	top: 20px;
}

.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);
	z-index: 10;
	pointer-events: none;
	transition: opacity 300ms ease, transform 300ms ease;
}

.metalconstruct-hero__slide.is-active .metalconstruct-hero__badge {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	pointer-events: auto;
	animation: mcHeroFadeUp 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

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

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

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

.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;
}

@media (min-width: 641px) {
	.metalconstruct-hero__slide:not(:first-child) .metalconstruct-hero__badge {
		display: none !important;
	}
}

.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);
	transition:
		box-shadow 350ms cubic-bezier(0.16, 1, 0.3, 1),
		transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.metalconstruct-production-card:hover {
	box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.18);
	z-index: 2;
}

.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;
	transition:
		background-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
		color 300ms cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 3;
}

.metalconstruct-production-card:hover .metalconstruct-production-card__index {
	background: var(--mc-accent);
	color: #ffffff;
}

.metalconstruct-production-card__media img {
	width: 86%;
	height: 86%;
	object-fit: contain;
	transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.metalconstruct-production-card:hover .metalconstruct-production-card__media img {
	transform: scale(1.04);
}

.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:
		background-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.metalconstruct-service-card:hover {
	background: #191a1d;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.metalconstruct-service-card__accent {
	width: 30px;
	height: 2px;
	background: var(--mc-accent);
	transition:
		width 300ms cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.metalconstruct-service-card:hover .metalconstruct-service-card__accent {
	width: 46px;
	box-shadow: 0 0 10px rgba(213, 55, 44, 0.5);
}

.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);
	border-radius: 2px;
	font: 400 12px/1 "IBM Plex Mono", monospace;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(243, 242, 239, 0.7);
	cursor: pointer;
	background: transparent;
	transition:
		border-color 240ms cubic-bezier(0.16, 1, 0.3, 1),
		background-color 240ms cubic-bezier(0.16, 1, 0.3, 1),
		color 240ms cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.metalconstruct-service-audience__item:hover {
	border-color: rgba(213, 55, 44, 0.55);
	background: rgba(213, 55, 44, 0.08);
	color: #ffffff;
}

.metalconstruct-service-audience__item.is-active {
	border-color: var(--mc-accent);
	background: rgba(213, 55, 44, 0.14);
	color: #ffffff;
	box-shadow: inset 0 0 0 1px rgba(213, 55, 44, 0.2);
}

#solutions {
	scroll-margin-top: 100px;
}

.metalconstruct-solutions-stage-viewport {
	position: relative;
	width: 100%;
}

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

.metalconstruct-solutions-chips {
	display: none;
}

#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;
	opacity: 0;
	transform: translate3d(0, 16px, 0) scale(0.92);
	transition:
		opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
		transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

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

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

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

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

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

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

.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;
	box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.18);
	transition:
		transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1),
		background-color 300ms ease,
		color 300ms ease;
	cursor: pointer;
}

.metalconstruct-solutions-callout:hover .metalconstruct-solutions-callout__label,
.metalconstruct-solutions-callout.is-active .metalconstruct-solutions-callout__label {
	transform: translateY(-3px) scale(1.03);
	background-color: var(--mc-accent);
	color: #ffffff;
	box-shadow: 0 14px 28px -6px rgba(213, 55, 44, 0.4);
}

.metalconstruct-solutions-callout:hover .metalconstruct-solutions-callout__dot,
.metalconstruct-solutions-callout.is-active .metalconstruct-solutions-callout__dot {
	filter: drop-shadow(0 0 8px #d5372c);
	transform: scale(1.6);
}

.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:
		background-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.metalconstruct-advantages-card:hover {
	background: #191a1d;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.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 300ms cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1),
		border-color 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.metalconstruct-testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.25);
	border-color: rgba(213, 55, 44, 0.35);
}

.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: 16px;
	padding-right: 42px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(243, 242, 239, 0.7)' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: calc(100% - 16px) center;
	background-size: 16px 16px;
	cursor: pointer;
}

.metalconstruct-lead-field select:focus {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d5372c' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.metalconstruct-lead-field select option {
	background-color: #18191c;
	color: #f3f2ef;
	padding: 12px;
}

.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-field .iti,
.metalconstruct-lead-field .intl-tel-input {
	display: block;
	width: 100%;
	position: relative;
}

.metalconstruct-lead-field .iti__country-container,
.metalconstruct-lead-field .intl-tel-input .flag-container {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
}

.metalconstruct-lead-field .iti__selected-country,
.metalconstruct-lead-field .intl-tel-input .selected-flag {
	display: inline-flex !important;
	align-items: center !important;
	height: 100% !important;
	padding: 0 8px 0 16px !important;
	background: transparent !important;
	border: 0 !important;
	gap: 6px !important;
	cursor: pointer;
	z-index: 2;
}

.metalconstruct-lead-field .iti__selected-country-primary {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	height: 100% !important;
}

.metalconstruct-lead-field .iti__flag,
.metalconstruct-lead-field .iti-flag,
.metalconstruct-lead-field .selected-flag .iti-flag,
.metalconstruct-lead-field .selected-flag .iti__flag {
	position: static !important;
	flex: 0 0 20px !important;
	width: 20px !important;
	height: 14px !important;
	margin: 0 !important;
	display: block !important;
	background-color: transparent !important;
	box-shadow: none !important;
	border: 0 !important;
	outline: none !important;
	border-radius: 2px !important;
	overflow: hidden;
}

.metalconstruct-lead-field .iti-flag.md,
.metalconstruct-lead-field .iti__flag.iti__md {
	background-image: url("../media/flag-md.svg") !important;
	background-position: center !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-color: transparent !important;
	box-shadow: none !important;
	border: 0 !important;
	height: 14px !important;
}

.metalconstruct-lead-field .iti-flag.ro,
.metalconstruct-lead-field .iti__flag.iti__ro {
	background-image: url("../media/flag-ro.svg") !important;
	background-position: center !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-color: transparent !important;
	box-shadow: none !important;
	border: 0 !important;
	height: 14px !important;
}

.metalconstruct-lead-field .iti__selected-dial-code,
.metalconstruct-lead-field .selected-dial-code {
	position: static !important;
	display: inline-block !important;
	font: 500 15px/1.3 "IBM Plex Sans", sans-serif !important;
	color: #ffffff !important;
	margin: 0 !important;
	padding: 0 !important;
	white-space: nowrap !important;
	line-height: 1 !important;
}

.metalconstruct-lead-field .iti__arrow,
.metalconstruct-lead-field .iti-arrow {
	position: static !important;
	top: auto !important;
	bottom: auto !important;
	left: auto !important;
	right: auto !important;
	margin: 0 0 0 2px !important;
	width: 0 !important;
	height: 0 !important;
	border-left: 3.5px solid transparent !important;
	border-right: 3.5px solid transparent !important;
	border-top: 4px solid rgba(243, 242, 239, 0.7) !important;
	border-bottom: none !important;
	display: inline-block !important;
	transform: none !important;
}

.metalconstruct-lead-field .iti__arrow--up,
.metalconstruct-lead-field .iti-arrow.up {
	border-top: none !important;
	border-bottom: 4px solid rgba(243, 242, 239, 0.7) !important;
}

.metalconstruct-lead-field .iti input,
.metalconstruct-lead-field .iti input[type="tel"],
.metalconstruct-lead-field .iti input[type="text"],
.metalconstruct-lead-field .intl-tel-input input {
	width: 100% !important;
	padding-left: 112px !important;
	background: var(--mc-bg) !important;
	color: var(--mc-text) !important;
	border: 1px solid rgba(255, 255, 255, 0.14) !important;
	border-radius: 2px !important;
	font: 400 15.5px/1.3 "IBM Plex Sans", sans-serif !important;
}

.metalconstruct-lead-field .iti__dropdown-content,
.metalconstruct-lead-field .iti__country-list,
.metalconstruct-lead-field .intl-tel-input .country-list,
body .iti__dropdown-content,
body .iti__country-list,
body .intl-tel-input .country-list {
	background: #18191c !important;
	border: 1px solid rgba(255, 255, 255, 0.16) !important;
	border-radius: 6px !important;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7) !important;
	max-height: 220px !important;
	z-index: 1000 !important;
	font: 400 14px/1.4 "IBM Plex Sans", sans-serif !important;
	color: #f3f2ef !important;
}

.metalconstruct-lead-field .iti__country,
.metalconstruct-lead-field .intl-tel-input .country-list .country,
body .iti__country,
body .intl-tel-input .country-list .country {
	padding: 8px 12px !important;
	color: #f3f2ef !important;
	background: transparent !important;
}

.metalconstruct-lead-field .iti__country.iti__highlight,
.metalconstruct-lead-field .iti__country:hover,
.metalconstruct-lead-field .intl-tel-input .country-list .country.highlight,
.metalconstruct-lead-field .intl-tel-input .country-list .country:hover,
body .iti__country.iti__highlight,
body .iti__country:hover,
body .intl-tel-input .country-list .country.highlight,
body .intl-tel-input .country-list .country:hover {
	background: #d5372c !important;
	color: #ffffff !important;
}

.metalconstruct-lead-field .iti__country-name,
.metalconstruct-lead-field .intl-tel-input .country-list .country-name,
body .iti__country-name,
body .intl-tel-input .country-list .country-name {
	color: #f3f2ef !important;
	font-weight: 500 !important;
	margin-right: 6px !important;
}

.metalconstruct-lead-field .iti__dial-code,
.metalconstruct-lead-field .intl-tel-input .country-list .dial-code,
body .iti__dial-code,
body .intl-tel-input .country-list .dial-code {
	color: rgba(243, 242, 239, 0.5) !important;
}

.metalconstruct-lead-field .intl-tel-input .country-list .divider,
body .intl-tel-input .country-list .divider {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.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__consent {
	padding-top: 4px;
	padding-bottom: 12px;
}

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

.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 .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 300ms ease,
		background-color 300ms ease;
}

.metalconstruct-faq-item:hover {
	border-color: rgba(213, 55, 44, 0.35);
}

.metalconstruct-faq-item.is-open {
	border-color: var(--mc-accent);
	background: rgba(213, 55, 44, 0.02);
}

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

.metalconstruct-faq-item:hover .metalconstruct-faq-item__toggle span:first-child {
	color: var(--mc-accent);
}

.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);
	transition: color 250ms ease;
}

.metalconstruct-faq-item__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	color: var(--mc-accent);
	transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.metalconstruct-faq-item__answer {
	padding: 0 6px 22px;
	animation: mcFaqFadeIn 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes mcFaqFadeIn {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.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__brand--image {
	padding-left: 0;
}

.metalconstruct-footer__brand--image img {
	display: block;
	height: 32px;
	width: auto;
	max-width: 250px;
	object-fit: contain;
}

.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__nav-apps,
.metalconstruct-contacts-grid__nav-apps {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 6px;
	flex-wrap: wrap;
}

.metalconstruct-footer__nav-app,
.metalconstruct-contacts-grid__nav-app {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 12px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #ffffff;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
	line-height: 1;
}

.metalconstruct-footer__nav-app:hover,
.metalconstruct-contacts-grid__nav-app:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-1px);
}

.metalconstruct-footer__nav-app svg,
.metalconstruct-contacts-grid__nav-app svg {
	display: block;
	height: 14px;
	width: auto;
}

.metalconstruct-footer__legal {
	display: grid;
	gap: 14px;
	padding: 24px 0 24px;
	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 {
	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 {
	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: none;
	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 !important;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 99998 !important;
	pointer-events: none;
	margin: 0 !important;
	box-sizing: border-box !important;
}

.metalconstruct-cookie-banner,
.metalconstruct-cookie-banner * {
	box-sizing: border-box !important;
}

.metalconstruct-cookie-banner[hidden] {
	display: none !important;
}

.metalconstruct-cookie-banner__body {
	width: min(100%, 640px);
	margin-left: auto;
	padding: 20px 24px 22px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 18px;
	background: #141518 !important;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
	pointer-events: auto;
	box-sizing: border-box !important;
}

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

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

.metalconstruct-cookie-banner__description {
	margin: 10px 0 0;
	max-width: 580px;
	font: 400 13px/1.55 "IBM Plex Sans", sans-serif;
	color: rgba(243, 242, 239, 0.76);
}

.metalconstruct-cookie-banner__links {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: 4px;
}

.metalconstruct-cookie-banner__links a {
	color: #ffffff;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	font-weight: 500;
	transition: opacity 0.2s ease;
}

.metalconstruct-cookie-banner__links a:hover {
	color: #ffffff;
	opacity: 0.8;
}

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

.metalconstruct-cookie-banner .metalconstruct-button {
	min-height: 38px;
	padding: 0 16px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

/* Cookie Preferences Modal */
.metalconstruct-cookie-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	pointer-events: auto;
}

.metalconstruct-cookie-modal[hidden] {
	display: none !important;
}

.metalconstruct-cookie-modal__backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.metalconstruct-cookie-modal__box {
	position: relative;
	width: min(100%, 540px);
	max-height: min(90vh, 700px);
	background: #141518;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 20px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.95);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	z-index: 2;
}

.metalconstruct-cookie-modal__header {
	padding: 20px 24px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.metalconstruct-cookie-modal__title {
	margin: 0;
	font: 700 19px/1.2 "Space Grotesk", sans-serif;
	letter-spacing: -0.02em;
	color: #ffffff;
}

.metalconstruct-cookie-modal__close {
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.6);
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	padding: 4px;
	border-radius: 6px;
	transition: color 0.2s ease;
}

.metalconstruct-cookie-modal__close:hover {
	color: #ffffff;
}

.metalconstruct-cookie-modal__body {
	padding: 18px 24px;
	overflow-y: auto;
	overscroll-behavior: contain;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.metalconstruct-cookie-modal__desc {
	margin: 0 0 4px;
	font: 400 13px/1.5 "IBM Plex Sans", sans-serif;
	color: rgba(243, 242, 239, 0.72);
}

.metalconstruct-cookie-category {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
}

.metalconstruct-cookie-category__info {
	flex: 1;
}

.metalconstruct-cookie-category__title-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 4px;
}

.metalconstruct-cookie-category__info strong {
	display: block;
	font: 600 14px/1.3 "Space Grotesk", sans-serif;
	color: #ffffff;
	margin-bottom: 3px;
}

.metalconstruct-cookie-category__info p {
	margin: 0;
	font: 400 12px/1.45 "IBM Plex Sans", sans-serif;
	color: rgba(243, 242, 239, 0.64);
}

.metalconstruct-cookie-badge {
	font: 500 10px/1 "IBM Plex Mono", monospace;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 3px 7px;
	border-radius: 4px;
	background: rgba(213, 55, 44, 0.16);
	color: var(--mc-accent);
	border: 1px solid rgba(213, 55, 44, 0.3);
}

/* iOS style toggle switch */
.metalconstruct-cookie-switch {
	position: relative;
	display: inline-block;
	width: 44px;
	height: 24px;
	flex-shrink: 0;
	cursor: pointer;
}

.metalconstruct-cookie-switch input {
	opacity: 0;
	width: 0;
	height: 0;
	position: absolute;
}

.metalconstruct-cookie-switch__slider {
	position: absolute;
	cursor: pointer;
	inset: 0;
	background-color: rgba(255, 255, 255, 0.16);
	border-radius: 24px;
	transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.metalconstruct-cookie-switch__slider::before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: #ffffff;
	border-radius: 50%;
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.metalconstruct-cookie-switch input:checked + .metalconstruct-cookie-switch__slider {
	background-color: var(--mc-accent);
}

.metalconstruct-cookie-switch input:checked + .metalconstruct-cookie-switch__slider::before {
	transform: translateX(20px);
}

.metalconstruct-cookie-modal__footer {
	padding: 16px 24px 20px;
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: #111215;
}

.metalconstruct-cookie-modal__footer .metalconstruct-button {
	min-height: 40px;
	padding: 0 18px;
	font-size: 12.5px;
	font-weight: 600;
	border-radius: 8px;
	text-transform: uppercase;
}

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

.metalconstruct-privacy-intro,
.metalconstruct-legal-intro {
	padding: 108px 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-legal-layout {
	display: grid;
	grid-template-columns: 290px minmax(0, 1fr);
	gap: 36px;
	align-items: start;
}

.metalconstruct-legal-sidebar {
	position: sticky;
	top: 32px;
	padding: 28px;
	border: 1px solid var(--mc-border-strong);
	border-radius: 20px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
		rgba(17, 18, 21, 0.94);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.metalconstruct-legal-sidebar__label {
	display: block;
	margin-bottom: 16px;
	font: 400 11px/1 "IBM Plex Mono", monospace;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(243, 242, 239, 0.45);
}

.metalconstruct-legal-nav {
	display: grid;
	gap: 8px;
}

.metalconstruct-legal-nav__item {
	display: flex;
	align-items: center;
	padding: 12px 16px;
	border-radius: 10px;
	border: 1px solid transparent;
	font: 500 14px/1.35 "IBM Plex Sans", sans-serif;
	color: rgba(243, 242, 239, 0.76);
	text-decoration: none;
	transition: all 0.2s ease;
}

.metalconstruct-legal-nav__item:hover {
	background: rgba(255, 255, 255, 0.06);
	color: #ffffff;
}

.metalconstruct-legal-nav__item.is-active {
	background: rgba(213, 55, 44, 0.14);
	border-color: rgba(213, 55, 44, 0.45);
	color: #ffffff;
	font-weight: 600;
}

.metalconstruct-legal-nav__button {
	display: flex;
	align-items: center;
	width: 100%;
	margin-top: 16px;
	padding: 11px 16px;
	border: 1px dashed rgba(255, 255, 255, 0.18);
	border-radius: 10px;
	background: transparent;
	font: 500 13px/1.35 "IBM Plex Sans", sans-serif;
	color: rgba(243, 242, 239, 0.65);
	cursor: pointer;
	text-align: left;
	transition: all 0.2s ease;
}

.metalconstruct-legal-nav__button:hover {
	background: rgba(255, 255, 255, 0.05);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.35);
}

.metalconstruct-privacy-card,
.metalconstruct-legal-card {
	width: 100%;
	max-width: none;
	padding: 44px 48px 48px;
	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 32px;
	font: 500 17.5px/1.75 "IBM Plex Sans", sans-serif;
	color: var(--mc-text);
}

.metalconstruct-legal-context {
	display: grid;
	gap: 12px;
	padding: 24px 26px;
	border: 1px solid rgba(213, 55, 44, 0.26);
	border-radius: 16px;
	background: rgba(213, 55, 44, 0.07);
	margin-bottom: 34px;
}

.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 23px/1.15 "Space Grotesk", sans-serif;
	letter-spacing: -0.02em;
	color: var(--mc-text);
}

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

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

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

.metalconstruct-privacy-block p,
.metalconstruct-legal-block p {
	margin: 0;
	font: 400 16px/1.75 "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, 5px, 0);
	}

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

@keyframes mcHeroProductFloatCanopy {
	0%,
	100% {
		transform: translate3d(0, 5px, 0);
	}

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

@keyframes mcHeroProductFloatFrames {
	0%,
	100% {
		transform: translate3d(0, 5px, 0);
	}

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

@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 {
		opacity: 1 !important;
		transform: none !important;
		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 {
		padding: 10px 16px;
		gap: clamp(8px, 1.2vw, 16px);
	}

	.metalconstruct-home-header__nav {
		gap: clamp(8px, 1vw, 14px);
		font-size: 12.5px;
	}

	.metalconstruct-home-header__phone {
		font-size: 13px;
		gap: 6px;
	}

	.metalconstruct-home-header__cta {
		padding: 10px 18px;
		font-size: 12.5px;
	}

	.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 {
		position: relative;
		justify-self: center;
		height: 420px;
		width: min(100%, 560px);
		margin: 0 auto;
	}

	.metalconstruct-hero__visual-frame {
		inset: 30px 15px 30px;
	}

	.metalconstruct-hero__visual--doors > img,
	.metalconstruct-hero__visual--canopy > img,
	.metalconstruct-hero__visual--frames > img {
		top: 15px;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 90%;
		max-width: 500px;
		height: auto;
		max-height: 360px;
		object-fit: contain;
	}

	.metalconstruct-hero__badge.is-market {
		top: 30px;
		right: 12px;
	}

	.metalconstruct-hero__badge.is-experience {
		top: 170px;
		left: 12px;
	}

	.metalconstruct-hero__badge.is-response {
		right: 12px;
		bottom: 30px;
	}

	.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 !important;
		right: 18px !important;
		bottom: 18px !important;
		margin: 0 !important;
		box-sizing: border-box !important;
	}

	.metalconstruct-cookie-banner__body {
		width: 100% !important;
		margin: 0 !important;
		box-sizing: border-box !important;
	}
}

@media (max-width: 1024px) {
	.metalconstruct-hero-shell {
		padding-top: 100px;
	}

	.metalconstruct-legal-intro {
		padding-top: 100px;
	}

	.metalconstruct-home-header {
		display: block;
		width: calc(100% - 24px);
		max-width: 580px;
		top: 10px;
		padding: 0;
		border-radius: 14px;
	}

	.metalconstruct-home-header.is-menu-open {
		background: transparent;
		border-color: transparent;
		box-shadow: none;
	}

	.metalconstruct-home-header__top {
		position: relative;
		z-index: 10002;
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		gap: 12px;
		padding: 12px 14px;
		transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.metalconstruct-home-header.is-scrolled .metalconstruct-home-header__top {
		padding: 8px 14px;
	}

	.metalconstruct-home-header__brand--image img {
		max-width: 266px;
		max-height: 34px;
	}

	.metalconstruct-home-header.is-scrolled .metalconstruct-home-header__brand--image img {
		transform: scale(0.827);
	}

	.metalconstruct-home-header__brand {
		position: relative;
		z-index: 10002;
		font: 800 15px/1 "Montserrat", sans-serif;
		letter-spacing: -0.035em;
		color: #ffffff;
		text-decoration: none;
	}

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

	.metalconstruct-home-header__burger {
		position: relative;
		display: inline-flex;
		flex: 0 0 auto;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.16);
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.04);
		cursor: pointer;
		margin-left: auto;
		z-index: 10002;
		transition: background-color 0.2s ease, border-color 0.2s ease;
	}

	.metalconstruct-home-header__burger:hover,
	.metalconstruct-home-header.is-menu-open .metalconstruct-home-header__burger {
		background: rgba(255, 255, 255, 0.08);
		border-color: rgba(255, 255, 255, 0.3);
	}

	.metalconstruct-home-header__burger span,
	.metalconstruct-home-header__burger::before,
	.metalconstruct-home-header__burger::after {
		content: "";
		position: absolute;
		width: 18px;
		height: 2px;
		border-radius: 999px;
		background: #fff;
		transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), opacity 200ms ease;
	}

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

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

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

	.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__panel {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100vw;
		width: 100dvw;
		height: 100vh;
		height: 100dvh;
		background: #0d0e12;
		backdrop-filter: blur(28px);
		-webkit-backdrop-filter: blur(28px);
		z-index: 10001;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding: 78px 24px 34px;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-12px);
		transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.metalconstruct-home-header.is-menu-open .metalconstruct-home-header__panel {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.metalconstruct-home-header__nav {
		display: flex;
		flex-direction: column;
		gap: 16px;
		margin-top: 10px;
	}

	.metalconstruct-home-header__nav a {
		font: 700 21px/1.2 "Space Grotesk", sans-serif;
		color: #ffffff;
		text-decoration: none;
		letter-spacing: -0.01em;
		padding: 8px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
		transition: color 0.2s ease, transform 0.2s ease;
	}

	.metalconstruct-home-header__nav a:hover,
	.metalconstruct-home-header__nav a:active {
		color: var(--mc-accent-soft);
		transform: translateX(4px);
	}

	.metalconstruct-home-header__meta {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		margin-top: auto;
		padding-top: 26px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.metalconstruct-home-header__language {
		display: inline-flex;
		align-items: center;
		padding: 4px;
		border: 1px solid rgba(255, 255, 255, 0.18);
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.05);
	}

	.metalconstruct-home-header__language a {
		padding: 8px 18px;
		border-radius: 999px;
		font: 700 13.5px/1 "Manrope", sans-serif;
		color: rgba(255, 255, 255, 0.65);
		text-decoration: none;
		transition: all 0.2s ease;
	}

	.metalconstruct-home-header__language .is-active {
		background: #c63f36;
		color: #ffffff;
		box-shadow: 0 2px 10px rgba(198, 63, 54, 0.4);
	}

	.metalconstruct-home-header__phone {
		display: inline-flex;
		align-items: center;
		gap: 12px;
		font: 700 18px/1.2 "Space Grotesk", sans-serif;
		color: #ffffff;
		text-decoration: none;
		padding: 4px 0;
	}

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

	.metalconstruct-home-header__cta {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		min-height: 52px;
		padding: 16px 24px;
		border-radius: 14px;
		background: #c63f36;
		font: 700 16px/1 "Manrope", sans-serif;
		color: #ffffff;
		text-decoration: none;
		box-shadow: 0 8px 24px rgba(198, 63, 54, 0.35);
	}

	.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-legal-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.metalconstruct-legal-sidebar {
		position: static;
		padding: 20px;
	}

	.metalconstruct-hero__controls {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 16px;
		width: 100%;
		margin: 28px auto 36px;
		padding: 0 16px;
		transform: none;
		left: auto;
		bottom: auto;
	}

	.metalconstruct-hero__arrow {
		width: 44px;
		height: 44px;
		flex: 0 0 44px;
		border: 1px solid rgba(255, 255, 255, 0.22);
		background: rgba(255, 255, 255, 0.04);
	}

	.metalconstruct-hero__dots {
		display: inline-flex;
		align-items: center;
		gap: 8px;
	}

	.metalconstruct-hero__dot {
		width: 36px;
		height: 3px;
	}

	.metalconstruct-facts-shell {
		margin-top: 0;
		padding: 8px 0 14px;
	}

	.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: 18px;
		margin-bottom: 24px;
	}

	.metalconstruct-mobile-scroller--services .metalconstruct-mobile-scroller__controls {
		margin-bottom: 32px;
	}

	[data-mobile-scroll-slider] {
		display: flex;
		gap: 14px;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-ms-overflow-style: none;
		background: transparent;
		padding-bottom: 8px;
		touch-action: pan-x pan-y;
	}

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

	[data-mobile-scroll-slider] > * {
		flex: 0 0 min(74vw, 290px);
		min-width: 0;
		scroll-snap-align: start;
		scroll-snap-stop: normal;
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}

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

	.metalconstruct-facts-shell__list > * {
		flex: 0 0 min(72vw, 240px);
		border: 1px solid rgba(255, 255, 255, 0.09);
		border-right: 1px solid rgba(255, 255, 255, 0.09);
		background: #0f1012;
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}

	.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);
		box-shadow: none !important;
	}

	.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 {
		margin-top: 28px;
		padding-top: 0;
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 6px;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.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-viewport {
		position: relative;
		width: 100%;
		padding: 10px 0;
		overflow: visible;
	}

	#solutions .metalconstruct-solutions-stage-viewport::-webkit-scrollbar {
		display: none;
	}

	#solutions .metalconstruct-solutions-stage {
		display: block;
		position: relative;
		width: 100%;
		max-width: 580px;
		aspect-ratio: 1446 / 707;
		min-height: unset;
		min-width: unset;
		margin: 0 auto;
		overflow: visible;
	}

	#solutions .metalconstruct-solutions-stage__image {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: contain;
		margin: 0;
		transform: none;
	}

	#solutions .metalconstruct-solutions-callout {
		position: absolute;
		display: flex;
		align-items: center;
		transform: translate(0, 0);
		opacity: 1;
		visibility: visible;
		cursor: pointer;
		z-index: 5;
		transition: opacity 0.25s ease, transform 0.25s ease;
	}

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

	#solutions .metalconstruct-solutions-callout__label {
		position: relative;
		z-index: 2;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 5px 9px;
		border: 1px solid var(--mc-accent);
		border-radius: 6px;
		background: #ffffff;
		font: 700 11px/1 "IBM Plex Sans", sans-serif;
		letter-spacing: 0.02em;
		text-transform: uppercase;
		color: #181611;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
		white-space: nowrap;
		cursor: pointer;
		opacity: 1;
		visibility: visible;
		transform: none;
		bottom: auto;
		left: auto;
		right: auto;
		transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
	}

	#solutions .metalconstruct-solutions-callout__label::after {
		display: none;
	}

	#solutions .metalconstruct-solutions-callout__dot {
		position: absolute;
		display: block;
		width: 9px;
		height: 9px;
		border-radius: 50%;
		background: #d5372c;
		border: 1.5px solid #ffffff;
		box-shadow: 0 0 0 2.5px rgba(213, 55, 44, 0.35);
		transition: transform 0.25s ease, box-shadow 0.25s ease;
	}

	/* Soften non-active callouts when one is focused */
	#solutions .metalconstruct-solutions-stage.has-active-callout .metalconstruct-solutions-callout:not(.is-active) {
		opacity: 0.55;
	}

	#solutions .metalconstruct-solutions-callout.is-active {
		opacity: 1 !important;
		z-index: 15;
	}

	#solutions .metalconstruct-solutions-callout.is-active .metalconstruct-solutions-callout__label {
		background: #d5372c;
		color: #ffffff;
		border-color: #d5372c;
		box-shadow: 0 8px 20px rgba(213, 55, 44, 0.45);
		transform: scale(1.08);
	}

	#solutions .metalconstruct-solutions-callout.is-active .metalconstruct-solutions-callout__dot {
		transform: scale(1.6);
		box-shadow: 0 0 0 5px rgba(213, 55, 44, 0.45);
	}

	/* Specific percentage label positions on mobile */
	#solutions .metalconstruct-solutions-callout.is-canopy { top: 6%; left: 2%; }
	#solutions .metalconstruct-solutions-callout.is-canopy .metalconstruct-solutions-callout__dot { top: 32px; left: 52px; }

	#solutions .metalconstruct-solutions-callout.is-frame { top: 2%; left: 34%; }
	#solutions .metalconstruct-solutions-callout.is-frame .metalconstruct-solutions-callout__dot { top: 28px; left: 54px; }

	#solutions .metalconstruct-solutions-callout.is-stairs { top: 6%; right: 2%; left: auto; }
	#solutions .metalconstruct-solutions-callout.is-stairs .metalconstruct-solutions-callout__dot { top: 32px; left: -14px; }

	#solutions .metalconstruct-solutions-callout.is-railings { top: 38%; left: 2%; }
	#solutions .metalconstruct-solutions-callout.is-railings .metalconstruct-solutions-callout__dot { top: 12px; left: 74px; }

	#solutions .metalconstruct-solutions-callout.is-carport { top: 38%; right: 2%; left: auto; }
	#solutions .metalconstruct-solutions-callout.is-carport .metalconstruct-solutions-callout__dot { top: 16px; left: 8px; }

	#solutions .metalconstruct-solutions-callout.is-fence { top: 66%; left: 2%; }
	#solutions .metalconstruct-solutions-callout.is-fence .metalconstruct-solutions-callout__dot { top: -8px; left: 22px; }

	#solutions .metalconstruct-solutions-callout.is-wicket { top: 78%; left: 26%; }
	#solutions .metalconstruct-solutions-callout.is-wicket .metalconstruct-solutions-callout__dot { top: -14px; left: 22px; }

	#solutions .metalconstruct-solutions-callout.is-gate { top: 78%; right: 18%; left: auto; }
	#solutions .metalconstruct-solutions-callout.is-gate .metalconstruct-solutions-callout__dot { top: -12px; left: 22px; }

	#solutions .metalconstruct-solutions-chips {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		justify-content: center;
		margin: 20px 0 14px;
	}

	#solutions .metalconstruct-solutions-chip {
		padding: 8px 14px;
		border: 1px solid rgba(24, 22, 17, 0.16);
		border-radius: 999px;
		background: #ffffff;
		font: 600 13px/1 "IBM Plex Sans", sans-serif;
		color: #181611;
		cursor: pointer;
		transition: all 0.2s ease;
	}

	#solutions .metalconstruct-solutions-chip:hover,
	#solutions .metalconstruct-solutions-chip.is-active {
		border-color: var(--mc-accent);
		background: var(--mc-accent);
		color: #ffffff;
		box-shadow: 0 4px 14px rgba(213, 55, 44, 0.35);
	}

	#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-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 {
		flex-direction: column;
		align-items: stretch;
	}

	.metalconstruct-button {
		width: 100%;
	}

	.metalconstruct-hero-shell {
		padding-top: 96px;
		padding-bottom: 40px;
	}

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

	.metalconstruct-hero__slide {
		gap: 20px;
		min-height: auto;
		padding: 4px 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: 330px;
		width: 100%;
		max-width: 440px;
		margin: 0 auto;
	}

	.metalconstruct-hero__visual-glow {
		inset: 20px 20px auto;
		width: auto;
		height: 220px;
	}

	.metalconstruct-hero__visual-frame {
		inset: 25px 12px 25px;
	}

	.metalconstruct-hero__visual--doors img,
	.metalconstruct-hero__visual--canopy img,
	.metalconstruct-hero__visual--frames img {
		top: 12px;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 88%;
		max-width: 360px;
		height: auto;
		max-height: 250px;
		object-fit: contain;
	}

	.metalconstruct-hero__badge {
		padding: 7px 9px;
		gap: 8px;
		max-width: 126px;
	}

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

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

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

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

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

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

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

	#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-shell-section--footer {
		padding-top: 48px;
		padding-bottom: 20px !important;
	}

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

	.metalconstruct-footer__legal {
		gap: 10px;
		padding: 16px 0;
	}

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

	.metalconstruct-cookie-banner {
		left: 14px !important;
		right: 14px !important;
		bottom: 14px !important;
		margin: 0 !important;
		box-sizing: border-box !important;
	}

	.metalconstruct-cookie-banner__body {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		box-sizing: border-box !important;
		padding: 12px 14px !important;
		border-radius: 14px !important;
		border: 1px solid rgba(255, 255, 255, 0.14) !important;
	}

	.metalconstruct-cookie-banner__body h2 {
		font-size: 13.5px;
		line-height: 1.2;
		font-weight: 700;
	}

	.metalconstruct-cookie-banner__description {
		font-size: 11px;
		line-height: 1.35;
		margin: 3px 0 0;
		color: rgba(243, 242, 239, 0.72);
	}

	.metalconstruct-cookie-banner__links {
		display: inline;
		margin-left: 3px;
		font-size: 11px;
	}

	.metalconstruct-cookie-banner__actions {
		margin-top: 8px;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 6px;
	}

	.metalconstruct-cookie-banner__actions [data-cookie-action="accept-all"],
	.metalconstruct-cookie-banner__actions .metalconstruct-button--primary {
		grid-column: auto !important;
		width: 100% !important;
	}

	.metalconstruct-cookie-banner .metalconstruct-button {
		min-height: 30px;
		padding: 0 6px;
		font-size: 10px;
		font-weight: 600;
		letter-spacing: 0.01em;
		border-radius: 6px;
		white-space: nowrap;
	}

	.metalconstruct-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		padding-top: 16px;
		gap: 8px;
	}
}

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

	.metalconstruct-shell-section--footer {
		padding-top: 36px;
		padding-bottom: 16px !important;
	}

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

	:lang(ro) .metalconstruct-hero__title,
	html[lang*="ro"] .metalconstruct-hero__title {
		font-size: 27px;
	}

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

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

	.metalconstruct-hero__visual {
		height: 280px;
		max-width: 360px;
	}

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

	.metalconstruct-hero__visual--doors img,
	.metalconstruct-hero__visual--canopy img,
	.metalconstruct-hero__visual--frames img {
		top: 8px;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 86%;
		max-width: 310px;
		height: auto;
		max-height: 220px;
		object-fit: contain;
	}

	.metalconstruct-hero__badge {
		padding: 5px 7px;
		gap: 6px;
		max-width: 112px;
	}

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

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

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

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

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

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

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

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

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

/* Hide Google reCAPTCHA v3 floating badge */
.grecaptcha-badge {
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

