:root {
	--azure: #2486c4;
	--azure-bright: #318fcc;
	--azure-deep: #1a5f8f;
	--cyan: #2bb6d6;
	--cyan-bright: #5fd0ea;
	--teal: #9ad6d0;
	--amber: #f6a623;
	--amber-deep: #e0890d;

	--ink: #16242f;
	--ink-2: #1f3340;
	--slate: #3a4754;
	--slate-soft: #5d6b78;
	--line: #e4ebf0;
	--mist: #f4f8fb;
	--mist-2: #eaf2f8;
	--white: #ffffff;

	--grad-clim: linear-gradient(120deg, var(--azure) 0%, var(--cyan) 100%);
	--grad-elec: linear-gradient(
		120deg,
		var(--azure-deep) 0%,
		var(--azure-bright) 100%
	);
	--grad-dark: linear-gradient(160deg, #13222e 0%, #1c3441 60%, #16323f 100%);

	--font-display: "Sora", system-ui, sans-serif;
	--font-body: "Manrope", system-ui, sans-serif;

	--radius: 16px;
	--radius-sm: 10px;
	--radius-lg: 28px;
	--shadow-sm: 0 2px 10px rgba(22, 36, 47, 0.06);
	--shadow: 0 14px 40px -12px rgba(22, 36, 47, 0.18);
	--shadow-lg: 0 30px 70px -25px rgba(22, 36, 47, 0.35);
	--ring: 0 0 0 4px rgba(36, 134, 196, 0.18);

	--container: 1180px;
	--gutter: clamp(20px, 5vw, 56px);
	--section-y: clamp(64px, 9vw, 120px);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}
* {
	margin: 0;
}
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
}
body {
	font-family: var(--font-body);
	color: var(--slate);
	background: var(--white);
	line-height: 1.65;
	font-size: clamp(15.5px, 1.4vw, 17px);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}
a {
	color: inherit;
	text-decoration: none;
}
ul {
	list-style: none;
	padding: 0;
}
button {
	font: inherit;
	cursor: pointer;
	border: 0;
	background: none;
}
:focus-visible {
	outline: 3px solid var(--cyan);
	outline-offset: 3px;
	border-radius: 4px;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	color: var(--ink);
	line-height: 1.08;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.container {
	width: min(100% - 2 * var(--gutter), var(--container));
	margin-inline: auto;
}
.section {
	padding-block: var(--section-y);
}
.section--mist {
	background: var(--mist);
}
.section--dark {
	background: var(--grad-dark);
	color: #cfe0ea;
}
.section--dark h2,
.section--dark h3,
.section--dark h4 {
	color: #fff;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55em;
	font-family: var(--font-display);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--azure);
}
.eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--grad-clim);
	border-radius: 2px;
}
.section--dark .eyebrow {
	color: var(--cyan-bright);
}

.section-head {
	max-width: 720px;
	margin-bottom: clamp(36px, 5vw, 60px);
}
.section-head.center {
	margin-inline: auto;
	text-align: center;
}
.section-head h2 {
	font-size: clamp(1.85rem, 4.4vw, 3rem);
	margin: 0.35em 0 0.5em;
}
.section-head p {
	font-size: 1.06rem;
	color: var(--slate-soft);
}
.section--dark .section-head p {
	color: #a9c2d2;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.98rem;
	padding: 0.92em 1.5em;
	border-radius: 999px;
	transition:
		transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
		box-shadow 0.25s,
		background 0.25s,
		color 0.25s;
	white-space: nowrap;
	line-height: 1;
}
.btn svg {
	width: 1.05em;
	height: 1.05em;
}
.btn--primary {
	background: var(--grad-elec);
	color: #fff;
	box-shadow: 0 12px 26px -10px rgba(36, 134, 196, 0.65);
}
.btn--primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 38px -12px rgba(36, 134, 196, 0.75);
}
.btn--energy {
	background: linear-gradient(120deg, var(--amber-deep), var(--amber));
	color: #2a1c00;
	box-shadow: 0 12px 26px -10px rgba(224, 137, 13, 0.6);
}
.btn--energy:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 40px -12px rgba(224, 137, 13, 0.7);
}
.btn--clim {
	background: var(--grad-clim);
	color: #fff;
	box-shadow: 0 12px 26px -10px rgba(43, 182, 214, 0.6);
}
.btn--clim:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 40px -12px rgba(43, 182, 214, 0.7);
}
.btn--ghost {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover {
	background: #fff;
	color: var(--ink);
	border-color: #fff;
	transform: translateY(-3px);
}
.btn--outline {
	background: #fff;
	color: var(--azure-deep);
	border: 1.5px solid var(--line);
	box-shadow: var(--shadow-sm);
}
.btn--outline:hover {
	border-color: var(--azure);
	color: var(--azure);
	transform: translateY(-3px);
}
.btn--lg {
	font-size: 1.05rem;
	padding: 1.05em 1.8em;
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--azure);
	transition:
		gap 0.25s,
		color 0.25s;
}
.link-arrow svg {
	width: 1.1em;
	height: 1.1em;
	transition: transform 0.25s;
}
.link-arrow:hover {
	gap: 0.85em;
	color: var(--cyan);
}

.topbar {
	background: var(--ink);
	color: #b9cdd9;
	font-size: 0.85rem;
	letter-spacing: 0.01em;
}
.topbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	min-height: 40px;
}
.topbar a {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	color: #d6e6ef;
	font-weight: 500;
}
.topbar a:hover {
	color: var(--cyan-bright);
}
.topbar .tb-left {
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
}
.topbar svg {
	width: 15px;
	height: 15px;
	color: var(--cyan-bright);
}
.topbar .tb-badge {
	color: var(--teal);
}
@media (max-width: 720px) {
	.topbar .tb-left {
		gap: 14px;
	}
	.topbar .tb-hide {
		display: none;
	}
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.86);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid var(--line);
	transition:
		box-shadow 0.3s,
		background 0.3s;
}
.site-header.scrolled {
	box-shadow: 0 10px 30px -18px rgba(22, 36, 47, 0.4);
	background: rgba(255, 255, 255, 0.95);
}
.nav {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: 74px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-right: auto;
}
.brand img {
	height: 44px;
	width: auto;
	object-fit: contain;
}
@media (max-width: 480px) {
	.brand img {
		height: 38px;
	}
}
.brand-txt strong {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.12rem;
	color: var(--ink);
	letter-spacing: -0.01em;
	line-height: 1;
}
.brand-txt span {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--azure);
	font-weight: 600;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 4px;
}
.nav-menu > li {
	position: relative;
}
.nav-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.94rem;
	color: var(--ink-2);
	padding: 0.6em 0.85em;
	border-radius: 10px;
	transition:
		color 0.2s,
		background 0.2s;
}
.nav-link:hover,
.nav-link[aria-current="page"] {
	color: var(--azure);
	background: var(--mist);
}
.nav-link svg {
	width: 14px;
	height: 14px;
	opacity: 0.7;
	transition: transform 0.25s;
}
.has-sub:hover .nav-link svg {
	transform: rotate(180deg);
}

.sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: -8px;
	min-width: 248px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	box-shadow: var(--shadow);
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition:
		opacity 0.22s,
		transform 0.22s,
		visibility 0.22s;
}
.has-sub:hover .sub-menu,
.has-sub:focus-within .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.sub-menu a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 12px;
	border-radius: 11px;
	font-weight: 600;
	font-family: var(--font-display);
	font-size: 0.9rem;
	color: var(--ink-2);
	transition:
		background 0.18s,
		color 0.18s;
}
.sub-menu a:hover {
	background: var(--mist);
	color: var(--azure);
}
.sub-menu .dot {
	width: 9px;
	height: 9px;
	border-radius: 3px;
	flex: none;
}
.dot--elec {
	background: var(--amber);
}
.dot--clim {
	background: var(--cyan);
}
.dot--vmc {
	background: var(--teal);
}
.dot--chf {
	background: var(--azure-bright);
}
.dot--plb {
	background: var(--azure-deep);
}
.dot--borne {
	background: #2fb86a;
}
.dot--domo {
	background: #5b74e6;
}
.sub-menu small {
	display: block;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 0.76rem;
	color: var(--slate-soft);
	letter-spacing: 0;
}

.nav-cta {
	display: flex;
	align-items: center;
	gap: 10px;
}
.nav-tel {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--ink);
	font-size: 0.98rem;
}
.nav-tel svg {
	width: 17px;
	height: 17px;
	color: var(--azure);
}

.burger {
	display: none;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	border: 1px solid var(--line);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	background: #fff;
}
.burger span {
	width: 20px;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition:
		transform 0.3s,
		opacity 0.3s;
}
.nav-open .burger span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.nav-open .burger span:nth-child(2) {
	opacity: 0;
}
.nav-open .burger span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1000px) {
	.nav-menu,
	.nav-cta .nav-tel {
		display: none;
	}
	.burger {
		display: flex;
	}
	.mobile-panel {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(86vw, 380px);
		background: #fff;
		z-index: 200;
		padding: 84px 24px 32px;
		transform: translateX(100%);
		transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: var(--shadow-lg);
		overflow-y: auto;
	}
	.nav-open .mobile-panel {
		transform: translateX(0);
	}
	.nav-scrim {
		position: fixed;
		inset: 0;
		background: rgba(13, 25, 34, 0.5);
		z-index: 150;
		opacity: 0;
		visibility: hidden;
		transition:
			opacity 0.3s,
			visibility 0.3s;
	}
	.nav-open .nav-scrim {
		opacity: 1;
		visibility: visible;
	}
}
@media (min-width: 1001px) {
	.mobile-panel,
	.nav-scrim {
		display: none;
	}
}
.mobile-panel a {
	display: block;
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--ink);
	padding: 14px 4px;
	border-bottom: 1px solid var(--line);
	font-size: 1.05rem;
}
.mobile-panel .m-sub a {
	font-size: 0.96rem;
	padding-left: 18px;
	color: var(--slate);
	border: 0;
	padding-block: 10px;
}
.mobile-panel .m-group-label {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--azure);
	padding: 18px 4px 6px;
	font-family: var(--font-display);
	font-weight: 700;
}
.mobile-panel .btn {
	width: 100%;
	justify-content: center;
	margin-top: 22px;
}
.m-close {
	position: absolute;
	top: 22px;
	right: 22px;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: center;
}
.m-close svg {
	width: 20px;
	height: 20px;
}

.hero {
	position: relative;
	color: #fff;
	overflow: hidden;
	isolation: isolate;
	display: flex;
	align-items: center;
	min-height: clamp(560px, 88vh, 840px);
}
.hero-bg {
	position: absolute;
	inset: 0;
	z-index: -2;
}
.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 70% center;
}
.hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			rgba(11, 21, 29, 0.92) 0%,
			rgba(11, 21, 29, 0.64) 40%,
			rgba(11, 21, 29, 0.12) 72%,
			rgba(11, 21, 29, 0.3) 100%
		),
		linear-gradient(
			180deg,
			rgba(11, 21, 29, 0.4) 0%,
			transparent 28%,
			transparent 60%,
			rgba(11, 21, 29, 0.62) 100%
		);
}
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background: radial-gradient(
		46% 60% at 86% 22%,
		rgba(43, 182, 214, 0.22),
		transparent 62%
	);
}
.hero-inner {
	max-width: 720px;
	padding-block: clamp(80px, 13vw, 150px);
}
@media (max-width: 600px) {
	.hero-bg img {
		object-position: 64% center;
	}
	.hero-bg::after {
		background:
			linear-gradient(
				90deg,
				rgba(11, 21, 29, 0.88),
				rgba(11, 21, 29, 0.58) 75%,
				rgba(11, 21, 29, 0.48)
			),
			linear-gradient(180deg, transparent 38%, rgba(11, 21, 29, 0.62));
	}
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
	padding-block: clamp(56px, 8vw, 104px);
}
@media (max-width: 920px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}
}

.hero-badges {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 26px;
}
.pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.8rem;
	padding: 0.5em 0.95em;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: #e6f1f8;
}
.pill svg {
	width: 14px;
	height: 14px;
	color: var(--cyan-bright);
}
.pill--clim {
	background: rgba(43, 182, 214, 0.16);
	border-color: rgba(95, 208, 234, 0.4);
	color: #d6f4fb;
}

.hero h1 {
	font-size: clamp(2.3rem, 5.4vw, 4rem);
	color: #fff;
	margin-bottom: 0.5em;
	text-shadow: 0 2px 30px rgba(8, 16, 22, 0.55);
}
.hero h1 .accent-clim {
	background: var(--grad-clim);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.hero h1 .accent-elec {
	color: var(--amber);
}
.hero-lead {
	font-size: clamp(1.04rem, 1.8vw, 1.22rem);
	color: #dde8ef;
	max-width: 56ch;
	margin-bottom: 32px;
	text-shadow: 0 1px 16px rgba(8, 16, 22, 0.5);
}
.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
}
.hero-trust {
	display: flex;
	gap: 26px;
	flex-wrap: wrap;
	margin-top: 38px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-trust div strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.6rem;
	color: #fff;
	line-height: 1;
}
.hero-trust div span {
	font-size: 0.82rem;
	color: #93b1c4;
}

.hero-visual {
	position: relative;
}
.hero-photo {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(255, 255, 255, 0.12);
	aspect-ratio: 4/5;
}
.hero-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(11, 22, 30, 0.55));
}
.hero-float {
	position: absolute;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(8px);
	border-radius: 16px;
	padding: 14px 18px;
	box-shadow: var(--shadow);
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-display);
}
.hero-float .fi {
	width: 40px;
	height: 40px;
	border-radius: 11px;
	display: grid;
	place-items: center;
	color: #fff;
	flex: none;
}
.hero-float strong {
	display: block;
	font-size: 0.95rem;
	color: var(--ink);
	line-height: 1.2;
}
.hero-float span {
	font-size: 0.78rem;
	color: var(--slate-soft);
	font-family: var(--font-body);
}
.hero-float--clim {
	bottom: 22px;
	left: -22px;
}
.hero-float--clim .fi {
	background: var(--grad-clim);
}
.hero-float--elec {
	top: 26px;
	right: -18px;
}
.hero-float--elec .fi {
	background: linear-gradient(120deg, var(--amber-deep), var(--amber));
	color: #2a1c00;
}
@media (max-width: 920px) {
	.hero-photo {
		aspect-ratio: 16/11;
	}
	.hero-float--elec {
		right: 14px;
	}
	.hero-float--clim {
		left: 14px;
	}
}
@media (max-width: 540px) {
	.hero-float {
		display: none;
	}
}

.page-hero {
	position: relative;
	background: var(--grad-dark);
	color: #cfe0ea;
	overflow: hidden;
	isolation: isolate;
	padding-block: clamp(48px, 7vw, 84px);
}
.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(
		55% 70% at 85% 10%,
		rgba(43, 182, 214, 0.24),
		transparent 60%
	);
}
.page-hero h1 {
	color: #fff;
	font-size: clamp(2rem, 4.6vw, 3.2rem);
	margin: 0.35em 0 0.45em;
	max-width: 18ch;
}
.page-hero p {
	color: #b6cddc;
	max-width: 60ch;
	font-size: 1.08rem;
}
.page-hero .hero-actions {
	margin-top: 30px;
}

.breadcrumb {
	font-size: 0.82rem;
}
.breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	align-items: center;
}
.breadcrumb li {
	display: flex;
	align-items: center;
	gap: 0.5em;
	color: #8fb0c4;
}
.breadcrumb a {
	color: #b6cddc;
	font-weight: 600;
}
.breadcrumb a:hover {
	color: var(--cyan-bright);
}
.breadcrumb [aria-current] {
	color: #fff;
}
.breadcrumb .sep {
	opacity: 0.5;
}
.page-hero .breadcrumb {
	margin-bottom: 6px;
}

.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 22px;
}
.s-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px 28px 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition:
		transform 0.3s,
		box-shadow 0.3s,
		border-color 0.3s;
	overflow: hidden;
}
.s-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	background: var(--grad-elec);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s;
}
.s-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
	border-color: transparent;
}
.s-card:hover::before {
	transform: scaleX(1);
}
.s-card .s-ico {
	width: 56px;
	height: 56px;
	border-radius: 15px;
	display: grid;
	place-items: center;
	color: #fff;
	box-shadow: var(--shadow-sm);
}
.s-card .s-ico svg {
	width: 27px;
	height: 27px;
}
.s-card h3 {
	font-size: 1.24rem;
}
.s-card p {
	font-size: 0.96rem;
	color: var(--slate-soft);
	flex: 1;
}
.s-card .link-arrow {
	font-size: 0.92rem;
	margin-top: 4px;
}
.s-card .tag {
	position: absolute;
	top: 22px;
	right: 22px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.64rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.42em 0.7em;
	border-radius: 999px;
}

.ico--elec {
	background: linear-gradient(135deg, var(--azure-deep), var(--azure-bright));
}
.ico--clim {
	background: var(--grad-clim);
}
.ico--vmc {
	background: linear-gradient(135deg, #4aa1a8, var(--teal));
}
.ico--chf {
	background: linear-gradient(135deg, var(--amber-deep), var(--amber));
}
.ico--plb {
	background: linear-gradient(135deg, #1a5f8f, #3aa0d4);
}
.ico--borne {
	background: linear-gradient(135deg, #1f9d57, #43c97f);
}
.ico--domo {
	background: linear-gradient(135deg, #2b4c9b, #5b74e6);
}

.s-card.featured {
	background: var(--grad-dark);
	border-color: transparent;
	color: #c7dae6;
}
.s-card.featured h3 {
	color: #fff;
}
.s-card.featured p {
	color: #a8c4d4;
}
.s-card.featured::before {
	background: var(--grad-clim);
	transform: scaleX(1);
}
.s-card.featured .tag {
	background: var(--grad-clim);
	color: #fff;
}
.s-card.featured .link-arrow {
	color: var(--cyan-bright);
}
.s-card.featured.elec::before {
	background: linear-gradient(120deg, var(--amber-deep), var(--amber));
}
.s-card.featured.elec .tag {
	background: linear-gradient(120deg, var(--amber-deep), var(--amber));
	color: #2a1c00;
}
.s-card.featured.elec .link-arrow {
	color: var(--amber);
}

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}
.split.reverse .split-media {
	order: 2;
}
@media (max-width: 860px) {
	.split {
		grid-template-columns: 1fr;
	}
	.split.reverse .split-media {
		order: 0;
	}
}
.split-media {
	position: relative;
}
.split-media img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	width: 100%;
	object-fit: cover;
}
.split-media .media-badge {
	position: absolute;
	bottom: -18px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: var(--shadow);
	padding: 12px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-display);
	white-space: nowrap;
}
.media-badge strong {
	font-size: 1.2rem;
	color: var(--ink);
}
.media-badge span {
	font-size: 0.8rem;
	color: var(--slate-soft);
	font-family: var(--font-body);
}
.split h2 {
	font-size: clamp(1.7rem, 3.6vw, 2.5rem);
	margin: 0.35em 0 0.6em;
}
.split .feat-list {
	display: grid;
	gap: 14px;
	margin: 24px 0 30px;
}
.feat-list li {
	display: flex;
	gap: 13px;
	align-items: flex-start;
	font-size: 0.98rem;
}
.feat-list .ck {
	width: 24px;
	height: 24px;
	border-radius: 8px;
	background: var(--mist-2);
	color: var(--azure);
	display: grid;
	place-items: center;
	flex: none;
	margin-top: 1px;
}
.feat-list .ck svg {
	width: 14px;
	height: 14px;
}
.feat-list b {
	color: var(--ink);
	font-weight: 700;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 22px;
}
.why-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	padding: 30px 26px;
	transition:
		transform 0.3s,
		background 0.3s;
}
.why-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.07);
}
.why-card .w-ico {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--grad-clim);
	display: grid;
	place-items: center;
	color: #fff;
	margin-bottom: 18px;
}
.why-card .w-ico svg {
	width: 25px;
	height: 25px;
}
.why-card h3 {
	font-size: 1.18rem;
	margin-bottom: 8px;
}
.why-card p {
	color: #a9c2d2;
	font-size: 0.95rem;
}

.zones {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}
@media (max-width: 820px) {
	.zones {
		grid-template-columns: 1fr;
	}
}
.zone-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}
.zone-tags li {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--ink-2);
	background: #fff;
	border: 1px solid var(--line);
	padding: 0.5em 0.95em;
	border-radius: 999px;
	transition:
		border-color 0.2s,
		color 0.2s,
		transform 0.2s;
}
.zone-tags li:hover {
	border-color: var(--cyan);
	color: var(--azure);
	transform: translateY(-2px);
}
.zone-tags li::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--grad-clim);
}
.zones-media img {
	border-radius: var(--radius-lg);
}
.map-card {
	margin: 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	background: #fff;
}
.map-embed {
	position: relative;
	background: var(--mist-2);
	aspect-ratio: 4 / 3;
}
.map-embed iframe,
.map-embed #zones-map {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	z-index: 0;
}
.he2m-pin {
	position: relative;
	display: block;
	width: 24px;
	height: 24px;
	background: var(--grad-elec);
	border: 3px solid #fff;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	box-shadow: 0 3px 9px rgba(11, 21, 29, 0.45);
}
.he2m-pin::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fff;
	transform: translate(-50%, -50%);
}
.leaflet-popup-content {
	font-family: var(--font-body);
	font-size: 0.86rem;
	color: var(--slate);
}
.leaflet-popup-content strong {
	font-family: var(--font-display);
	color: var(--ink);
}
.leaflet-container {
	font-family: var(--font-body);
}
.map-sites {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 14px;
}
.map-site {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-sm);
	transition:
		border-color 0.2s,
		transform 0.2s,
		box-shadow 0.2s;
}
.map-site:hover {
	border-color: var(--cyan);
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}
.map-site svg {
	width: 20px;
	height: 20px;
	color: var(--azure);
	flex: none;
}
.map-site span {
	display: flex;
	flex-direction: column;
	font-size: 0.84rem;
	color: var(--slate-soft);
	line-height: 1.3;
}
.map-site strong {
	font-family: var(--font-display);
	font-size: 0.95rem;
	color: var(--ink);
}
@media (max-width: 480px) {
	.map-sites {
		grid-template-columns: 1fr;
	}
}

.marquee {
	position: relative;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(
		90deg,
		transparent,
		#000 8%,
		#000 92%,
		transparent
	);
	mask-image: linear-gradient(
		90deg,
		transparent,
		#000 8%,
		#000 92%,
		transparent
	);
}
.marquee-track {
	display: flex;
	width: max-content;
	gap: 0;
	animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
	animation-play-state: paused;
}
@keyframes marquee {
	to {
		transform: translateX(-50%);
	}
}
.marquee-item {
	flex: 0 0 auto;
	width: clamp(150px, 20vw, 210px);
	height: 96px;
	display: grid;
	place-items: center;
	padding: 0 28px;
}
.marquee-item img {
	max-height: 52px;
	width: auto;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.62;
	transition:
		filter 0.3s,
		opacity 0.3s,
		transform 0.3s;
}
.marquee-item:hover img {
	filter: none;
	opacity: 1;
	transform: scale(1.06);
}
@media (max-width: 768px) {
	.marquee-item img {
		filter: none;
		opacity: 1;
	}
}
@media (prefers-reduced-motion: reduce) {
	.marquee-track {
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
	}
}

.faq {
	display: grid;
	gap: 14px;
	max-width: 860px;
	margin-inline: auto;
}
.faq-item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition:
		box-shadow 0.3s,
		border-color 0.3s;
}
.faq-item.open {
	box-shadow: var(--shadow);
	border-color: transparent;
}
.faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px 26px;
	text-align: left;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--ink);
}
.faq-q .fq-ico {
	width: 30px;
	height: 30px;
	border-radius: 9px;
	background: var(--mist);
	color: var(--azure);
	display: grid;
	place-items: center;
	flex: none;
	transition:
		transform 0.3s,
		background 0.3s,
		color 0.3s;
}
.faq-q .fq-ico svg {
	width: 16px;
	height: 16px;
}
.faq-item.open .fq-ico {
	background: var(--grad-clim);
	color: #fff;
	transform: rotate(45deg);
}
.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.faq-a-inner {
	padding: 0 26px 24px;
	color: var(--slate-soft);
	font-size: 0.98rem;
}

.cta-band {
	position: relative;
	background: var(--grad-elec);
	color: #fff;
	border-radius: var(--radius-lg);
	padding: clamp(38px, 6vw, 64px);
	overflow: hidden;
	isolation: isolate;
}
.cta-band::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(
		50% 120% at 90% 10%,
		rgba(95, 208, 234, 0.5),
		transparent 60%
	);
}
.cta-band h2 {
	color: #fff;
	font-size: clamp(1.7rem, 3.8vw, 2.6rem);
	max-width: 20ch;
}
.cta-band p {
	color: #e2f1fb;
	max-width: 50ch;
	margin: 14px 0 30px;
	font-size: 1.06rem;
}
.cta-band .hero-actions {
	gap: 14px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: clamp(30px, 5vw, 56px);
	align-items: start;
}
@media (max-width: 880px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}
}
.info-card {
	background: var(--grad-dark);
	color: #c7dae6;
	border-radius: var(--radius-lg);
	padding: clamp(28px, 4vw, 40px);
}
.info-card h3 {
	color: #fff;
	font-size: 1.5rem;
	margin-bottom: 8px;
}
.info-card > p {
	color: #a8c4d4;
	margin-bottom: 26px;
}
.info-row {
	display: flex;
	gap: 15px;
	align-items: flex-start;
	padding: 16px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.info-row .ir-ico {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--cyan-bright);
	display: grid;
	place-items: center;
	flex: none;
}
.info-row .ir-ico svg {
	width: 20px;
	height: 20px;
}
.info-row span {
	display: block;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8fb0c4;
	font-weight: 600;
}
.info-row strong,
.info-row a {
	font-family: var(--font-display);
	font-size: 1.04rem;
	color: #fff;
	font-weight: 600;
}
.info-row a:hover {
	color: var(--cyan-bright);
}

.form-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: clamp(26px, 4vw, 40px);
	box-shadow: var(--shadow);
}
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.field.full {
	grid-column: 1 / -1;
}
.field label {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.86rem;
	color: var(--ink-2);
}
.field label .req {
	color: var(--amber-deep);
}
.field input,
.field select,
.field textarea {
	font: inherit;
	font-size: 0.96rem;
	color: var(--ink);
	background: var(--mist);
	border: 1.5px solid var(--line);
	border-radius: 12px;
	padding: 0.8em 0.95em;
	width: 100%;
	transition:
		border-color 0.2s,
		box-shadow 0.2s,
		background 0.2s;
}
.field textarea {
	resize: vertical;
	min-height: 130px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--azure);
	background: #fff;
	box-shadow: var(--ring);
}
.field .err {
	color: #c0392b;
	font-size: 0.8rem;
	display: none;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
	border-color: #e07a6e;
}
.field.invalid .err {
	display: block;
}
.form-consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 0.84rem;
	color: var(--slate-soft);
	margin-top: 4px;
}
.form-consent input {
	width: 18px;
	height: 18px;
	margin-top: 3px;
	accent-color: var(--azure);
	flex: none;
}
.form-note {
	display: flex;
	align-items: center;
	gap: 0.5em;
	font-size: 0.84rem;
	color: var(--slate-soft);
	margin-top: 16px;
}
.form-note svg {
	width: 16px;
	height: 16px;
	color: var(--azure);
}
.form-success {
	display: none;
	text-align: center;
	padding: 20px;
}
.form-success.show {
	display: block;
}
.form-success .fs-ico {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--grad-clim);
	color: #fff;
	display: grid;
	place-items: center;
	margin: 0 auto 18px;
}
.form-success h3 {
	font-size: 1.4rem;
	margin-bottom: 8px;
}
@media (max-width: 520px) {
	.form-grid {
		grid-template-columns: 1fr;
	}
}

.stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 20px;
}
.stat {
	text-align: center;
	padding: 28px 18px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition:
		transform 0.3s,
		box-shadow 0.3s;
}
.stat:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
}
.stat strong {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.1rem, 5vw, 3rem);
	background: var(--grad-clim);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	line-height: 1;
}
.stat span {
	font-size: 0.92rem;
	color: var(--slate-soft);
	margin-top: 8px;
	display: block;
}

.gallery-group {
	margin-top: clamp(40px, 6vw, 72px);
}
.gallery-group:first-child {
	margin-top: 0;
}
.gallery-head {
	margin-bottom: 22px;
}
.gallery-head h2 {
	font-size: clamp(1.35rem, 2.8vw, 1.95rem);
}
.gallery-head .gallery-count {
	display: inline-block;
	margin-top: 6px;
	font-size: 0.88rem;
	color: var(--slate-soft);
	font-weight: 600;
}

.carousel {
	position: relative;
}
.carousel-track {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 4px;
	margin: -4px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar {
	display: none;
}
.carousel-track.dragging {
	scroll-behavior: auto;
	cursor: grabbing;
	scroll-snap-type: none;
}
.carousel-slide {
	flex: 0 0 clamp(258px, 78vw, 384px);
	scroll-snap-align: start;
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	position: relative;
	box-shadow: var(--shadow-sm);
	background: var(--mist-2);
	aspect-ratio: 4 / 3;
}
.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}
.carousel-slide:hover img {
	transform: scale(1.05);
}
.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	display: grid;
	place-items: center;
	color: var(--ink);
	transition:
		opacity 0.25s,
		transform 0.2s,
		background 0.2s,
		color 0.2s;
	cursor: pointer;
}
.carousel-btn:hover {
	background: var(--azure);
	color: #fff;
	border-color: var(--azure);
}
.carousel-btn svg {
	width: 22px;
	height: 22px;
}
.carousel-btn.prev {
	left: -10px;
}
.carousel-btn.next {
	right: -10px;
}
.carousel-btn[disabled] {
	opacity: 0;
	pointer-events: none;
}
@media (max-width: 760px) {
	.carousel-btn {
		display: none;
	}
}

.gallery {
	columns: 3 280px;
	column-gap: 18px;
}
.gallery figure {
	break-inside: avoid;
	margin: 0 0 18px;
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.gallery img {
	width: 100%;
	transition: transform 0.5s;
}
.gallery figure:hover img {
	transform: scale(1.05);
}
.gallery figcaption {
	position: absolute;
	inset: auto 0 0 0;
	padding: 30px 18px 16px;
	color: #fff;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.95rem;
	background: linear-gradient(transparent, rgba(13, 25, 34, 0.82));
}

.site-footer {
	background: var(--ink);
	color: #9fb6c4;
	padding-block: clamp(48px, 7vw, 80px) 0;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding-bottom: 52px;
}
@media (max-width: 860px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
}
@media (max-width: 520px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}
}
.footer-brand img {
	height: 64px;
	width: auto;
	max-width: 220px;
	aspect-ratio: auto;
	margin-bottom: 16px;
}
.footer-brand strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.2rem;
	color: #fff;
}
.footer-brand p {
	font-size: 0.92rem;
	margin: 12px 0 18px;
	max-width: 34ch;
}
.f-col h4 {
	color: #fff;
	font-size: 0.82rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 18px;
	font-family: var(--font-display);
}
.f-col li {
	margin-bottom: 11px;
}
.f-col a {
	font-size: 0.94rem;
	transition:
		color 0.2s,
		padding 0.2s;
}
.f-col a:hover {
	color: var(--cyan-bright);
	padding-left: 4px;
}
.f-contact li {
	display: flex;
	gap: 11px;
	align-items: flex-start;
	margin-bottom: 14px;
	font-size: 0.94rem;
}
.f-contact svg {
	width: 17px;
	height: 17px;
	color: var(--cyan-bright);
	flex: none;
	margin-top: 3px;
}
.f-contact a:hover {
	color: var(--cyan-bright);
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-block: 24px;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 0.85rem;
}
.footer-bottom a:hover {
	color: var(--cyan-bright);
}
.footer-bottom .fb-links {
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
}

.fab-call {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 90;
	display: none;
	align-items: center;
	gap: 0.5em;
	background: var(--grad-elec);
	color: #fff;
	font-family: var(--font-display);
	font-weight: 700;
	padding: 0.9em 1.3em;
	border-radius: 999px;
	box-shadow: var(--shadow-lg);
}
.fab-call svg {
	width: 18px;
	height: 18px;
}
@media (max-width: 1000px) {
	.fab-call {
		display: inline-flex;
	}
}

.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition:
		opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
		transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
	opacity: 1;
	transform: none;
}
.reveal[data-d="1"] {
	transition-delay: 0.08s;
}
.reveal[data-d="2"] {
	transition-delay: 0.16s;
}
.reveal[data-d="3"] {
	transition-delay: 0.24s;
}
.reveal[data-d="4"] {
	transition-delay: 0.32s;
}

.prose {
	max-width: 760px;
}
.prose h2 {
	font-size: 1.5rem;
	margin: 1.6em 0 0.5em;
}
.prose h3 {
	font-size: 1.15rem;
	margin: 1.3em 0 0.4em;
}
.prose p,
.prose li {
	color: var(--slate);
	margin-bottom: 1em;
}
.prose ul {
	list-style: disc;
	padding-left: 1.3em;
}
.prose a {
	color: var(--azure);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.carousel-slide {
	cursor: zoom-in;
}
.carousel-slide .zoom-ico {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: grid;
	place-items: center;
	background: rgba(11, 21, 29, 0.55);
	color: #fff;
	backdrop-filter: blur(4px);
	opacity: 0;
	transform: scale(0.85);
	transition:
		opacity 0.25s,
		transform 0.25s;
	pointer-events: none;
}
.carousel-slide:hover .zoom-ico {
	opacity: 1;
	transform: scale(1);
}
.carousel-slide .zoom-ico svg {
	width: 18px;
	height: 18px;
}

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: clamp(14px, 4vw, 48px);
	background: rgba(9, 16, 22, 0.93);
	backdrop-filter: blur(6px);
}
.lightbox.open {
	display: flex;
	animation: lb-fade 0.25s ease;
}
@keyframes lb-fade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.lightbox figure {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: center;
	max-width: 100%;
}
.lightbox img {
	max-width: min(1100px, 94vw);
	max-height: 82vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
	animation: lb-zoom 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes lb-zoom {
	from {
		transform: scale(0.94);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}
.lightbox figcaption {
	color: #dfeaf1;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.95rem;
	text-align: center;
}
.lb-counter {
	position: absolute;
	top: 20px;
	left: 24px;
	color: #9fb6c4;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
}
.lb-btn {
	position: absolute;
	z-index: 2;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition:
		background 0.2s,
		transform 0.2s,
		opacity 0.2s;
}
.lb-btn:hover {
	background: rgba(255, 255, 255, 0.22);
	transform: scale(1.06);
}
.lb-btn svg {
	width: 24px;
	height: 24px;
}
.lb-close {
	top: 16px;
	right: 18px;
}
.lb-nav {
	top: 50%;
	transform: translateY(-50%);
}
.lb-nav:hover {
	transform: translateY(-50%) scale(1.06);
}
.lb-prev {
	left: clamp(8px, 2vw, 28px);
}
.lb-next {
	right: clamp(8px, 2vw, 28px);
}
.lb-btn[disabled] {
	opacity: 0.3;
	pointer-events: none;
}
@media (max-width: 560px) {
	.lb-btn {
		width: 42px;
		height: 42px;
	}
}
.badge-24h {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	background: var(--mist-2);
	color: var(--azure);
	border: 1px solid var(--line);
	padding: 0.45em 0.9em;
	border-radius: 999px;
	margin-top: 6px;
}
.section--clim-focus {
	background: linear-gradient(160deg, #f0f8ff 0%, #fff 60%);
	padding-block: var(--section-y);
}
.section--clim-focus .split-copy h2 {
	font-size: clamp(1.7rem, 3.6vw, 2.6rem);
	margin: 0.35em 0 0.6em;
}
.section--clim-focus .split-media img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}
/* ===== Avis Google ===== */
.reviews-summary {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 18px 28px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: 22px 28px;
	max-width: 720px;
	margin: 0 auto clamp(32px, 5vw, 48px);
}
.reviews-summary .rs-note {
	display: flex;
	align-items: center;
	gap: 14px;
}
.reviews-summary .rs-score {
	font-family: var(--font-display);
	font-size: 2.6rem;
	font-weight: 800;
	color: var(--ink);
	line-height: 1;
}
.reviews-summary .rs-meta span {
	display: block;
	font-size: 0.86rem;
	color: var(--slate-soft);
}
.stars {
	display: inline-flex;
	gap: 2px;
}
.stars svg {
	width: 18px;
	height: 18px;
	color: #fbbc04;
}
.g-logo {
	width: 22px;
	height: 22px;
	flex: none;
}
.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 22px;
}
.review-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px;
	box-shadow: var(--shadow-sm);
	transition:
		transform 0.3s,
		box-shadow 0.3s;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.review-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
}
.review-head {
	display: flex;
	align-items: center;
	gap: 13px;
}
.r-avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #fff;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.1rem;
	flex: none;
	background: var(--grad-clim);
}
.review-head strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1rem;
	color: var(--ink);
}
.review-head .r-date {
	font-size: 0.8rem;
	color: var(--slate-soft);
}
.review-card p {
	color: var(--slate);
	font-size: 0.96rem;
	flex: 1;
}
.review-card .r-g {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 0.8rem;
	color: var(--slate-soft);
}
/* ===== Avis Google — bloc CTA + zone widget ===== */
.reviews-widget:empty {
	display: none;
}
.reviews-widget {
	margin-bottom: clamp(28px, 4vw, 40px);
}
.g-cta {
	display: flex;
	align-items: center;
	gap: clamp(16px, 3vw, 30px);
	flex-wrap: wrap;
	justify-content: center;
	text-align: left;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: clamp(22px, 4vw, 34px);
	max-width: 820px;
	margin: 0 auto;
}
.g-cta .g-logo {
	width: 46px;
	height: 46px;
	flex: none;
}
.g-cta-txt {
	flex: 1;
	min-width: 220px;
}
.g-cta-txt strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.2rem;
	color: var(--ink);
}
.g-cta-txt span {
	font-size: 0.94rem;
	color: var(--slate-soft);
}
.g-cta-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
@media (max-width: 600px) {
	.g-cta {
		flex-direction: column;
		text-align: center;
	}
	.g-cta-txt {
		min-width: 0;
	}
	.g-cta-actions {
		width: 100%;
		justify-content: center;
	}
}
/* ===== Carrousel d'avis Google (marquee) ===== */
.rev-summary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: clamp(26px, 4vw, 38px);
}
.rev-summary strong {
	font-family: var(--font-display);
	font-size: 1.7rem;
	color: var(--ink);
	line-height: 1;
}
.rev-summary span {
	font-size: 0.92rem;
	color: var(--slate-soft);
	font-weight: 600;
}
.rev-marquee {
	position: relative;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(
		90deg,
		transparent,
		#000 6%,
		#000 94%,
		transparent
	);
	mask-image: linear-gradient(
		90deg,
		transparent,
		#000 6%,
		#000 94%,
		transparent
	);
}
.rev-track {
	display: flex;
	gap: 20px;
	width: max-content;
	animation: marquee 45s linear infinite;
}
.rev-marquee:hover .rev-track,
.rev-marquee:focus-within .rev-track {
	animation-play-state: paused;
}
.rev-track .review-card {
	flex: 0 0 clamp(290px, 82vw, 380px);
	white-space: normal;
}
@media (prefers-reduced-motion: reduce) {
	.rev-track {
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
		width: auto;
	}
}
