/* Xtra Čisto 021 - main stylesheet */

:root {
	--xc-ink: #0b1220;
	--xc-navy: #102a43;
	--xc-navy-deep: #07111f;
	--xc-blue: #0096e6;
	--xc-blue-deep: #0066c8;
	--xc-lime: #7cff2e;
	--xc-lime-deep: #4ad000;
	--xc-mist: #e8f4fc;
	--xc-paper: #f5fafe;
	--xc-white: #ffffff;
	--xc-muted: #5b6b7c;
	--xc-line: rgba(16, 42, 67, 0.12);

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

	--xc-header-h: 5.5rem;
	--xc-radius: 0.5rem;
	--xc-shadow: 0 18px 50px rgba(7, 17, 31, 0.12);
	--xc-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--xc-max: 1180px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--xc-font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--xc-ink);
	background:
		radial-gradient(1200px 600px at 90% -10%, rgba(0, 150, 230, 0.12), transparent 60%),
		radial-gradient(900px 500px at -10% 20%, rgba(124, 255, 46, 0.08), transparent 55%),
		linear-gradient(180deg, #eef7fd 0%, var(--xc-paper) 42%, #f7fbff 100%);
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--xc-blue-deep);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
	transition: color 0.2s var(--xc-ease);
}

a:hover {
	color: var(--xc-blue);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--xc-font-display);
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 0.6em;
	text-wrap: balance;
}

p {
	margin: 0 0 1em;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 10000;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0.75rem 1rem;
	clip: auto;
	overflow: visible;
	background: var(--xc-ink);
	color: var(--xc-white);
	border-radius: var(--xc-radius);
}

/* --- Header --- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	height: var(--xc-header-h);
	background: #ffffff;
	border-bottom: 1px solid rgba(16, 42, 67, 0.08);
	transition: box-shadow 0.3s var(--xc-ease);
}

.site-header.is-scrolled {
	box-shadow: 0 8px 28px rgba(7, 17, 31, 0.06);
}

.site-header__inner {
	max-width: var(--xc-max);
	margin: 0 auto;
	padding: 0 1.25rem;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.site-branding .custom-logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.site-branding .custom-logo {
	display: block;
	width: auto !important;
	height: 68px !important;
	max-height: 68px;
	max-width: min(220px, 42vw);
	object-fit: contain;
}

.site-title {
	font-family: var(--xc-font-display);
	font-weight: 800;
	font-size: 1.25rem;
	color: var(--xc-ink);
	text-decoration: none;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 0.25rem 1.25rem;
}

.menu a {
	font-family: var(--xc-font-display);
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--xc-navy);
	text-decoration: none;
	padding: 0.35rem 0;
	position: relative;
}

.menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--xc-blue), var(--xc-lime));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s var(--xc-ease);
}

.menu a:hover::after,
.menu .current-menu-item > a::after,
.menu .current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.menu > .menu-item-has-children {
	position: relative;
}

.menu > .menu-item-has-children::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 0.55rem;
}

.menu > .menu-item-has-children > a {
	padding-right: 1.05rem;
}

.menu > .menu-item-has-children > a::before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 0.4rem;
	height: 0.4rem;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-65%) rotate(45deg);
	opacity: 0.55;
}

.menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0.55rem;
	position: absolute;
	top: calc(100% + 0.55rem);
	left: 0;
	min-width: 15.5rem;
	display: block;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(0.35rem);
	background: #fff;
	border: 1px solid rgba(16, 42, 67, 0.08);
	border-radius: var(--xc-radius);
	box-shadow: 0 18px 44px rgba(7, 17, 31, 0.12);
	z-index: 1200;
	transition: opacity 0.2s var(--xc-ease), transform 0.2s var(--xc-ease), visibility 0.2s;
}

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

.menu .sub-menu a {
	display: block;
	padding: 0.7rem 0.85rem;
	border-radius: calc(var(--xc-radius) - 2px);
	white-space: normal;
	line-height: 1.35;
}

.menu .sub-menu a::after {
	display: none;
}

.menu .sub-menu a:hover,
.menu .sub-menu .current-menu-item > a {
	background: rgba(0, 150, 230, 0.08);
	color: var(--xc-blue-deep);
}

.submenu-toggle {
	display: none;
}

.nav-toggle {
	display: none;
	width: 2.75rem;
	height: 2.75rem;
	border: 1px solid var(--xc-line);
	border-radius: var(--xc-radius);
	background: var(--xc-white);
	cursor: pointer;
	padding: 0;
	align-items: center;
	justify-content: center;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
	display: block;
	width: 1.15rem;
	height: 2px;
	background: var(--xc-ink);
	border-radius: 2px;
	position: relative;
	transition: transform 0.25s var(--xc-ease), opacity 0.2s;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
	background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
	top: 0;
	transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
	top: 0;
	transform: rotate(-45deg);
}

/* --- Buttons --- */
.btn,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--xc-font-display);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1;
	padding: 0.95rem 1.45rem;
	border-radius: var(--xc-radius);
	border: none;
	cursor: pointer;
	text-decoration: none !important;
	background: var(--xc-lime);
	color: var(--xc-ink) !important;
	box-shadow: 0 10px 28px rgba(74, 208, 0, 0.28);
	transition: transform 0.2s var(--xc-ease), box-shadow 0.2s var(--xc-ease), background 0.2s;
}

.btn:hover,
.wp-block-button__link:hover {
	background: #8dff4a;
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(74, 208, 0, 0.35);
	color: var(--xc-ink) !important;
}

.btn--ghost,
.wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent;
	color: var(--xc-white) !important;
	border: 1.5px solid rgba(255, 255, 255, 0.55);
	box-shadow: none;
}

.btn--ghost:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--xc-lime);
	color: var(--xc-white) !important;
	transform: translateY(-2px);
	box-shadow: none;
}

.btn--header {
	padding: 0.7rem 1.1rem;
	font-size: 0.9rem;
	box-shadow: none;
}

.btn--footer {
	padding: 1.05rem 1.6rem;
	white-space: nowrap;
	box-shadow: 0 12px 36px rgba(74, 208, 0, 0.32);
}

.btn--blue {
	background: var(--xc-blue);
	color: var(--xc-white) !important;
	box-shadow: 0 10px 28px rgba(0, 150, 230, 0.3);
}

.btn--blue:hover {
	background: #1aa5ef;
	color: var(--xc-white) !important;
}

/* --- Layout --- */
.site-main {
	min-height: 50vh;
}

.content-wrap {
	max-width: var(--xc-max);
	margin: 0 auto;
	padding: 3rem 1.25rem 5rem;
}

.content-wrap--narrow {
	max-width: 40rem;
	text-align: center;
}

.content-wrap--flush {
	padding: 0;
	max-width: none;
}

.entry__content--front > *:not(.alignfull) {
	max-width: var(--xc-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.entry__content--front > .alignwide {
	max-width: var(--xc-max);
}

.entry__content--front > .alignfull {
	max-width: none;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}

.entry__header {
	margin-bottom: 1.75rem;
}

.entry__title {
	font-size: clamp(2rem, 4vw, 3rem);
}

.entry__meta {
	color: var(--xc-muted);
	font-size: 0.95rem;
}

.entry__thumb {
	margin: 0 0 2rem;
	border-radius: 1rem;
	overflow: hidden;
}

.entry__content > *:first-child {
	margin-top: 0;
}

/* --- Blog article body --- */
.content-wrap.entry__wrap {
	max-width: 46rem;
}

.entry__content h2 {
	margin-top: 2.75rem;
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	letter-spacing: -0.025em;
	color: var(--xc-ink);
}

.entry__content h2:first-child {
	margin-top: 0;
}

.entry__content h3 {
	margin-top: 2rem;
	font-size: 1.2rem;
	color: var(--xc-ink);
}

.entry__content p {
	color: var(--xc-ink);
	font-size: 1.06rem;
	line-height: 1.8;
}

.entry__content > ul.xc-check-list {
	margin: 1.5rem 0 2rem;
}

.entry__content strong {
	color: var(--xc-navy);
}

.entry__callout {
	margin: 1.85rem 0;
	padding: 1.15rem 1.4rem;
	background: var(--xc-mist);
	border-left: 4px solid var(--xc-blue);
	border-radius: 0.65rem;
	font-family: var(--xc-font-display);
	font-weight: 600;
	font-size: 1.04rem;
	letter-spacing: -0.01em;
	color: var(--xc-blue-deep);
}

/* --- Inner page hero --- */
.page-hero--inner {
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.94), rgba(16, 42, 67, 0.9)),
		radial-gradient(800px 400px at 80% 0%, rgba(0, 150, 230, 0.35), transparent 60%),
		url("/wp-content/uploads/2026/08/xtra-cisto-021.webp") center / cover no-repeat;
	color: var(--xc-white);
	padding: clamp(3.5rem, 7vw, 5rem) 1.25rem clamp(3rem, 5vw, 4rem);
}

.page-hero__inner {
	max-width: var(--xc-max);
	margin: 0 auto;
}

.page-hero__title {
	margin: 0;
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	color: var(--xc-white);
	letter-spacing: -0.03em;
	max-width: 18ch;
}

.page-hero__lead {
	margin: 1rem 0 0;
	max-width: 38rem;
	font-size: 1.1rem;
	line-height: 1.65;
	color: rgba(232, 244, 252, 0.82);
}

.page-hero .xc-kicker {
	margin-bottom: 0.9rem;
}

/* --- Pattern: Hero --- */
.xc-hero {
	position: relative;
	min-height: min(90vh, 760px);
	display: grid;
	align-items: center;
	overflow: hidden;
	color: var(--xc-white);
	background: #050b16;
}

.xc-hero__media {
	position: absolute;
	inset: 0 0 0 auto;
	width: min(62%, 820px);
	z-index: 0;
	pointer-events: none;
}

.xc-hero__media-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 58% center;
	-webkit-mask-image: linear-gradient(
		to right,
		transparent 0%,
		rgba(0, 0, 0, 0.25) 12%,
		rgba(0, 0, 0, 0.7) 28%,
		#000 48%,
		#000 100%
	);
	mask-image: linear-gradient(
		to right,
		transparent 0%,
		rgba(0, 0, 0, 0.25) 12%,
		rgba(0, 0, 0, 0.7) 28%,
		#000 48%,
		#000 100%
	);
}

.xc-hero__media-fade {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		#050b16 0%,
		rgba(5, 11, 22, 0.75) 14%,
		rgba(5, 11, 22, 0.35) 30%,
		rgba(5, 11, 22, 0.08) 46%,
		transparent 62%
	);
	pointer-events: none;
}

.xc-hero__atmosphere {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		radial-gradient(ellipse 45% 55% at 18% 70%, rgba(0, 150, 230, 0.1), transparent 70%),
		radial-gradient(ellipse 35% 40% at 28% 18%, rgba(124, 255, 46, 0.05), transparent 65%);
}

.xc-hero__inner {
	position: relative;
	z-index: 2;
	max-width: var(--xc-max);
	width: 100%;
	margin: 0 auto;
	padding: 6.5rem 1.25rem 4.5rem;
	display: flex;
	align-items: center;
	min-height: inherit;
}

.xc-hero__copy {
	max-width: 34rem;
}

.xc-hero__brand-text {
	margin: 0 0 0.85rem !important;
	font-family: var(--xc-font-display);
	font-weight: 800;
	font-size: clamp(1.85rem, 3.8vw, 2.65rem);
	letter-spacing: -0.03em;
	line-height: 1.05;
	color: #fff !important;
	opacity: 0;
	transform: translateY(18px);
	animation: xc-rise 0.9s var(--xc-ease) 0.08s forwards;
}

.xc-hero__brand-text span {
	color: var(--xc-lime);
}

.xc-hero__tagline {
	margin: 0 0 1.1rem !important;
	font-family: var(--xc-font-display);
	font-weight: 700;
	font-size: 0.86rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--xc-blue) !important;
	opacity: 0;
	transform: translateY(18px);
	animation: xc-rise 0.9s var(--xc-ease) 0.2s forwards;
}

.xc-hero__copy h1 {
	margin: 0 0 0.85rem;
	font-size: clamp(1.85rem, 4vw, 3rem);
	color: var(--xc-white);
	opacity: 0;
	transform: translateY(18px);
	animation: xc-rise 0.9s var(--xc-ease) 0.32s forwards;
}

.xc-hero__copy > p:not(.xc-hero__tagline):not(.xc-hero__brand-text) {
	max-width: 32rem;
	margin: 0 0 1.75rem;
	font-size: 1.1rem;
	color: rgba(232, 244, 252, 0.86);
	opacity: 0;
	transform: translateY(18px);
	animation: xc-rise 0.9s var(--xc-ease) 0.44s forwards;
}

.xc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	opacity: 0;
	transform: translateY(18px);
	animation: xc-rise 0.9s var(--xc-ease) 0.56s forwards;
}

@media (max-width: 860px) {
	.xc-hero {
		min-height: auto;
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}

	.xc-hero__media {
		position: relative;
		width: 100%;
		height: min(56vw, 340px);
		inset: auto;
	}

	.xc-hero__media-img {
		-webkit-mask-image: none;
		mask-image: none;
		object-position: 55% center;
	}

	.xc-hero__media-fade {
		background: linear-gradient(
			180deg,
			rgba(5, 11, 22, 0.2) 0%,
			transparent 28%,
			transparent 55%,
			rgba(5, 11, 22, 0.8) 86%,
			#050b16 100%
		);
	}

	.xc-hero__inner {
		padding: 2rem 1.25rem 3.25rem;
		min-height: 0;
		background: #050b16;
	}

	.xc-hero__copy {
		max-width: none;
	}
}

/* --- Pattern: Section --- */
.xc-section {
	padding: clamp(4.5rem, 8vw, 7rem) 1.25rem;
}

.xc-section--mist {
	background:
		radial-gradient(900px 420px at 100% 0%, rgba(0, 150, 230, 0.08), transparent 55%),
		linear-gradient(180deg, #eef6fc 0%, #f5fafe 48%, #f8fbfe 100%);
}

.xc-section__inner {
	max-width: var(--xc-max);
	margin: 0 auto;
}

.xc-section__intro {
	max-width: 40rem;
	margin-bottom: 2.75rem;
}

.xc-section__intro--wide {
	max-width: 44rem;
}

.xc-section__intro h2 {
	font-size: clamp(1.9rem, 3.6vw, 2.85rem);
	margin-bottom: 0.75rem;
	letter-spacing: -0.03em;
}

.xc-section__intro p:not(.xc-kicker) {
	color: var(--xc-muted);
	font-size: 1.08rem;
	margin: 0;
	line-height: 1.7;
}

.xc-kicker {
	display: inline-block;
	margin: 0 0 0.85rem;
	font-family: var(--xc-font-display);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--xc-blue);
}

.xc-kicker--on-dark {
	color: var(--xc-blue);
}

.xc-section__link {
	margin-top: 2.5rem;
}

.xc-section__link .btn {
	box-shadow: 0 10px 28px rgba(0, 150, 230, 0.28);
}

/* About */
.xc-about__inner {
	display: grid;
	gap: 3rem;
	align-items: start;
}

@media (min-width: 900px) {
	.xc-about__inner {
		grid-template-columns: 1.35fr 0.85fr;
		gap: 4.5rem;
	}
}

.xc-about__copy h2 {
	font-size: clamp(1.95rem, 3.8vw, 3rem);
	letter-spacing: -0.035em;
	margin-bottom: 1.15rem;
	max-width: 16ch;
}

.xc-about__lead {
	font-size: 1.18rem;
	line-height: 1.7;
	color: var(--xc-ink);
	margin: 0 0 1rem;
	max-width: 38rem;
}

.xc-about__copy > p:not(.xc-kicker):not(.xc-about__lead):not(.xc-about__territory):not(.xc-about__motto) {
	margin: 0 0 1rem;
	color: var(--xc-muted);
	font-size: 1.05rem;
	max-width: 34rem;
	line-height: 1.7;
}

.xc-about__copy > p:not(.xc-kicker):not(.xc-about__lead):not(.xc-about__territory):not(.xc-about__motto):last-of-type {
	margin-bottom: 0;
}

.xc-about__motto {
	margin: 0;
	max-width: 34rem;
	font-family: var(--xc-font-display);
	font-size: 1.08rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--xc-blue-deep);
}

.xc-about__territory {
	display: grid;
	gap: 0.35rem;
	margin: 1.75rem 0 0;
	padding-top: 1.35rem;
	border-top: 1px solid var(--xc-line);
	max-width: 34rem;
}

.xc-about__territory-label {
	font-family: var(--xc-font-display);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--xc-blue);
}

.xc-about__territory strong {
	font-family: var(--xc-font-display);
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--xc-ink);
}

.xc-about__aside {
	display: grid;
	gap: 0;
	border-top: 1px solid var(--xc-line);
}

.xc-about__stat {
	padding: 1.35rem 0;
	border-bottom: 1px solid var(--xc-line);
}

.xc-about__stat-label {
	display: block;
	margin-bottom: 0.35rem;
	font-family: var(--xc-font-display);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--xc-lime-deep);
}

.xc-about__stat strong {
	font-family: var(--xc-font-display);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--xc-ink);
}

/* Services list */
.xc-service-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.85rem;
}

@media (min-width: 800px) {
	.xc-service-list {
		grid-template-columns: 1fr 1fr;
		gap: 0.9rem 1.1rem;
	}
}

.xc-service-list__item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: center;
	padding: 1.3rem 1.4rem;
	background: #fff;
	border: 1px solid rgba(16, 42, 67, 0.08);
	border-radius: 1rem;
	box-shadow: 0 10px 26px rgba(7, 17, 31, 0.045);
	transition: transform 0.25s var(--xc-ease), box-shadow 0.25s var(--xc-ease), border-color 0.25s var(--xc-ease);
}

.xc-service-list__item:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 38px rgba(7, 17, 31, 0.09);
	border-color: rgba(0, 150, 230, 0.28);
}

.xc-service-list__num,
.xc-service-list__num--lime {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.15rem;
	height: 2.15rem;
	flex-shrink: 0;
	border-radius: 50%;
	background: rgba(124, 255, 46, 0.18);
	font-family: var(--xc-font-display);
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.02em;
	color: var(--xc-lime-deep);
}

.xc-service-list__title {
	font-family: var(--xc-font-display);
	font-weight: 600;
	font-size: 1.06rem;
	letter-spacing: -0.015em;
	line-height: 1.35;
	color: var(--xc-ink);
}

.xc-service-list--detailed .xc-service-list__item {
	align-items: flex-start;
}

.xc-service-list__desc {
	margin: 0.4rem 0 0;
	font-family: var(--xc-font-body);
	font-weight: 400;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--xc-muted);
}

/* Checklist - short benefit statements with a check icon */
.xc-check-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.9rem;
}

@media (min-width: 700px) {
	.xc-check-list--2col {
		grid-template-columns: 1fr 1fr;
		gap: 0.95rem 2rem;
	}
}

.xc-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	font-family: var(--xc-font-display);
	font-weight: 600;
	font-size: 1.06rem;
	letter-spacing: -0.015em;
	line-height: 1.45;
	color: var(--xc-ink);
}

.xc-check-list li::before {
	content: "";
	flex-shrink: 0;
	width: 1.4rem;
	height: 1.4rem;
	margin-top: 0.1rem;
	border-radius: 50%;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / 0.7rem,
		linear-gradient(145deg, var(--xc-lime), var(--xc-lime-deep));
	box-shadow: 0 6px 16px rgba(74, 208, 0, 0.28);
}

/* FAQ accordion */
.xc-faq__list {
	display: grid;
	gap: 0.85rem;
}

.xc-faq__item {
	background: #fff;
	border: 1px solid rgba(16, 42, 67, 0.08);
	border-radius: 1.15rem;
	box-shadow: 0 10px 28px rgba(7, 17, 31, 0.045);
	transition: box-shadow 0.25s var(--xc-ease), border-color 0.25s var(--xc-ease);
}

.xc-faq__item[open] {
	border-color: rgba(0, 150, 230, 0.28);
	box-shadow: 0 18px 38px rgba(7, 17, 31, 0.09);
}

.xc-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	list-style: none;
	padding: 1.1rem 1.4rem;
	font-family: var(--xc-font-display);
	font-weight: 600;
	font-size: 1.06rem;
	letter-spacing: -0.015em;
	line-height: 1.4;
	color: var(--xc-ink);
	cursor: pointer;
	transition: color 0.2s var(--xc-ease);
}

.xc-faq__question::-webkit-details-marker {
	display: none;
}

.xc-faq__question:hover {
	color: var(--xc-blue);
}

.xc-faq__icon {
	position: relative;
	display: block;
	flex-shrink: 0;
	width: 0.6rem;
	height: 0.6rem;
	border-right: 1.75px solid currentColor;
	border-bottom: 1.75px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.25s var(--xc-ease);
}

.xc-faq__item[open] .xc-faq__icon {
	transform: rotate(-135deg);
}

.xc-faq__answer {
	padding: 0 1.4rem 1.1rem;
	color: var(--xc-muted);
	font-size: 1rem;
	line-height: 1.65;
}

.xc-faq__answer p {
	margin: 0;
}

/* Why choose us */
.xc-why {
	position: relative;
	background:
		linear-gradient(135deg, rgba(7, 17, 31, 0.9), rgba(16, 42, 67, 0.84)),
		url("/wp-content/uploads/2026/08/xtra-cisto-021.webp") center / cover no-repeat;
}

.xc-why .xc-section__intro h2 {
	color: var(--xc-white);
}

.xc-why .xc-section__intro p:not(.xc-kicker) {
	color: rgba(232, 244, 252, 0.82);
}

.xc-why__grid {
	display: grid;
	gap: 1rem;
}

@media (min-width: 800px) {
	.xc-why__grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.25rem;
	}
}

.xc-why__item {
	padding: 1.85rem 1.75rem;
	background: #fff;
	border: 1px solid rgba(16, 42, 67, 0.08);
	border-radius: 1.15rem;
	box-shadow: 0 10px 28px rgba(7, 17, 31, 0.045);
	transition: transform 0.25s var(--xc-ease), box-shadow 0.25s var(--xc-ease), border-color 0.25s var(--xc-ease);
}

.xc-why__item:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 42px rgba(7, 17, 31, 0.09);
	border-color: rgba(0, 150, 230, 0.25);
}

.xc-why__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.35rem;
	height: 2.35rem;
	margin-bottom: 1rem;
	border-radius: 0.65rem;
	background: linear-gradient(145deg, rgba(124, 255, 46, 0.22), rgba(124, 255, 46, 0.08));
	font-family: var(--xc-font-display);
	font-weight: 700;
	font-size: 0.88rem;
	color: var(--xc-lime-deep);
}

.xc-why__item h3 {
	margin: 0 0 0.55rem;
	font-size: clamp(1.2rem, 2vw, 1.45rem);
	letter-spacing: -0.02em;
}

.xc-why__item p {
	margin: 0;
	max-width: 32rem;
	color: var(--xc-muted);
	font-size: 1.02rem;
	line-height: 1.65;
}

/* Blog listing */
.xc-blog-grid {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 700px) {
	.xc-blog-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 1050px) {
	.xc-blog-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.xc-blog-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid rgba(16, 42, 67, 0.08);
	border-radius: 1.15rem;
	box-shadow: 0 10px 26px rgba(7, 17, 31, 0.045);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.25s var(--xc-ease), box-shadow 0.25s var(--xc-ease), border-color 0.25s var(--xc-ease);
}

.xc-blog-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 42px rgba(7, 17, 31, 0.09);
	border-color: rgba(0, 150, 230, 0.25);
}

.xc-blog-card__thumb {
	margin: 0;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.xc-blog-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.xc-blog-card__body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 1.5rem 1.6rem 1.75rem;
}

.xc-blog-card__meta {
	margin: 0 0 0.6rem;
	font-family: var(--xc-font-display);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--xc-blue);
}

.xc-blog-card__title {
	margin: 0 0 0.6rem;
	font-size: 1.28rem;
	letter-spacing: -0.02em;
	color: var(--xc-ink);
}

.xc-blog-card__excerpt {
	margin: 0 0 1.25rem;
	flex-grow: 1;
	color: var(--xc-muted);
	font-size: 0.98rem;
	line-height: 1.65;
}

.xc-blog-card__link {
	font-family: var(--xc-font-display);
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--xc-blue-deep);
}

.xc-blog-card__link::after {
	content: " →";
	transition: margin 0.2s var(--xc-ease);
}

.xc-blog-card:hover .xc-blog-card__link::after {
	margin-left: 0.25rem;
}

/* Pagination */
.xc-pagination {
	margin-top: 3rem;
}

.xc-pagination ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
}

.xc-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.6rem;
	height: 2.6rem;
	padding: 0 0.85rem;
	border-radius: 0.65rem;
	background: #fff;
	border: 1px solid rgba(16, 42, 67, 0.1);
	font-family: var(--xc-font-display);
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--xc-ink);
	text-decoration: none;
	transition: border-color 0.2s var(--xc-ease), color 0.2s var(--xc-ease);
}

.xc-pagination a.page-numbers:hover {
	border-color: var(--xc-blue);
	color: var(--xc-blue-deep);
}

.xc-pagination .page-numbers.current {
	background: var(--xc-blue-deep);
	border-color: var(--xc-blue-deep);
	color: #fff;
}

/* Reviews */
.xc-reviews__grid {
	display: grid;
	gap: 1.75rem;
}

@media (min-width: 900px) {
	.xc-reviews__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}
}

.xc-review {
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
}

.xc-review__quote {
	position: relative;
	margin: 0 0 1.35rem;
	padding-top: 1.35rem;
	font-family: var(--xc-font-display);
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: -0.01em;
	color: var(--xc-ink);
}

.xc-review__quote::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 2rem;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--xc-blue), var(--xc-lime));
}

.xc-review__meta {
	display: grid;
	gap: 0.2rem;
}

.xc-review__meta strong {
	font-family: var(--xc-font-display);
	font-size: 0.98rem;
	font-weight: 700;
	color: var(--xc-ink);
}

.xc-review__meta span {
	font-size: 0.9rem;
	color: var(--xc-muted);
}

/* Territory */
.xc-territory {
	position: relative;
	overflow: hidden;
	padding: clamp(4rem, 7vw, 5.5rem) 1.25rem;
	background:
		radial-gradient(700px 280px at 85% 40%, rgba(0, 150, 230, 0.22), transparent 65%),
		radial-gradient(500px 240px at 10% 80%, rgba(124, 255, 46, 0.1), transparent 60%),
		linear-gradient(135deg, #07111f 0%, #102a43 100%);
	color: #fff;
	text-align: center;
}

.xc-territory__inner {
	max-width: 40rem;
	margin: 0 auto;
}

.xc-territory h2 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.9rem, 3.5vw, 2.75rem);
	letter-spacing: -0.03em;
	color: #fff;
}

.xc-territory p:not(.xc-kicker) {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.65;
	color: rgba(232, 244, 252, 0.78);
}

.xc-territory__motto {
	margin: 1.5rem 0 0 !important;
	font-family: var(--xc-font-display);
	font-size: clamp(1.25rem, 2.2vw, 1.6rem) !important;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--xc-lime) !important;
}

/* Legacy 3-col services (unused on home, keep safe) */
.xc-services {
	display: grid;
	gap: 1.5rem 2rem;
}

@media (min-width: 768px) {
	.xc-services {
		grid-template-columns: repeat(3, 1fr);
	}
}

.xc-service {
	padding: 0;
	border: none;
	background: transparent;
}

.xc-service__mark {
	width: 2.5rem;
	height: 3px;
	margin-bottom: 1rem;
	background: linear-gradient(90deg, var(--xc-blue), var(--xc-lime));
	border-radius: 2px;
}

.xc-service h3 {
	font-size: 1.35rem;
	margin-bottom: 0.5rem;
}

.xc-service p {
	margin: 0;
	color: var(--xc-muted);
}

/* --- Pattern: CTA band --- */
.xc-cta {
	position: relative;
	overflow: hidden;
	padding: 4.5rem 1.25rem;
	background:
		radial-gradient(600px 280px at 10% 50%, rgba(124, 255, 46, 0.18), transparent 70%),
		radial-gradient(700px 320px at 90% 40%, rgba(0, 150, 230, 0.28), transparent 70%),
		linear-gradient(120deg, var(--xc-navy-deep), var(--xc-navy));
	color: var(--xc-white);
}

.xc-cta__inner {
	max-width: var(--xc-max);
	margin: 0 auto;
	display: grid;
	gap: 1.5rem;
	align-items: center;
}

@media (min-width: 800px) {
	.xc-cta__inner {
		grid-template-columns: 1.4fr auto;
	}
}

.xc-cta h2 {
	margin: 0 0 0.5rem;
	font-size: clamp(1.75rem, 3vw, 2.4rem);
	color: var(--xc-white);
}

.xc-cta p {
	margin: 0;
	color: rgba(232, 244, 252, 0.85);
	max-width: 36rem;
}

.xc-cta p + p {
	margin-top: 0.75rem;
}

.xc-cta .xc-kicker {
	color: var(--xc-lime);
}

.xc-cta__note {
	font-size: 0.9rem;
	color: rgba(232, 244, 252, 0.65) !important;
}

.xc-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

/* --- Reveal on scroll --- */
[data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.7s var(--xc-ease), transform 0.7s var(--xc-ease);
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

@keyframes xc-rise {
	to {
		opacity: 1;
		transform: none;
	}
}

/* --- Footer --- */
.site-footer {
	position: relative;
	isolation: isolate;
	background: #070f1a;
	color: rgba(236, 244, 252, 0.84);
	overflow: hidden;
}

.site-footer__edge {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(0, 150, 230, 0.45),
		rgba(124, 255, 46, 0.55),
		rgba(0, 150, 230, 0.45),
		transparent
	);
	z-index: 2;
}

.site-footer__atmosphere {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background:
		radial-gradient(900px 360px at 15% 0%, rgba(0, 150, 230, 0.14), transparent 65%),
		radial-gradient(700px 300px at 100% 20%, rgba(124, 255, 46, 0.06), transparent 60%);
}

.site-footer__cta {
	position: relative;
	z-index: 1;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__cta-inner {
	max-width: var(--xc-max);
	margin: 0 auto;
	padding: 3rem 1.25rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem 2rem;
}

.site-footer__cta-kicker {
	margin: 0 0 0.5rem;
	font-family: var(--xc-font-display);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--xc-blue);
}

.site-footer__cta-title {
	margin: 0 0 0.4rem;
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	color: #fff;
	letter-spacing: -0.03em;
}

.site-footer__cta-text {
	margin: 0;
	max-width: 34rem;
	color: rgba(236, 244, 252, 0.65);
	font-size: 1rem;
}

.site-footer__inner {
	position: relative;
	z-index: 1;
	max-width: var(--xc-max);
	margin: 0 auto;
	padding: 3.5rem 1.25rem 3rem;
	display: grid;
	gap: 2.5rem;
}

@media (min-width: 700px) {
	.site-footer__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2.5rem 2rem;
	}
}

@media (min-width: 1020px) {
	.site-footer__inner {
		grid-template-columns: 1.4fr 0.9fr 1.1fr 1fr;
		gap: 2.75rem;
		align-items: start;
	}
}

.site-footer__name {
	font-family: var(--xc-font-display);
	font-weight: 800;
	font-size: clamp(1.45rem, 2.2vw, 1.75rem);
	letter-spacing: -0.03em;
	color: #fff;
	margin: 0;
}

.site-footer__name span {
	color: var(--xc-lime);
}

.site-footer__tagline {
	font-family: var(--xc-font-display);
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--xc-blue);
	margin: 1rem 0 0.85rem;
}

.site-footer__desc {
	max-width: 24rem;
	margin: 0;
	color: rgba(236, 244, 252, 0.58);
	font-size: 0.95rem;
	line-height: 1.65;
}

.site-footer__heading {
	margin: 0 0 1.15rem;
	font-family: var(--xc-font-display);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
}

.site-footer .footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
}

.site-footer .footer-menu a {
	display: inline-block;
	font-family: var(--xc-font-body);
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	transition: color 0.2s var(--xc-ease);
}

.site-footer .footer-menu a::after {
	display: none;
}

.site-footer .footer-menu a:hover,
.site-footer .footer-menu .current-menu-item > a {
	color: var(--xc-lime);
}

.site-footer__contact,
.site-footer__hours {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

.site-footer__label {
	display: block;
	margin-bottom: 0.2rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(236, 244, 252, 0.4);
}

.site-footer__contact a,
.site-footer__value {
	color: #fff;
	text-decoration: none;
	font-family: var(--xc-font-display);
	font-weight: 600;
	font-size: 0.98rem;
}

.site-footer__contact a:hover {
	color: var(--xc-lime);
}

.site-footer__hours li {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.3rem;
	padding-bottom: 0.7rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__hours li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.site-footer__hours span {
	color: rgba(236, 244, 252, 0.5);
	font-size: 0.92rem;
}

.site-footer__hours strong {
	font-family: var(--xc-font-display);
	font-weight: 600;
	font-size: 0.92rem;
	color: #fff;
}

.site-footer__bar {
	position: relative;
	z-index: 1;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.25);
}

.site-footer__bar-inner {
	max-width: var(--xc-max);
	margin: 0 auto;
	padding: 1.1rem 1.25rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem 1.25rem;
}

.site-footer__bar p {
	margin: 0;
	font-size: 0.85rem;
	color: rgba(236, 244, 252, 0.45);
}

.site-footer__dot {
	display: inline-block;
	width: 3px;
	height: 3px;
	margin: 0 0.5rem;
	border-radius: 50%;
	background: var(--xc-lime);
	vertical-align: middle;
	opacity: 0.7;
}

.site-footer__locale {
	font-family: var(--xc-font-display);
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: none;
	font-size: 0.8rem !important;
	color: rgba(236, 244, 252, 0.5) !important;
}

.site-footer__locale a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s var(--xc-ease);
}

.site-footer__locale a:hover {
	color: var(--xc-blue);
}

@media (max-width: 699px) {
	.site-footer__bar-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* --- 404 --- */
.error-404__code {
	font-family: var(--xc-font-display);
	font-weight: 800;
	font-size: 5rem;
	line-height: 1;
	margin: 0 0 0.5rem;
	background: linear-gradient(90deg, var(--xc-blue), var(--xc-lime));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.error-404__title {
	font-size: 2rem;
}

.error-404__text {
	color: var(--xc-muted);
	margin-bottom: 1.75rem;
}

/* --- Gutenberg helpers --- */
.wp-block-group.alignfull {
	margin-left: 0;
	margin-right: 0;
}

.wp-block-columns {
	gap: 2rem;
}

.has-lime-background-color { background-color: var(--xc-lime) !important; }
.has-blue-background-color { background-color: var(--xc-blue) !important; }
.has-navy-background-color { background-color: var(--xc-navy) !important; }
.has-ink-background-color { background-color: var(--xc-ink) !important; }
.has-mist-background-color { background-color: var(--xc-mist) !important; }
.has-paper-background-color { background-color: var(--xc-paper) !important; }
.has-white-background-color { background-color: var(--xc-white) !important; }

.has-lime-color { color: var(--xc-lime) !important; }
.has-blue-color { color: var(--xc-blue) !important; }
.has-white-color { color: var(--xc-white) !important; }
.has-ink-color { color: var(--xc-ink) !important; }

.xc-text-accent {
	color: var(--xc-blue);
	font-weight: 700;
}

.xc-inline-cta {
	margin-top: 1.5rem;
}
.has-muted-color { color: var(--xc-muted) !important; }

/* --- Mobile nav --- */
@media (max-width: 860px) {
	.nav-toggle {
		display: inline-flex;
	}

	.site-nav {
		position: fixed;
		inset: var(--xc-header-h) 0 auto 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
		padding: 1.25rem;
		max-height: calc(100vh - var(--xc-header-h));
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		background: rgba(255, 255, 255, 0.97);
		border-bottom: 1px solid var(--xc-line);
		box-shadow: var(--xc-shadow);
	}

	.site-nav.is-open {
		display: flex;
	}

	.site-nav .menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.35rem;
		width: 100%;
	}

	.site-nav .menu > .menu-item {
		width: 100%;
	}

	.site-nav .menu > .menu-item-has-children {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

	.site-nav .menu > .menu-item-has-children > a {
		flex: 1 1 auto;
	}

	.site-nav .menu > .menu-item-has-children > a::before {
		display: none;
	}

	.site-nav .submenu-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 2.5rem;
		height: 2.5rem;
		border: none;
		background: transparent;
		padding: 0;
		cursor: pointer;
		flex: 0 0 auto;
		color: var(--xc-navy);
	}

	.site-nav .submenu-toggle__arrow {
		display: block;
		width: 0.55rem;
		height: 0.55rem;
		border-right: 1.75px solid currentColor;
		border-bottom: 1.75px solid currentColor;
		transform: rotate(45deg);
		transition: transform 0.2s var(--xc-ease);
	}

	.site-nav .menu > .menu-item-has-children.is-expanded .submenu-toggle__arrow {
		transform: rotate(-135deg);
	}

	.site-nav .menu .sub-menu {
		position: static;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: none;
		min-width: 0;
		width: 100%;
		max-height: 0;
		overflow: hidden;
		margin: 0;
		padding: 0 0 0 0.85rem;
		border: none;
		border-left: 2px solid rgba(0, 150, 230, 0.35);
		border-radius: 0;
		box-shadow: none;
		background: transparent;
		transition: max-height 0.25s var(--xc-ease), opacity 0.2s var(--xc-ease), margin 0.2s var(--xc-ease);
	}

	.site-nav .menu > .menu-item-has-children.is-expanded > .sub-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		max-height: 40rem;
		margin: 0.35rem 0 0.5rem;
		padding: 0.35rem 0 0.35rem 0.85rem;
	}

	.site-nav .menu .sub-menu a {
		padding: 0.55rem 0.35rem;
	}

	.site-nav .btn--header {
		width: 100%;
	}

	.site-branding .custom-logo {
		height: 56px !important;
		max-height: 56px;
		max-width: min(180px, 48vw);
	}

	.xc-hero__inner {
		padding-top: 2rem;
	}
}

/* --- Sticky mobile CTA --- */
.xc-sticky-cta {
	display: none;
}

@media (max-width: 860px) {
	.xc-sticky-cta {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1100;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1px;
		background: rgba(16, 42, 67, 0.2);
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		box-shadow: 0 -12px 40px rgba(7, 17, 31, 0.28);
		padding-bottom: env(safe-area-inset-bottom, 0);
	}

	.xc-sticky-cta__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0.28rem;
		min-height: 3.75rem;
		padding: 0.55rem 0.35rem;
		text-decoration: none !important;
		font-family: var(--xc-font-display);
		font-weight: 700;
		font-size: 0.72rem;
		letter-spacing: 0.04em;
		text-transform: uppercase;
		color: #fff !important;
		background: #0b1220;
		transition: background 0.2s var(--xc-ease), color 0.2s var(--xc-ease);
	}

	.xc-sticky-cta__icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 1.5rem;
		height: 1.5rem;
		line-height: 0;
	}

	.xc-sticky-cta__icon svg {
		display: block;
		width: 1.35rem;
		height: 1.35rem;
		flex-shrink: 0;
	}

	.xc-sticky-cta__item--call {
		background: #0066c8;
	}

	.xc-sticky-cta__item--viber {
		background: #7360f2;
	}

	.xc-sticky-cta__item--wa {
		background: #1fad5a;
	}

	.xc-sticky-cta__item:active {
		filter: brightness(1.08);
	}

	body {
		padding-bottom: calc(3.75rem + env(safe-area-inset-bottom, 0px));
	}
}

/* --- Services page detail --- */
.xc-page-intro__inner {
	max-width: 46rem;
}

.xc-page-intro__text {
	margin: 0;
	font-size: clamp(1.1rem, 2vw, 1.28rem);
	line-height: 1.7;
	color: var(--xc-ink);
}

.xc-service-detail {
	display: grid;
	gap: 1rem;
}

@media (min-width: 700px) {
	.xc-service-detail {
		grid-template-columns: 1fr 1fr;
		gap: 1.1rem 1.25rem;
	}
}

.xc-service-detail__item {
	display: grid;
	grid-template-columns: 3.25rem 1fr;
	gap: 1.1rem 1.35rem;
	padding: 1.65rem 1.5rem;
	background: #fff;
	border: 1px solid rgba(16, 42, 67, 0.08);
	border-radius: 1.1rem;
	box-shadow: 0 10px 28px rgba(7, 17, 31, 0.045);
	transition: transform 0.25s var(--xc-ease), box-shadow 0.25s var(--xc-ease), border-color 0.25s var(--xc-ease);
}

.xc-service-detail__item:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 42px rgba(7, 17, 31, 0.09);
	border-color: rgba(0, 150, 230, 0.25);
}

.xc-service-detail__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.65rem;
	background: linear-gradient(145deg, rgba(124, 255, 46, 0.22), rgba(124, 255, 46, 0.08));
	font-family: var(--xc-font-display);
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--xc-lime-deep);
}

.xc-service-detail__body h3 {
	margin: 0 0 0.45rem;
	font-size: clamp(1.15rem, 2vw, 1.4rem);
	letter-spacing: -0.02em;
}

.xc-service-detail__body p {
	margin: 0;
	max-width: 44rem;
	color: var(--xc-muted);
	font-size: 1.02rem;
	line-height: 1.65;
}

/* --- Contact page --- */
.xc-contact__inner {
	display: grid;
	gap: 3rem;
}

@media (min-width: 900px) {
	.xc-contact__inner {
		grid-template-columns: 0.95fr 1.15fr;
		gap: 4rem;
		align-items: start;
	}
}

.xc-contact__info h2,
.xc-contact__form-wrap h2 {
	margin: 0 0 1.5rem;
	font-size: clamp(1.55rem, 2.8vw, 2.1rem);
	letter-spacing: -0.03em;
	max-width: 14ch;
}

.xc-contact__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
	border-top: 1px solid var(--xc-line);
}

.xc-contact__list li {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.1rem 0;
	border-bottom: 1px solid var(--xc-line);
}

.xc-contact__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.35rem;
	height: 2.35rem;
	flex-shrink: 0;
	border-radius: 0.75rem;
	background: linear-gradient(145deg, var(--xc-blue), var(--xc-blue-deep));
	color: #fff;
	box-shadow: 0 10px 22px rgba(0, 102, 200, 0.28);
}

.xc-contact__text {
	display: grid;
	gap: 0.25rem;
}

.xc-contact__label {
	font-family: var(--xc-font-display);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--xc-blue);
}

.xc-contact__list a,
.xc-contact__value {
	font-family: var(--xc-font-display);
	font-weight: 650;
	font-size: 1.08rem;
	color: var(--xc-ink);
	text-decoration: none;
}

.xc-contact__list a:hover {
	color: var(--xc-blue-deep);
}

.xc-contact__quick {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.75rem;
}

.xc-contact__notice {
	margin: 0 0 1.25rem;
	padding: 0.9rem 1rem;
	border-radius: var(--xc-radius);
	font-size: 0.98rem;
}

.xc-contact__notice--ok {
	background: rgba(124, 255, 46, 0.18);
	color: #1a4d00;
}

.xc-contact__notice--err {
	background: rgba(220, 50, 50, 0.12);
	color: #8a1515;
}

.xc-form {
	display: grid;
	gap: 1.1rem;
}

.xc-form__honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.xc-form__grid {
	display: grid;
	gap: 1.1rem;
}

@media (min-width: 640px) {
	.xc-form__grid {
		grid-template-columns: 1fr 1fr;
	}
}

.xc-form__row {
	display: grid;
	gap: 0.4rem;
}

.xc-form label {
	font-family: var(--xc-font-display);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--xc-navy);
}

.xc-form input,
.xc-form select,
.xc-form textarea {
	width: 100%;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(16, 42, 67, 0.16);
	border-radius: var(--xc-radius);
	background: #fff;
	color: var(--xc-ink);
	font-family: var(--xc-font-body);
	font-size: 1rem;
	line-height: 1.4;
	transition: border-color 0.2s var(--xc-ease), box-shadow 0.2s var(--xc-ease);
}

.xc-form input:focus,
.xc-form select:focus,
.xc-form textarea:focus {
	outline: none;
	border-color: var(--xc-blue);
	box-shadow: 0 0 0 3px rgba(0, 150, 230, 0.18);
}

.xc-form textarea {
	resize: vertical;
	min-height: 8rem;
}

.xc-form .btn {
	justify-self: start;
	margin-top: 0.35rem;
}

/* About media (service pages + reusable) */
.xc-about__inner--reverse {
	direction: rtl;
}

.xc-about__inner--reverse > * {
	direction: ltr;
}

.xc-about__media {
	margin: 0;
	border-radius: 1rem;
	overflow: hidden;
	background:
		linear-gradient(145deg, #d9ebf7 0%, #c5dff0 55%, #dceef8 100%);
	min-height: 260px;
	aspect-ratio: 4 / 3;
	max-height: 420px;
	box-shadow: 0 22px 50px rgba(7, 17, 31, 0.1);
}

@media (min-width: 900px) {
	.xc-about__inner {
		align-items: stretch;
	}

	.xc-about__media {
		aspect-ratio: auto;
		height: 100%;
		max-height: 480px;
	}
}

.xc-about__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.xc-about__media--contain img {
	object-fit: contain;
}

.xc-about__media--map {
	aspect-ratio: 1 / 1;
	background: #eef3f7;
}

@media (min-width: 900px) {
	.xc-about__media--map {
		aspect-ratio: 1 / 1;
		height: auto;
		max-height: none;
		align-self: center;
	}
}

.xc-about__media-ph {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	width: 100%;
	height: 100%;
	min-height: inherit;
	padding: 1.75rem;
	background: radial-gradient(60% 60% at 50% 38%, rgba(255, 255, 255, 0.55), transparent 70%);
	border-radius: inherit;
	text-align: center;
}

.xc-about__media-ph::before {
	content: "";
	width: 3.35rem;
	height: 3.35rem;
	flex-shrink: 0;
	border-radius: 50%;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='9' cy='11' r='2'/%3E%3Cpath d='M21 15l-4.5-4.5a2 2 0 0 0-2.8 0L7 17'/%3E%3C/svg%3E") no-repeat center / 1.4rem,
		linear-gradient(145deg, var(--xc-blue), var(--xc-blue-deep));
	box-shadow: 0 12px 28px rgba(0, 102, 200, 0.3);
}

.xc-about__media-ph span {
	font-family: var(--xc-font-display);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--xc-navy);
	opacity: 0.68;
	max-width: 16rem;
}

.xc-about__copy .xc-about__aside {
	margin-top: 1.5rem;
}

.xc-section__note {
	margin: 2rem 0 0;
	max-width: 44rem;
}

/* Breadcrumb - service page hero */
.xc-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0 0 1.35rem;
	font-family: var(--xc-font-display);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: -0.005em;
}

.xc-breadcrumb a {
	color: rgba(232, 244, 252, 0.68);
	text-decoration: none;
	transition: color 0.2s var(--xc-ease);
}

.xc-breadcrumb a:hover {
	color: var(--xc-lime);
}

.xc-breadcrumb__sep {
	color: rgba(232, 244, 252, 0.32);
}

.xc-breadcrumb__current {
	color: var(--xc-lime);
}

.xc-page-intro__inner .xc-page-intro__text + .xc-page-intro__text {
	margin-top: 1rem;
	font-size: 1.08rem;
	color: var(--xc-muted);
}

.xc-service-detail__body h3 a {
	color: inherit;
	text-decoration: none;
}

.xc-service-detail__body h3 a:hover {
	color: var(--xc-blue-deep);
}

.xc-service-list__title a {
	color: inherit;
	text-decoration: none;
}

.xc-service-list__title a:hover {
	color: var(--xc-blue-deep);
}


