/**
 * Compkev Homepage — screenshot-matched design
 */

:root {
	--color-primary: #0099ff;
	--color-primary-dark: #1565c0;
	--color-primary-light: #4db8ff;
	--color-accent: #0099ff;
	--color-accent-teal: #0099ff;
	--color-deep: #1a4480;
	--color-topbar: #0d1f3c;
	--color-topbar-border: rgba(0, 153, 255, 0.45);
	--color-navy: #1a4480;
	--color-surface: #ffffff;
	--color-surface-alt: #ffffff;
	--color-text: #333333;
	--color-text-muted: #666666;
	--font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
	--header-height: 72px;
}

body {
	font-family: var(--font-body);
	background: #ffffff !important;
}

.site-content,
#page {
	background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
}

/* Top bar inherits from main.css — navy header below */
.top-bar + .site-header {
	border-top: none;
}

.site-header.is-scrolled {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
	height: var(--header-height);
}

.site-brand {
	color: #ffffff;
}

.site-brand-icon svg {
	width: 36px;
	height: 36px;
	color: var(--color-primary);
}

.site-brand-name {
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #ffffff;
	line-height: 1.3;
	max-width: 220px;
}

.site-brand-has-logo .site-brand-name {
	font-size: 14px;
}

.primary-menu {
	gap: 0;
}

.primary-menu a {
	color: rgba(255, 255, 255, 0.92);
	font-size: 14px;
	font-weight: 500;
	padding: 10px 14px;
	border-radius: 0;
	background: transparent;
	position: relative;
}

.primary-menu a:hover,
.primary-menu > .menu-item.current-menu-item > a,
.primary-menu > .menu-item.current-menu-ancestor > a {
	color: #ffffff;
	background: transparent;
}

.primary-menu > .menu-item.current-menu-item > a::after,
.primary-menu > .menu-item.current-menu-ancestor > a::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 14px;
	right: 14px;
	height: 2px;
	background: var(--color-primary);
	border-radius: 2px;
}

.menu-toggle-bar {
	background: #ffffff;
}

.btn-account {
	background: var(--color-primary);
	color: #ffffff;
	border: none;
	border-radius: 6px;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
	box-shadow: none;
}

.btn-account svg {
	width: 16px;
	height: 16px;
}

.btn-account:hover {
	background: #0088ee;
	color: #ffffff;
	transform: none;
}

/* Service cards — overlap hero (standalone section) */
.hero-service-cards {
	position: relative;
	z-index: 20;
	margin-top: -72px;
	margin-bottom: 0;
	background: transparent;
}

.hero-service-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.hero-service-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border-radius: 14px;
	padding: 24px 20px 20px;
	text-decoration: none;
	color: var(--color-text);
	box-shadow: 0 10px 32px rgba(26, 68, 128, 0.12);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	min-height: 210px;
	overflow: hidden;
	position: relative;
}

.hero-service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	border-radius: 14px 14px 0 0;
	background: var(--hero-card-accent, var(--color-primary));
}

.hero-service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 44px rgba(26, 68, 128, 0.18);
	color: var(--color-text);
}

.hero-service-icon {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: var(--hero-card-icon-bg, #e8f4fd);
	color: var(--hero-card-icon-color, var(--color-primary));
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	flex-shrink: 0;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.hero-service-icon svg {
	width: 24px;
	height: 24px;
}

.hero-service-card h3 {
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 700;
	color: var(--hero-card-title, var(--color-navy));
	margin: 0 0 8px;
	line-height: 1.3;
}

.hero-service-card p {
	font-size: 13px;
	line-height: 1.55;
	color: var(--color-text-muted);
	margin: 0 0 auto;
	flex: 1;
}

.hero-service-link {
	font-size: 13px;
	font-weight: 700;
	color: var(--hero-card-link, var(--color-primary));
	margin-top: 14px;
	transition: color 0.2s ease;
}

.hero-service-card:hover .hero-service-link {
	color: var(--hero-card-link-hover, var(--color-primary-dark));
}

.hero-service-card-bill {
	--hero-card-accent: linear-gradient(90deg, #2563eb, #38bdf8);
	--hero-card-icon-bg: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
	--hero-card-icon-color: #1d4ed8;
	--hero-card-title: #1e3a8a;
	--hero-card-link: #2563eb;
	--hero-card-link-hover: #1d4ed8;
	background: linear-gradient(180deg, #eff6ff 0%, #ffffff 72%);
	border-color: rgba(37, 99, 235, 0.14);
}

.hero-service-card-outage {
	--hero-card-accent: linear-gradient(90deg, #ea580c, #fbbf24);
	--hero-card-icon-bg: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
	--hero-card-icon-color: #c2410c;
	--hero-card-title: #9a3412;
	--hero-card-link: #ea580c;
	--hero-card-link-hover: #c2410c;
	background: linear-gradient(180deg, #fff7ed 0%, #ffffff 72%);
	border-color: rgba(234, 88, 12, 0.14);
}

.hero-service-card-service {
	--hero-card-accent: linear-gradient(90deg, #0891b2, #22d3ee);
	--hero-card-icon-bg: linear-gradient(135deg, #cffafe 0%, #a5f3fc 100%);
	--hero-card-icon-color: #0e7490;
	--hero-card-title: #155e75;
	--hero-card-link: #0891b2;
	--hero-card-link-hover: #0e7490;
	background: linear-gradient(180deg, #ecfeff 0%, #ffffff 72%);
	border-color: rgba(8, 145, 178, 0.14);
}

.hero-service-card-quality {
	--hero-card-accent: linear-gradient(90deg, #7c3aed, #a78bfa);
	--hero-card-icon-bg: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
	--hero-card-icon-color: #6d28d9;
	--hero-card-title: #5b21b6;
	--hero-card-link: #7c3aed;
	--hero-card-link-hover: #6d28d9;
	background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 72%);
	border-color: rgba(124, 58, 237, 0.14);
}

.hero-service-card-conservation {
	--hero-card-accent: linear-gradient(90deg, #059669, #34d399);
	--hero-card-icon-bg: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
	--hero-card-icon-color: #047857;
	--hero-card-title: #065f46;
	--hero-card-link: #059669;
	--hero-card-link-hover: #047857;
	background: linear-gradient(180deg, #ecfdf5 0%, #ffffff 72%);
	border-color: rgba(5, 150, 105, 0.14);
}

.hero-service-card-bill:hover {
	box-shadow: 0 18px 44px rgba(37, 99, 235, 0.2);
}

.hero-service-card-outage:hover {
	box-shadow: 0 18px 44px rgba(234, 88, 12, 0.2);
}

.hero-service-card-service:hover {
	box-shadow: 0 18px 44px rgba(8, 145, 178, 0.2);
}

.hero-service-card-quality:hover {
	box-shadow: 0 18px 44px rgba(124, 58, 237, 0.2);
}

.hero-service-card-conservation:hover {
	box-shadow: 0 18px 44px rgba(5, 150, 105, 0.2);
}

/* Hero */
.hero-home {
	position: relative;
}

.hero-home .hero-slides {
	min-height: 520px;
	height: 62vh;
	max-height: 640px;
	overflow: hidden;
	border-radius: 0;
}

.hero-home .hero-slide-overlay {
	background: linear-gradient(
		180deg,
		transparent 0%,
		transparent 58%,
		rgba(0, 0, 0, 0.28) 100%
	);
}

.hero-home .hero-title {
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 4.5vw, 3.25rem);
	font-weight: 700;
	line-height: 1.15;
	max-width: 560px;
}

.hero-home .hero-subtitle {
	font-size: 17px;
	line-height: 1.65;
	max-width: 520px;
	opacity: 0.95;
}

.btn-hero-primary {
	background: var(--color-primary);
	color: #ffffff;
	border: none;
	border-radius: 6px;
	box-shadow: none;
	font-weight: 600;
	gap: 10px;
}

.btn-hero-primary svg {
	width: 18px;
	height: 18px;
}

.btn-hero-primary:hover {
	background: #0088ee;
	color: #ffffff;
	transform: none;
	box-shadow: none;
}

.btn-hero-outline {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.85);
	color: #ffffff;
	border-radius: 6px;
	font-weight: 600;
	gap: 10px;
}

.btn-hero-outline svg {
	width: 18px;
	height: 18px;
}

.btn-hero-outline:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	border-color: #ffffff;
}

.hero-home .hero-controls {
	position: absolute;
	inset: 0;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	transform: none;
	display: block;
	max-width: none;
	width: 100%;
	padding: 0;
	pointer-events: none;
	z-index: 25;
}

.hero-home .hero-controls .hero-nav {
	pointer-events: auto;
	position: absolute;
	top: auto;
	bottom: 100px;
	right: auto;
	margin: 0;
	transform: none;
}

.hero-home .hero-controls .hero-next {
	right: 32px;
}

.hero-home .hero-controls .hero-prev {
	right: calc(32px + 48px + 20px);
}

.hero-home .hero-controls .hero-prev:hover,
.hero-home .hero-controls .hero-next:hover {
	transform: scale(1.05);
}

.hero-home .hero-controls .hero-dots {
	pointer-events: auto;
	position: absolute;
	left: 50%;
	bottom: 100px;
	transform: translateX(-50%);
	justify-content: center;
}

.hero-home .hero-scroll-indicator {
	display: none;
}

/* About section on homepage */
.section-about {
	padding: 80px 0 90px;
	background: #ffffff !important;
}

.section-about .about-image-main {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.section-about .about-image-accent {
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.hero-service-cards + .section-about {
	padding-top: 48px;
}

/* Modes of payment on homepage */
.section-payment-modes {
	padding: 72px 0 80px;
	background: #ffffff !important;
}

.section-services + .section-payment-modes {
	padding-top: 64px;
}

.section-payment-modes + .section-partners {
	padding-top: 64px;
	background: #ffffff;
}

.section-payment-modes .billing-payment-header {
	max-width: 760px;
	margin: 0 auto 28px;
	text-align: center;
}

.section-payment-modes .billing-payment-header h2 {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3vw, 2.125rem);
}

/* Mission, Philosophy & Values */
.section-mission {
	background: #ffffff;
	padding: 80px 0;
}

.section-about + .section-mission {
	padding-top: 0;
}

.section-mission-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 48px;
}

.mission-section-label {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: 12px;
}

.mission-section-title {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--color-navy);
	margin: 0;
	line-height: 1.25;
}

.mission-tabs {
	max-width: 920px;
	margin: 0 auto;
}

.mission-tablist {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 28px;
	padding: 6px;
	background: #ffffff;
	border-radius: 999px;
	border: 1px solid rgba(26, 68, 128, 0.1);
}

.mission-tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border: none;
	border-radius: 999px;
	background: transparent;
	color: var(--color-navy);
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	line-height: 1.2;
}

.mission-tab:hover,
.mission-tab:focus-visible {
	outline: none;
	background: rgba(255, 255, 255, 0.75);
	color: var(--color-primary-dark);
}

.mission-tab:focus-visible {
	box-shadow: 0 0 0 2px rgba(0, 153, 255, 0.35);
}

.mission-tab.is-active {
	background: var(--color-navy);
	color: #ffffff;
	box-shadow: 0 4px 16px rgba(26, 68, 128, 0.2);
}

.mission-tab-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(26, 68, 128, 0.1);
	color: var(--color-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.2s ease, color 0.2s ease;
}

.mission-tab.is-active .mission-tab-icon {
	background: rgba(255, 255, 255, 0.16);
	color: #ffffff;
}

.mission-tab-icon svg {
	width: 15px;
	height: 15px;
}

.mission-panels {
	position: relative;
}

.mission-tabpanel {
	background: #ffffff;
	border-radius: 16px;
	padding: 36px 32px;
	border: 1px solid rgba(26, 68, 128, 0.08);
	box-shadow: 0 8px 24px rgba(26, 68, 128, 0.05);
}

.mission-tabpanel[hidden],
.mission-tabpanel:not(.is-active) {
	display: none !important;
}

.mission-tabpanel.is-active {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 28px;
	align-items: start;
	animation: missionTabFade 0.28s ease;
}

.mission-tabpanel-goal {
	background: #ffffff;
	border-color: rgba(26, 68, 128, 0.08);
}

.mission-tabpanel-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--color-navy);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.mission-tabpanel-icon svg {
	width: 28px;
	height: 28px;
}

.mission-tabpanel-title {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--color-navy);
	margin: 0 0 14px;
	line-height: 1.3;
}

.mission-tabpanel-text {
	font-size: 15px;
	line-height: 1.8;
	color: var(--color-text-muted);
	margin: 0;
}

.mission-values-list {
	list-style: disc;
	padding-left: 1.35em;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 28px;
	row-gap: 10px;
}

.mission-values-list li {
	padding-left: 4px;
}

.mission-values-list li::marker {
	color: var(--color-primary, #0077b6);
}

@keyframes missionTabFade {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Commitment section */
.section-commitment,
.section.section-commitment {
	background: #ffffff !important;
	padding: 80px 0;
}

.section-mission + .section-commitment {
	padding-top: 64px;
}

.commitment-grid {
	display: grid;
	grid-template-columns: minmax(280px, 38%) minmax(0, 1fr);
	gap: 40px 56px;
	align-items: start;
}

.commitment-content {
	max-width: none;
}

.commitment-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.commitment-stat-card {
	background: var(--stat-bg, #ffffff);
	border-radius: 14px;
	padding: 16px 10px 14px;
	text-align: center;
	box-shadow: var(--stat-shadow, 0 8px 24px rgba(26, 68, 128, 0.08));
	border: 1px solid var(--stat-border, rgba(0, 0, 0, 0.05));
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	position: relative;
	overflow: hidden;
}

.commitment-stat-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--stat-accent-bar, var(--color-primary));
}

.commitment-stat-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--stat-shadow-hover, 0 14px 32px rgba(26, 68, 128, 0.14));
}

.commitment-stat-icon {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: var(--stat-icon-bg, var(--color-navy));
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	flex-shrink: 0;
	box-shadow: 0 8px 18px var(--stat-icon-shadow, rgba(26, 68, 128, 0.18));
}

.commitment-stat-icon svg {
	width: 20px;
	height: 20px;
}

.commitment-stat-value {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(1rem, 1.6vw, 1.25rem);
	font-weight: 700;
	color: var(--stat-value-color, var(--color-primary));
	line-height: 1.15;
	margin-bottom: 4px;
	word-break: break-word;
}

.commitment-stat-label {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-size: 11px;
	color: var(--stat-label-color, var(--color-text-muted));
	line-height: 1.35;
	padding: 0 2px;
	min-height: calc(1.35em * 2);
	max-height: calc(1.35em * 2);
}

.commitment-stat-card::after {
	content: '';
	display: block;
	width: 32px;
	height: 3px;
	background: var(--stat-accent-bar, var(--color-primary));
	border-radius: 999px;
	margin: 10px auto 0;
}

.commitment-label {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ffffff;
	margin-bottom: 16px;
	padding: 8px 16px;
	border-radius: 999px;
	background: linear-gradient(90deg, #2563eb 0%, #0891b2 50%, #059669 100%);
	box-shadow: 0 8px 22px rgba(37, 99, 235, 0.2);
}

.commitment-stat-card-water-coverage {
	--stat-accent-bar: linear-gradient(90deg, #2563eb, #38bdf8);
	--stat-bg: linear-gradient(180deg, #eff6ff 0%, #ffffff 78%);
	--stat-border: rgba(37, 99, 235, 0.16);
	--stat-icon-bg: linear-gradient(135deg, #2563eb, #38bdf8);
	--stat-icon-shadow: rgba(37, 99, 235, 0.28);
	--stat-value-color: #1d4ed8;
	--stat-shadow-hover: 0 14px 32px rgba(37, 99, 235, 0.18);
}

.commitment-stat-card-sanitation {
	--stat-accent-bar: linear-gradient(90deg, #059669, #34d399);
	--stat-bg: linear-gradient(180deg, #ecfdf5 0%, #ffffff 78%);
	--stat-border: rgba(5, 150, 105, 0.16);
	--stat-icon-bg: linear-gradient(135deg, #059669, #34d399);
	--stat-icon-shadow: rgba(5, 150, 105, 0.28);
	--stat-value-color: #047857;
	--stat-shadow-hover: 0 14px 32px rgba(5, 150, 105, 0.18);
}

.commitment-stat-card-sewerage {
	--stat-accent-bar: linear-gradient(90deg, #0891b2, #22d3ee);
	--stat-bg: linear-gradient(180deg, #ecfeff 0%, #ffffff 78%);
	--stat-border: rgba(8, 145, 178, 0.16);
	--stat-icon-bg: linear-gradient(135deg, #0891b2, #22d3ee);
	--stat-icon-shadow: rgba(8, 145, 178, 0.28);
	--stat-value-color: #0e7490;
	--stat-shadow-hover: 0 14px 32px rgba(8, 145, 178, 0.18);
}

.commitment-stat-card-nrw {
	--stat-accent-bar: linear-gradient(90deg, #ea580c, #fb923c);
	--stat-bg: linear-gradient(180deg, #fff7ed 0%, #ffffff 78%);
	--stat-border: rgba(234, 88, 12, 0.16);
	--stat-icon-bg: linear-gradient(135deg, #ea580c, #fb923c);
	--stat-icon-shadow: rgba(234, 88, 12, 0.28);
	--stat-value-color: #c2410c;
	--stat-shadow-hover: 0 14px 32px rgba(234, 88, 12, 0.18);
}

.commitment-stat-card-supply-hours {
	--stat-accent-bar: linear-gradient(90deg, #0284c7, #38bdf8);
	--stat-bg: linear-gradient(180deg, #f0f9ff 0%, #ffffff 78%);
	--stat-border: rgba(2, 132, 199, 0.16);
	--stat-icon-bg: linear-gradient(135deg, #0284c7, #38bdf8);
	--stat-icon-shadow: rgba(2, 132, 199, 0.28);
	--stat-value-color: #0369a1;
	--stat-shadow-hover: 0 14px 32px rgba(2, 132, 199, 0.18);
}

.commitment-stat-card-metering {
	--stat-accent-bar: linear-gradient(90deg, #4f46e5, #818cf8);
	--stat-bg: linear-gradient(180deg, #eef2ff 0%, #ffffff 78%);
	--stat-border: rgba(79, 70, 229, 0.16);
	--stat-icon-bg: linear-gradient(135deg, #4f46e5, #818cf8);
	--stat-icon-shadow: rgba(79, 70, 229, 0.28);
	--stat-value-color: #4338ca;
	--stat-shadow-hover: 0 14px 32px rgba(79, 70, 229, 0.18);
}

.commitment-stat-card-personnel {
	--stat-accent-bar: linear-gradient(90deg, #9333ea, #c084fc);
	--stat-bg: linear-gradient(180deg, #faf5ff 0%, #ffffff 78%);
	--stat-border: rgba(147, 51, 234, 0.16);
	--stat-icon-bg: linear-gradient(135deg, #9333ea, #c084fc);
	--stat-icon-shadow: rgba(147, 51, 234, 0.28);
	--stat-value-color: #7e22ce;
	--stat-shadow-hover: 0 14px 32px rgba(147, 51, 234, 0.18);
}

.commitment-stat-card-quality {
	--stat-accent-bar: linear-gradient(90deg, #16a34a, #4ade80);
	--stat-bg: linear-gradient(180deg, #f0fdf4 0%, #ffffff 78%);
	--stat-border: rgba(22, 163, 74, 0.16);
	--stat-icon-bg: linear-gradient(135deg, #16a34a, #4ade80);
	--stat-icon-shadow: rgba(22, 163, 74, 0.28);
	--stat-value-color: #15803d;
	--stat-shadow-hover: 0 14px 32px rgba(22, 163, 74, 0.18);
}

.commitment-stat-card-collection {
	--stat-accent-bar: linear-gradient(90deg, #0ea5e9, #67e8f9);
	--stat-bg: linear-gradient(180deg, #ecfeff 0%, #ffffff 78%);
	--stat-border: rgba(14, 165, 233, 0.16);
	--stat-icon-bg: linear-gradient(135deg, #0ea5e9, #67e8f9);
	--stat-icon-shadow: rgba(14, 165, 233, 0.28);
	--stat-value-color: #0284c7;
	--stat-shadow-hover: 0 14px 32px rgba(14, 165, 233, 0.18);
}

.commitment-stat-card-productivity {
	--stat-accent-bar: linear-gradient(90deg, #7c3aed, #a78bfa);
	--stat-bg: linear-gradient(180deg, #f5f3ff 0%, #ffffff 78%);
	--stat-border: rgba(124, 58, 237, 0.16);
	--stat-icon-bg: linear-gradient(135deg, #7c3aed, #a78bfa);
	--stat-icon-shadow: rgba(124, 58, 237, 0.28);
	--stat-value-color: #6d28d9;
	--stat-shadow-hover: 0 14px 32px rgba(124, 58, 237, 0.18);
}

.commitment-stat-card-om-cost {
	--stat-accent-bar: linear-gradient(90deg, #0d9488, #2dd4bf);
	--stat-bg: linear-gradient(180deg, #f0fdfa 0%, #ffffff 78%);
	--stat-border: rgba(13, 148, 136, 0.16);
	--stat-icon-bg: linear-gradient(135deg, #0d9488, #2dd4bf);
	--stat-icon-shadow: rgba(13, 148, 136, 0.28);
	--stat-value-color: #0f766e;
	--stat-shadow-hover: 0 14px 32px rgba(13, 148, 136, 0.18);
}

.commitment-title {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	font-weight: 700;
	color: var(--color-navy);
	margin: 0 0 18px;
	line-height: 1.25;
}

.commitment-desc {
	font-size: 15px;
	line-height: 1.75;
	color: var(--color-text-muted);
	margin: 0 0 28px;
	max-width: 420px;
}

.btn-commitment {
	background: var(--color-navy);
	color: #ffffff;
	border: none;
	border-radius: 6px;
	padding: 14px 24px;
	font-weight: 600;
	gap: 8px;
	box-shadow: none;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.btn-commitment svg {
	width: 18px;
	height: 18px;
}

.btn-commitment:hover {
	background: #15396d;
	color: #ffffff;
	transform: none;
}

/* FAQ section */
.section-faq {
	background: #ffffff;
	padding: 80px 0;
}

.section-commitment + .section-faq {
	padding-top: 64px;
}

.section-commitment + .section-services {
	padding-top: 64px;
	background: #ffffff;
}

.section-faq-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 48px;
}

.faq-section-label {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: 12px;
}

.faq-section-title {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--color-navy);
	margin: 0 0 16px;
	line-height: 1.25;
}

.faq-section-desc {
	font-size: 15px;
	line-height: 1.75;
	color: var(--color-text-muted);
	margin: 0;
}

.faq-accordion {
	max-width: 840px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	background: #ffffff;
	border: 1px solid rgba(26, 68, 128, 0.08);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(26, 68, 128, 0.04);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.is-open {
	border-color: rgba(0, 153, 255, 0.25);
	box-shadow: 0 8px 24px rgba(26, 68, 128, 0.08);
}

.faq-question-wrap {
	margin: 0;
	background: #ffffff;
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	background: #ffffff;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-navy);
	line-height: 1.45;
}

.faq-item.is-open .faq-question-wrap,
.faq-item.is-open .faq-question {
	background: #ffffff;
}

.faq-item.is-open .faq-question {
	border-bottom: 1px solid rgba(26, 68, 128, 0.08);
}

.faq-question:hover,
.faq-question:focus-visible {
	outline: none;
	color: var(--color-primary-dark);
}

.faq-question:focus-visible {
	box-shadow: inset 0 0 0 2px rgba(0, 153, 255, 0.35);
}

.faq-question-text {
	flex: 1;
}

.faq-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(26, 68, 128, 0.08);
	color: var(--color-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.faq-icon svg {
	width: 18px;
	height: 18px;
}

.faq-item.is-open .faq-icon {
	transform: rotate(180deg);
	background: var(--color-navy);
	color: #ffffff;
}

.faq-answer {
	background: transparent;
}

.faq-item.is-open .faq-answer {
	background: #ffffff;
}

.faq-answer-inner {
	padding: 18px 24px 22px;
}

.faq-item.is-open .faq-answer-inner {
	background: #ffffff;
}

.faq-answer-inner p {
	margin: 0;
	font-size: 14px;
	line-height: 1.75;
	color: var(--color-text-muted);
}

/* Homepage paragraph clarity — darker, thicker readable body copy */
.about-lead,
.section-services .section-desc,
.mission-tabpanel-text,
.commitment-desc,
.faq-section-desc,
.partners-section-desc,
.section-payment-modes .billing-payment-header p,
.section-payment-modes .billing-payment-note {
	font-size: 16px;
	line-height: 1.75;
	font-weight: 600;
	color: #333333;
}

.service-excerpt,
.faq-answer-inner p,
.section-payment-modes .billing-payment-card:not(.billing-payment-card-featured) .billing-payment-card-desc,
.hero-service-card p {
	font-size: 15px;
	line-height: 1.75;
	font-weight: 600;
	color: #333333;
}

/* Responsive */
@media (max-width: 1100px) {
	.hero-service-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.hero-service-cards {
		margin-top: -48px;
	}

	.commitment-grid {
		grid-template-columns: minmax(260px, 42%) minmax(0, 1fr);
		gap: 32px 40px;
	}

	.commitment-stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	:root {
		--header-height: 68px;
	}

	.header-inner {
		height: auto;
		min-height: var(--header-height);
	}

	.main-navigation .primary-menu {
		background: var(--color-navy);
	}

	.primary-menu a {
		color: #ffffff;
	}

	.hero-home .hero-slides {
		min-height: 460px;
		height: 55vh;
	}

	.hero-service-grid {
		grid-template-columns: 1fr;
	}

	.hero-service-cards {
		margin-top: 24px;
	}

	.hero-home .hero-controls .hero-nav {
		bottom: 56px;
		width: 40px;
		height: 40px;
	}

	.hero-home .hero-controls .hero-next {
		right: 12px;
	}

	.hero-home .hero-controls .hero-prev {
		right: calc(12px + 40px + 12px);
	}

	.hero-home .hero-controls .hero-dots {
		bottom: 56px;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-image-stack {
		min-height: 380px;
		padding-right: 0;
	}

	.about-image-main {
		width: 100%;
		height: 320px;
	}

	.about-image-accent {
		width: 58%;
		height: 220px;
	}

	.about-highlights {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.section-about {
		padding: 60px 0;
	}

	.section-payment-modes {
		padding: 56px 0 64px;
	}

	.mission-tablist {
		border-radius: 16px;
		padding: 8px;
	}

	.mission-tab {
		flex: 1 1 calc(50% - 8px);
		justify-content: center;
		padding: 10px 14px;
		font-size: 13px;
	}

	.mission-tabpanel.is-active {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 28px 22px;
	}

	.mission-tabpanel-icon {
		margin: 0 auto;
	}

	.section-mission {
		padding: 60px 0;
	}

	.commitment-grid {
		grid-template-columns: 1fr;
	}

	.commitment-stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px;
	}

	.commitment-stat-card {
		padding: 12px 8px 10px;
	}

	.commitment-stat-icon {
		width: 34px;
		height: 34px;
		margin-bottom: 6px;
	}

	.commitment-stat-value {
		font-size: 1rem;
	}

	.section-commitment {
		padding: 60px 0;
	}

	.section-faq {
		padding: 60px 0;
	}

	.faq-question {
		padding: 18px 20px;
		font-size: 0.95rem;
	}

	.faq-answer-inner {
		padding: 0 20px 18px;
	}
}

@media (max-width: 480px) {
	.commitment-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
