:root {
	--blue: #1d7ac9;
	--green: #72c820;
	--blue-rgb: 29 122 201;
	--green-rgb: 114 200 32;
	--navy: #0b1c2c;
	--bg: #edf6ff;
	--white: #ffffff;
	--gradient: linear-gradient(90deg, var(--blue), var(--green));

	--text: var(--navy);
	--muted: rgba(11, 28, 44, 0.72);
	--muted-2: rgba(11, 28, 44, 0.58);
	--border: rgba(11, 28, 44, 0.12);
	--card: rgba(237, 246, 255, 0.88);

	--radius: 18px;
	--radius-sm: 12px;

	--shadow-sm: 0 10px 30px rgba(11, 28, 44, 0.08);
	--shadow-md: 0 18px 60px rgba(11, 28, 44, 0.14);
	--shadow-glow: 0 18px 70px rgb(var(--blue-rgb) / 0.22);

	--container: 1120px;
	--gutter: 20px;

	--ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	--dur-fast: 160ms;
	--dur: 260ms;
	--dur-slow: 800ms;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	overflow-x: hidden;
}

body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	color: var(--text);
	background: linear-gradient(180deg, rgb(var(--blue-rgb) / 0.11), rgb(var(--green-rgb) / 0.06) 60%, var(--bg) 100%);
	line-height: 1.55;
	text-rendering: optimizeLegibility;
}

/* Custom cursor (fine pointers only; JS-enabled) */
@media (pointer: fine) {
	html.has-kd-cursor,
	html.has-kd-cursor body {
		cursor: none;
	}

	html.has-kd-cursor a,
	html.has-kd-cursor button,
	html.has-kd-cursor summary {
		cursor: none;
	}

	html.has-kd-cursor input,
	html.has-kd-cursor textarea {
		cursor: text;
	}

	.kd-cursor,
	.kd-cursor-ripple {
		position: fixed;
		left: 0;
		top: 0;
		transform: translate(-50%, -50%);
		pointer-events: none;
		z-index: 2147483647;
	}

	.kd-cursor {
		width: 10px;
		height: 10px;
		border-radius: 999px;
		background: rgb(var(--green-rgb) / 1);
		border: 2px solid rgb(var(--blue-rgb) / 1);
		box-shadow:
			0 0 0 4px rgb(var(--blue-rgb) / 0.12),
			0 18px 60px rgb(var(--blue-rgb) / 0.12);
		opacity: 0;
		transition: opacity var(--dur-fast) var(--ease);
	}

	.kd-cursor.is-visible {
		opacity: 1;
	}

	.kd-cursor-ripple {
		width: 44px;
		height: 44px;
		border-radius: 999px;
		border: 2px solid rgb(var(--blue-rgb) / 0.85);
		opacity: 0;
	}

	.kd-cursor-ripple.is-rippling {
		animation: kd-cursor-ripple 520ms var(--ease);
	}
}

@keyframes kd-cursor-ripple {
	0% {
		transform: translate(-50%, -50%) scale(0.35);
		opacity: 0.35;
	}
	100% {
		transform: translate(-50%, -50%) scale(1.15);
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kd-cursor-ripple {
		display: none;
	}
}

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

iframe,
video {
	max-width: 100%;
	display: block;
}

:where(p, li, a, h1, h2, h3, h4, h5, h6) {
	overflow-wrap: break-word;
}

a {
	color: inherit;
	text-decoration: none;
}

p {
	margin: 0;
}

/* A11y utility */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Text clamping (previews) */
.clamp-3 {
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

.container {
	width: min(var(--container), calc(100% - var(--gutter) * 2));
	margin-inline: auto;
}

/* Reserve space for fragment-loaded header to reduce CLS */
#site-header {
	min-height: clamp(84px, 12vw, 112px);
}

.skip-link {
	position: absolute;
	left: 12px;
	top: 12px;
	padding: 10px 12px;
	border-radius: 10px;
	background: var(--white);
	color: var(--navy);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
	transform: translateY(-150%);
	transition: transform var(--dur-fast) var(--ease);
	z-index: 9999;
}


.skip-link:focus {
	transform: translateY(0);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 18px;
	border-radius: 14px;
	border: 1px solid transparent;
	font-weight: 600;
	letter-spacing: 0.2px;
	cursor: pointer;
	transition:
		transform var(--dur-fast) var(--ease),
		box-shadow var(--dur) var(--ease),
		background var(--dur) var(--ease),
		border-color var(--dur) var(--ease),
		color var(--dur) var(--ease);
	will-change: transform;
}

.btn:focus-visible {
	outline: 3px solid rgb(var(--blue-rgb) / 0.35);
	outline-offset: 3px;
}

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

.btn:disabled,
.btn[aria-disabled="true"] {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.btn--primary {
	background: var(--gradient);
	color: var(--white);
	box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
	box-shadow: 0 22px 85px rgb(var(--blue-rgb) / 0.26);
}

.btn--secondary {
	background: rgb(var(--blue-rgb) / 0.08);
	border-color: var(--border);
	color: var(--navy);
}

.btn--secondary:hover {
	background: rgb(var(--blue-rgb) / 0.12);
	box-shadow: var(--shadow-sm);
}

.btn--cta {
	background: var(--blue);
	color: var(--white);
	box-shadow: 0 18px 60px rgb(var(--blue-rgb) / 0.22);
}

.btn--cta:hover {
	box-shadow: 0 20px 70px rgb(var(--blue-rgb) / 0.28);
}

.btn--block {
	width: 100%;
}

.btn--small {
	padding: 12px 14px;
	border-radius: 12px;
}

.btn__icon {
	width: 18px;
	height: 18px;
	display: inline-grid;
	place-items: center;
}

.btn__icon svg {
	width: 18px;
	height: 18px;
}

/* Google icons (Material Symbols) */
html:not(.material-symbols-loaded) .material-symbols-outlined {
	visibility: hidden;
}

.material-symbols-outlined {
	font-family: 'Material Symbols Outlined';
	font-weight: 400;
	font-style: normal;
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
	line-height: 1;
	display: inline-block;
	vertical-align: middle;
}

.btn__icon .material-symbols-outlined {
	font-size: 18px;
}

.btn__icon--pulse {
	position: relative;
}

.btn__icon--pulse::after {
	content: "";
	position: absolute;
	inset: -10px;
	border-radius: 999px;
	background: rgb(var(--green-rgb) / 0.2);
	filter: blur(2px);
	animation: pulse 1.8s var(--ease) infinite;
	z-index: -1;
}

@keyframes pulse {
	0% {
		transform: scale(0.9);
		opacity: 0.5;
	}
	60% {
		transform: scale(1.2);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

/* Sections */
.section {
	padding: 72px 0;
}

@media (max-width: 640px) {
	:root {
		--gutter: 16px;
	}

	.section {
		padding: 56px 0;
	}

	.page-hero {
		padding: 76px 0 26px;
	}

	.hero {
		padding: 96px 0 44px;
		background-position: 70% center;
	}

	.hero__title {
		font-size: clamp(1.9rem, 7vw, 2.6rem);
		line-height: 1.08;
	}

	.hero__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.hero__actions .btn {
		width: 100%;
	}
}

.section--alt {
	background: linear-gradient(120deg, rgb(var(--blue-rgb) / 0.07), rgb(var(--green-rgb) / 0.05));
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.section__header {
	max-width: 720px;
	margin-bottom: 28px;
}

.section__title {
	font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0;
	font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.section__lead {
	margin-top: 10px;
	color: var(--muted);
	font-size: 1.05rem;
}

/* Page hero (inner pages) */
.page-hero {
	padding: 92px 0 34px;
	border-bottom: 1px solid var(--border);
	background:
		linear-gradient(120deg, rgb(var(--blue-rgb) / 0.1), rgb(var(--green-rgb) / 0.06)),
		radial-gradient(closest-side, rgb(var(--blue-rgb) / 0.12), transparent 70%);
}

.page-hero__inner {
	display: grid;
	gap: 18px;
	align-items: start;
}

.page-hero__title {
	margin: 0;
	font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 800;
	letter-spacing: -0.03em;
	font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}

.page-hero__lead {
	max-width: 70ch;
	color: var(--muted);
	font-size: 1.05rem;
}

/* Breadcrumbs */
.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	color: var(--muted-2);
	font-weight: 700;
	font-size: 0.95rem;
}

.breadcrumbs a {
	color: rgba(11, 28, 44, 0.78);
	padding: 6px 10px;
	border-radius: 12px;
	border: 1px solid transparent;
	transition:
		background var(--dur) var(--ease),
		border-color var(--dur) var(--ease);
}

.breadcrumbs a:hover {
	background: rgb(var(--blue-rgb) / 0.1);
	border-color: var(--border);
}

.breadcrumbs__sep {
	opacity: 0.6;
}

/* Cards + grids */
.grid {
	display: grid;
	gap: 16px;
}

.grid--2 {
	grid-template-columns: 1fr;
}

.grid--3 {
	grid-template-columns: 1fr;
}

/* Optional: prevent grid items stretching to tallest item in a row */
.grid--top {
	align-items: start;
}

.card {
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: rgba(237, 246, 255, 0.82);
	box-shadow: var(--shadow-sm);
	padding: 18px;
	transition:
		transform var(--dur-fast) var(--ease),
		box-shadow var(--dur) var(--ease);
}

.card:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}

.card__title {
	margin: 0;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.card__text {
	margin-top: 8px;
	color: var(--muted);
}

/* Testimonial cards (used on testimonials page grid) */
.testimonial-card {
	position: relative;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.72);
}

.testimonial-card > * {
	position: relative;
	z-index: 1;
}

.testimonial-card::before {
	content: "“";
	position: absolute;
	left: 14px;
	top: 10px;
	z-index: 0;
	font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 64px;
	line-height: 1;
	color: rgb(var(--blue-rgb) / 0.14);
	pointer-events: none;
}

.testimonial-card .card__title {
	font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 1.05rem;
	padding-left: 28px;
}

.testimonial-card .card__text {
	margin-top: 10px;
}

.testimonial-card__footer {
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}

.testimonial-card__name {
	color: var(--muted-2);
	font-weight: 800;
}

.icon-badge {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: rgb(var(--blue-rgb) / 0.1);
	border: 1px solid var(--border);
	color: rgba(11, 28, 44, 0.85);
}

.icon-badge svg {
	width: 22px;
	height: 22px;
}

.icon-badge .material-symbols-outlined {
	font-size: 22px;
}

/* Lists */
.bullets {
	margin-top: 10px;
	display: grid;
	gap: 6px;
	padding-left: 18px;
}

.bullets li {
	color: rgba(11, 28, 44, 0.78);
}

/* QR codes (Contact page) */
.qr-link {
	display: grid;
	place-items: center;
	margin-top: 14px;
	border-radius: 16px;
	outline: none;
}

.qr-link:focus-visible {
	outline: 3px solid rgb(var(--blue-rgb) / 0.35);
	outline-offset: 4px;
}

.qr-code {
	width: min(240px, 100%);
	aspect-ratio: 1 / 1;
	border-radius: 16px;
	border: 1px solid var(--border);
	background: rgb(var(--blue-rgb) / 0.04);
	padding: 10px;
}

body[data-page="contact"] .floating-whatsapp {
	display: none;
}

/* Forms */
.form {
	display: grid;
	gap: 12px;
}

.field {
	display: grid;
	gap: 6px;
}

.field label {
	font-weight: 800;
	color: rgba(11, 28, 44, 0.78);
}

.field input,
.field textarea,
.field select {
	width: 100%;
	padding: 12px 12px;
	border-radius: 14px;
	border: 1px solid rgba(11, 28, 44, 0.14);
	background: rgba(237, 246, 255, 0.8);
	font: inherit;
	color: var(--text);
	outline: none;
	transition:
		border-color var(--dur) var(--ease),
		box-shadow var(--dur) var(--ease);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
	border-color: rgb(var(--blue-rgb) / 0.55);
	box-shadow: 0 0 0 4px rgb(var(--blue-rgb) / 0.16);
}

.field [data-error] {
	min-height: 18px;
	color: rgba(170, 28, 28, 0.92);
	font-weight: 700;
	font-size: 0.92rem;
}

.has-error input,
.has-error textarea,
.has-error select {
	border-color: rgba(170, 28, 28, 0.55);
	box-shadow: 0 0 0 4px rgba(170, 28, 28, 0.12);
}

.form-note {
	color: var(--muted);
	font-weight: 700;
	margin: 6px 0 0;
}

.captcha-placeholder {
	border-radius: 16px;
	border: 1px dashed rgba(11, 28, 44, 0.28);
	background: rgba(237, 246, 255, 0.55);
	padding: 14px;
	color: rgba(11, 28, 44, 0.62);
	font-weight: 800;
}

/* Emergency sticky call button (mobile) */
.sticky-call {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 12px;
	background: rgba(237, 246, 255, 0.88);
	backdrop-filter: blur(10px);
	border-top: 1px solid rgba(11, 28, 44, 0.12);
	z-index: 9998;
}

/* Cookie banner (sitewide via footer fragment) */
.cookie-banner {
	position: fixed;
	left: 12px;
	right: 12px;
	bottom: 12px;
	z-index: 10000;
	border-radius: 18px;
	border: 1px solid rgba(11, 28, 44, 0.12);
	background: rgba(237, 246, 255, 0.92);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow-md);
	padding: 12px;
	opacity: 0;
	transform: translateY(10px);
	animation: floatIn 520ms var(--ease) forwards;
}

.cookie-banner__inner {
	width: min(var(--container), calc(100% - 12px * 2));
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.cookie-banner__text {
	margin: 0;
	color: rgba(11, 28, 44, 0.82);
	font-weight: 800;
}

@media (max-width: 979px) {
	.cookie-banner {
		bottom: 78px;
	}
}

.sticky-call__inner {
	width: min(var(--container), calc(100% - var(--gutter) * 2));
	margin-inline: auto;
}

/* Floating WhatsApp button (sitewide via footer fragment) */
.floating-whatsapp {
	position: fixed;
	right: 16px;
	bottom: 86px;
	z-index: 9999;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 999px;
	border: 1px solid rgb(var(--green-rgb) / 0.28);
	background: rgba(237, 246, 255, 0.92);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow-md);
	color: rgba(11, 28, 44, 0.84);
	font-weight: 900;
	letter-spacing: 0.2px;
	opacity: 0;
	transform: translateY(10px);
	animation: floatIn 560ms var(--ease) forwards;
	animation-delay: 320ms;
	transition:
		transform var(--dur-fast) var(--ease),
		box-shadow var(--dur) var(--ease),
		background var(--dur) var(--ease);
}

/* Floating scroll-to-top button (sitewide via footer fragment) */
.floating-scroll-top {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 9999;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	border: 1px solid rgb(var(--blue-rgb) / 0.22);
	background: rgba(237, 246, 255, 0.92);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow-md);
	color: rgba(11, 28, 44, 0.86);
	opacity: 0;
	transform: translateY(10px);
	animation: floatIn 560ms var(--ease) forwards;
	animation-delay: 420ms;
	transition:
		transform var(--dur-fast) var(--ease),
		box-shadow var(--dur) var(--ease),
		background var(--dur) var(--ease);
}

.floating-scroll-top:hover {
	transform: translateY(-1px);
	background: rgba(237, 246, 255, 0.98);
	box-shadow: var(--shadow-glow);
}

.floating-scroll-top:focus-visible {
	outline: 3px solid rgb(var(--blue-rgb) / 0.35);
	outline-offset: 3px;
}

.floating-scroll-top__icon {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	background: rgb(var(--blue-rgb) / 0.12);
	border: 1px solid rgb(var(--blue-rgb) / 0.22);
}

.floating-scroll-top__icon .material-symbols-outlined {
	font-size: 18px;
}

@keyframes floatIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

@media (prefers-reduced-motion: reduce) {
	.floating-whatsapp {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.cookie-banner {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.floating-scroll-top {
		animation: none;
		opacity: 1;
		transform: none;
	}
}

.floating-whatsapp:hover {
	transform: translateY(-1px);
	background: rgba(237, 246, 255, 0.98);
	box-shadow: 0 20px 70px rgb(var(--green-rgb) / 0.2);
}

.floating-whatsapp:focus-visible {
	outline: 3px solid rgb(var(--green-rgb) / 0.35);
	outline-offset: 3px;
}

.floating-whatsapp__icon {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	background: rgb(var(--green-rgb) / 0.14);
	border: 1px solid rgb(var(--green-rgb) / 0.25);
	color: rgba(11, 28, 44, 0.82);
	font-size: 0.85rem;
}

.floating-whatsapp__icon .material-symbols-outlined {
	font-size: 18px;
}

@media (max-width: 520px) {
	.floating-whatsapp__text {
		display: none;
	}
}

@media (min-width: 980px) {
	.grid--2 {
		grid-template-columns: repeat(2, 1fr);
	}
	.grid--3 {
		grid-template-columns: repeat(3, 1fr);
	}
	.sticky-call {
		display: none;
	}
}

/* Reveal animation (JS toggles .is-visible) */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity var(--dur-slow) var(--ease),
		transform var(--dur-slow) var(--ease);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* HERO */
.hero {
	position: relative;
	padding: 110px 0 54px;
	overflow: hidden;
	isolation: isolate;
	background:
		linear-gradient(
			90deg,
			rgba(237, 246, 255, 0.96) 0%,
			rgba(237, 246, 255, 0.9) 46%,
			rgba(237, 246, 255, 0.66) 100%
		),
		url("../assets/images/Knight-and-day-hero.svg");
	background:
		linear-gradient(
			90deg,
			rgba(237, 246, 255, 0.96) 0%,
			rgba(237, 246, 255, 0.9) 46%,
			rgba(237, 246, 255, 0.66) 100%
		),
		image-set(
			url("../assets/images/Knight-and-day-hero.webp") type("image/webp"),
			url("../assets/images/Knight-and-day-hero.svg") type("image/svg+xml")
		);
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
}

.hero::before,
.hero::after {
	content: "";
	position: absolute;
	inset: -40% -20% auto -20%;
	height: 520px;
	background:
		radial-gradient(closest-side, rgb(var(--blue-rgb) / 0.24), transparent 70%),
		radial-gradient(closest-side, rgb(var(--green-rgb) / 0.18), transparent 70%);
	filter: blur(10px);
	transform: translate3d(0, 0, 0);
	animation: waterDrift 10s linear infinite;
	pointer-events: none;
	z-index: -1;
}

.hero::after {
	inset: auto -30% -45% -30%;
	height: 620px;
	opacity: 0.85;
	animation-duration: 14s;
	animation-direction: reverse;
}

/* Reduce CLS risk on mobile by disabling drift animation */
@media (max-width: 980px) {
	.hero::before,
	.hero::after {
		animation: none;
	}
}

@keyframes waterDrift {
	0% {
		transform: translateX(-2%) translateY(0);
	}
	50% {
		transform: translateX(2%) translateY(1.5%);
	}
	100% {
		transform: translateX(-2%) translateY(0);
	}
}

.hero__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 34px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero__kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(237, 246, 255, 0.78);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
	color: var(--muted);
	font-weight: 600;
	font-size: 0.95rem;
}

.hero__title {
	font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	margin: 14px 0 0;
	font-size: clamp(2.1rem, 4.4vw, 3.4rem);
	line-height: 1.06;
	letter-spacing: -0.03em;
}

.hero__title-accent {
	display: block;
	margin-top: 10px;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero__subtext {
	margin-top: 14px;
	color: var(--muted);
	font-size: 1.08rem;
	max-width: 58ch;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.hero__meta {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
	align-items: center;
}

.meta-pill {
	padding: 10px 12px;
	border-radius: 14px;
	background: rgba(237, 246, 255, 0.74);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
}

.meta-pill__label {
	display: block;
	font-size: 0.78rem;
	color: var(--muted-2);
	font-weight: 600;
}

.meta-pill__value {
	display: block;
	font-weight: 700;
}

.hero__note {
	color: var(--muted-2);
	font-size: 0.9rem;
}



.pipe-visual {
	position: relative;
	border-radius: var(--radius);
	padding: 18px;
	background: rgba(237, 246, 255, 0.62);
	border: 1px solid rgba(11, 28, 44, 0.1);
	box-shadow: var(--shadow-md);
	overflow: hidden;
}

.pipe-visual__frame {
	position: relative;
	height: 340px;
	border-radius: var(--radius);
	background:
		radial-gradient(closest-side, rgb(var(--blue-rgb) / 0.12), transparent 65%),
		radial-gradient(closest-side, rgb(var(--green-rgb) / 0.12), transparent 65%),
		rgba(237, 246, 255, 0.6);
	border: 1px solid rgba(11, 28, 44, 0.12);
	overflow: hidden;
}

.pipe-visual__pipe {
	position: absolute;
	left: 10%;
	right: 10%;
	top: 46%;
	height: 64px;
	border-radius: 999px;
	background: rgba(11, 28, 44, 0.06);
	border: 1px solid rgba(11, 28, 44, 0.14);
	box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.5);
}

.pipe-visual__flow {
	position: absolute;
	inset: 12px;
	border-radius: 999px;
	background:
		linear-gradient(
			90deg,
			rgb(var(--blue-rgb) / 0),
			rgb(var(--blue-rgb) / 0.3),
			rgb(var(--green-rgb) / 0.28),
			rgb(var(--green-rgb) / 0)
		);
	background-size: 220% 100%;
	animation: flow 2.8s linear infinite;
}

@keyframes flow {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}

.pipe-visual__glow {
	position: absolute;
	inset: auto -30% -30% -30%;
	height: 240px;
	background: radial-gradient(closest-side, rgb(var(--blue-rgb) / 0.24), transparent 70%);
	filter: blur(18px);
	opacity: 0.85;
	pointer-events: none;
}

.float-icon {
	position: absolute;
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	border-radius: 16px;
	background: rgba(237, 246, 255, 0.72);
	border: 1px solid rgba(11, 28, 44, 0.12);
	box-shadow: var(--shadow-sm);
	color: var(--blue);
	animation: float 6s var(--ease) infinite;
}

.float-icon svg {
	width: 26px;
	height: 26px;
}

.float-icon--drain {
	top: 14px;
	left: 16px;
	animation-duration: 6.2s;
}

.float-icon--pipe {
	top: 18px;
	right: 14px;
	animation-duration: 7.4s;
	color: var(--green);
}

.float-icon--drop {
	bottom: 18px;
	left: 18px;
	animation-duration: 8s;
	color: var(--blue);
}

.float-icon--wrench {
	bottom: 20px;
	right: 18px;
	animation-duration: 6.8s;
	color: var(--navy);
}

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

/* TRUST BAR */
.trust-bar {
	padding: 18px 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: linear-gradient(120deg, rgb(var(--blue-rgb) / 0.08), rgb(var(--green-rgb) / 0.05));
}

.trust-bar__inner {
	display: grid;
	gap: 12px;
}

.trust-bar__title {
	font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.trust-badges {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.trust-badge {
	list-style: none;
	position: relative;
	padding: 10px 12px 10px 38px;
	border-radius: 999px;
	background: rgba(237, 246, 255, 0.72);
	border: 1px solid var(--border);
	color: var(--muted);
	font-weight: 600;
}

.trust-badge::before {
	content: "✓";
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: rgb(var(--green-rgb) / 0.16);
	color: var(--green);
	font-weight: 900;
}

/* SERVICES */
.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.service-card {
	display: block;
	padding: 18px;
	border-radius: var(--radius);
	background: var(--card);
	border: 1px solid rgba(11, 28, 44, 0.12);
	box-shadow: var(--shadow-sm);
	transition:
		transform var(--dur) var(--ease),
		box-shadow var(--dur) var(--ease),
		border-color var(--dur) var(--ease);
}

.service-card--link {
	color: inherit;
	text-decoration: none;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
	border-color: rgb(var(--blue-rgb) / 0.24);
}

.service-card:focus-visible {
	outline: 3px solid rgb(var(--blue-rgb) / 0.35);
	outline-offset: 3px;
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
	border-color: rgb(var(--blue-rgb) / 0.24);
}

.service-card__icon {
	width: 46px;
	height: 46px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	background: rgb(var(--blue-rgb) / 0.12);
	color: var(--blue);
	margin-bottom: 12px;
}

.service-card__icon svg {
	width: 24px;
	height: 24px;
}

.service-card__title {
	margin: 0;
	font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.service-card__text {
	margin-top: 6px;
	color: var(--muted);
}

/* ABOUT */
.about {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	align-items: center;
}

.about__media {
	padding: 12px;
	border-radius: var(--radius);
	background: rgba(237, 246, 255, 0.72);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
}

.about__img {
	display: block;
	width: 100%;
	height: 320px;
	border-radius: var(--radius);
	border: 1px solid rgba(11, 28, 44, 0.12);
	background:
		radial-gradient(closest-side, rgb(var(--green-rgb) / 0.14), transparent 60%),
		radial-gradient(closest-side, rgb(var(--blue-rgb) / 0.14), transparent 60%),
		linear-gradient(120deg, rgba(237, 246, 255, 0.75), rgba(237, 246, 255, 0.4));
	object-fit: cover;
	object-position: center;
	padding: 0;
}

.about__img--contain {
	object-fit: contain;
}

.about__img--tall {
	height: clamp(360px, 40vw, 520px);
}

.media-placeholder {
	height: 320px;
	border-radius: var(--radius);
	border: 1px solid rgba(11, 28, 44, 0.12);
	background:
		radial-gradient(closest-side, rgba(25, 179, 107, 0.14), transparent 60%),
		radial-gradient(closest-side, rgba(15, 110, 220, 0.14), transparent 60%),
		linear-gradient(120deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.35));
	position: relative;
	overflow: hidden;
}

.media-placeholder::before {
	content: "";
	position: absolute;
	inset: -40%;
	background:
		repeating-linear-gradient(
			90deg,
			rgba(11, 28, 44, 0.06) 0,
			rgba(11, 28, 44, 0.06) 1px,
			transparent 1px,
			transparent 14px
		);
	transform: rotate(10deg);
	opacity: 0.35;
}

.media-caption {
	margin-top: 10px;
	color: var(--muted);
	font-weight: 600;
}

.checklist {
	margin-top: 14px;
	display: grid;
	gap: 10px;
}

.checklist li {
	list-style: none;
	position: relative;
	padding-left: 36px;
	font-weight: 600;
	color: var(--muted);
}

.checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: rgb(var(--green-rgb) / 0.16);
	color: var(--green);
	display: grid;
	place-items: center;
	font-weight: 900;
}

.about__actions {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* EMERGENCY */
.emergency {
	padding: 70px 0;
	background: var(--navy);
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.emergency::before {
	content: "";
	position: absolute;
	inset: -30% -20% auto -20%;
	height: 520px;
	background: radial-gradient(closest-side, rgb(var(--blue-rgb) / 0.3), transparent 70%);
	filter: blur(22px);
	opacity: 0.9;
}

.emergency::after {
	content: "";
	position: absolute;
	inset: auto -30% -40% -30%;
	height: 620px;
	background: radial-gradient(closest-side, rgb(var(--green-rgb) / 0.22), transparent 70%);
	filter: blur(26px);
	opacity: 0.7;
}

.emergency__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	align-items: center;
}

.emergency__title {
	margin: 0;
	font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
	font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}

.emergency__text {
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.82);
	max-width: 62ch;
}

.emergency__cta {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.emergency__phone {
	display: grid;
}

.emergency__label {
	color: rgba(255, 255, 255, 0.75);
	font-weight: 600;
	font-size: 0.9rem;
}

.emergency__number {
	color: var(--white);
	font-weight: 800;
	font-size: 1.25rem;
	letter-spacing: 0.02em;
}

.emergency .btn--secondary {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.22);
	color: rgba(255, 255, 255, 0.92);
}

.emergency .btn--secondary:hover {
	background: rgba(255, 255, 255, 0.18);
	box-shadow: 0 16px 70px rgba(0, 0, 0, 0.18);
}

.badge-card {
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.06);
	padding: 18px;
	box-shadow: 0 20px 80px rgba(0, 0, 0, 0.24);
}

.badge-card__top {
	font-weight: 800;
	letter-spacing: 0.02em;
}

.badge-card__mid {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.8);
}

.badge-card__bottom {
	margin-top: 12px;
	font-weight: 700;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* PROCESS */
.process {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	position: relative;
}

.process::before {
	content: "";
	position: absolute;
	left: 26px;
	top: 34px;
	bottom: 34px;
	width: 2px;
	background: linear-gradient(180deg, rgb(var(--blue-rgb) / 0.55), rgb(var(--green-rgb) / 0.55));
	background-size: 100% 200%;
	animation: lineMove 2.4s linear infinite;
	opacity: 0.4;
}

@keyframes lineMove {
	0% {
		background-position: 0% 0%;
	}
	100% {
		background-position: 0% 100%;
	}
}

.process-step {
	list-style: none;
	padding: 18px 18px 18px 72px;
	border-radius: var(--radius);
	background: var(--card);
	border: 1px solid rgba(11, 28, 44, 0.12);
	box-shadow: var(--shadow-sm);
	position: relative;
}

.process-step__icon {
	position: absolute;
	left: 14px;
	top: 18px;
	width: 44px;
	height: 44px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	background: rgb(var(--green-rgb) / 0.14);
	color: var(--green);
}

.process-step__icon svg {
	width: 22px;
	height: 22px;
}

.process-step__title {
	margin: 0;
	font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.process-step__text {
	margin-top: 6px;
	color: var(--muted);
}

/* TESTIMONIALS */
.testimonials {
	display: grid;
	gap: 26px;
	border-radius: var(--radius);
	border: 1px solid rgba(11, 28, 44, 0.12);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(236, 246, 255, 0.98)),
		radial-gradient(circle at top left, rgb(var(--green-rgb) / 0.08), transparent 38%),
		radial-gradient(circle at bottom right, rgb(var(--blue-rgb) / 0.12), transparent 44%);
	box-shadow: 0 22px 54px rgba(11, 28, 44, 0.12);
	padding: clamp(20px, 3vw, 32px);
}

.testimonials__intro {
	display: grid;
	gap: 12px;
	justify-items: center;
	text-align: center;
}

.testimonials__eyebrow {
	margin: 0;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgb(var(--blue-rgb) / 0.8);
}

.testimonials__headline {
	margin: 0;
	font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: clamp(1.45rem, 2.4vw, 2rem);
	line-height: 1.1;
	letter-spacing: -0.03em;
}

.testimonials__summary {
	margin: 0;
	color: var(--muted);
	max-width: 54ch;
}

.testimonials__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 110px;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid rgb(var(--blue-rgb) / 0.16);
	background: rgba(255, 255, 255, 0.9);
	font-weight: 800;
	letter-spacing: 0.14em;
	font-variant-numeric: tabular-nums;
	box-shadow: 0 10px 24px rgba(11, 28, 44, 0.08);
}

.testimonials__stage {
	display: grid;
	gap: 20px;
}

.testimonials__viewport {
	position: relative;
	max-width: 920px;
	width: 100%;
	margin: 0 auto;
	min-height: 360px;
	padding: 28px 22px 32px;
	perspective: 1200px;
}

.testimonials__viewport::before,
.testimonials__viewport::after {
	content: "";
	position: absolute;
	left: 50%;
	width: min(100%, 780px);
	border-radius: calc(var(--radius) + 6px);
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(11, 28, 44, 0.08);
	transform-origin: center top;
	pointer-events: none;
}

.testimonials__viewport::before {
	top: 18px;
	height: calc(100% - 52px);
	transform: translateX(-50%) scale(0.98);
	box-shadow: 0 18px 44px rgba(11, 28, 44, 0.08);
}

.testimonials__viewport::after {
	top: 34px;
	height: calc(100% - 82px);
	transform: translateX(-50%) scale(0.95);
	background: rgba(226, 239, 249, 0.82);
	box-shadow: 0 14px 34px rgba(11, 28, 44, 0.06);
}

.testimonials__track {
	position: relative;
	min-height: inherit;
	z-index: 1;
}

.testimonial {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: grid;
	align-content: start;
	gap: 10px;
	padding: clamp(22px, 3vw, 34px);
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 251, 255, 0.96));
	border: 1px solid rgba(11, 28, 44, 0.12);
	overflow: hidden;
	box-shadow: 0 28px 72px rgba(11, 28, 44, 0.14);
	opacity: 0;
	pointer-events: none;
	transform: translate3d(0, 24px, 0) scale(0.98);
	transform-origin: center center;
	transition:
		opacity 360ms var(--ease),
		transform 420ms var(--ease),
		box-shadow 360ms var(--ease),
		filter 360ms var(--ease);
	filter: blur(6px);
	will-change: transform, opacity, filter;
}

.testimonial > * {
	position: relative;
	z-index: 1;
}

.testimonial::before {
	content: "“";
	position: absolute;
	right: 18px;
	top: 14px;
	font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 92px;
	line-height: 1;
	color: rgb(var(--blue-rgb) / 0.1);
	pointer-events: none;
	z-index: 0;
}

.testimonial__title {
	margin: 8px 0 0;
	font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 800;
	letter-spacing: -0.02em;
	padding-right: 54px;
	font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.testimonial.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: translate3d(0, 0, 0) scale(1);
	box-shadow: 0 34px 84px rgba(11, 28, 44, 0.16);
	filter: none;
	z-index: 3;
}

.testimonial.is-prev,
.testimonial.is-next {
	opacity: 0;
	transform: translate3d(0, 18px, 0) scale(0.97);
	filter: blur(6px);
	z-index: 1;
}

.testimonial.is-prev {
	transform: translate3d(-12px, 18px, 0) scale(0.975);
}

.testimonial.is-next {
	transform: translate3d(12px, 18px, 0) scale(0.975);
}

.testimonial.is-hidden {
	transform: translate3d(0, 26px, 0) scale(0.97);
	z-index: 1;
}

.testimonials.is-animating .testimonial {
	transition: none;
}

.testimonial.is-shuffle-from,
.testimonial.is-shuffle-to {
	opacity: 1;
	filter: none;
	pointer-events: none;
	backface-visibility: hidden;
}

.testimonial.is-shuffle-from {
	z-index: 5;
	animation-duration: 560ms;
	animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
	animation-fill-mode: both;
}

.testimonial.is-shuffle-to {
	z-index: 4;
	animation-duration: 560ms;
	animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
	animation-fill-mode: both;
}

.testimonial.is-shuffle-from-next {
	animation-name: testimonialShuffleOutNext;
}

.testimonial.is-shuffle-from-prev {
	animation-name: testimonialShuffleOutPrev;
}

.testimonial.is-shuffle-to-next {
	animation-name: testimonialShuffleInNext;
}

.testimonial.is-shuffle-to-prev {
	animation-name: testimonialShuffleInPrev;
}

@keyframes testimonialShuffleOutNext {
	0% {
		opacity: 1;
		transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
		box-shadow: 0 34px 84px rgba(11, 28, 44, 0.16);
	}
	36% {
		opacity: 1;
		transform: translate3d(28px, -18px, 0) rotate(6deg) scale(0.985);
	}
	100% {
		opacity: 0;
		transform: translate3d(-130px, 46px, 0) rotate(-11deg) scale(0.9);
		box-shadow: 0 14px 30px rgba(11, 28, 44, 0.08);
	}
}

@keyframes testimonialShuffleOutPrev {
	0% {
		opacity: 1;
		transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
		box-shadow: 0 34px 84px rgba(11, 28, 44, 0.16);
	}
	36% {
		opacity: 1;
		transform: translate3d(-28px, -18px, 0) rotate(-6deg) scale(0.985);
	}
	100% {
		opacity: 0;
		transform: translate3d(130px, 46px, 0) rotate(11deg) scale(0.9);
		box-shadow: 0 14px 30px rgba(11, 28, 44, 0.08);
	}
}

@keyframes testimonialShuffleInNext {
	0% {
		opacity: 0;
		transform: translate3d(66px, 36px, 0) rotate(9deg) scale(0.9);
		box-shadow: 0 14px 30px rgba(11, 28, 44, 0.08);
	}
	48% {
		opacity: 0.92;
		transform: translate3d(-18px, 10px, 0) rotate(-3deg) scale(0.985);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
		box-shadow: 0 34px 84px rgba(11, 28, 44, 0.16);
	}
}

@keyframes testimonialShuffleInPrev {
	0% {
		opacity: 0;
		transform: translate3d(-66px, 36px, 0) rotate(-9deg) scale(0.9);
		box-shadow: 0 14px 30px rgba(11, 28, 44, 0.08);
	}
	48% {
		opacity: 0.92;
		transform: translate3d(18px, 10px, 0) rotate(3deg) scale(0.985);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
		box-shadow: 0 34px 84px rgba(11, 28, 44, 0.16);
	}
}

.stars {
	color: var(--green);
	font-weight: 900;
	letter-spacing: 0.12em;
}

.testimonial__text {
	margin-top: 12px;
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.8;
}

.testimonial__name {
	margin-top: 10px;
	font-weight: 800;
	color: rgb(var(--blue-rgb) / 0.86);
}

@media (prefers-reduced-motion: reduce) {
	.testimonials__viewport {
		transition: none;
	}
	.testimonials__track,
	.testimonial {
		transition: none;
		animation: none !important;
	}
}

.testimonials__status {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	padding: 12px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.74);
	border: 1px solid rgba(11, 28, 44, 0.08);
	box-shadow: 0 10px 20px rgba(11, 28, 44, 0.06);
}

.testimonials__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	max-width: 920px;
	width: 100%;
	margin: 0 auto;
}

.testimonials__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	border: 1px solid rgb(var(--blue-rgb) / 0.16);
	background: rgba(255, 255, 255, 0.94);
	color: var(--ink);
	box-shadow: 0 14px 28px rgba(11, 28, 44, 0.08);
	transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background-color 220ms var(--ease);
}

.testimonials__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 28px rgba(11, 28, 44, 0.12);
	background: rgba(255, 255, 255, 0.98);
}

.testimonials__btn:focus-visible {
	outline: 3px solid rgb(var(--blue-rgb) / 0.28);
	outline-offset: 2px;
}

.dot {
	appearance: none;
	border: 0;
	padding: 0;
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: rgba(11, 28, 44, 0.18);
	transition: transform 220ms var(--ease), background-color 220ms var(--ease), width 220ms var(--ease);
}

.dot.is-active {
	width: 28px;
	background: rgb(var(--blue-rgb) / 0.9);
}

.dot:focus-visible {
	outline: 3px solid rgb(var(--blue-rgb) / 0.28);
	outline-offset: 3px;
}

@media (max-width: 980px) {
	.testimonials__summary {
		max-width: none;
	}

	.testimonials__viewport {
		min-height: 420px;
		padding-inline: 14px;
	}
}

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

	.testimonials__viewport {
		min-height: 440px;
		padding: 12px 0 22px;
	}

	.testimonials__viewport::before {
		top: 10px;
		height: calc(100% - 36px);
	}

	.testimonials__viewport::after {
		top: 22px;
		height: calc(100% - 58px);
	}

	.testimonial {
		padding: 20px 18px;
	}

	.testimonial.is-prev,
	.testimonial.is-next {
		opacity: 0;
	}

	.testimonials__controls {
		gap: 8px;
	}

	.testimonials__status {
		max-width: 200px;
		padding: 10px 12px;
	}

	.testimonials__btn {
		width: 46px;
		height: 46px;
	}

	.dot.is-active {
		width: 22px;
	}

	.testimonial__title {
		padding-right: 34px;
	}

	.testimonial__text {
		font-size: 1rem;
		line-height: 1.7;
	}
}

/* OUR WORK: job carousel */
.work-carousel {
	position: relative;
	border-radius: var(--radius);
	border: 1px solid rgba(11, 28, 44, 0.12);
	background: rgba(237, 246, 255, 0.72);
	box-shadow: var(--shadow-md);
	padding: 12px;
}

.work-carousel__viewport {
	overflow: hidden;
}

.work-carousel__track {
	display: flex;
	gap: 14px;
	will-change: transform;
	transition: transform 520ms var(--ease);
}

.work-slide {
	flex: 0 0 100%;
	margin: 0;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(11, 28, 44, 0.12);
	overflow: hidden;
}

.work-slide img {
	width: 100%;
	height: min(56vh, 520px);
	object-fit: cover;
	background: rgba(255, 255, 255, 0.9);
}

.work-slide video {
	width: 100%;
	height: min(56vh, 520px);
	object-fit: cover;
	background: rgba(255, 255, 255, 0.9);
}

/* Compact carousel variant (used in service cards) */
.work-carousel--compact .work-slide img,
.work-carousel--compact .work-slide video {
	height: min(40vh, 360px);
}

.work-carousel__status {
	margin-top: 12px;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.work-carousel__btn {
	position: absolute;
	top: calc(12px + 50%);
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 14px;
	border: 1px solid rgba(11, 28, 44, 0.14);
	background: rgba(237, 246, 255, 0.92);
	display: grid;
	place-items: center;
	cursor: pointer;
	transition:
		transform var(--dur-fast) var(--ease),
		box-shadow var(--dur) var(--ease),
		background var(--dur) var(--ease);
	box-shadow: var(--shadow-sm);
}

.work-carousel__btn:hover {
	transform: translateY(-50%) scale(1.02);
	background: rgba(237, 246, 255, 0.98);
	box-shadow: var(--shadow-md);
}

.work-carousel__btn:focus-visible {
	outline: 3px solid rgb(var(--blue-rgb) / 0.35);
	outline-offset: 3px;
}

.work-carousel__btn--prev {
	left: 14px;
}

.work-carousel__btn--next {
	right: 14px;
}

.work-carousel__btn .material-symbols-outlined {
	font-size: 24px;
	color: rgba(11, 28, 44, 0.85);
}

.work-carousel__status .dot {
	border: 0;
	padding: 0;
	cursor: pointer;
}

/* MODAL (job details) */
.modal[hidden] {
	display: none;
}

.modal {
	position: fixed;
	inset: 0;
	padding: 18px;
	display: grid;
	place-items: center;
	background: rgb(var(--blue-rgb) / 0.18);
	backdrop-filter: blur(6px);
	z-index: 20000;
}

.modal__panel {
	width: min(920px, 100%);
	max-height: min(84vh, 860px);
	overflow: auto;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: rgba(237, 246, 255, 0.96);
	box-shadow: var(--shadow-md);
}

.modal__header {
	position: sticky;
	top: 0;
	background: rgba(237, 246, 255, 0.98);
	border-bottom: 1px solid var(--border);
	padding: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.modal__title {
	margin: 0;
	font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 800;
	letter-spacing: -0.02em;
	font-size: 1.25rem;
}

.modal__close {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	border: 1px solid var(--border);
	background: rgba(237, 246, 255, 0.88);
	display: grid;
	place-items: center;
	cursor: pointer;
	transition:
		transform var(--dur-fast) var(--ease),
		box-shadow var(--dur) var(--ease),
		background var(--dur) var(--ease);
}

.modal__close:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-sm);
	background: rgba(237, 246, 255, 1);
}

.modal__close:focus-visible {
	outline: 3px solid rgb(var(--blue-rgb) / 0.35);
	outline-offset: 3px;
}

.modal__close .material-symbols-outlined {
	font-size: 22px;
}

.modal__body {
	padding: 14px;
}

.job-modal__content {
	display: grid;
	gap: 12px;
}

/* AREA */
.area {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	align-items: center;
}

.area__list {
	margin-top: 12px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.area__list li {
	list-style: none;
	padding-left: 18px;
	position: relative;
	color: var(--muted);
	font-weight: 600;
}

.area__list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	color: rgb(var(--blue-rgb) / 0.95);
}

.area__note {
	margin-top: 12px;
	color: var(--muted);
}

.map-placeholder {
	height: 320px;
	border-radius: var(--radius);
	border: 1px solid rgba(11, 28, 44, 0.12);
	background:
		radial-gradient(closest-side, rgb(var(--blue-rgb) / 0.16), transparent 60%),
		radial-gradient(closest-side, rgb(var(--green-rgb) / 0.14), transparent 60%),
		linear-gradient(120deg, rgba(237, 246, 255, 0.75), rgba(237, 246, 255, 0.4));
	position: relative;
	overflow: hidden;
}

.map-placeholder::before {
	content: "";
	position: absolute;
	inset: -20%;
	background:
		repeating-linear-gradient(
			0deg,
			rgba(11, 28, 44, 0.06) 0,
			rgba(11, 28, 44, 0.06) 1px,
			transparent 1px,
			transparent 18px
		);
	opacity: 0.25;
}

.map-embed {
	width: 100%;
	height: 320px;
	border: 1px solid rgba(11, 28, 44, 0.12);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	background: rgba(237, 246, 255, 0.72);
}

.map-note {
	margin-top: 10px;
	color: var(--muted-2);
	font-weight: 600;
}

.map-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 14px;
	border: 1px solid rgba(11, 28, 44, 0.12);
	background: rgba(237, 246, 255, 0.72);
	transition:
		transform var(--dur-fast) var(--ease),
		box-shadow var(--dur) var(--ease),
		background var(--dur) var(--ease);
}

.map-link:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-sm);
	background: rgba(237, 246, 255, 0.9);
}

/* CONTACT */
.contact__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	align-items: start;
}

.contact-form {
	padding: 18px;
	border-radius: var(--radius);
	background: rgba(237, 246, 255, 0.78);
	border: 1px solid rgba(11, 28, 44, 0.12);
	box-shadow: var(--shadow-md);
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.field {
	display: grid;
	gap: 8px;
}

.field label {
	font-weight: 700;
	color: var(--muted);
}

.field input,
.field textarea {
	width: 100%;
	border-radius: 14px;
	border: 1px solid rgba(11, 28, 44, 0.16);
	background: rgba(255, 255, 255, 0.86);
	padding: 12px 14px;
	font: inherit;
	transition:
		box-shadow var(--dur) var(--ease),
		border-color var(--dur) var(--ease);
}

.field input:focus,
.field textarea:focus {
	outline: none;
	border-color: rgb(var(--blue-rgb) / 0.55);
	box-shadow: 0 0 0 4px rgb(var(--blue-rgb) / 0.16);
}

.form-note {
	color: var(--muted-2);
	font-size: 0.92rem;
	margin-top: -4px;
}

.contact-cards {
	display: grid;
	gap: 12px;
}

.contact-card {
	padding: 16px;
	border-radius: var(--radius);
	background: rgba(237, 246, 255, 0.76);
	border: 1px solid rgba(11, 28, 44, 0.12);
	box-shadow: var(--shadow-sm);
	display: grid;
	gap: 6px;
	transition:
		transform var(--dur) var(--ease),
		box-shadow var(--dur) var(--ease),
		border-color var(--dur) var(--ease);
}

.contact-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: rgb(var(--green-rgb) / 0.28);
}

.contact-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	background: rgb(var(--green-rgb) / 0.14);
	color: var(--green);
}

.contact-card__icon svg {
	width: 22px;
	height: 22px;
}

.contact-card__title {
	font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.contact-card__text {
	color: var(--muted);
	font-weight: 600;
	overflow-wrap: anywhere;
}

.contact-assurance {
	padding: 16px;
	border-radius: var(--radius);
	border: 1px solid rgba(11, 28, 44, 0.12);
	background: linear-gradient(120deg, rgb(var(--blue-rgb) / 0.06), rgba(11, 28, 44, 0.02));
}

.contact-assurance__title {
	font-weight: 800;
	letter-spacing: -0.01em;
}

.mini-checklist {
	margin-top: 10px;
	display: grid;
	gap: 10px;
}

.mini-checklist li {
	list-style: none;
	padding-left: 28px;
	position: relative;
	color: var(--muted);
	font-weight: 600;
}

.mini-checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: rgba(15, 110, 220, 0.12);
	color: var(--blue);
	display: grid;
	place-items: center;
	font-weight: 900;
}

/* Responsive */
@media (min-width: 760px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.about {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 24px;
	}

	.area {
		grid-template-columns: 0.95fr 1.05fr;
		gap: 24px;
	}

	.contact__grid {
		grid-template-columns: 1.25fr 0.75fr;
		gap: 18px;
	}
}

@media (min-width: 980px) {
	.hero__inner {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.trust-bar__inner {
		grid-template-columns: 1fr auto;
		align-items: center;
	}

	.trust-badges {
		justify-content: flex-end;
	}

	.emergency__inner {
		grid-template-columns: 1.25fr 0.75fr;
		gap: 24px;
	}

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

	.process::before {
		left: 0;
		right: 0;
		top: 44px;
		bottom: auto;
		height: 2px;
		width: auto;
	}

	.process-step {
		padding: 18px;
		padding-top: 74px;
	}

	.process-step__icon {
		left: 18px;
		top: 18px;
	}

	.testimonial {
		flex-basis: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.reveal,
	.testimonials__track,
	.btn,
	.hero::before,
	.hero::after,
	.pipe-visual__flow,
	.float-icon,
	.process::before,
	.btn__icon--pulse::after {
		animation: none !important;
		transition: none !important;
	}
}

