:root {
	--bg: #101722;
	--bg-soft: #17315f;
	--panel: #182131;
	--panel-2: #112746;
	--header-bg: #0d1626;
	--header-text: #f8fafc;
	--header-hover: #ff9f4a;
	--utility-bg: #ffffff;
	--utility-text: #0d1626;
	--utility-hover: #f57c1f;
	--footer-bg: #0d1626;
	--footer-text: #d7dfeb;
	--line: rgba(255, 255, 255, 0.08);
	--line-strong: rgba(255, 255, 255, 0.14);
	--text: #f8fafc;
	--muted: #97a6ba;
	--accent: #f57c1f;
	--accent-2: #ff9f4a;
	--success: #1f9d63;
	--shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
	--radius: 4px;
	--container: 1180px;
	--font-body: "Barlow", sans-serif;
	--font-heading: "Space Grotesk", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	background:
		radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.08), transparent 16%),
		radial-gradient(circle at top center, rgba(245, 124, 31, 0.22), transparent 32%),
		radial-gradient(circle at 82% 18%, rgba(23, 49, 95, 0.3), transparent 34%),
		var(--bg);
	background-size: 120% 120%, 145% 145%, 130% 130%, auto;
	background-position: 14% 8%, 50% 0%, 82% 18%, 0 0;
	color: var(--text);
	line-height: 1.6;
	position: relative;
	overflow-x: hidden;
	animation: siteBackgroundShift 14s ease-in-out infinite alternate;
}

body::before,
body::after {
	content: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
	margin: 0 0 0.8rem;
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 0.95;
	text-transform: uppercase;
}

p { margin: 0 0 1rem; color: var(--muted); }
ul { padding-left: 1.1rem; }
.container { width: min(100% - 2rem, var(--container)); margin: 0 auto; }
.section { padding: 5.5rem 0; }
.section-muted,
.section-dark { background: transparent; }
.site-main { min-height: 60vh; }

.site-shell {
	position: relative;
	isolation: isolate;
	z-index: 1;
}

.site-bg-motion {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	opacity: 0.95;
}

.site-bg-motion__glow,
.site-bg-motion__grid {
	position: absolute;
	inset: 0;
}

.site-bg-motion__glow {
	background:
		radial-gradient(circle at 12% 18%, rgba(245, 124, 31, 0.34), transparent 24%),
		radial-gradient(circle at 88% 12%, rgba(255, 159, 74, 0.24), transparent 20%),
		radial-gradient(circle at 68% 72%, rgba(39, 92, 184, 0.4), transparent 26%),
		radial-gradient(circle at 26% 80%, rgba(255, 255, 255, 0.08), transparent 16%),
		radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.03), transparent 22%);
	filter: blur(30px);
	opacity: 0.96;
	mix-blend-mode: screen;
	will-change: transform, opacity;
	animation: siteGlowDrift 10s ease-in-out infinite alternate;
}

.site-bg-motion__grid {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px),
		linear-gradient(rgba(245, 124, 31, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(245, 124, 31, 0.08) 1px, transparent 1px);
	background-size: 72px 72px, 72px 72px, 216px 216px, 216px 216px;
	background-position: center center;
	mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.58), transparent 82%);
	opacity: 0.68;
	will-change: transform;
	animation: siteGridFloat 9s linear infinite;
}

.site-bg-motion::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.045) 47%, transparent 54%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 36%);
	opacity: 0.7;
	mix-blend-mode: screen;
	animation: siteSweep 11s ease-in-out infinite;
}

@keyframes siteBackgroundShift {
	0% {
		background-position: 14% 8%, 50% 0%, 82% 18%, 0 0;
	}
	50% {
		background-position: 10% 11%, 45% 4%, 80% 26%, 0 0;
	}
	100% {
		background-position: 18% 7%, 56% 2%, 86% 13%, 0 0;
	}
}

@keyframes siteGlowDrift {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(-2%, 1.8%, 0) scale(1.05);
	}
	100% {
		transform: translate3d(2.1%, -2.2%, 0) scale(1.08);
	}
}

@keyframes siteGridFloat {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(46px, 24px, 0);
	}
}

@keyframes siteSweep {
	0% {
		transform: translate3d(-10%, 0, 0);
		opacity: 0.18;
	}
	50% {
		transform: translate3d(4%, -1.5%, 0);
		opacity: 0.52;
	}
	100% {
		transform: translate3d(12%, 0.5%, 0);
		opacity: 0.18;
	}
}

@media (prefers-reduced-motion: reduce) {
	body {
		animation: none;
	}
	.site-bg-motion__glow,
	.site-bg-motion__grid,
	.site-bg-motion::after {
		animation: none;
	}
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(13, 22, 38, 0.94);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
}

.site-header__utility {
	border-bottom: 1px solid rgba(10, 18, 31, 0.08);
	background: var(--utility-bg);
}

.site-header__utility-inner {
	display: flex;
	justify-content: flex-end;
	padding: 0.42rem 0;
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 1.2rem;
	padding: 0.85rem 0 1rem;
}

.site-header__center {
	display: flex;
	justify-content: center;
	align-self: center;
	min-width: 0;
}

.site-header__aside {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.site-brand {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.site-brand__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 180px;
}

.site-brand__logo img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 44px;
}

.site-brand--has-logo .site-brand__text {
	display: none;
}

.site-brand__mark {
	width: 36px;
	height: 36px;
	display: inline-grid;
	place-items: center;
	background: linear-gradient(180deg, var(--accent), #e57d00);
	color: #111;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.site-brand strong {
	display: block;
	font-size: 0.95rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.site-brand small {
	display: block;
	color: color-mix(in srgb, var(--header-text) 72%, transparent);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.utility-nav > div > ul,
.utility-nav > ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0.8rem 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	border-radius: 0;
}

.utility-nav--mobile {
	display: none;
	width: 100%;
}

.utility-nav--mobile > div > ul,
.utility-nav--mobile > ul {
	justify-content: flex-start;
	gap: 0.9rem 1rem;
	padding: 0 0 0.9rem;
	border-bottom: 1px solid var(--line);
	margin-bottom: 0.9rem;
}

.utility-nav a {
	color: var(--utility-text);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.utility-nav a:hover,
.utility-nav .current-menu-item > a {
	color: var(--utility-hover);
}

.primary-nav > div > ul,
.primary-nav > ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 1.65rem;
	align-items: center;
}

.primary-nav li {
	position: relative;
}

.primary-nav a {
	display: inline-flex;
	align-items: center;
	color: var(--header-text);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.25rem 0;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a { color: var(--header-hover); }

.primary-nav .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 0.42rem;
	height: 0.42rem;
	margin-left: 0.45rem;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
	transition: transform 160ms ease;
}

.primary-nav .menu-item-has-children:hover > a::after,
.primary-nav .menu-item-has-children:focus-within > a::after {
	transform: rotate(225deg) translateY(-1px);
}

.primary-nav .sub-menu {
	position: absolute;
	top: calc(100% + 0.9rem);
	left: 0;
	min-width: 240px;
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0.7rem 0;
	list-style: none;
	background: rgba(13, 22, 38, 0.98);
	border: 1px solid var(--line-strong);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	pointer-events: none;
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
	z-index: 70;
}

.primary-nav .sub-menu::before {
	content: "";
	position: absolute;
	top: -0.9rem;
	left: 0;
	right: 0;
	height: 0.9rem;
}

.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.primary-nav .sub-menu li {
	width: 100%;
}

.primary-nav .sub-menu a {
	display: flex;
	width: 100%;
	padding: 0.8rem 1rem;
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	color: color-mix(in srgb, var(--header-text) 86%, transparent);
}

.primary-nav .sub-menu a:hover,
.primary-nav .sub-menu .current-menu-item > a {
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
}

.primary-nav .sub-menu .menu-item-has-children > a::after {
	margin-left: auto;
	transform: rotate(-45deg);
}

.primary-nav .sub-menu .menu-item-has-children:hover > a::after,
.primary-nav .sub-menu .menu-item-has-children:focus-within > a::after {
	transform: rotate(45deg);
}

.primary-nav .sub-menu .sub-menu {
	top: -0.7rem;
	left: calc(100% - 1px);
}

.site-header__cta {
	display: flex;
	gap: 0.75rem;
	justify-content: flex-end;
	margin-left: 1rem;
}

.site-header__cta .button {
	min-height: 52px;
	padding-inline: 1.8rem;
}

.menu-toggle {
	display: none;
	border: 1px solid var(--line-strong);
	background: transparent;
	color: white;
	padding: 0.75rem 1rem;
	font: inherit;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.35rem;
	border: 1px solid transparent;
	border-radius: 0;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary {
	background: linear-gradient(180deg, var(--accent-2), var(--accent));
	color: #121212;
	box-shadow: 0 12px 30px rgba(245, 124, 31, 0.28);
}

@media (max-width: 1180px) {
	.primary-nav > div > ul,
	.primary-nav > ul {
		gap: 1.2rem;
	}

	.primary-nav a {
		font-size: 0.74rem;
	}
}

.button-primary:hover { background: linear-gradient(180deg, #ffb567, #e96e12); }
.ctainer-button .elementor-button,
.product-card__link .elementor-button,
.cta-panel__button .elementor-button,
.route-live__cta .elementor-button,
.delivery-cta__button .elementor-button,
.fitout-card__cta .elementor-button,
.hub-card__link .elementor-button {
	padding: 0.95rem 1.35rem;
	border: 1px solid transparent;
	border-radius: 0;
	background: linear-gradient(180deg, var(--accent-2), var(--accent));
	color: #121212;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	box-shadow: 0 12px 30px rgba(245, 124, 31, 0.28);
}

.ctainer-button .elementor-button:hover,
.product-card__link .elementor-button:hover,
.cta-panel__button .elementor-button:hover,
.route-live__cta .elementor-button:hover,
.delivery-cta__button .elementor-button:hover,
.fitout-card__cta .elementor-button:hover,
.hub-card__link .elementor-button:hover {
	background: linear-gradient(180deg, #ffb567, #e96e12);
	color: #121212;
}

.ctainer-button--inline {
	display: inline-flex;
	margin-top: 0.2rem;
	margin-right: 0.8rem;
}

.ctainer-button--inline .elementor-button {
	width: auto;
}

.ctainer-button--ghost .elementor-button {
	background: transparent;
	border-color: var(--line-strong);
	color: #fff;
	box-shadow: none;
}

.ctainer-button--ghost .elementor-button:hover {
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
}

.product-card__price strong,
.hub-card__meta strong,
.review-card__name strong {
	color: var(--accent);
	font-family: var(--font-heading);
	font-size: 1rem;
}

.product-card__price,
.product-card__link,
.hub-card__link,
.cta-panel__button,
.delivery-cta__button,
.fitout-card__cta,
.route-live__cta,
.review-card__name {
	margin-top: 1rem;
}

.product-card__link .elementor-button,
.cta-panel__button .elementor-button,
.delivery-cta__button .elementor-button {
	width: 100%;
}

.cta-panel .elementor-column:last-child > .elementor-widget-wrap,
.delivery-cta .elementor-column:last-child > .elementor-widget-wrap {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.button-ghost {
	background: transparent;
	border-color: var(--line-strong);
	color: white;
}

.button-whatsapp {
	background: #1f9d63;
	color: white;
}

.hero,
.page-hero {
	position: relative;
	overflow: hidden;
}

.hero { padding: 3.3rem 0 5.8rem; }

.hero__grid,
.content-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 2rem;
	align-items: start;
}

.hero__content h1 {
	max-width: 7ch;
	font-size: clamp(3.1rem, 8vw, 5.6rem);
	margin-bottom: 1.2rem;
	text-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.hero__content p {
	max-width: 44ch;
	font-size: 1.06rem;
	line-height: 1.85;
	color: #d4dfec;
}

.hero__badge,
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	color: var(--accent);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero__badge::before,
.eyebrow::before {
	content: "";
	width: 18px;
	height: 2px;
	background: var(--accent);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.8rem 0; }

.hero__trust {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.hero__trust li {
	padding: 0.75rem 1rem;
	background: linear-gradient(180deg, rgba(17, 39, 70, 0.86), rgba(14, 26, 44, 0.96));
	border: 1px solid rgba(255, 255, 255, 0.09);
	color: #e7edf4;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.quote-panel,
.sidebar-card,
.product-card,
.review-card,
.service-card,
.process-step,
.stat-card,
.hub-card,
.cta-panel {
	background: linear-gradient(180deg, rgba(24, 33, 49, 0.96), rgba(13, 22, 38, 0.98));
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.quote-panel,
.sidebar-card { padding: 1.55rem; }
.quote-panel h2,
.sidebar-card h3 { font-size: 1.8rem; max-width: 10ch; }

.lead-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
	margin-bottom: 1rem;
}

.lead-form label span {
	display: block;
	margin-bottom: 0.3rem;
	color: #dfe2e6;
	font-size: 0.76rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.lead-form .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-spinner),
.filters-bar select {
	width: 100%;
	padding: 0.95rem 1rem;
	border: 1px solid var(--line-strong);
	background: #505862;
	color: white;
	font: inherit;
}

.lead-form select,
.lead-form .wpcf7-select,
.catalogue-filter-card select,
.catalogue-sort select,
.filters-bar select {
	background-color: #505862;
	color: #ffffff;
}

.lead-form select option,
.lead-form .wpcf7-select option,
.catalogue-filter-card select option,
.catalogue-sort select option,
.filters-bar select option,
.lead-form select optgroup,
.lead-form .wpcf7-select optgroup,
.catalogue-filter-card select optgroup,
.catalogue-sort select optgroup,
.filters-bar select optgroup {
	background: #505862;
	color: #ffffff;
}

.lead-form textarea,
.lead-form .wpcf7-textarea {
	min-height: 140px;
	resize: vertical;
}

.filters-bar select {
	max-width: 260px;
	background: var(--panel);
}

.lead-form .button,
.lead-form input[type="submit"],
.lead-form .wpcf7-submit {
	width: 100%;
	margin-top: 0.4rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.35rem;
	border: 1px solid transparent;
	background: linear-gradient(180deg, var(--accent-2), var(--accent));
	color: #121212;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
}

.lead-form input[type="submit"]:hover,
.lead-form .wpcf7-submit:hover {
	background: linear-gradient(180deg, #ffc569, #f29100);
}

.lead-form__promise { margin-top: 0.8rem; color: #dfe2e6; font-size: 0.82rem; }
.lead-form__notice { margin-top: 1rem; padding: 0.8rem 1rem; }
.is-success { background: rgba(31, 157, 99, 0.12); }
.is-error { background: rgba(255, 152, 0, 0.12); }
.lead-form__hp { position: absolute; left: -9999px; }
.lead-form .wpcf7-not-valid-tip { margin-top: 0.35rem; color: #ff8e8e; font-size: 0.8rem; }
.lead-form .wpcf7-response-output { margin: 1rem 0 0; padding: 0.8rem 1rem; border: 1px solid var(--line-strong); color: #dfe2e6; }

.section-heading {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 1rem;
	margin-bottom: 1.8rem;
}

.section-heading h2 {
	max-width: 10ch;
	font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.section-heading p { max-width: 50ch; }
.text-link {
	color: var(--accent);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.cards-grid,
.process-grid,
.stats-grid,
.footer-grid,
.hub-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.35rem;
}

.product-card,
.review-card,
.service-card,
.process-step,
.stat-card,
.hub-card { padding: 1.35rem; }

.product-card__media,
.hub-card__media,
.feature-article__media,
.hero-visual {
	aspect-ratio: 4 / 3;
	background:
		linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
		linear-gradient(180deg, rgba(23, 49, 95, 0.14), rgba(0, 0, 0, 0));
	border: 1px solid var(--line);
	margin-bottom: 1rem;
	position: relative;
	overflow: hidden;
}

.product-card__media img,
.hub-card__media img,
.feature-article__media img,
.hero-visual img,
.placeholder-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero-visual {
	min-height: 470px;
	background: #dadde1;
}

.hero__panel {
	display: flex;
	justify-content: flex-end;
	padding: 1rem;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.01)),
		radial-gradient(circle at 18% 16%, rgba(245, 124, 31, 0.12), transparent 34%);
	border: 1px solid var(--line);
	box-shadow: 0 26px 54px rgba(0, 0, 0, 0.24);
}

.product-card h3,
.service-card h3,
.hub-card h3,
.process-step h3,
.review-card strong { font-size: 1.25rem; }

.product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.product-card::before,
.catalogue-card::before,
.review-card::before,
.process-step::before,
.cta-panel::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 1px;
	background: linear-gradient(90deg, rgba(245, 124, 31, 0.78), rgba(23, 49, 95, 0.18));
	pointer-events: none;
}

.product-card p {
	flex: 1;
}

.product-card__eyebrow {
	color: var(--accent);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.product-card__footer,
.hub-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--line);
}

.product-card__footer strong,
.hub-card__footer strong {
	color: var(--accent);
	font-family: "Space Grotesk", sans-serif;
	font-size: 1rem;
}

.product-card__footer a,
.hub-card__footer a {
	color: #e5e7ea;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.product-card__footer a {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
}

.stats-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding: 2rem 0 0;
	border-top: 1px solid rgba(255, 152, 0, 0.12);
	border-bottom: 1px solid rgba(255, 152, 0, 0.12);
}

.home-stats-band {
	position: relative;
	padding: 3.1rem 2rem 2.9rem;
	border-top: 1px solid rgba(245, 124, 31, 0.32);
	border-bottom: 1px solid rgba(245, 124, 31, 0.32);
	background:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		radial-gradient(circle at center, rgba(245, 124, 31, 0.08), transparent 58%),
		linear-gradient(180deg, rgba(13, 22, 38, 0.82), rgba(17, 39, 70, 0.18));
	background-size: 42px 42px, 42px 42px, auto;
	overflow: hidden;
}

.home-stats-band::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 1px;
	background: rgba(245, 124, 31, 0.42);
}

.stat-card {
	padding: 1.6rem 0.4rem;
	text-align: center;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.stat-card strong {
	display: inline-flex;
	align-items: flex-start;
	gap: 0.55rem;
	color: var(--accent);
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 0.9;
}

.home-stats-band .stat-card strong::after {
	content: "";
	width: 12px;
	height: 12px;
	margin-top: 0.22em;
	border-radius: 999px;
	background: #1fd06c;
	box-shadow: 0 0 0 6px rgba(31, 208, 108, 0.12);
	flex: 0 0 auto;
}

.stat-card span {
	color: #b3bfd0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.home-stats-band .stat-card {
	padding: 1.25rem 0.8rem;
	border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.home-stats-band .stat-card:last-child {
	border-right: 0;
}

.home-stats-band .stat-card strong {
	font-size: clamp(3rem, 6vw, 4.8rem);
}

.home-stats-band .stat-card span {
	display: block;
	margin-top: 0.9rem;
	color: #dce4ef;
	font-size: 0.8rem;
	letter-spacing: 0.2em;
}

.process-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	position: relative;
}

.process-step {
	min-height: 220px;
	text-align: center;
	padding: 1.6rem 1.35rem;
	background:
		linear-gradient(180deg, rgba(24, 33, 49, 0.96), rgba(13, 22, 38, 0.98)),
		radial-gradient(circle at top center, rgba(245, 124, 31, 0.06), transparent 38%);
}

.process-step span {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin-bottom: 1rem;
	background: rgba(255, 152, 0, 0.12);
	border: 1px solid rgba(255, 152, 0, 0.32);
	color: var(--accent);
	font-weight: 800;
}

.reviews-slider {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(320px, 1fr);
	gap: 1rem;
	overflow-x: auto;
	padding-bottom: 0.25rem;
	scroll-snap-type: x mandatory;
}

.review-card { scroll-snap-align: start; }
.review-card {
	min-height: 100%;
	padding: 1.6rem;
	background:
		linear-gradient(180deg, rgba(24, 33, 49, 0.96), rgba(13, 22, 38, 0.98)),
		radial-gradient(circle at top right, rgba(245, 124, 31, 0.08), transparent 34%);
}
.review-card strong { display: block; margin-top: 1rem; }
.review-card span {
	display: block;
	color: var(--accent);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.page-hero {
	padding: 4rem 0 3rem;
	background: transparent;
	border-bottom: 1px solid var(--line);
}

.page-hero h1 {
	max-width: 11ch;
	font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.page-hero--compact { padding: 3rem 0 2.5rem; }

.catalogue-hero {
	padding: 3.4rem 0 3rem;
	text-align: center;
	border-bottom: 1px solid var(--line);
	background:
		radial-gradient(circle at top center, rgba(245, 124, 31, 0.14), transparent 30%),
		linear-gradient(180deg, rgba(23, 49, 95, 0.12), rgba(0, 0, 0, 0));
}

.catalogue-hero h1 {
	font-size: clamp(3.4rem, 8vw, 5.6rem);
}

.catalogue-breadcrumbs {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	margin-top: 1rem;
	color: var(--muted);
	font-size: 0.86rem;
}

.catalogue-breadcrumbs strong { color: var(--accent); }

.catalogue-section {
	padding-top: 4.5rem;
}

.catalogue-intro {
	display: flex;
	align-items: flex-start;
	gap: 1.4rem;
	margin-bottom: 2.5rem;
}

.catalogue-intro__accent {
	width: 4px;
	min-height: 108px;
	background: var(--accent);
}

.catalogue-intro h2 {
	font-size: clamp(2.2rem, 4vw, 4rem);
}

.catalogue-intro p {
	max-width: 48ch;
	font-size: 1.1rem;
	color: #d6e1ef;
}

.catalogue-layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 1.6rem;
	align-items: start;
}

.catalogue-filter-card,
.catalogue-toolbar,
.catalogue-card {
	background: linear-gradient(180deg, rgba(24, 33, 49, 0.97), rgba(13, 22, 38, 0.99));
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.catalogue-filter-card {
	padding: 1.4rem;
	position: sticky;
	top: 92px;
	background:
		linear-gradient(180deg, rgba(24, 33, 49, 0.97), rgba(13, 22, 38, 0.99)),
		radial-gradient(circle at top left, rgba(245, 124, 31, 0.08), transparent 34%);
}

.catalogue-filter-card h3 {
	font-size: 1.15rem;
	margin-bottom: 1.4rem;
}

.catalogue-filter-group {
	padding: 1rem 0;
	border-top: 1px solid var(--line);
}

.catalogue-filter-group:first-of-type {
	padding-top: 0;
	border-top: 0;
}

.catalogue-filter-group h4 {
	font-size: 0.88rem;
	margin-bottom: 1rem;
	text-transform: none;
}

.catalogue-price-range {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 0.5rem;
	align-items: center;
}

.catalogue-price-range input,
.catalogue-filter-card select {
	width: 100%;
	padding: 0.8rem 0.85rem;
	border: 1px solid var(--line-strong);
	background: #505862;
	color: white;
	font: inherit;
}

.catalogue-checklist {
	display: grid;
	gap: 0.7rem;
}

.catalogue-checklist label {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	color: #dfe2e6;
	font-size: 0.95rem;
}

.catalogue-checklist input {
	width: 16px;
	height: 16px;
	accent-color: var(--accent);
}

.catalogue-filter-card .button {
	width: 100%;
	margin-top: 0.8rem;
}

.catalogue-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 0.95rem 1.25rem;
	margin-bottom: 1.3rem;
	background:
		linear-gradient(180deg, rgba(24, 33, 49, 0.97), rgba(13, 22, 38, 0.99)),
		linear-gradient(90deg, rgba(23, 49, 95, 0.22), rgba(245, 124, 31, 0.04));
}

.catalogue-toolbar__meta {
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.catalogue-sort {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.catalogue-sort label {
	color: var(--muted);
	font-size: 0.92rem;
}

.catalogue-sort select {
	min-width: 170px;
	padding: 0.85rem 1rem;
	border: 1px solid var(--line-strong);
	background: #505862;
	color: white;
	font: inherit;
}

.catalogue-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.3rem;
}

.catalogue-card {
	overflow: hidden;
	position: relative;
}

.catalogue-card__media {
	position: relative;
	aspect-ratio: 1 / 0.93;
	background: #cfd5db;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.catalogue-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.catalogue-card__badge,
.catalogue-card__location {
	position: absolute;
	z-index: 2;
	padding: 0.45rem 0.7rem;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.catalogue-card__badge {
	left: 0;
	top: 0;
	background: var(--accent);
	color: #111;
}

.catalogue-card__location {
	right: 0.8rem;
	bottom: 0.8rem;
	background: rgba(26, 29, 33, 0.84);
	color: white;
}

.catalogue-card__body {
	padding: 1.25rem;
	background:
		linear-gradient(180deg, rgba(24, 33, 49, 0.92), rgba(13, 22, 38, 0.99)),
		radial-gradient(circle at bottom right, rgba(23, 49, 95, 0.18), transparent 34%);
}

.catalogue-card__body h3 {
	font-size: 1.7rem;
	line-height: 1;
	margin-bottom: 0.8rem;
}

.catalogue-card__body h3 a:hover {
	color: var(--accent);
}

.catalogue-card__body p {
	min-height: 4.8em;
	font-size: 1rem;
	color: #d4ddeb;
}

.catalogue-card__price {
	margin-top: 1rem;
	color: var(--accent);
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.9rem;
	font-weight: 700;
}

.catalogue-card__option {
	margin: 1rem 0 1.3rem;
	padding: 0.75rem 0.9rem;
	border: 1px solid var(--line);
	color: #dbe2ec;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.catalogue-card .button {
	width: 100%;
}

.catalogue-pagination {
	margin-top: 2rem;
}

.catalogue-pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.catalogue-pagination .page-numbers li {
	margin: 0;
}

.catalogue-pagination a,
.catalogue-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.8rem;
	height: 2.8rem;
	padding: 0 0.9rem;
	border: 1px solid var(--line-strong);
	background: rgba(13, 22, 38, 0.72);
	color: var(--text);
	font-weight: 700;
}

.catalogue-pagination .current {
	background: var(--accent);
	border-color: var(--accent);
	color: #111;
}

.catalogue-categories {
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 1px solid var(--line);
}

.catalogue-categories__heading {
	margin-bottom: 2rem;
}

.catalogue-categories__heading h2 {
	font-size: clamp(2.4rem, 5vw, 4.2rem);
	margin: 0.4rem 0 0.8rem;
}

.catalogue-categories__heading p {
	max-width: 52ch;
	font-size: 1.05rem;
	color: #d4dfec;
}

.catalogue-category-list {
	display: grid;
	gap: 1.6rem;
}

.catalogue-category-card {
	display: grid;
	grid-template-columns: minmax(260px, 0.84fr) minmax(340px, 1fr);
	min-height: 320px;
	background: linear-gradient(180deg, rgba(24, 33, 49, 0.96), rgba(13, 22, 38, 0.98));
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	overflow: hidden;
	align-items: stretch;
}

.catalogue-category-card__media {
	min-height: 320px;
	max-height: 320px;
	border-left: 4px solid var(--accent);
	align-self: stretch;
	overflow: hidden;
}

.catalogue-category-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.catalogue-category-card__content {
	display: grid;
	align-content: start;
	gap: 0.8rem;
	min-height: 320px;
	padding: 1.45rem 1.6rem;
	background:
		linear-gradient(180deg, rgba(24, 33, 49, 0.92), rgba(13, 22, 38, 0.98)),
		radial-gradient(circle at top right, rgba(245, 124, 31, 0.07), transparent 32%);
}

.catalogue-category-card__content h3 {
	font-size: clamp(1.9rem, 3.5vw, 2.7rem);
	margin: 0;
	line-height: 1.02;
	max-width: 12ch;
}

.catalogue-category-card__content p {
	margin: 0;
	max-width: 48ch;
	line-height: 1.6;
	overflow-wrap: anywhere;
}

.catalogue-category-card__actions {
	margin-top: auto;
	padding-top: 0.2rem;
}

.product-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
	gap: 2.9rem;
	align-items: start;
	padding-top: 1rem;
}

.product-hero h1 {
	max-width: 8ch;
	font-size: clamp(3rem, 5.8vw, 5.2rem);
	line-height: 0.94;
	letter-spacing: -0.03em;
}

.product-hero__description {
	max-width: 43rem;
	margin-bottom: 1.35rem;
}

.product-hero__description p:last-child {
	margin-bottom: 0;
}

.product-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 1.2rem 0 1.75rem;
	align-items: flex-end;
}

.product-hero__meta strong {
	color: var(--accent);
	font-size: clamp(2.25rem, 3.6vw, 3rem);
	font-family: "Space Grotesk", sans-serif;
}

.product-price-stack {
	display: grid;
	gap: 0.2rem;
}

.product-price-stack small {
	color: #d4dfec;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.product-price-value {
	display: block;
	color: var(--accent);
	font-size: clamp(2.25rem, 3.6vw, 3rem);
	font-family: "Space Grotesk", sans-serif;
	font-weight: 700;
	line-height: 1;
}

.product-meta-delivery {
	margin: 0.2rem 0 1.4rem;
	color: var(--text);
	font-weight: 600;
}

.placeholder-box {
	min-height: 360px;
	background: var(--panel);
	border: 1px solid var(--line);
	color: #dfe2e6;
}

.product-hero__visual,
.product-hero__visual img {
	width: 100%;
}

.product-hero__visual img,
.placeholder-box img {
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	background: #dfe3e7;
}

.product-hero__visual {
	max-width: 560px;
	margin-left: auto;
}

.product-gallery-main {
	display: block;
	max-height: 420px;
	object-fit: cover;
	width: 100%;
}

.product-gallery-main {
	cursor: zoom-in;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-gallery-main:hover,
.product-gallery-main:focus-visible {
	transform: scale(1.01);
	box-shadow: 0 22px 40px rgba(0, 0, 0, 0.2);
}

.product-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem;
	margin-top: 1rem;
}

.product-gallery__item {
	padding: 0;
	border: 1px solid transparent;
	background: transparent;
	cursor: pointer;
	transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.product-gallery__item img {
	width: 100%;
	height: 100%;
	min-height: 96px;
	object-fit: cover;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	background: #dfe3e7;
}

.product-gallery__item.is-active,
.product-gallery__item:hover,
.product-gallery__item:focus-visible {
	transform: translateY(-2px);
	border-color: var(--accent);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.product-lightbox {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.product-lightbox[hidden] {
	display: none;
}

.product-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 11, 20, 0.86);
	backdrop-filter: blur(4px);
}

.product-lightbox__image {
	position: relative;
	z-index: 1;
	max-width: min(1100px, 92vw);
	max-height: 88vh;
	width: auto;
	height: auto;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	background: #dfe3e7;
}

.product-lightbox__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 2;
	width: 3rem;
	height: 3rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(11, 16, 28, 0.65);
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}

.product-lightbox-open {
	overflow: hidden;
}

.prose { max-width: 760px; }
.prose h2, .prose h3 { font-size: 2rem; }
.prose ul li { color: var(--muted); }

.product-facts {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
	display: grid;
	gap: 0;
}

.product-facts li {
	display: grid;
	gap: 0.2rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--line);
}

.product-single-builder--editor {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.ctainer-elementor-content-anchor {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.product-facts strong {
	color: var(--text);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.product-facts span {
	color: var(--muted);
}

.product-benefit-item {
	margin: 0 0 0.7rem;
	color: var(--muted);
}

.product-fact-row {
	display: grid;
	gap: 0.2rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--line);
}

.product-fact-row__label {
	color: var(--text);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.product-fact-row__value {
	color: var(--muted);
	margin: 0;
}

.product-single-builder .product-fact-row__label,
.product-single-builder .elementor-widget-heading.product-fact-row__label .elementor-heading-title {
	margin: 0;
	color: var(--text);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.2;
	max-width: none;
}

.product-single-builder .product-fact-row__value,
.product-single-builder .elementor-widget-text-editor .product-fact-row__value {
	margin: 0;
	color: var(--muted);
}

.product-fact-row__divider {
	height: 1px;
	background: var(--line);
	margin: 0.8rem 0 0;
}

.product-single-builder .page-hero,
.product-single-builder__hero {
	padding-top: 1rem;
}

.product-single-builder .product-hero,
.product-single-builder__hero .elementor-container {
	grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
	gap: 2.9rem;
	padding-top: 1rem;
}

.product-single-builder__hero .elementor-heading-title {
	max-width: 8ch;
	font-size: clamp(3rem, 5.8vw, 5.2rem);
	line-height: 0.94;
	letter-spacing: -0.03em;
}

.product-single-builder__hero .product-hero-title .elementor-heading-title,
.product-single-builder__hero .elementor-widget-heading.product-hero-title .elementor-heading-title {
	max-width: 8ch;
}

.product-single-builder__hero .product-hero-description,
.product-single-builder__hero .product-hero-description p {
	margin: 0;
	max-width: 34rem;
	color: var(--muted);
	font-size: 1.08rem;
	line-height: 1.72;
}

.product-single-builder__hero .product-price-label-wrap,
.product-single-builder__hero .product-price-label-wrap p {
	margin: 0;
}

.product-single-builder__hero .product-meta-delivery-wrap,
.product-single-builder__hero .product-meta-delivery-wrap p {
	margin: 0;
}

.product-single-builder__content .elementor-heading-title,
.product-single-builder__cards .elementor-heading-title {
	line-height: 1.04;
	letter-spacing: -0.02em;
}

.product-single-builder__content .prose .elementor-heading-title,
.product-single-builder__content .elementor-column.prose .elementor-heading-title {
	font-size: clamp(2rem, 3vw, 3rem);
}

.product-single-builder__content .sidebar-card .elementor-heading-title,
.product-single-builder__content .elementor-column.sidebar-card .elementor-heading-title {
	font-size: clamp(1.65rem, 2.1vw, 2.2rem);
	max-width: none;
	white-space: nowrap;
}

.product-single-builder__content .product-sidebar-title .elementor-heading-title,
.product-single-builder__content .elementor-widget-heading.product-sidebar-title .elementor-heading-title {
	font-size: clamp(1.15rem, 1.45vw, 1.55rem);
	line-height: 1.1;
	letter-spacing: -0.03em;
	max-width: none;
	white-space: nowrap;
	word-break: keep-all;
	overflow-wrap: normal;
}

.content-grid .sidebar-card > h3,
.sidebar-card > h3 {
	font-size: clamp(1.15rem, 1.45vw, 1.55rem);
	line-height: 1.1;
	letter-spacing: -0.03em;
	white-space: nowrap;
	word-break: keep-all;
	overflow-wrap: normal;
}

.product-single-builder__content .product-sidebar-description,
.product-single-builder__content .product-sidebar-description p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}

.product-single-builder__cards .elementor-heading-title {
	font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.product-single-builder__content .product-benefits-title .elementor-heading-title,
.product-single-builder__content .elementor-widget-heading.product-benefits-title .elementor-heading-title {
	font-size: clamp(2rem, 3vw, 3rem);
}

.product-single-builder__content .product-benefits-description,
.product-single-builder__content .product-benefits-description p,
.product-single-builder__cards .product-reassurance-description-wrap,
.product-single-builder__cards .product-reassurance-description-wrap p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}

.product-single-builder .product-hero,
.product-single-builder__hero .elementor-container,
.product-single-builder__content .elementor-container {
	align-items: start;
}

.product-single-builder__content {
	padding-top: 2.2rem;
}

.product-single-builder__cards {
	padding-top: 1rem;
}

.product-single-builder .prose,
.product-single-builder .elementor-widget-text-editor .elementor-widget-container,
.product-single-builder .elementor-widget-theme-post-content .elementor-widget-container {
	max-width: 760px;
}

.product-single-builder .prose > :first-child,
.product-single-builder .elementor-widget-text-editor .elementor-widget-container > :first-child {
	margin-top: 0;
}

.product-single-builder .sidebar-card,
.product-single-builder .elementor-column.sidebar-card > .elementor-widget-wrap {
	background:
		linear-gradient(180deg, rgba(24, 33, 49, 0.96), rgba(13, 22, 38, 0.98)),
		radial-gradient(circle at top right, rgba(245, 124, 31, 0.08), transparent 36%);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	padding: 1.9rem;
}

.product-single-builder .sidebar-card,
.product-single-builder .elementor-column.sidebar-card {
	position: sticky;
	top: 7rem;
	align-self: start;
}

.product-single-builder .sidebar-card h3,
.product-single-builder .elementor-column.sidebar-card h3 {
	max-width: none;
	margin-bottom: 0.85rem;
	white-space: nowrap;
}

.product-single-builder .product-gallery-shell {
	max-width: 560px;
	margin-left: auto;
}

.product-single-builder .product-gallery {
	margin-top: 1rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-single-builder .cards-grid,
.product-single-builder__cards .elementor-container {
	gap: 1.6rem;
}

.product-single-builder .service-card,
.product-single-builder__cards .elementor-column.service-card > .elementor-widget-wrap {
	height: 100%;
	padding: 1.45rem;
}

.product-single-builder .hero__actions {
	margin-bottom: 0;
}

.content-grid {
	align-items: start;
}

.content-grid .prose h2 {
	margin-top: 0;
	font-size: clamp(2rem, 3.1vw, 3rem);
}

.sidebar-card {
	min-height: 100%;
	padding: 2rem;
}

.sidebar-card h3 {
	font-size: clamp(2rem, 3vw, 2.8rem);
	max-width: 8ch;
}

.feature-article {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 0;
	background:
		linear-gradient(180deg, rgba(24, 33, 49, 0.96), rgba(13, 22, 38, 0.98)),
		radial-gradient(circle at top left, rgba(245, 124, 31, 0.08), transparent 32%);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.feature-article__content {
	padding: 2rem;
}

.home-hero-block,
.home-products-block,
.home-proof-block,
.home-offer-block,
.home-testimonials-block {
	position: relative;
}

.home-hero-block + .home-products-block,
.home-products-block + .home-proof-block,
.home-proof-block + .home-proof-block,
.home-proof-block + .home-offer-block,
.home-offer-block + .home-testimonials-block,
.home-testimonials-block + .home-testimonials-block {
	margin-top: 2.8rem;
}

.home-products-block,
.home-proof-block,
.home-offer-block,
.home-testimonials-block {
	padding-top: 1rem;
}

.catalogue-hero-block .hero__panel {
	align-items: stretch;
}

.catalogue-hero-block .elementor-widget-heading {
	display: none;
}

.catalogue-hero-title {
	margin: 0 0 1.2rem;
	font-family: var(--font-heading);
	font-size: clamp(3rem, 6vw, 4.9rem);
	font-weight: 700;
	line-height: 0.95;
	text-transform: uppercase;
	color: var(--text);
}

.catalogue-hero-block .hero-visual,
.catalogue-hero-block .hero-visual img {
	width: 100%;
	min-height: 360px;
}

.catalogue-featured-grid .elementor-container,
.catalogue-featured-grid .elementor-row {
	align-items: stretch;
}

.catalogue-featured-grid .elementor-column {
	display: flex;
}

.catalogue-featured-grid .elementor-widget-wrap {
	width: 100%;
}

.catalogue-hero-block {
	padding-bottom: 0.8rem;
}

.catalogue-hero-block .hero__trust li {
	background: rgba(18, 31, 78, 0.72);
	border-color: rgba(255, 255, 255, 0.08);
}

.catalogue-proof-grid .service-card {
	padding: 1.55rem;
	min-height: 100%;
}

.catalogue-featured-grid .product-card {
	padding: 1.5rem;
	border-color: rgba(255, 255, 255, 0.08);
	background: linear-gradient(180deg, rgba(26, 40, 92, 0.96), rgba(22, 34, 80, 0.98));
}

.catalogue-featured-grid .product-card h3 {
	font-size: 1.45rem;
	line-height: 1.02;
	min-height: 2.2em;
}

.catalogue-featured-grid .product-card p {
	min-height: 5.5em;
}

.catalogue-featured-grid .product-card__price {
	margin-top: 0.9rem;
}

.catalogue-featured-grid .product-card__option {
	min-height: 4.4em;
	margin: 0.9rem 0 1.2rem;
}

.catalogue-featured-grid .product-card__link {
	margin-top: auto;
}

.catalogue-cta {
	margin-top: 3.2rem;
}

.catalogue-cta .cta-panel__button .elementor-button {
	max-width: 260px;
}

.home-hero-block .wp-block-column:first-child > * {
	max-width: 720px;
}

.home-hero-block .wp-block-heading {
	text-transform: uppercase;
}

.home-hero-block__visual img,
.home-products-block .wp-block-image img,
.home-offer-block .feature-article__media img {
	width: 100%;
	display: block;
	object-fit: cover;
}

.home-hero-block__visual {
	margin: 0;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.home-products-block > .wp-block-columns > .wp-block-column > .wp-block-group {
	height: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow);
}

.home-products-block .wp-block-image {
	margin-bottom: 1rem;
	aspect-ratio: 4 / 4.5;
	overflow: hidden;
	border: 1px solid var(--line);
}

.home-products-block .wp-block-group > .wp-block-paragraph:last-child {
	margin-top: auto;
}

.home-proof-block > .wp-block-columns {
	position: relative;
	padding: 2.8rem 0;
	border-top: 1px solid rgba(255, 152, 0, 0.18);
	border-bottom: 1px solid rgba(255, 152, 0, 0.18);
}

.home-proof-block .wp-block-columns + .wp-block-group {
	padding-top: 6.2rem !important;
}

.home-proof-block .wp-block-columns + .wp-block-group .wp-block-column > .wp-block-group {
	height: 100%;
}

.home-offer-block .feature-article {
	overflow: hidden;
}

.home-testimonials-block {
	padding-bottom: 6rem !important;
}

.cta-band__inner,
.cta-panel {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1.8rem 2rem;
}

.cta-panel {
	margin-top: 2rem;
	background:
		linear-gradient(180deg, rgba(24, 33, 49, 0.96), rgba(13, 22, 38, 0.98)),
		linear-gradient(90deg, rgba(245, 124, 31, 0.04), rgba(23, 49, 95, 0.12));
}

.site-footer {
	padding: 4rem 0 6rem;
	border-top: 1px solid var(--line);
	background: var(--footer-bg);
}

.footer-grid {
	grid-template-columns: 1.2fr 0.8fr 0.9fr;
	align-items: start;
}

.site-footer h3,
.site-footer h4 {
	font-size: 0.9rem;
	letter-spacing: 0.12em;
}

.footer-column {
	display: grid;
	align-content: start;
	gap: 0.9rem;
}

.footer-column .widget {
	margin: 0;
}

.footer-column .widget-title {
	margin: 0 0 0.9rem;
	font-size: 0.9rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.footer-column ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.footer-links a,
.site-footer p,
.site-footer a { color: var(--footer-text); }

.footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 0.55rem;
}

.footer-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.35rem;
	height: 2.35rem;
	border: 1px solid var(--line-strong);
	color: var(--footer-text);
	background: rgba(255, 255, 255, 0.04);
	transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.footer-social__icon {
	display: inline-flex;
	width: 1rem;
	height: 1rem;
}

.footer-social__icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.footer-social__link:hover,
.footer-social__link:focus-visible {
	transform: translateY(-2px);
	border-color: var(--accent);
	background: rgba(255, 255, 255, 0.08);
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid var(--line);
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom-links {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.55rem;
	color: var(--footer-text);
}

.site-footer__bottom-links a {
	color: var(--footer-text);
}

.site-footer__bottom-links a:hover,
.site-footer__bottom-links a:focus-visible {
	color: #fff;
}

.sticky-whatsapp,
.sticky-quote {
	position: fixed;
	bottom: 1rem;
	z-index: 40;
	padding: 0.9rem 1rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.sticky-whatsapp { right: 1rem; background: #1f9d63; color: white; }
.sticky-quote { left: 1rem; background: var(--accent); color: #111; }

.site-shell {
	position: relative;
	isolation: isolate;
}

.site-shell::before {
	content: none;
}

.has-motion .reveal {
	opacity: 0;
	transform: translate3d(0, 26px, 0);
	transition:
		opacity 0.72s ease,
		transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
		filter 0.72s ease;
	filter: blur(8px);
}

.has-motion .reveal[data-reveal="left"] { transform: translate3d(-34px, 0, 0); }
.has-motion .reveal[data-reveal="right"] { transform: translate3d(34px, 0, 0); }
.has-motion .reveal[data-reveal="scale"] { transform: scale(0.94); }

.has-motion .reveal.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
	filter: blur(0);
}

@keyframes ctainer-pulse {
	0%, 100% { transform: scale(1); opacity: 0.9; }
	50% { transform: scale(1.18); opacity: 1; }
}

@keyframes ctainer-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

.hero-visual,
.feature-article,
.delivery-map__frame,
.metric-band {
	position: relative;
	overflow: hidden;
}

.hero-visual::after,
.feature-article::after,
.delivery-map__frame::after,
.metric-band::after {
	content: "";
	position: absolute;
	inset: -120% auto auto -20%;
	width: 44%;
	height: 280%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
	transform: rotate(18deg);
	pointer-events: none;
}

.has-motion .hero-visual::after,
.has-motion .feature-article::after,
.has-motion .delivery-map__frame::after,
.has-motion .metric-band::after {
	animation: ctainer-float 9s ease-in-out infinite;
}

.live-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #19c56b;
	box-shadow: 0 0 0 6px rgba(25, 197, 107, 0.12);
	animation: ctainer-pulse 1.8s ease-in-out infinite;
}

.delivery-hero { padding-top: 4.2rem; }

.delivery-hero__top {
	max-width: 66ch;
	margin-bottom: 3rem;
}

.delivery-hero__top h1 {
	max-width: 14ch;
	font-size: clamp(2.9rem, 5.2vw, 4.7rem);
}

.delivery-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.8fr);
	gap: 1.55rem;
	align-items: start;
}

.delivery-map-shell,
.route-live,
.metric-band,
.fitout-card,
.fitout-step {
	background: linear-gradient(180deg, rgba(24, 33, 49, 0.96), rgba(13, 22, 38, 0.98));
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.delivery-map__frame {
	padding: 1rem;
	background: linear-gradient(180deg, rgba(17, 39, 70, 0.92), rgba(13, 22, 38, 0.98));
}

.delivery-map__image {
	width: 100%;
	min-height: 480px;
	object-fit: cover;
	border: 1px solid var(--line);
	background: #20242a;
}

.delivery-map__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 1rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #dfe2e6;
}

.delivery-map__legend span {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
}

.delivery-map__legend i {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--accent);
	box-shadow: 0 0 0 5px rgba(255, 152, 0, 0.12);
}

.route-live {
	padding: 1.55rem;
	min-height: 100%;
}

.route-live__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.route-live__header h3 {
	font-size: 1.35rem;
	max-width: none;
	margin-bottom: 0.5rem;
}

.route-live__header p {
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.7;
}

.route-table {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	margin: 1.25rem 0;
}

.route-table__head,
.route-row {
	display: grid;
	grid-template-columns: 1.4fr 0.85fr 0.65fr;
	gap: 1rem;
	align-items: center;
}

.route-table__head {
	padding: 0.9rem 0;
	color: #dfe2e6;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.route-row {
	padding: 1rem 0;
	border-top: 1px solid var(--line);
}

.route-row:first-of-type { border-top: 0; }

.route-row__route small,
.route-row__mode {
	display: block;
	color: var(--muted);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.route-row__route strong {
	display: block;
	margin-top: 0.25rem;
	font-size: 1rem;
}

.route-row__delay {
	color: var(--accent);
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	text-align: right;
}

.route-live__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	width: 100%;
}

.delivery-hubs {
	padding-top: 10rem;
}

.delivery-hubs .section-heading {
	margin-bottom: 2.35rem;
}

.delivery-hubs .section-heading h2 {
	font-size: clamp(2.6rem, 4.5vw, 4rem);
}

.delivery-hubs .section-heading p {
	max-width: 52ch;
}

.delivery-cta {
	margin-top: 3.25rem;
	padding: 2rem 2.2rem;
}

.delivery-cta h3 {
	margin-bottom: 0.55rem;
	font-size: 1.9rem;
}

.delivery-cta__button {
	min-width: 250px;
	justify-content: center;
}

.delivery-metrics { padding-top: 0; }

.metric-band {
	padding: 1.2rem 1.4rem;
	border-color: rgba(255, 152, 0, 0.25);
}

.metric-band__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.metric-card {
	position: relative;
	padding: 1.3rem 1.15rem;
	border: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(255, 255, 255, 0.01);
}

.metric-card__value {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 0.7rem;
	color: var(--accent);
	font-family: "Space Grotesk", sans-serif;
	font-size: clamp(2.6rem, 5vw, 4rem);
	line-height: 0.95;
}

.metric-card span {
	display: block;
	max-width: 18ch;
	color: #dfe2e6;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.metric-card .live-dot {
	position: absolute;
	top: 1.3rem;
	right: 1.3rem;
}

.hub-card__marker {
	width: 20px;
	height: 20px;
	margin: -1.65rem 0 1rem;
	background: var(--accent);
	box-shadow: 0 0 0 8px rgba(255, 152, 0, 0.12);
}

.hub-card__meta {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--line);
	color: #dfe2e6;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hub-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.hub-card p {
	flex: 1;
}

.hub-card__footer a {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 0.9rem;
}

.fitout-hero { padding-top: 4.4rem; }

.fitout-hero__content {
	max-width: 650px;
}

.fitout-hero__content h1 {
	max-width: 10ch;
	margin-bottom: 1.1rem;
}

.fitout-hero__content p {
	max-width: 54ch;
	font-size: 1.02rem;
	line-height: 1.82;
}

.fitout-hero__signal {
	margin-top: 1.8rem;
	padding: 1.1rem 1.15rem;
	border: 1px solid rgba(255, 152, 0, 0.18);
	background: rgba(255, 152, 0, 0.05);
}

.fitout-hero__signal-label {
	display: inline-block;
	margin-bottom: 0.8rem;
	color: var(--accent);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.fitout-hero__signal-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
}

.fitout-hero__signal-grid strong {
	display: block;
	padding: 0.8rem 0.9rem;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.03);
	color: #f0f2f4;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.fitout-quote-card {
	align-self: start;
}

.fitout-quote-card h3 {
	max-width: 11ch;
}

.fitout-grid,
.fitout-process {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.4rem;
}

.fitout-grid {
	align-items: stretch;
}

.fitout-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
}

.fitout-card__media {
	aspect-ratio: 4 / 3;
	background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
	border-bottom: 1px solid var(--line);
}

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

.fitout-card__body {
	padding: 1.35rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.fitout-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 1rem 0 1.2rem;
}

.fitout-card__body p {
	flex: 1;
}

.fitout-card__tags span {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.7rem;
	border: 1px solid var(--line);
	color: #dfe2e6;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.fitout-card__footer {
	margin-top: auto;
	padding-top: 0.25rem;
}

.fitout-step {
	padding: 1.55rem;
	min-height: 100%;
}

.fitout-step__index {
	display: inline-flex;
	margin-bottom: 1rem;
	color: var(--accent);
	font-family: "Space Grotesk", sans-serif;
	font-size: 2rem;
	font-weight: 700;
}

.fitout-process + .cta-panel {
	margin-top: 2.8rem;
}

.filters-bar { margin-bottom: 1rem; }

@media (max-width: 980px) {
	.menu-toggle { display: inline-flex; }
	.site-header__utility {
		display: none;
	}
	.site-header__inner {
		grid-template-columns: auto auto;
		grid-template-areas:
			"brand actions"
			"nav nav";
		justify-content: space-between;
		align-items: center;
	}
	.site-brand { grid-area: brand; }
	.site-header__center {
		grid-area: nav;
		display: none;
	}
	.site-header__center.is-open {
		display: block;
	}
	.utility-nav--mobile {
		display: block;
	}
	.utility-nav,
	.primary-nav,
	.site-header__cta { display: none; }
	.site-header__utility .utility-nav { display: none; }
	.site-header__center > .primary-nav,
	.site-header__aside .site-header__cta { display: none; }
	.site-header__center.is-open > .primary-nav,
	.site-header__aside .site-header__cta { display: block; }
	.site-header__aside {
		grid-area: actions;
		display: flex;
		justify-content: flex-end;
	}
	.primary-nav.is-open {
		display: block;
		position: absolute;
		left: 1rem;
		right: 1rem;
		top: calc(100% + 0.6rem);
		background: var(--panel);
		border: 1px solid var(--line);
		padding: 1rem;
	}
	.primary-nav.is-open > div > ul,
	.primary-nav.is-open > ul { flex-direction: column; align-items: flex-start; }
	.utility-nav--mobile a {
		color: var(--utility-text);
		font-size: 0.8rem;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
	}
	.primary-nav li { width: 100%; }
	.primary-nav a { width: 100%; }
	.primary-nav .sub-menu {
		position: static;
		min-width: 0;
		margin-top: 0.55rem;
		padding: 0.35rem 0 0.2rem 0.9rem;
		background: transparent;
		border: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		pointer-events: auto;
		display: none;
	}
	.primary-nav .sub-menu::before { content: none; }
	.primary-nav .menu-item-has-children:hover > .sub-menu,
	.primary-nav .menu-item-has-children:focus-within > .sub-menu,
	.primary-nav .menu-item-has-children.is-open > .sub-menu { display: grid; }
	.primary-nav .sub-menu a { padding: 0.55rem 0; }
	.primary-nav .sub-menu .sub-menu {
		padding-left: 0.9rem;
	}
	.primary-nav .menu-item-has-children.is-open > a::after {
		transform: rotate(225deg) translateY(-1px);
	}
	.hero__grid,
	.content-grid,
	.product-hero,
	.feature-article,
	.cards-grid,
	.process-grid,
	.stats-grid,
	.footer-grid,
	.hub-grid,
	.catalogue-layout,
	.catalogue-grid,
	.delivery-layout,
	.metric-band__grid,
	.fitout-grid,
	.fitout-process,
	.fitout-hero__signal-grid { grid-template-columns: 1fr; }
	.lead-form__grid { grid-template-columns: 1fr; }
	.product-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.product-hero,
	.product-single-builder .product-hero,
	.product-single-builder__hero .elementor-container {
		gap: 2rem;
		padding-top: 0.4rem;
	}
	.product-single-builder__content {
		padding-top: 1.5rem;
	}
	.product-single-builder__cards {
		padding-top: 0.3rem;
	}
	.product-single-builder .sidebar-card,
	.product-single-builder .elementor-column.sidebar-card > .elementor-widget-wrap {
		padding: 1.55rem;
	}
	.product-hero h1,
	.product-single-builder__hero .elementor-heading-title {
		max-width: 9ch;
		font-size: clamp(2.5rem, 7vw, 4rem);
	}
	.product-single-builder__content .prose .elementor-heading-title,
	.product-single-builder__content .elementor-column.prose .elementor-heading-title,
	.content-grid .prose h2 {
		font-size: clamp(1.8rem, 4.4vw, 2.4rem);
	}
	.product-single-builder__content .sidebar-card .elementor-heading-title,
	.product-single-builder__content .elementor-column.sidebar-card .elementor-heading-title,
	.sidebar-card h3 {
		font-size: clamp(1.7rem, 4vw, 2.2rem);
		max-width: none;
	}
	.product-single-builder__cards .elementor-heading-title {
		font-size: 1.3rem;
	}
	.section-heading,
	.cta-band__inner,
	.cta-panel,
	.site-footer__bottom { flex-direction: column; align-items: flex-start; }
	.catalogue-toolbar { flex-direction: column; align-items: flex-start; }
	.catalogue-filter-card { position: static; }
	.route-table__head,
	.route-row { grid-template-columns: 1fr; }
	.route-row__delay { text-align: left; }
	.catalogue-category-card {
		grid-template-columns: 1fr;
		min-height: 0;
	}
	.catalogue-category-card__media {
		min-height: 220px;
		max-height: 240px;
	}
	.catalogue-category-card__content {
		min-height: 0;
	}
}

@media (max-width: 640px) {
	.section { padding: 2rem 0; }
	.site-header__inner {
		grid-template-columns: 1fr;
		grid-template-areas:
			"brand"
			"actions"
			"nav";
	}
	.site-header__aside {
		justify-content: space-between;
	}
	.hero__content h1,
	.page-hero h1 { font-size: 2.8rem; }
	.catalogue-hero h1,
	.catalogue-intro h2 { font-size: 2.8rem; }
	.product-hero h1,
	.product-single-builder__hero .elementor-heading-title {
		max-width: none;
		font-size: clamp(2.3rem, 10vw, 3.4rem);
		line-height: 0.96;
	}
	.product-hero,
	.product-single-builder .product-hero,
	.product-single-builder__hero .elementor-container {
		gap: 1.4rem;
	}
	.product-hero__description {
		margin-bottom: 1rem;
	}
	.product-hero__meta {
		margin: 1rem 0 1.35rem;
	}
	.product-single-builder__content {
		padding-top: 1rem;
	}
	.product-single-builder__cards {
		padding-top: 0;
	}
	.product-single-builder .sidebar-card,
	.product-single-builder .elementor-column.sidebar-card > .elementor-widget-wrap,
	.sidebar-card {
		padding: 1.3rem;
	}
	.product-single-builder__content .prose .elementor-heading-title,
	.product-single-builder__content .elementor-column.prose .elementor-heading-title,
	.content-grid .prose h2 {
		font-size: clamp(1.65rem, 7vw, 2.1rem);
	}
	.product-single-builder__content .sidebar-card .elementor-heading-title,
	.product-single-builder__content .elementor-column.sidebar-card .elementor-heading-title,
	.sidebar-card h3 {
		font-size: clamp(1.55rem, 6.5vw, 2rem);
	}
	.hero-visual { min-height: 300px; }
	.hero__actions .button,
	.site-header__cta .button { width: 100%; }
	.catalogue-intro { flex-direction: column; }
	.catalogue-intro__accent { width: 72px; min-height: 4px; }
}
