/**
 * IT Solution brand overrides (logo colours, homepage sections).
 */
/* Google Material Symbols consistent sizing & optical alignment */
.material-symbols-outlined {
	font-family: "Material Symbols Outlined";
	font-weight: normal;
	font-style: normal;
	font-size: 1.25rem;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
	-webkit-font-smoothing: antialiased;
}

.material-symbols-outlined.ms-nudge-up {
	position: relative;
	top: 0.04em;
}

.material-symbols-outlined.ms-xl {
	font-size: 2rem;
}

.material-symbols-outlined.ms-lg {
	font-size: 1.5rem;
}

/* Stats row equal-height cards */
.stats .row.stats-row {
	align-items: stretch;
}

.stats .stats-item-brand {
	height: 100%;
	border-radius: 14px;
	border: 1px solid var(--border-subtle);
	box-shadow: var(--shadow-soft);
}

.stats .stats-item-brand .stat-body {
	min-width: 0;
	min-height: 5.5rem;
	align-self: stretch;
}

.stats .stats-item-brand .stat-label {
	flex: 0 1 auto;
	margin-top: 0.25rem;
}

.stats .stats-item-brand .stat-value {
	font-size: 2rem !important;
	line-height: 1.15 !important;
	font-weight: 700 !important;
}

/* PureCounter sometimes wraps digits in spans undo template `.stats-item span { font-size:36px }` */
.stats .stats-item-brand .stat-value span {
	font-size: inherit !important;
	font-weight: inherit !important;
	line-height: inherit !important;
	display: inline !important;
}

/* Stat strip icon in fixed box, text block aligned */
.stats .stats-item .stat-icon-wrap {
	width: 3.5rem;
	height: 3.5rem;
	flex-shrink: 0;
	border-radius: 0.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(13, 110, 253, 0.1);
	border: 1px solid rgba(13, 110, 253, 0.12);
}

.stats .stats-item .stat-icon-wrap.stat-icon--sky {
	background: rgba(13, 110, 253, 0.12);
	border-color: rgba(13, 110, 253, 0.18);
}

.stats .stats-item .stat-icon-wrap.stat-icon--amber {
	background: rgba(253, 186, 33, 0.15);
	border-color: rgba(253, 186, 33, 0.25);
}

.stats .stats-item .stat-icon-wrap.stat-icon--green {
	background: rgba(25, 135, 84, 0.12);
	border-color: rgba(25, 135, 84, 0.2);
}

.stats .stats-item .stat-icon-wrap.stat-icon--rose {
	background: rgba(214, 51, 132, 0.1);
	border-color: rgba(214, 51, 132, 0.18);
}

.stats .stats-item .stat-icon-wrap .material-symbols-outlined {
	font-size: 1.75rem;
	line-height: 1;
	margin: 0;
}

.stats .stats-item .stat-icon-wrap.stat-icon--sky .material-symbols-outlined {
	color: var(--brand-royal);
}

.stats .stats-item .stat-icon-wrap.stat-icon--amber .material-symbols-outlined {
	color: #e0a800;
}

.stats .stats-item .stat-icon-wrap.stat-icon--green .material-symbols-outlined {
	color: #198754;
}

.stats .stats-item .stat-icon-wrap.stat-icon--rose .material-symbols-outlined {
	color: #d63384;
}

/* Override template rule that sets every span inside .stats-item to 36px */
.stats .stats-item .purecounter {
	font-size: 2rem !important;
	line-height: 1.15 !important;
	font-weight: 700 !important;
}

.stats .stats-item > div > span.fw-semibold,
.stats .stats-item > div > span.d-block.fw-semibold,
.stats .stats-item .stat-body .stat-label {
	font-size: 0.95rem !important;
	font-weight: 600 !important;
	line-height: 1.35 !important;
	color: var(--heading-color) !important;
}

.stats .stats-item > div > p.h3,
.stats .stats-item .stat-body > p.stat-value.h3 {
	font-size: 2rem !important;
	font-weight: 700 !important;
	margin-bottom: 0 !important;
	color: var(--heading-color) !important;
}

:root {
	--brand-royal: #0b4a8f;
	--brand-royal-dark: #072f5e;
	--brand-hero-end: #0d5ba8;
	--brand-royal-soft: #3d7ab8;
	--brand-accent: #1a8f7a;
	--brand-accent-soft: rgba(26, 143, 122, 0.12);
	--wa-green: #25d366;
	--wa-green-hover: #1ebe57;
	--font-display: "Google Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
	--font-sans: "Google Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
	--ink: #0a1628;
	--ink-muted: #5a6570;
	--border-subtle: rgba(10, 22, 40, 0.08);
	--shadow-soft: 0 4px 24px rgba(10, 22, 40, 0.06);
	--shadow-card: 0 8px 32px rgba(10, 22, 40, 0.07);
	--default-font: var(--font-sans);
	--heading-font: var(--font-sans);
	--nav-font: var(--font-sans);
	--bs-body-font-family: var(--font-sans);
	--bs-font-sans-serif: var(--font-sans);
	--heading-color: var(--ink);
	--default-color: var(--ink-muted);
	--accent-color: var(--brand-royal);
	--bs-primary: var(--brand-royal);
	--bs-primary-rgb: 11, 74, 143;
}

html {
	font-family: var(--font-sans);
}

body,
button,
input,
select,
textarea,
.btn {
	font-family: var(--font-sans);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: var(--font-sans);
}

/* Index header on scroll: solid white bar */
.index-page.scrolled .header.header-brand {
	--background-color: #ffffff !important;
	background: #ffffff !important;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	box-shadow: 0 1px 0 var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
}

.light-background {
	--background-color: #f0f3f7;
	--surface-color: #ffffff;
}

/*
 * Section headings — do NOT use template class `.section-title` here: its `h2`/`p`
 * rules (pill + 32px “subtitle”) fight our layout. Use `.section-heading-block` only.
 */
.section-heading-block {
	padding-bottom: 3rem;
	position: relative;
	max-width: 52rem;
	margin-left: auto;
	margin-right: auto;
}

.section-heading-block .section-eyebrow {
	display: block;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto 0.9rem;
	font-family: var(--font-sans);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--brand-royal);
	padding-bottom: 0.35rem;
}

.section-heading-block .section-heading-display {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.18;
	color: var(--heading-color);
	margin: 0 0 1.1rem;
	display: block;
}

.section-heading-block .section-lead {
	max-width: 42rem;
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 450;
	line-height: 1.65;
	color: var(--ink-muted);
	margin-top: 0;
}

.section-heading-block .section-lead.small {
	font-size: 0.9375rem;
	line-height: 1.6;
}

.section-heading-block .section-lead-accent {
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--heading-color);
}

.section-heading-block .section-lead-muted {
	color: var(--ink-muted) !important;
}

/* Contact block — no eyebrow; neutralise any legacy pill styles on h2 */
.section-heading-block--contact {
	padding-bottom: 2.25rem;
}

.contact .section-heading-block--contact .section-heading-display,
.contact .section-heading-block--contact h2.section-heading-display {
	background: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 0 1rem !important;
	display: block !important;
	width: 100%;
	max-width: none;
	font-family: var(--font-display) !important;
	font-size: clamp(1.75rem, 3.5vw, 2.35rem) !important;
	font-weight: 600 !important;
	letter-spacing: -0.025em !important;
	line-height: 1.2 !important;
	color: var(--heading-color) !important;
	text-transform: none !important;
}

.contact .section-heading-block--contact .section-lead {
	font-family: var(--font-sans) !important;
	font-size: 1rem !important;
	font-weight: 450 !important;
	line-height: 1.65 !important;
	color: var(--ink-muted) !important;
	max-width: 40rem;
}

.section-eyebrow-inline {
	font-family: var(--font-sans);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--brand-royal);
}

.display-heading {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(1.65rem, 3vw, 2.15rem);
	letter-spacing: -0.02em;
	line-height: 1.25;
	color: var(--heading-color);
}

/* Header — pure white bar, royal blue links + solid CTA */
.header.header-brand,
.index-page .header.header-brand,
.scrolled .header.header-brand {
	--nav-color: var(--brand-royal);
	--nav-hover-color: var(--brand-royal-dark);
	--background-color: #ffffff;
	color: var(--brand-royal);
	background: #ffffff !important;
	border-bottom: 1px solid var(--border-subtle);
	box-shadow: none !important;
	padding: 11px 0;
	overflow: visible;
}

.header.header-brand .navmenu,
.header.header-brand .container-fluid {
	overflow: visible;
}

.header.header-brand .logo h1.sitename,
.header.header-brand .logo span.sitename {
	color: var(--brand-royal);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.15rem;
	margin: 0;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.header.header-brand .logo-img {
	max-height: 48px;
	width: auto;
	height: auto;
	margin-right: 8px;
}

.header.header-brand .navmenu ul li a {
	color: var(--nav-color);
}

.header.header-brand .navmenu ul li a:hover,
.header.header-brand .navmenu ul li a.active {
	color: var(--nav-hover-color);
}

.header.header-brand .mobile-nav-toggle {
	color: var(--brand-royal);
	font-size: 1.375rem;
	cursor: pointer;
	user-select: none;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.375rem;
	height: 2.375rem;
	margin-left: 0.25rem;
	border-radius: 0.375rem;
	transition: background 0.2s ease, color 0.2s ease;
}

.header.header-brand .mobile-nav-toggle:hover {
	background: rgba(11, 74, 143, 0.08);
	color: var(--brand-royal-dark);
}

@media (min-width: 1200px) {
	.header.header-brand .navmenu a,
	.header.header-brand .navmenu a:focus {
		padding: 8px 14px;
		font-size: 0.875rem;
		font-weight: 600;
		letter-spacing: 0.02em;
	}

	.header.header-brand .btn-getstarted,
	.header.header-brand .btn-getstarted:focus {
		background: var(--brand-royal) !important;
		color: #fff !important;
		border: 1px solid var(--brand-royal) !important;
		font-weight: 600;
		font-size: 0.8125rem !important;
		padding: 0.5rem 1.15rem !important;
		margin: 0 0 0 12px !important;
		line-height: 1.35;
		border-radius: 10px;
		box-shadow: 0 2px 10px rgba(11, 74, 143, 0.22);
	}

	.header.header-brand .btn-getstarted:hover,
	.header.header-brand .btn-getstarted:focus:hover {
		background: var(--brand-royal-dark) !important;
		color: #fff !important;
		border-color: var(--brand-royal-dark) !important;
	}
}

@media (max-width: 1199px) {
	.header.header-brand .btn-getstarted,
	.header.header-brand .btn-getstarted:focus {
		background: var(--brand-royal) !important;
		color: #fff !important;
		border: 1px solid var(--brand-royal) !important;
		font-weight: 600;
		border-radius: 10px;
	}

	.header.header-brand .btn-getstarted:hover,
	.header.header-brand .btn-getstarted:focus:hover {
		background: var(--brand-royal-dark) !important;
		color: #fff !important;
		border-color: var(--brand-royal-dark) !important;
	}

	.header.header-brand .btn-getstarted {
		font-size: 12px !important;
		padding: 5px 12px !important;
		margin-right: 6px !important;
		margin-left: 0 !important;
	}
}

body.mobile-nav-active .header.header-brand .navmenu {
	background: rgba(255, 255, 255, 0.98);
}

body.mobile-nav-active .header.header-brand .navmenu ul li a {
	color: var(--heading-color);
}

/* Nav dropdowns — override broken listing-dropdown full-width layout */
@media (min-width: 1200px) {
	.header.header-brand {
		z-index: 1000;
	}

	.header.header-brand .navmenu > ul > li {
		position: relative;
	}

	.header.header-brand .navmenu .dropdown > ul {
		left: 0;
		right: auto;
		min-width: 12.5rem;
		border-radius: 12px;
		border: 1px solid var(--border-subtle);
		box-shadow: 0 14px 40px rgba(10, 22, 40, 0.12);
		padding: 0.4rem 0;
		overflow: hidden;
	}

	.header.header-brand .navmenu .dropdown > ul > li > a {
		padding: 0.55rem 1rem;
		font-size: 0.875rem;
		font-weight: 500;
		white-space: normal;
		line-height: 1.35;
	}

	.header.header-brand .navmenu .dropdown > ul > li > a:hover,
	.header.header-brand .navmenu .dropdown > ul > li > a.active {
		background: rgba(11, 74, 143, 0.06);
		color: var(--brand-royal-dark);
	}

	/* Services: single-column vertical dropdown (scrollable) */
	.header.header-brand .navmenu .dropdown-services > ul {
		left: 0;
		min-width: 16.5rem;
		max-width: min(20rem, calc(100vw - 2rem));
		max-height: min(70vh, 22rem);
		overflow-x: hidden;
		overflow-y: auto;
		padding: 0.4rem 0;
		display: block;
	}

	.header.header-brand .navmenu .dropdown-services:hover > ul {
		display: block;
	}

	.header.header-brand .navmenu .dropdown-services > ul > li {
		min-width: 0;
	}

	.header.header-brand .navmenu .dropdown-services > ul > li.dropdown-label {
		padding: 0.4rem 1rem 0.35rem;
		pointer-events: none;
		border-bottom: 1px solid var(--border-subtle);
		margin-bottom: 0.25rem;
	}

	.header.header-brand .navmenu .dropdown-services > ul > li.dropdown-label span {
		font-size: 0.6875rem;
		font-weight: 700;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: var(--ink-muted);
	}

	.header.header-brand .navmenu .dropdown-services > ul > li.dropdown-label + li > a {
		font-weight: 600;
	}

	.header.header-brand .navmenu .dropdown .toggle-dropdown {
		font-size: 0.65rem;
		margin-left: 0.2rem;
		pointer-events: none;
	}
}

@media (max-width: 1199px) {
	.header.header-brand .navmenu .dropdown > ul {
		margin: 0.35rem 0.75rem 0.65rem;
		padding: 0.35rem 0;
		border-radius: 10px;
		border: 1px solid var(--border-subtle);
		background: #fff;
	}

	.header.header-brand .navmenu .dropdown > ul.dropdown-active {
		display: block;
	}

	.header.header-brand .navmenu .dropdown-services > ul {
		max-height: 18rem;
		overflow-y: auto;
	}

	.header.header-brand .navmenu .dropdown > ul > li > a {
		padding: 0.5rem 1rem;
		font-size: 0.9375rem;
	}
}

/* Inner page hero (replaces plain .page-title block) */
.page-hero {
	position: relative;
	padding: 6.5rem 0 2.75rem;
	margin: 0;
	overflow: hidden;
	border-bottom: 1px solid var(--border-subtle);
	background: #fff;
}

.page-hero-bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(125deg, rgba(11, 74, 143, 0.1) 0%, rgba(255, 255, 255, 0) 45%),
		linear-gradient(245deg, rgba(13, 91, 168, 0.07) 0%, transparent 50%),
		radial-gradient(ellipse 70% 80% at 95% 10%, rgba(11, 74, 143, 0.08), transparent 55%);
	pointer-events: none;
}

.page-hero .container {
	position: relative;
	z-index: 1;
}

.page-hero-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	margin: 0 0 1.15rem;
	padding: 0;
	font-size: 0.8125rem;
	font-weight: 600;
}

.page-hero-breadcrumbs li {
	display: inline-flex;
	align-items: center;
	color: var(--ink-muted);
}

.page-hero-breadcrumbs li + li::before {
	content: "/";
	display: inline-block;
	margin: 0 0.5rem;
	color: rgba(10, 22, 40, 0.3);
	font-weight: 400;
}

.page-hero-breadcrumbs a {
	color: var(--brand-royal);
	text-decoration: none;
}

.page-hero-breadcrumbs a:hover {
	color: var(--brand-royal-dark);
	text-decoration: underline;
}

.page-hero-breadcrumbs .current {
	color: var(--ink-muted);
	font-weight: 600;
}

.page-hero-eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--brand-royal);
	margin: 0 0 0.5rem;
}

.page-hero-title {
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 4vw, 2.65rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.12;
	color: var(--heading-color);
	margin: 0 0 0.85rem;
	max-width: 28rem;
}

.page-hero-lead {
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--ink-muted);
	margin: 0;
	max-width: 40rem;
}

.main > .page-hero + .section,
.main > .page-hero + section.about,
.main > .page-hero + section.services,
.main > .page-hero + section#service-details,
.main > .page-hero + section#contact {
	padding-top: 2.75rem;
}

@media (max-width: 767px) {
	.page-hero {
		padding: 5.75rem 0 2rem;
	}

	.page-hero-title {
		max-width: none;
	}
}

/* Hero: full-viewport background slider + foreground copy (index) */
.hero-brand {
	color: rgba(255, 255, 255, 0.96);
}

.hero-brand.hero-brand--fullscreen {
	position: relative;
	isolation: isolate;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding-top: clamp(5.25rem, 11vh, 7.5rem);
	padding-bottom: clamp(2.5rem, 6vh, 4rem);
	/* Override global `.section` (padding + opaque bg) so the slider fills the viewport */
	background-color: transparent;
}

.hero-brand--fullscreen .hero-brand-slider-layer {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-brand--fullscreen .hero-slider--fullscreen {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100%;
	border: none;
	border-radius: 0;
	overflow: hidden;
	background: #061f3d;
}

.hero-brand--fullscreen .hero-slider--fullscreen .swiper-wrapper {
	height: 100%;
}

.hero-brand--fullscreen .hero-slider--fullscreen .swiper-slide {
	height: 100%;
	margin: 0;
}

.hero-brand--fullscreen .hero-slider-img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center;
	filter: brightness(0.56) contrast(1.04);
}

.hero-brand--fullscreen .hero-brand-content {
	position: relative;
	z-index: 2;
}

.hero-brand--fullscreen .hero-title {
	text-shadow: 0 2px 32px rgba(0, 0, 0, 0.5);
}

.hero-brand--fullscreen .hero-sub,
.hero-brand--fullscreen .trust-strip {
	text-shadow: 0 1px 18px rgba(0, 0, 0, 0.4);
}

.hero-brand .hero-title {
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 4.5vw, 2.85rem);
	font-weight: 600;
	line-height: 1.22;
	letter-spacing: -0.025em;
	color: #fff;
	max-width: min(100%, 34rem);
}

.hero-brand .hero-sub {
	font-size: 1.0625rem;
	max-width: 38rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.88);
	font-weight: 450;
}

.hero-brand .tagline-strip {
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	padding: 0.45rem 1.15rem;
	font-weight: 600;
	font-size: 0.8125rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hero-brand .trust-strip {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.6;
}

.hero-brand .btn-hero-outline {
	border: 1px solid rgba(255, 255, 255, 0.65);
	color: #fff;
	font-weight: 600;
	padding: 0.65rem 1.35rem;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.04);
}

.hero-brand .btn-hero-outline:hover {
	background: #fff;
	color: var(--brand-royal);
}

.hero-brand .btn-hero-solid {
	background: #fff;
	color: var(--brand-royal);
	font-weight: 600;
	padding: 0.65rem 1.35rem;
	border-radius: 10px;
	border: none;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.hero-brand .btn-hero-solid:hover {
	background: #e7f1ff;
	color: var(--brand-royal-dark);
}

.hero-brand .btn-hero-wa {
	background: var(--wa-green);
	color: #fff;
}

.hero-brand .btn-hero-wa:hover {
	background: var(--wa-green-hover);
	color: #fff;
}

.hero-brand .btn-hero-solid,
.hero-brand .btn-hero-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	min-height: 2.65rem;
	padding-left: 1.1rem;
	padding-right: 1.1rem;
}

.hero-brand .btn-hero-solid .material-symbols-outlined,
.hero-brand .btn-hero-outline .material-symbols-outlined {
	font-size: 1.25rem;
	line-height: 1;
	flex-shrink: 0;
}

.hero-brand .btn-hero-wa .wa-glyph-hero {
	font-size: 1.25rem;
	line-height: 1;
	flex-shrink: 0;
	vertical-align: -0.08em;
}

/* Hero fullscreen slider controls (assets/img/slider/) */
.hero-brand--fullscreen .hero-slider--fullscreen .swiper-pagination {
	bottom: max(1rem, env(safe-area-inset-bottom, 0px)) !important;
	z-index: 3;
}

.hero-brand--fullscreen .hero-slider--fullscreen .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
}

.hero-brand--fullscreen .hero-slider--fullscreen .swiper-pagination-bullet-active {
	background: #fff;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.hero-brand--fullscreen .hero-slider-nav {
	width: 44px;
	height: 44px;
	margin-top: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	color: #fff;
	background: rgba(6, 31, 61, 0.5);
	border-radius: 50%;
	backdrop-filter: blur(8px);
}

.hero-brand--fullscreen .hero-slider-nav::after {
	font-size: 1rem;
	font-weight: 700;
}

.hero-brand--fullscreen .hero-slider-nav:hover {
	background: rgba(6, 31, 61, 0.78);
	color: #fff;
}

.hero-brand--fullscreen .swiper-button-prev.hero-slider-nav {
	left: max(0.75rem, env(safe-area-inset-left, 0px));
}

.hero-brand--fullscreen .swiper-button-next.hero-slider-nav {
	right: max(0.75rem, env(safe-area-inset-right, 0px));
}

@media (max-width: 575px) {
	.hero-brand--fullscreen .hero-slider-nav {
		display: none;
	}
}

/* Value proposition tiles */
.value-tile-card {
	border: 1px solid var(--border-subtle);
	border-radius: 14px;
	padding: 1.65rem 1.5rem;
	height: 100%;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
	background: var(--surface-color);
	box-shadow: var(--shadow-soft);
}

.value-tile-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-card);
	border-color: rgba(11, 74, 143, 0.12);
}

.value-tile-card .tile-icon {
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, rgba(13, 110, 253, 0.14), rgba(13, 110, 253, 0.06));
	border: 1px solid rgba(13, 110, 253, 0.12);
	margin-bottom: 1rem;
}

.value-tile-card .tile-icon .material-symbols-outlined {
	font-size: 1.65rem;
	color: var(--brand-royal);
	line-height: 1;
}

.value-tile-card h3 {
	font-family: var(--font-display);
	font-weight: 600;
	letter-spacing: -0.01em;
}

#about .lead {
	font-size: 1.125rem;
	line-height: 1.65;
	color: var(--ink-muted);
}

/* About: logo only (no card / panel behind it) */
#about .about-logo-img {
	display: block;
	max-width: min(260px, 88vw);
	width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

/* Lists */
.reasons-list li {
	padding: 0.35rem 0;
	padding-left: 1.5rem;
	position: relative;
}

.reasons-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65rem;
	width: 0.55rem;
	height: 0.55rem;
	background: var(--brand-royal);
	border-radius: 50%;
}

.credentials-line {
	border-left: 4px solid var(--brand-accent);
	padding: 0.75rem 1rem;
	background: linear-gradient(90deg, var(--brand-accent-soft), transparent);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-size: 0.95rem;
}

/* Service cards */
.service-card-brand {
	border: 1px solid rgba(13, 110, 253, 0.1);
	border-radius: 12px;
	padding: 1.5rem;
	height: 100%;
	background: var(--surface-color);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card-brand:hover {
	border-color: rgba(13, 110, 253, 0.35);
	box-shadow: 0 10px 32px rgba(13, 110, 253, 0.1);
}

.service-card-brand h3 {
	font-size: 1.1rem;
	margin-bottom: 0.75rem;
}

.service-card-brand p {
	font-size: 0.92rem;
	margin: 0;
	color: var(--default-color);
}

.service-card-brand .svc-icon {
	width: 4.25rem;
	height: 4.25rem;
	border-radius: 0.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: rgba(13, 110, 253, 0.1);
	border: 1px solid rgba(13, 110, 253, 0.14);
	margin-bottom: 1rem;
}

.service-card-brand .svc-icon .material-symbols-outlined {
	color: var(--brand-royal);
	font-size: 2.25rem;
	line-height: 1;
	font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 32;
}

/* Service category cards Material Symbols + detailed lists */
.service-card-grid-wrap {
	margin-top: 0.5rem;
}

.service-category-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--border-subtle);
	border-radius: 16px;
	background: var(--surface-color);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	transition: border-color 0.22s ease, box-shadow 0.25s ease, transform 0.22s ease;
}

.service-category-card:hover {
	border-color: rgba(11, 74, 143, 0.18);
	box-shadow: var(--shadow-card);
	transform: translateY(-2px);
}

.service-category-card-head {
	text-align: center;
	padding: 1.35rem 1.25rem 1rem;
	background: linear-gradient(180deg, rgba(11, 74, 143, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
	border-bottom: 1px solid var(--border-subtle);
}

.service-category-card-icon {
	width: 4.75rem;
	height: 4.75rem;
	margin: 0 auto 1rem;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, rgba(11, 74, 143, 0.12), rgba(11, 74, 143, 0.04));
	border: 1px solid rgba(11, 74, 143, 0.14);
}

.service-category-card-glyph {
	font-size: 2.5rem !important;
	line-height: 1 !important;
	color: var(--brand-royal) !important;
	font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 48 !important;
}

.service-category-card-title {
	font-family: var(--font-display);
	font-size: clamp(1rem, 2.1vw, 1.2rem);
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.02em;
	color: var(--heading-color);
	margin: 0;
}

.service-category-card-body {
	flex: 1 1 auto;
	padding: 1rem 1.15rem 1.2rem;
	min-height: 0;
}

.service-category-card-list {
	margin: 0;
	padding: 0;
	padding-left: 1.15rem;
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--ink-muted);
	max-height: 19rem;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgba(11, 74, 143, 0.35) transparent;
}

.service-category-card-list::-webkit-scrollbar {
	width: 6px;
}

.service-category-card-list::-webkit-scrollbar-thumb {
	background: rgba(11, 74, 143, 0.28);
	border-radius: 6px;
}

.service-category-card-list li {
	margin-bottom: 0.4rem;
	padding-left: 0.15rem;
}

.service-category-card-list li:last-child {
	margin-bottom: 0;
}

.why-choose-intro {
	max-width: 40rem;
	line-height: 1.55;
}

/* Why choose us (Material Symbols from Google Fonts, see head.php) */
.why-choose-item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	height: 100%;
	padding: 1rem 1.15rem;
	border-radius: 12px;
	border: 1px solid var(--border-subtle);
	background: var(--surface-color);
	box-shadow: 0 1px 3px rgba(10, 22, 40, 0.04);
}

.why-choose-item-icon {
	flex-shrink: 0;
	width: 2.65rem;
	height: 2.65rem;
	border-radius: 0.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, rgba(13, 110, 253, 0.14), rgba(13, 110, 253, 0.06));
	border: 1px solid rgba(13, 110, 253, 0.12);
}

.why-choose-item-glyph {
	font-family: "Material Symbols Outlined" !important;
	font-weight: normal !important;
	font-style: normal !important;
	font-size: 1.4rem !important;
	line-height: 1 !important;
	color: var(--brand-royal);
	font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
	-webkit-font-smoothing: antialiased;
}

.why-choose-item-body {
	flex: 1;
	min-width: 0;
}

.why-choose-item-title {
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--heading-color);
	line-height: 1.35;
	letter-spacing: -0.01em;
	margin: 0 0 0.4rem;
}

.why-choose-item-blurb {
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.55;
	color: var(--ink-muted);
}

.brand-catalog-chip {
	display: inline-block;
	padding: 0.35rem 0.7rem;
	border-radius: 6px;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--ink-muted);
	background: #f4f6f9;
	border: 1px solid var(--border-subtle);
}

.brand-catalog-heading {
	letter-spacing: 0.06em;
	font-weight: 700 !important;
}

/* Industries we serve Bootstrap Icons (reliable vs Material ligature fallbacks) */
.industry-card-row {
	--industry-card-icon-size: 4.5rem;
	--industry-card-glyph: 2.35rem;
}

.industry-card {
	border: 1px solid var(--border-subtle);
	border-radius: 14px;
	padding: 1.5rem 1.35rem;
	background: var(--surface-color);
	height: 100%;
	box-shadow: var(--shadow-soft);
	transition: border-color 0.2s ease, box-shadow 0.22s ease;
}

.industry-card:hover {
	border-color: rgba(13, 110, 253, 0.22);
	box-shadow: 0 12px 36px rgba(13, 110, 253, 0.1);
}

.industry-card-icon {
	width: var(--industry-card-icon-size);
	height: var(--industry-card-icon-size);
	border-radius: 0.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	background: linear-gradient(145deg, rgba(13, 110, 253, 0.16), rgba(13, 110, 253, 0.05));
	border: 1px solid rgba(13, 110, 253, 0.14);
	flex-shrink: 0;
}

.industry-card-icon .bi {
	font-size: var(--industry-card-glyph);
	line-height: 1;
	color: var(--brand-royal);
	display: block;
}

.industry-card-title {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	line-height: 1.3;
	color: var(--heading-color);
	letter-spacing: -0.015em;
}

.industry-card-blurb {
	font-size: 0.94rem;
	line-height: 1.55;
	color: var(--default-color);
}

@media (max-width: 575.98px) {
	.industry-card-row {
		--industry-card-icon-size: 4rem;
		--industry-card-glyph: 2rem;
	}
}

/* Partners page — mosaic grid + category panels */
.partners-hub-section {
	padding-top: 2rem;
}

.partners-hub-intro {
	margin-bottom: 2.5rem;
}

.partners-hub-eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--brand-royal);
	margin-bottom: 0.5rem;
}

.partners-hub-title {
	font-family: var(--font-sans);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: var(--heading-color);
	margin-bottom: 0.75rem;
}

.partners-hub-lead {
	font-size: 1.02rem;
	line-height: 1.65;
	color: var(--ink-muted);
	max-width: 38rem;
}

.partners-hub-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
}

.partners-hub-stats li {
	background: var(--brand-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 1rem 0.85rem;
	text-align: center;
	box-shadow: var(--shadow-soft);
}

.partners-hub-stat-value {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--brand-royal);
	line-height: 1.1;
}

.partners-hub-stat-label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--ink-muted);
	margin-top: 0.25rem;
}

.partners-mosaic-wrap {
	margin-bottom: 3.5rem;
}

.partners-mosaic {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
	gap: 0.85rem;
}

.partners-mosaic__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	min-height: 6.75rem;
	padding: 1.1rem 0.85rem;
	background: var(--brand-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-soft);
	transition: transform 0.22s var(--motion-ease, ease), box-shadow 0.22s ease, border-color 0.2s ease;
}

.partners-mosaic__cell:hover .partners-mosaic__card {
	transform: translateY(-2px);
	box-shadow: var(--shadow-card);
	border-color: rgba(11, 74, 143, 0.16);
}

.partners-mosaic__logo {
	height: 2rem;
	width: auto;
	max-width: 5.5rem;
	object-fit: contain;
	filter: grayscale(1) opacity(0.72);
	transition: filter 0.25s ease;
}

.partners-mosaic__cell:hover .partners-mosaic__logo {
	filter: grayscale(0) opacity(1);
}

.partners-mosaic__fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: var(--radius-sm);
	background: var(--brand-accent-soft);
	color: var(--brand-royal);
}

.partners-mosaic__fallback .bi {
	font-size: 1.35rem;
	line-height: 1;
}

.partners-mosaic__name {
	font-size: 0.6875rem;
	font-weight: 600;
	text-align: center;
	color: var(--ink-muted);
	line-height: 1.25;
}

.partners-mosaic-note {
	text-align: center;
	margin-top: 1.25rem;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
}

.partners-categories-wrap {
	margin-bottom: 2.5rem;
}

.partners-category-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.partners-category-panel {
	background: var(--brand-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 1.5rem 1.35rem 1.35rem;
	box-shadow: var(--shadow-soft);
}

.partners-category-panel__head {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.25rem;
	padding-bottom: 1.15rem;
	border-bottom: 1px solid var(--border-subtle);
}

.partners-category-panel__icon {
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, rgba(11, 74, 143, 0.1), rgba(11, 74, 143, 0.03));
	border: 1px solid rgba(11, 74, 143, 0.12);
}

.partners-category-panel__icon .material-symbols-outlined {
	font-size: 1.5rem;
	color: var(--brand-royal);
}

.partners-category-panel__title {
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--heading-color);
	margin: 0 0 0.35rem;
}

.partners-category-panel__summary {
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--ink-muted);
}

.partners-category-panel__logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem 1rem;
	margin-bottom: 1.15rem;
}

.partners-category-panel__logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 5.5rem;
	min-height: 2.75rem;
	padding: 0.5rem 0.85rem;
	background: var(--brand-surface-muted);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-sm);
}

.partners-category-panel__logo-item img {
	height: 1.65rem;
	width: auto;
	max-width: 5rem;
	object-fit: contain;
	filter: grayscale(0.15);
}

.partners-category-panel__logo-fallback {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--heading-color);
}

.partners-category-panel__logo-fallback .bi {
	color: var(--brand-royal);
}

.partners-category-panel__software-label {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ink-muted);
	margin-bottom: 0.65rem;
}

.partners-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.partners-chip {
	display: inline-block;
	padding: 0.35rem 0.75rem;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--heading-color);
	background: var(--brand-surface-muted);
	border: 1px solid var(--border-subtle);
	border-radius: 999px;
	line-height: 1.35;
}

.partners-legal {
	margin-top: 0.5rem;
}

.partners-legal__box {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem 1.35rem;
	background: var(--brand-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	border-left: 4px solid var(--brand-royal);
}

.partners-legal__icon {
	font-size: 1.5rem;
	color: var(--brand-royal);
	flex-shrink: 0;
}

.partners-legal__title {
	font-weight: 700;
	font-size: 0.9375rem;
	color: var(--heading-color);
}

.partners-legal__text {
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--ink-muted);
}

@media (min-width: 992px) {
	.partners-mosaic {
		grid-template-columns: repeat(5, 1fr);
	}

	.partners-category-panel {
		padding: 1.65rem 1.75rem 1.5rem;
	}
}

@media (max-width: 575px) {
	.partners-hub-stats {
		grid-template-columns: 1fr;
	}

	.partners-mosaic {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Contact page — phone & WhatsApp channels (no form) */
.contact-channels {
	max-width: 52rem;
	margin-left: auto;
	margin-right: auto;
}

.contact-channel-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	padding: 2rem 1.5rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-subtle);
	background: var(--brand-surface);
	box-shadow: var(--shadow-soft);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.2s ease;
}

.contact-channel-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-card);
	color: inherit;
}

.contact-channel-card--phone:hover {
	border-color: rgba(11, 74, 143, 0.25);
}

.contact-channel-card--wa:hover {
	border-color: rgba(37, 211, 102, 0.35);
}

.contact-channel-card__icon {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.contact-channel-card--phone .contact-channel-card__icon {
	background: rgba(11, 74, 143, 0.1);
	color: var(--brand-royal);
}

.contact-channel-card--phone .contact-channel-card__icon .material-symbols-outlined {
	font-size: 2rem;
}

.contact-channel-card--wa .contact-channel-card__icon {
	background: rgba(37, 211, 102, 0.12);
	color: var(--wa-green);
}

.contact-channel-card--wa .contact-channel-card__icon .wa-glyph {
	font-size: 2rem;
	line-height: 1;
}

.contact-channel-card__label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-muted);
	margin-bottom: 0.35rem;
}

.contact-channel-card__value {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--heading-color);
	letter-spacing: -0.02em;
	margin-bottom: 0.5rem;
}

.contact-channel-card__hint {
	font-size: 0.8125rem;
	line-height: 1.45;
	color: var(--ink-muted);
	max-width: 16rem;
}

.contact-details-card {
	background: var(--brand-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 1.75rem 1.5rem;
	box-shadow: var(--shadow-soft);
}

.contact-details-list__item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.65rem 0;
	border-bottom: 1px solid var(--border-subtle);
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--ink-muted);
}

.contact-details-list__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.contact-details-list__icon {
	flex-shrink: 0;
	font-size: 1.25rem;
	color: var(--brand-royal);
	margin-top: 0.1rem;
}

.contact-details-list a {
	color: var(--brand-royal);
	font-weight: 600;
	text-decoration: none;
}

.contact-details-list a:hover {
	color: var(--brand-royal-dark);
	text-decoration: underline;
}

/* Legacy contact mode grid (unused on contact page) */
.contact-mode-grid {
	--cm-circle: 6rem;
	--cm-glyph: 3rem;
}

.contact-mode-grid .cm-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: flex-start;
	padding: 1.45rem 0.85rem;
	min-height: 11.75rem;
}

.contact-mode-grid .cm-icon-wrap {
	width: var(--cm-circle);
	height: var(--cm-circle);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
	background: #fff;
	border: 1px solid var(--border-subtle);
	box-shadow: var(--shadow-soft);
}

.contact-mode-grid .cm-icon-wrap .material-symbols-outlined {
	font-size: var(--cm-glyph);
	line-height: 1;
	color: var(--brand-royal);
	font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 40;
}

.contact-mode-grid .cm-icon-wrap .wa-glyph-cm {
	font-size: var(--cm-glyph);
	line-height: 1;
	color: var(--wa-green);
}

@media (min-width: 768px) {
	.contact-mode-grid {
		--cm-circle: 6.75rem;
		--cm-glyph: 3.375rem;
	}

	.contact-mode-grid .cm-icon-wrap .material-symbols-outlined {
		font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
	}
}

@media (min-width: 1200px) {
	.contact-mode-grid {
		--cm-circle: 7.25rem;
		--cm-glyph: 3.625rem;
	}
}

.contact-mode-grid .cm-item strong {
	line-height: 1.35;
	max-width: 8rem;
}

/* Footer — light bar + royal blue type (matches .header.header-brand) */
.footer.footer-brand {
	padding-bottom: 0 !important;
	margin-bottom: 0;
	background: #ffffff;
	border-top: 1px solid var(--border-subtle);
	box-shadow: 0 -4px 24px rgba(10, 22, 40, 0.04);
	color: var(--ink-muted);
}

.footer.footer-brand .footer-contact-line {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
}

.footer.footer-brand .footer-contact-line .footer-contact-icon {
	flex-shrink: 0;
	width: 1.5rem;
	height: 1.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.12rem;
}

.footer.footer-brand .footer-contact-line .footer-contact-icon .material-symbols-outlined {
	font-size: 1.25rem;
	line-height: 1;
	color: var(--brand-royal);
}

.footer.footer-brand .footer-nav-link-row {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.footer.footer-brand .footer-nav-link-row .icon-chevron-footer {
	font-size: 1.125rem;
	line-height: 1;
	color: var(--brand-royal-soft);
	flex-shrink: 0;
}

.footer.footer-brand .footer-main {
	background: transparent;
	color: var(--ink-muted);
}

.footer.footer-brand .footer-main h4 {
	color: var(--brand-royal);
	font-size: 0.9375rem;
	font-family: var(--font-sans);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	opacity: 1;
}

.footer.footer-brand .footer-main a {
	color: var(--brand-royal);
	font-weight: 500;
}

.footer.footer-brand .footer-main a:hover {
	color: var(--brand-royal-dark);
}

.footer.footer-brand .footer-brand-logo {
	display: block;
	max-height: 64px;
	width: auto;
	height: auto;
}

.footer.footer-brand .copyright-line {
	border-top: 1px solid var(--border-subtle);
}

.footer.footer-brand .footer-copyright-block {
	color: var(--ink-muted);
	line-height: 1.65;
	max-width: 44rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

.footer.footer-brand .footer-copy-brand {
	color: var(--heading-color);
	font-size: 0.9rem;
	letter-spacing: 0.01em;
}

.footer.footer-brand .footer-copy-symbol {
	font-size: 1.05em;
	margin-right: 0.15rem;
	vertical-align: 0;
}

.footer.footer-brand .footer-copy-details {
	font-size: 0.8425rem;
}

.footer.footer-brand .footer-copy-dot {
	opacity: 0.4;
	display: inline-block;
	padding: 0 0.38rem;
}

.footer.footer-brand .footer-copy-gst {
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.06em;
}

.footer.footer-brand .footer-copy-link {
	color: var(--brand-royal);
	text-decoration: none;
	border-bottom: 1px solid rgba(11, 74, 143, 0.22);
	transition: border-color 0.15s ease, color 0.15s ease;
}

.footer.footer-brand .footer-copy-link:hover {
	color: var(--brand-royal-dark);
	border-bottom-color: rgba(7, 47, 94, 0.45);
}

@media (max-width: 575.98px) {
	.footer.footer-brand .footer-copy-dot {
		padding: 0 0.3rem;
	}
}

.footer.footer-brand .footer-links ul li {
	padding: 6px 0;
	align-items: flex-start;
}

.footer.footer-brand .footer-links ul li:first-child {
	padding-top: 0;
}

.footer.footer-brand .footer-links ul a {
	line-height: 1.35;
}

/* Primary actions align with institutional palette */
.btn.btn-primary {
	background-color: var(--brand-royal);
	border-color: var(--brand-royal);
	border-radius: 10px;
	font-weight: 600;
	letter-spacing: 0.02em;
	padding: 0.65rem 1.35rem;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
	background-color: var(--brand-royal-dark);
	border-color: var(--brand-royal-dark);
}

/* Fixed stack: WhatsApp above scroll-to-top (matches .scroll-top 40×40 in main.css) */
.scroll-top {
	bottom: calc(15px + env(safe-area-inset-bottom, 0px));
	border-radius: 10px !important;
	background-color: var(--brand-royal) !important;
}

.scroll-top:hover {
	background-color: var(--brand-royal-dark) !important;
}

.floating-wa {
	position: fixed;
	right: calc(15px + env(safe-area-inset-right, 0px));
	bottom: calc(15px + 40px + 14px + env(safe-area-inset-bottom, 0px));
	z-index: 99998;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--wa-green);
	color: #fff !important;
	text-decoration: none;
	box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
	transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-wa:hover {
	background: var(--wa-green-hover);
	color: #fff !important;
	transform: scale(1.06);
	box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.floating-wa:focus-visible {
	outline: 2px solid var(--brand-royal);
	outline-offset: 3px;
}

.floating-wa .wa-glyph-floating {
	font-size: 1.75rem;
	line-height: 1;
	color: inherit;
	vertical-align: 0;
}

.scroll-top .material-symbols-outlined {
	line-height: 1;
	font-size: 22px;
	color: var(--contrast-color);
}

/* Bootstrap Icons blog & legacy pages: align with text */
.bi {
	display: inline-block;
	vertical-align: -0.12em;
	line-height: 1;
}

.footer:not(.footer-brand) ul .bi {
	margin-right: 0;
}

.meta.d-flex.align-items-center .bi,
li.d-flex.align-items-center > .bi:first-child {
	flex-shrink: 0;
	width: 1.1em;
	text-align: center;
	margin-right: 0.4rem;
}

a.explore-tile {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.explore-tile:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
