@charset "UTF-8";
/* =====================================================================
   SaryTech Solutions — Public website stylesheet
   Purple #4A2559 establishes authority, Blue #28ABE3 carries technology
   and interaction, Burgundy #620C0F is reserved for emphasis, and white
   provides the space that lets project photography carry the page.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. Fonts
   --------------------------------------------------------------------- */
@font-face {
	font-family: 'Poppins';
	src: url('../fonts/poppins-400.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Poppins';
	src: url('../fonts/poppins-500.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Poppins';
	src: url('../fonts/poppins-700.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* ---------------------------------------------------------------------
   2. Design tokens
   --------------------------------------------------------------------- */
:root {
	/* Brand */
	--purple: #4A2559;
	--purple-800: #3A1C46;
	--purple-900: #2A1433;
	--purple-300: #8B6699;
	--purple-100: #EDE4F1;
	--purple-50: #F7F3F9;

	--blue: #28ABE3;
	--blue-700: #1B7FAB;
	--blue-800: #145E7F;
	--blue-100: #DCF1FB;
	--blue-50: #F0F9FE;

	--burgundy: #620C0F;
	--burgundy-600: #8A1418;
	--burgundy-100: #F6E4E5;

	/* Neutrals */
	--white: #FFFFFF;
	--light: #F7F7F9;
	--light-2: #EFEFF3;
	--border: #E3E3EA;
	--muted: #5F5F6D;
	--dark: #1A1A1A;

	/* Feedback */
	--success: #1F7A4D;
	--success-bg: #E7F5EE;
	--warning: #B57508;
	--warning-bg: #FDF3E2;
	--danger: var(--burgundy);
	--danger-bg: var(--burgundy-100);
	--info: var(--blue-700);
	--info-bg: var(--blue-50);

	/* Type */
	--font-display: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
	--font-body: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;

	/* Carousel controls sit this far above the bottom of the hero. The stats
	   card's overlap is derived from it, so the card can never cover the
	   arrows or the dots at any viewport width. */
	--hero-controls-inset: clamp(2rem, 1.25rem + 2.5vw, 4rem);
	--hero-controls-gap: 1.75rem;

	--fs-hero: clamp(2.25rem, 1.2rem + 4.2vw, 4.25rem);
	--fs-h1: clamp(1.95rem, 1.25rem + 2.4vw, 3.05rem);
	--fs-h2: clamp(1.6rem, 1.15rem + 1.6vw, 2.35rem);
	--fs-h3: clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem);
	--fs-h4: 1.125rem;
	--fs-body: 1rem;
	--fs-sm: 0.9375rem;
	--fs-xs: 0.8125rem;

	/* Space */
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.5rem;
	--space-6: 2rem;
	--space-7: 3rem;
	--space-8: 4rem;
	--section-y: clamp(3.5rem, 2rem + 5vw, 6.5rem);

	/* Shape */
	--radius-sm: 6px;
	--radius: 12px;
	--radius-lg: 20px;
	--radius-pill: 999px;

	--shadow-sm: 0 1px 2px rgba(26, 26, 26, .06), 0 2px 8px rgba(26, 26, 26, .04);
	--shadow: 0 4px 12px rgba(42, 20, 51, .08), 0 12px 32px rgba(42, 20, 51, .06);
	--shadow-lg: 0 18px 48px rgba(42, 20, 51, .16);

	--container: 1220px;
	--nav-height: 84px;
	--transition: 220ms cubic-bezier(.4, 0, .2, 1);
}

/* Pillar accents — every card, badge and gradient reads its colour from here */
.pillar-secure { --pillar: var(--purple); --pillar-dark: var(--purple-900); --pillar-soft: var(--purple-50); --pillar-tint: var(--purple-100); }
.pillar-connect { --pillar: var(--blue); --pillar-dark: var(--blue-800); --pillar-soft: var(--blue-50); --pillar-tint: var(--blue-100); }
.pillar-power { --pillar: var(--burgundy); --pillar-dark: #38070A; --pillar-soft: #FCF4F4; --pillar-tint: var(--burgundy-100); }

/* ---------------------------------------------------------------------
   3. Base
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--nav-height) + 20px);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: 1.65;
	color: var(--dark);
	background: var(--white);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--purple-900);
	margin: 0 0 var(--space-4);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { margin: 0 0 var(--space-4); }
p:last-child { margin-bottom: 0; }

a { color: var(--purple); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-700); }

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

ul, ol { margin: 0 0 var(--space-4); padding-left: 1.25rem; }
li { margin-bottom: var(--space-2); }

hr { border: 0; border-top: 1px solid var(--border); margin: var(--space-6) 0; }

blockquote {
	margin: var(--space-6) 0;
	padding: var(--space-5) var(--space-6);
	border-left: 4px solid var(--blue);
	background: var(--purple-50);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-size: 1.05rem;
}

::selection { background: var(--blue-100); color: var(--purple-900); }

:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 2px;
	border-radius: 4px;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--purple);
	color: #fff;
	padding: var(--space-3) var(--space-5);
	z-index: 2000;
	border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; }

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

.icon { flex: none; vertical-align: middle; }

/* ---------------------------------------------------------------------
   4. Layout
   --------------------------------------------------------------------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--space-5);
}
.container-narrow { max-width: 820px; }

.section { padding-block: var(--section-y); }
.section-tight { padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.section-light { background: var(--light); }
.section-purple { background: var(--purple-900); color: rgba(255, 255, 255, .85); }
.section-purple h1, .section-purple h2, .section-purple h3, .section-purple h4 { color: #fff; }

.grid { display: grid; gap: var(--space-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-auto-sm { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

.stack > * + * { margin-top: var(--space-4); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Section headings */
.section-head { max-width: 720px; margin-bottom: var(--space-7); }
.section-head.is-center { margin-inline: auto; text-align: center; }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	font-family: var(--font-display);
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--blue-700);
	margin-bottom: var(--space-3);
}
.eyebrow::before {
	content: "";
	width: 28px; height: 2px;
	background: var(--blue);
	border-radius: 2px;
}
.is-center .eyebrow::before { display: none; }
.section-purple .eyebrow { color: var(--blue); }

.section-head p { color: var(--muted); font-size: 1.06rem; }
.section-purple .section-head p { color: rgba(255, 255, 255, .75); }

.lead { font-size: 1.12rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   5. Buttons
   --------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	font-family: var(--font-display);
	font-size: var(--fs-sm);
	font-weight: 600;
	line-height: 1.2;
	padding: 0.95rem 1.6rem;
	border: 2px solid transparent;
	border-radius: var(--radius-pill);
	cursor: pointer;
	transition: all var(--transition);
	text-align: center;
	white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; }

.btn-primary { background: var(--purple); color: #fff; border-color: var(--purple); }
.btn-primary:hover { background: var(--purple-800); border-color: var(--purple-800); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(74, 37, 89, .28); }

.btn-blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-700); border-color: var(--blue-700); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(40, 171, 227, .3); }

.btn-burgundy { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }
.btn-burgundy:hover { background: var(--burgundy-600); border-color: var(--burgundy-600); color: #fff; transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn-outline:hover { background: var(--purple); color: #fff; }

.btn-light { background: #fff; color: var(--purple); border-color: #fff; }
.btn-light:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-2px); }

.btn-ghost-light { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn-ghost-light:hover { background: #fff; color: var(--purple); border-color: #fff; }

.btn-whatsapp { background: #1FA855; color: #fff; border-color: #1FA855; }
.btn-whatsapp:hover { background: #178643; border-color: #178643; color: #fff; transform: translateY(-2px); }

.btn-sm { padding: 0.6rem 1.1rem; font-size: var(--fs-xs); }
.btn-lg { padding: 1.1rem 2rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: var(--space-3); }

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: var(--fs-sm);
	color: var(--purple);
}
.link-arrow .icon { width: 18px; height: 18px; transition: transform var(--transition); }
.link-arrow:hover { color: var(--blue-700); }
.link-arrow:hover .icon { transform: translateX(4px); }

/* ---------------------------------------------------------------------
   6. Header
   --------------------------------------------------------------------- */
.topbar {
	background: var(--purple-900);
	color: rgba(255, 255, 255, .8);
	font-size: var(--fs-xs);
	padding-block: 0.5rem;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }
.topbar-links { display: flex; align-items: center; gap: var(--space-5); flex-wrap: wrap; }
.topbar a { color: rgba(255, 255, 255, .8); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--blue); }
.topbar .icon { width: 15px; height: 15px; color: var(--blue); }
.topbar-tagline { letter-spacing: .18em; font-family: var(--font-display); font-weight: 600; color: var(--blue); }
.topbar-social { display: flex; gap: var(--space-3); }
.topbar-social .icon { width: 17px; height: 17px; color: rgba(255, 255, 255, .75); }
.topbar-social a:hover .icon { color: var(--blue); }

.site-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: #fff;
	border-bottom: 1px solid var(--border);
	transition: box-shadow var(--transition);
}
.site-header.is-stuck { box-shadow: var(--shadow); }
.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-5);
	min-height: var(--nav-height);
}

.brand { display: flex; align-items: center; gap: var(--space-3); flex: none; }
.brand img { height: 52px; width: auto; }

.main-nav ul {
	display: flex;
	align-items: center;
	gap: var(--space-1);
	list-style: none;
	margin: 0;
	padding: 0;
}
.main-nav li { margin: 0; position: relative; }
.main-nav > ul > li > a {
	display: flex;
	align-items: center;
	gap: 5px;
	font-family: var(--font-display);
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--purple-900);
	padding: 0.65rem 0.7rem;
	border-radius: var(--radius-sm);
	white-space: nowrap;
}
.main-nav > ul > li > a .icon { width: 15px; height: 15px; opacity: .6; }
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: var(--purple); background: var(--purple-50); }
.main-nav > ul > li.active > a { font-weight: 600; }

.has-dropdown > .dropdown {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 268px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	padding: var(--space-2);
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all var(--transition);
	z-index: 950;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li { margin: 0; }
.dropdown a {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	padding: 0.6rem 0.75rem;
	border-radius: var(--radius-sm);
	font-size: var(--fs-sm);
	color: var(--dark);
}
.dropdown a:hover { background: var(--purple-50); color: var(--purple); }
.dropdown a .icon { width: 18px; height: 18px; color: var(--blue-700); }
.dropdown .dropdown-all { border-top: 1px solid var(--border); margin-top: var(--space-2); padding-top: var(--space-2); }
.dropdown .dropdown-all a { color: var(--purple); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: var(--space-3); flex: none; }
.header-phone {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: var(--fs-sm);
	color: var(--purple-900);
}
.header-phone .icon { width: 20px; height: 20px; color: var(--blue); }

.nav-close {
	display: none;
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 44px; height: 44px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	background: #fff;
	color: var(--purple);
	cursor: pointer;
}

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px; height: 46px;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	background: #fff;
	color: var(--purple);
	cursor: pointer;
}

/* ---------------------------------------------------------------------
   7. Hero carousel
   --------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--purple-900); }

/*
 * Every slide sits in the same grid cell, so they stack on top of one another
 * and the carousel's height is the height of its tallest slide — steady no
 * matter which slide is showing. Only opacity and visibility change as slides
 * come and go; nothing is pulled in or out of the layout flow, which is what
 * previously let two slides occupy the page at once.
 */
.hero-slides { position: relative; display: grid; }
.hero-slide {
	grid-area: 1 / 1;
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(30rem, 62vh, 44rem);
	opacity: 0;
	visibility: hidden;
	transition: opacity 700ms ease;
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }

.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img,
.hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-media iframe { width: 100%; height: 100%; border: 0; }

.hero-slide.pillar-secure .hero-media { background: linear-gradient(125deg, #4A2559 0%, #2A1433 55%, #1B0D22 100%); }
.hero-slide.pillar-connect .hero-media { background: linear-gradient(125deg, #145E7F 0%, #1B7FAB 45%, #2A1433 100%); }
.hero-slide.pillar-power .hero-media { background: linear-gradient(125deg, #620C0F 0%, #3D1230 60%, #2A1433 100%); }

.hero-pattern {
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 82% 22%, rgba(40, 171, 227, .28), transparent 42%),
		repeating-linear-gradient(115deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 78px);
	pointer-events: none;
}
.hero-rings {
	position: absolute;
	top: -18%;
	right: -8%;
	width: min(720px, 62vw);
	aspect-ratio: 1;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, .12);
	pointer-events: none;
}
.hero-rings::before, .hero-rings::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	border: 2px solid rgba(40, 171, 227, .35);
}
.hero-rings::before { inset: 12%; border-color: rgba(40, 171, 227, .3); }
.hero-rings::after { inset: 26%; border-color: rgba(255, 255, 255, .1); }

.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26, 10, 32, .88) 0%, rgba(26, 10, 32, .55) 45%, rgba(26, 10, 32, .15) 100%); }
.hero-slide[data-overlay="dark"] .hero-overlay { background: rgba(15, 7, 19, .68); }
.hero-slide[data-overlay="light"] .hero-overlay { background: linear-gradient(90deg, rgba(255, 255, 255, .9) 0%, rgba(255, 255, 255, .4) 60%, transparent 100%); }
.hero-slide[data-overlay="none"] .hero-overlay { display: none; }

.hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-block: clamp(4.5rem, 3rem + 9vw, 9rem);
}
.hero-content { max-width: 720px; color: #fff; }
.hero-slide[data-align="center"] .hero-content { margin-inline: auto; text-align: center; }
.hero-slide[data-align="right"] .hero-content { margin-left: auto; text-align: right; }

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	font-family: var(--font-display);
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--blue);
	background: rgba(40, 171, 227, .12);
	border: 1px solid rgba(40, 171, 227, .35);
	padding: 0.45rem 1rem;
	border-radius: var(--radius-pill);
	margin-bottom: var(--space-5);
}

.hero h1, .hero-title {
	font-size: var(--fs-hero);
	line-height: 1.02;
	color: #fff;
	letter-spacing: -0.02em;
	margin-bottom: var(--space-4);
	text-wrap: balance;
}
.hero-subtitle {
	font-family: var(--font-display);
	font-size: clamp(1.05rem, 0.9rem + 0.8vw, 1.5rem);
	font-weight: 500;
	color: var(--blue);
	margin-bottom: var(--space-4);
}
.hero-text { font-size: 1.05rem; color: rgba(255, 255, 255, .82); max-width: 560px; margin-bottom: var(--space-6); }
.hero-slide[data-align="center"] .hero-text { margin-inline: auto; }
.hero .btn-group { gap: var(--space-4); }

.hero-controls {
	position: absolute;
	left: 0; right: 0;
	bottom: var(--hero-controls-inset);
	z-index: 5;
}
.hero-controls .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }
.hero-dots { display: flex; gap: var(--space-3); }
.hero-dot {
	width: 44px; height: 4px;
	border: 0;
	padding: 0;
	border-radius: 4px;
	background: rgba(255, 255, 255, .3);
	cursor: pointer;
	transition: background var(--transition);
}
.hero-dot.is-active { background: var(--blue); }
.hero-arrows { display: flex; gap: var(--space-2); }
.hero-arrow {
	width: 46px; height: 46px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .35);
	background: rgba(255, 255, 255, .08);
	color: #fff;
	cursor: pointer;
	transition: all var(--transition);
}
.hero-arrow:hover { background: var(--blue); border-color: var(--blue); }

/* Compact page banner (all inner pages) */
.page-hero {
	position: relative;
	background: linear-gradient(120deg, var(--purple-900) 0%, var(--purple) 58%, #3B2A6B 100%);
	color: #fff;
	padding-block: clamp(3rem, 2rem + 4vw, 5rem);
	overflow: hidden;
}
.page-hero .hero-pattern { opacity: .8; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: var(--space-3); }
.page-hero p { color: rgba(255, 255, 255, .8); max-width: 680px; font-size: 1.05rem; }
.page-hero.pillar-connect { background: linear-gradient(120deg, #10495F 0%, var(--blue-800) 55%, var(--purple-900) 100%); }
.page-hero.pillar-power { background: linear-gradient(120deg, #38070A 0%, var(--burgundy) 50%, var(--purple-900) 100%); }

.breadcrumbs { margin-bottom: var(--space-4); font-size: var(--fs-xs); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: var(--space-2); list-style: none; margin: 0; padding: 0; }
/* Readable on a light page by default; the dark hero restates them in white,
   so a trail can sit on either background. */
.breadcrumbs li { margin: 0; color: var(--muted); display: flex; align-items: center; gap: var(--space-2); }
.breadcrumbs li + li::before { content: "/"; color: #B9B9C4; }
.breadcrumbs a { color: var(--purple); }
.breadcrumbs a:hover { color: var(--blue); }

.page-hero .breadcrumbs li { color: rgba(255, 255, 255, .65); }
.page-hero .breadcrumbs li + li::before { color: rgba(255, 255, 255, .35); }
.page-hero .breadcrumbs a { color: rgba(255, 255, 255, .8); }

/* ---------------------------------------------------------------------
   8. Trust statistics
   --------------------------------------------------------------------- */
/*
 * The card lifts into the hero, but never far enough to reach the carousel
 * arrows and dots: its overlap is the controls' inset less a fixed gap, so the
 * clearance holds at every width instead of depending on two numbers that were
 * tuned separately.
 */
.stats-band {
	position: relative;
	z-index: 10;
	margin-top: calc(var(--hero-controls-gap) - var(--hero-controls-inset));
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}
.stat {
	padding: var(--space-6) var(--space-5);
	text-align: center;
	border-right: 1px solid var(--border);
}
.stat:last-child { border-right: 0; }
.stat-icon {
	width: 44px; height: 44px;
	margin: 0 auto var(--space-3);
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: var(--purple-50);
	color: var(--purple);
}
.stat-value {
	font-family: var(--font-display);
	font-size: clamp(2rem, 1.5rem + 1.6vw, 2.9rem);
	font-weight: 700;
	line-height: 1;
	color: var(--purple);
	letter-spacing: -0.02em;
}
.stat-value .suffix { color: var(--blue); }
.stat-label { font-size: var(--fs-sm); color: var(--muted); margin-top: var(--space-2); }

/* ---------------------------------------------------------------------
   9. Cards
   --------------------------------------------------------------------- */
.card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
	display: flex;
	flex-direction: column;
	height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card-body { padding: var(--space-5); flex: 1; display: flex; flex-direction: column; }
.card-body > *:last-child { margin-top: auto; }

/* Service card */
.service-card { position: relative; }
.service-card::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: var(--pillar, var(--purple));
	opacity: 0;
	transition: opacity var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
	width: 60px; height: 60px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 16px;
	background: var(--pillar-soft, var(--purple-50));
	color: var(--pillar, var(--purple));
	margin-bottom: var(--space-4);
	transition: all var(--transition);
}
.service-icon .icon { width: 30px; height: 30px; }
.service-card:hover .service-icon { background: var(--pillar, var(--purple)); color: #fff; }
.service-card h3 { font-size: 1.2rem; margin-bottom: var(--space-3); }
.service-card h3 a { color: inherit; }
.service-card h3 a:hover { color: var(--pillar, var(--purple)); }
.service-card p { color: var(--muted); font-size: var(--fs-sm); margin-bottom: var(--space-4); }

.pillar-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-display);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--pillar, var(--purple));
	background: var(--pillar-soft, var(--purple-50));
	padding: 0.28rem 0.7rem;
	border-radius: var(--radius-pill);
	margin-bottom: var(--space-3);
}

/* Project card */
.project-card { position: relative; }
/* 4:3 rather than 16:10: photographs arrive square as often as landscape, and
   the squarer tile keeps a quarter more of a square one before cropping. */
.project-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--purple-900); }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.project-card:hover .project-media img { transform: scale(1.06); }
.project-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(26, 10, 32, .8), transparent 55%);
}
.project-status {
	position: absolute;
	top: var(--space-4);
	left: var(--space-4);
	z-index: 2;
	font-family: var(--font-display);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 0.3rem 0.75rem;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, .92);
	color: var(--purple);
}
.project-status.is-ongoing { background: var(--blue); color: #fff; }
.project-meta-overlay {
	position: absolute;
	left: var(--space-5);
	right: var(--space-5);
	bottom: var(--space-4);
	z-index: 2;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
	font-size: var(--fs-xs);
}
.project-meta-overlay span { display: inline-flex; align-items: center; gap: 5px; }
.project-meta-overlay .icon { width: 15px; height: 15px; color: var(--blue); }
.project-card h3 { font-size: 1.15rem; margin-bottom: var(--space-2); }
.project-card h3 a { color: inherit; }
.project-card h3 a:hover { color: var(--purple); }
.project-card .card-body p { color: var(--muted); font-size: var(--fs-sm); margin-bottom: var(--space-4); }

/* Industry tile */
.industry-tile {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	padding: var(--space-4);
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: all var(--transition);
	font-family: var(--font-display);
	font-weight: 500;
	font-size: var(--fs-sm);
	color: var(--purple-900);
	height: 100%;
}
.industry-tile:hover { border-color: var(--blue); background: var(--blue-50); color: var(--purple); transform: translateY(-3px); }
.industry-tile .icon { width: 22px; height: 22px; color: var(--blue-700); flex: none; }

/* Post card */
.post-card .post-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--light-2); }
.post-card .post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.post-card:hover .post-media img { transform: scale(1.05); }
.post-meta { display: flex; flex-wrap: wrap; gap: var(--space-4); font-size: var(--fs-xs); color: var(--muted); margin-bottom: var(--space-3); }
.post-meta span { display: inline-flex; align-items: center; gap: 5px; }
.post-meta .icon { width: 14px; height: 14px; color: var(--blue-700); }
.post-card h3 { font-size: 1.1rem; }
.post-card h3 a { color: inherit; }
.post-card h3 a:hover { color: var(--purple); }
.post-card p { color: var(--muted); font-size: var(--fs-sm); }

.category-pill {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--blue-700);
	background: var(--blue-50);
	padding: 0.28rem 0.7rem;
	border-radius: var(--radius-pill);
	margin-bottom: var(--space-3);
}

/* Feature list */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); }
.feature-list li { display: flex; align-items: flex-start; gap: var(--space-3); margin: 0; font-size: var(--fs-sm); }
.feature-list .icon { width: 20px; height: 20px; color: var(--blue); flex: none; margin-top: 2px; }
.feature-list.is-two-col { grid-template-columns: repeat(2, 1fr); }

.benefit-card {
	padding: var(--space-5);
	border-radius: var(--radius);
	background: var(--light);
	border: 1px solid var(--border);
	height: 100%;
}
.benefit-card .benefit-icon {
	width: 46px; height: 46px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 12px;
	background: #fff;
	color: var(--pillar, var(--purple));
	margin-bottom: var(--space-3);
	box-shadow: var(--shadow-sm);
}
.benefit-card h4 { margin-bottom: var(--space-2); font-size: 1.02rem; }
.benefit-card p { font-size: var(--fs-sm); color: var(--muted); }

/* ---------------------------------------------------------------------
   10. Pillars
   --------------------------------------------------------------------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.pillar-card {
	position: relative;
	padding: var(--space-6);
	border-radius: var(--radius-lg);
	color: #fff;
	overflow: hidden;
	min-height: 260px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	transition: transform var(--transition);
}
.pillar-card:hover { transform: translateY(-5px); }
.pillar-card.pillar-secure { background: linear-gradient(150deg, var(--purple) 0%, var(--purple-900) 100%); }
.pillar-card.pillar-connect { background: linear-gradient(150deg, var(--blue) 0%, var(--blue-800) 100%); }
.pillar-card.pillar-power { background: linear-gradient(150deg, var(--burgundy-600) 0%, #38070A 100%); }
.pillar-card::after {
	content: "";
	position: absolute;
	top: -40px; right: -40px;
	width: 180px; height: 180px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, .18);
}
.pillar-card .pillar-word {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: .04em;
	margin-bottom: var(--space-2);
}
.pillar-card p { color: rgba(255, 255, 255, .8); font-size: var(--fs-sm); margin-bottom: var(--space-4); }
.pillar-card .icon-lg { width: 40px; height: 40px; margin-bottom: auto; color: rgba(255, 255, 255, .9); }
.pillar-card ul { list-style: none; padding: 0; margin: 0 0 var(--space-4); display: flex; flex-wrap: wrap; gap: var(--space-2); }
.pillar-card ul li {
	margin: 0;
	font-size: var(--fs-xs);
	background: rgba(255, 255, 255, .14);
	padding: 0.25rem 0.7rem;
	border-radius: var(--radius-pill);
}

/* ---------------------------------------------------------------------
   11. Process timeline
   --------------------------------------------------------------------- */
.process { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--space-5); }
.process::before {
	content: "";
	position: absolute;
	top: 30px;
	left: 8%;
	right: 8%;
	height: 2px;
	background: linear-gradient(90deg, var(--purple), var(--blue), var(--burgundy));
	opacity: .3;
}
.process-step { position: relative; text-align: center; }
.process-number {
	width: 60px; height: 60px;
	margin: 0 auto var(--space-4);
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--purple);
	color: var(--purple);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.1rem;
	position: relative;
	z-index: 2;
	transition: all var(--transition);
}
.process-step:hover .process-number { background: var(--purple); color: #fff; transform: scale(1.06); }
.process-step h4 { font-size: 1rem; margin-bottom: var(--space-2); }
.process-step p { font-size: var(--fs-xs); color: var(--muted); }
.section-purple .process-number { background: var(--purple-900); border-color: var(--blue); color: var(--blue); }
.section-purple .process-step p { color: rgba(255, 255, 255, .7); }

/* ---------------------------------------------------------------------
   12. Testimonials
   --------------------------------------------------------------------- */
.testimonial-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: var(--space-6);
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}
.testimonial-card .quote-icon { width: 40px; height: 40px; color: var(--blue-100); margin-bottom: var(--space-3); }
.testimonial-card blockquote {
	margin: 0 0 var(--space-5);
	padding: 0;
	border: 0;
	background: none;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--dark);
}
.testimonial-author { display: flex; align-items: center; gap: var(--space-3); margin-top: auto; }
.testimonial-avatar {
	width: 48px; height: 48px;
	border-radius: 50%;
	background: var(--purple-50);
	color: var(--purple);
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display);
	font-weight: 700;
	flex: none;
	overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author strong { display: block; font-family: var(--font-display); font-size: var(--fs-sm); color: var(--purple-900); }
.testimonial-author span { font-size: var(--fs-xs); color: var(--muted); }
.rating { display: flex; gap: 2px; margin-bottom: var(--space-3); }
.rating .icon { width: 17px; height: 17px; color: #E0A100; fill: #E0A100; }
.rating .icon.is-empty { color: var(--border); fill: none; }

/* ---------------------------------------------------------------------
   13. Accordion (FAQ)
   --------------------------------------------------------------------- */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; }
.accordion-item + .accordion-item { border-top: 1px solid var(--border); }
.accordion-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-4);
	padding: var(--space-4) var(--space-5);
	background: none;
	border: 0;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: var(--fs-sm);
	color: var(--purple-900);
	transition: background var(--transition);
}
.accordion-trigger:hover { background: var(--purple-50); }
.accordion-trigger .icon { width: 20px; height: 20px; color: var(--blue); transition: transform var(--transition); flex: none; }
.accordion-trigger[aria-expanded="true"] { color: var(--purple); }
.accordion-trigger[aria-expanded="true"] .icon { transform: rotate(180deg); }
.accordion-panel { display: none; padding: 0 var(--space-5) var(--space-5); color: var(--muted); font-size: var(--fs-sm); }
.accordion-panel.is-open { display: block; }

/* ---------------------------------------------------------------------
   14. Forms
   --------------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.is-full { grid-column: 1 / -1; }

label, .form-label {
	font-family: var(--font-display);
	font-size: var(--fs-sm);
	font-weight: 500;
	color: var(--purple-900);
}
.required { color: var(--burgundy); }

input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
input[type="number"], input[type="date"], input[type="password"], input[type="search"],
select, textarea {
	width: 100%;
	font-family: inherit;
	font-size: var(--fs-sm);
	color: var(--dark);
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 0.8rem 1rem;
	transition: border-color var(--transition), box-shadow var(--transition);
}
textarea { min-height: 140px; resize: vertical; }
select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235F5F6D' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9.5l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.9rem center;
	padding-right: 2.4rem;
}
input:focus, select:focus, textarea:focus {
	outline: 0;
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(40, 171, 227, .18);
}
input::placeholder, textarea::placeholder { color: #9A9AA6; }

input[type="file"] {
	width: 100%;
	font-size: var(--fs-sm);
	padding: 0.7rem;
	border: 1px dashed var(--border);
	border-radius: var(--radius-sm);
	background: var(--light);
}

.field-hint { font-size: var(--fs-xs); color: var(--muted); }
.field-error { font-size: var(--fs-xs); color: var(--burgundy); font-weight: 600; }
.has-error input, .has-error select, .has-error textarea { border-color: var(--burgundy); }

.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-3); }
.check-tile {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	padding: 0.85rem 1rem;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	background: #fff;
	cursor: pointer;
	font-size: var(--fs-sm);
	font-family: var(--font-display);
	transition: all var(--transition);
}
.check-tile:hover { border-color: var(--blue); background: var(--blue-50); }
.check-tile input { width: 18px; height: 18px; accent-color: var(--purple); flex: none; margin: 0; }
.check-tile.is-checked { border-color: var(--purple); background: var(--purple-50); color: var(--purple); font-weight: 600; }
.check-tile .icon { width: 20px; height: 20px; color: var(--blue-700); }

/* Multi-step wizard */
.wizard-steps { display: flex; gap: var(--space-2); margin-bottom: var(--space-6); flex-wrap: wrap; }
.wizard-step {
	flex: 1 1 90px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: var(--fs-xs);
	color: var(--muted);
}
.wizard-step .bar { height: 4px; border-radius: 4px; background: var(--light-2); transition: background var(--transition); }
.wizard-step.is-done .bar { background: var(--blue); }
.wizard-step.is-current .bar { background: var(--purple); }
.wizard-step.is-current { color: var(--purple); font-weight: 600; }
.wizard-panel { display: none; }
.wizard-panel.is-active { display: block; animation: fadeUp 320ms ease; }
.wizard-actions { display: flex; justify-content: space-between; gap: var(--space-3); margin-top: var(--space-6); }

@keyframes fadeUp {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------------------------------------------
   15. Alerts, badges, tables
   --------------------------------------------------------------------- */
.alert {
	display: flex;
	align-items: flex-start;
	gap: var(--space-3);
	padding: var(--space-4) var(--space-5);
	border-radius: var(--radius);
	border-left: 4px solid;
	font-size: var(--fs-sm);
	margin-bottom: var(--space-5);
	position: relative;
}
.alert-success { background: var(--success-bg); border-color: var(--success); color: #145C38; }
.alert-error { background: var(--danger-bg); border-color: var(--burgundy); color: #5A1013; }
.alert-warning { background: var(--warning-bg); border-color: var(--warning); color: #7A5006; }
.alert-info { background: var(--info-bg); border-color: var(--blue); color: var(--blue-800); }
.alert .alert-icon .icon { width: 20px; height: 20px; }
.alert-close {
	margin-left: auto;
	background: none;
	border: 0;
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
	color: inherit;
	opacity: .55;
}
.alert-close:hover { opacity: 1; }

.badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: var(--font-display);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 0.25rem 0.65rem;
	border-radius: var(--radius-pill);
}
.badge-success { background: var(--success-bg); color: var(--success); }
.badge-info { background: var(--blue-50); color: var(--blue-800); }
.badge-warning { background: var(--warning-bg); color: var(--warning); }
.badge-danger { background: var(--danger-bg); color: var(--burgundy); }
.badge-muted { background: var(--light-2); color: var(--muted); }

.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
table.data { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); background: #fff; }
table.data th, table.data td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
table.data th { font-family: var(--font-display); font-weight: 600; color: var(--purple-900); background: var(--light); white-space: nowrap; }
table.data tr:last-child td { border-bottom: 0; }

/* ---------------------------------------------------------------------
   16. Content typography (blog, service body, pages)
   --------------------------------------------------------------------- */
.prose { font-size: 1.04rem; line-height: 1.78; color: #2C2C33; }
.prose h2 { font-size: 1.6rem; margin-top: var(--space-7); }
.prose h3 { font-size: 1.28rem; margin-top: var(--space-6); }
.prose h4 { margin-top: var(--space-5); }
.prose ul, .prose ol { padding-left: 1.35rem; }
.prose li { margin-bottom: var(--space-2); }
.prose img { border-radius: var(--radius); margin-block: var(--space-5); }
.prose a { color: var(--blue-700); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--purple-900); }

/* ---------------------------------------------------------------------
   17. Gallery and media
   --------------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--space-3); }
.gallery a { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--light-2); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.gallery a:hover img { transform: scale(1.06); }

.video-embed { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: var(--purple-900); }
.video-embed iframe, .video-embed video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-poster { position: absolute; inset: 0; cursor: pointer; }
.video-poster img { width: 100%; height: 100%; object-fit: cover; }
.video-play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 76px; height: 76px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	color: var(--purple);
	border: 0;
	display: flex; align-items: center; justify-content: center;
	cursor: pointer;
	transition: transform var(--transition);
}
.video-play .icon { width: 34px; height: 34px; }
.video-poster:hover .video-play { transform: scale(1.08); }

.before-after { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
.before-after figure { margin: 0; }
.before-after figcaption {
	font-family: var(--font-display);
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: var(--space-2);
}
.before-after img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ---------------------------------------------------------------------
   18. Sidebar and filters
   --------------------------------------------------------------------- */
.layout-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: var(--space-7); align-items: start; }
.sidebar { position: sticky; top: calc(var(--nav-height) + 20px); display: grid; gap: var(--space-5); }
.widget { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-5); }
.widget h4 { font-size: 1rem; margin-bottom: var(--space-4); padding-bottom: var(--space-3); border-bottom: 1px solid var(--border); }
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li { margin: 0; }
.widget ul li + li { border-top: 1px solid var(--border); }
.widget ul a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-3);
	padding: 0.65rem 0;
	font-size: var(--fs-sm);
	color: var(--dark);
}
.widget ul a:hover { color: var(--purple); }
.widget ul a.is-active { color: var(--purple); font-weight: 600; }
.widget .count { font-size: var(--fs-xs); color: var(--muted); background: var(--light); padding: 1px 8px; border-radius: var(--radius-pill); }

.widget-cta { background: linear-gradient(150deg, var(--purple) 0%, var(--purple-900) 100%); color: #fff; border: 0; }
.widget-cta h4 { color: #fff; border-color: rgba(255, 255, 255, .2); }
.widget-cta p { color: rgba(255, 255, 255, .8); font-size: var(--fs-sm); }

.filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
	margin-bottom: var(--space-6);
}
.filter-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0.5rem 1.05rem;
	border-radius: var(--radius-pill);
	border: 1px solid var(--border);
	background: #fff;
	font-family: var(--font-display);
	font-size: var(--fs-sm);
	color: var(--dark);
	cursor: pointer;
	transition: all var(--transition);
}
.filter-chip:hover { border-color: var(--blue); color: var(--blue-700); }
.filter-chip.is-active { background: var(--purple); border-color: var(--purple); color: #fff; }

/* ---------------------------------------------------------------------
   19. CTA band and newsletter
   --------------------------------------------------------------------- */
.cta-band {
	position: relative;
	background: linear-gradient(120deg, var(--purple) 0%, var(--purple-900) 45%, var(--blue-800) 100%);
	color: #fff;
	border-radius: var(--radius-lg);
	padding: clamp(2.5rem, 2rem + 3vw, 4rem);
	overflow: hidden;
}
.cta-band::after {
	content: "";
	position: absolute;
	top: -80px; right: -60px;
	width: 320px; height: 320px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, .14);
}
.cta-band::before {
	content: "";
	position: absolute;
	bottom: -120px; right: 60px;
	width: 260px; height: 260px;
	border-radius: 50%;
	border: 2px solid rgba(40, 171, 227, .3);
}
.cta-band .cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: var(--space-2); }
.cta-band p { color: rgba(255, 255, 255, .82); margin: 0; max-width: 560px; }

.newsletter-form { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.newsletter-form input { flex: 1 1 220px; }

/* ---------------------------------------------------------------------
   20. Footer
   --------------------------------------------------------------------- */
.site-footer { background: var(--purple-900); color: rgba(255, 255, 255, .72); padding-top: var(--section-y); font-size: var(--fs-sm); }
/*
 * Four columns normally, five when the shop adds its own.
 *
 * Both are written out in full on purpose: repeat(auto-fit, …) cannot be mixed
 * with fr tracks in one declaration, and a browser that meets that combination
 * throws the whole rule away — which silently collapses the footer into a
 * single column.
 */
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: var(--space-6); padding-bottom: var(--space-7); }

/* Scoped to full width on purpose: .footer-grid.has-shop outranks the plain
   .footer-grid selector the responsive rules use, so left unscoped it would
   hold five columns all the way down to a phone. */
@media (min-width: 1201px) {
	/* The services column carries the longest labels, so it gets the extra
	   width rather than splitting five columns evenly. */
	.footer-grid.has-shop { grid-template-columns: 1.35fr 1.3fr 0.95fr 0.95fr 1.25fr; }
}
.footer-brand-chip {
	display: inline-flex;
	background: #fff;
	padding: 0.85rem 1.1rem;
	border-radius: var(--radius);
	margin-bottom: var(--space-4);
}
.footer-brand-chip img { height: 46px; width: auto; }
.site-footer h5 {
	font-family: var(--font-display);
	font-size: var(--fs-sm);
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 var(--space-4);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: var(--space-3); }
.site-footer a { color: rgba(255, 255, 255, .72); }
.site-footer a:hover { color: var(--blue); }
.footer-contact li { display: flex; gap: var(--space-3); align-items: flex-start; }
.footer-contact .icon { width: 18px; height: 18px; color: var(--blue); flex: none; margin-top: 3px; }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.footer-social a {
	width: 40px; height: 40px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	transition: all var(--transition);
}
.footer-social a:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .12);
	padding-block: var(--space-5);
	display: flex;
	justify-content: space-between;
	gap: var(--space-4);
	flex-wrap: wrap;
	font-size: var(--fs-xs);
}
.footer-bottom-links { display: flex; gap: var(--space-5); flex-wrap: wrap; }
.footer-pillars { display: flex; gap: var(--space-4); font-family: var(--font-display); letter-spacing: .14em; color: var(--blue); font-size: var(--fs-xs); margin-bottom: var(--space-4); }

/* ---------------------------------------------------------------------
   21. Floating actions
   --------------------------------------------------------------------- */
.floating-actions {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 800;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
	align-items: flex-end;
}
.float-btn {
	width: 56px; height: 56px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	box-shadow: var(--shadow-lg);
	border: 0;
	cursor: pointer;
	transition: all var(--transition);
	color: #fff;
}
.float-whatsapp { background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%); position: relative; }
.float-whatsapp .icon { width: 30px; height: 30px; }
.float-whatsapp:hover { transform: scale(1.07); color: #fff; }
.float-whatsapp::after {
	content: "";
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 2px solid rgba(40, 171, 227, .55);
	animation: pulse 2.4s infinite;
}
@keyframes pulse {
	0% { transform: scale(.9); opacity: .9; }
	70% { transform: scale(1.25); opacity: 0; }
	100% { opacity: 0; }
}
.float-label {
	position: absolute;
	right: 68px;
	white-space: nowrap;
	background: var(--purple-900);
	color: #fff;
	font-size: var(--fs-xs);
	padding: 0.45rem 0.85rem;
	border-radius: var(--radius-sm);
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--transition);
}
.float-whatsapp:hover .float-label { opacity: 1; }
.float-top { background: var(--purple); opacity: 0; pointer-events: none; }
.float-top.is-visible { opacity: 1; pointer-events: auto; }
.float-top:hover { background: var(--purple-800); }

/* Contextual WhatsApp strip */
.whatsapp-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-4);
	flex-wrap: wrap;
	padding: var(--space-5);
	border-radius: var(--radius);
	background: linear-gradient(120deg, var(--blue-50) 0%, var(--purple-50) 100%);
	border: 1px solid var(--blue-100);
}
.whatsapp-strip p { margin: 0; font-family: var(--font-display); font-weight: 500; color: var(--purple-900); }

/* ---------------------------------------------------------------------
   22. Pagination
   --------------------------------------------------------------------- */
.pagination { margin-top: var(--space-7); }
.pagination ul { display: flex; flex-wrap: wrap; gap: var(--space-2); list-style: none; padding: 0; margin: 0; justify-content: center; }
.pagination li { margin: 0; }
.pagination a, .pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding-inline: 0.8rem;
	border-radius: var(--radius-sm);
	border: 1px solid var(--border);
	background: #fff;
	font-family: var(--font-display);
	font-size: var(--fs-sm);
	color: var(--dark);
}
.pagination a:hover { border-color: var(--purple); color: var(--purple); }
.pagination .is-current span { background: var(--purple); border-color: var(--purple); color: #fff; }

/* ---------------------------------------------------------------------
   23. Misc blocks
   --------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: center; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }

.value-card { display: flex; gap: var(--space-4); padding: var(--space-5); background: #fff; border-radius: var(--radius); border: 1px solid var(--border); height: 100%; }
.value-card .icon-box {
	width: 46px; height: 46px;
	flex: none;
	display: flex; align-items: center; justify-content: center;
	border-radius: 12px;
	background: var(--purple-50);
	color: var(--purple);
}
.value-card h4 { margin-bottom: var(--space-2); font-size: 1.02rem; }
.value-card p { font-size: var(--fs-sm); color: var(--muted); margin: 0; }

.client-logos { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--space-4); }
.client-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--space-5);
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--purple);
	text-align: center;
	min-height: 96px;
	transition: all var(--transition);
}
.client-logo:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.client-logo img { max-height: 54px; width: auto; object-fit: contain; }

.info-list { display: grid; gap: var(--space-4); }
.info-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.info-item .icon-box {
	width: 44px; height: 44px;
	flex: none;
	display: flex; align-items: center; justify-content: center;
	border-radius: 12px;
	background: var(--purple-50);
	color: var(--purple);
}
.info-item strong { display: block; font-family: var(--font-display); color: var(--purple-900); }
.info-item span, .info-item a { font-size: var(--fs-sm); color: var(--muted); }
.info-item a:hover { color: var(--purple); }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16 / 9; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.empty-state { text-align: center; padding: var(--space-8) var(--space-5); color: var(--muted); }
.empty-state .icon { width: 56px; height: 56px; color: var(--border); margin: 0 auto var(--space-4); }

.detail-meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: var(--space-4);
	padding: var(--space-5);
	background: var(--light);
	border-radius: var(--radius);
	margin-bottom: var(--space-6);
}
.detail-meta div span {
	display: block;
	font-size: var(--fs-xs);
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 3px;
}
.detail-meta div strong { font-family: var(--font-display); color: var(--purple-900); font-size: var(--fs-sm); }

.case-block { margin-bottom: var(--space-6); }
.case-block h3 {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	font-size: 1.2rem;
}
.case-block h3::before {
	content: "";
	width: 6px; height: 24px;
	border-radius: 3px;
	background: var(--blue);
}
.case-block.is-challenge h3::before { background: var(--burgundy); }
.case-block.is-solution h3::before { background: var(--purple); }
.case-block.is-results h3::before { background: var(--success); }

.tech-tags { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.tech-tag {
	font-size: var(--fs-xs);
	background: var(--purple-50);
	color: var(--purple);
	padding: 0.35rem 0.8rem;
	border-radius: var(--radius-pill);
	font-family: var(--font-display);
}

.course-card { border-left: 4px solid var(--blue); }
.course-meta { display: flex; gap: var(--space-4); flex-wrap: wrap; font-size: var(--fs-xs); color: var(--muted); margin-bottom: var(--space-3); }
.course-meta span { display: inline-flex; align-items: center; gap: 5px; }
.course-meta .icon { width: 15px; height: 15px; color: var(--blue-700); }

/* Reveal on scroll — only hidden when JavaScript is available, so the
   content is always readable if a script fails to load. */
.js-reveal .reveal { opacity: 0; transform: translateY(22px); transition: opacity 620ms ease, transform 620ms ease; }
.js-reveal .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
	.js-reveal .reveal { opacity: 1; transform: none; }
}

/* Print */
@media print {
	.topbar, .site-header, .site-footer, .floating-actions, .hero-controls, .btn { display: none !important; }
	body { color: #000; }
	a[href]::after { content: " (" attr(href) ")"; font-size: 10px; }
}

/* Back-to-top arrow reuses the left arrow, rotated */
.float-top .icon { transform: rotate(90deg); }

/* ---------------------------------------------------------------------
   16. Shop
   --------------------------------------------------------------------- */

/* Header shortcut */
.header-shop {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: var(--fs-sm);
	font-weight: 600;
	color: var(--purple);
	padding: 0.5rem 0.85rem;
	border-radius: 999px;
	border: 1px solid var(--border);
	transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.header-shop:hover { background: var(--purple-50); border-color: var(--purple-100); color: var(--purple); }

/* Listing toolbar */
.shop-toolbar {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: var(--space-4);
	align-items: end;
	margin-bottom: var(--space-6);
	padding: var(--space-5);
	background: var(--light);
	border: 1px solid var(--border);
	border-radius: var(--radius);
}
.shop-toolbar .form-field { margin-bottom: 0; }
.input-with-button { display: flex; gap: 0.5rem; }
.input-with-button input { flex: 1 1 auto; min-width: 0; }
.result-count { color: var(--muted); font-size: var(--fs-sm); margin-bottom: var(--space-5); }

/* Product card */
.product-grid { align-items: stretch; }
.product-card { height: 100%; }
.product-media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #fff;
	border-bottom: 1px solid var(--border);
}
/*
 * Product photographs are shown whole, never cropped.
 *
 * A catalogue photo can be square, portrait or landscape depending on where it
 * came from, and cropping one to fill the tile cuts the top and bottom off the
 * very thing being sold. The tile keeps a fixed shape for a tidy grid; the
 * picture sits inside it complete.
 */
.product-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: var(--space-4);
	transition: transform 600ms ease;
}
.product-card:hover .product-media img { transform: scale(1.04); }

.product-flag {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	background: var(--purple);
	color: #fff;
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
}
.product-stock {
	position: absolute;
	bottom: 0.85rem;
	left: 0.85rem;
	/* The tile is white behind a product photo, so the pill needs an edge of
	   its own to read as a badge rather than floating text. */
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, .96);
	color: var(--dark);
	font-size: var(--fs-xs);
	font-weight: 600;
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}
.product-stock::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--success); }
.product-stock.is-order::before { background: var(--blue); }
.product-stock.is-out::before { background: var(--burgundy); }

.product-card .card-body { display: flex; flex-direction: column; flex: 1 1 auto; gap: 0.6rem; }
.product-card h3 { font-size: 1.05rem; margin: 0; line-height: 1.35; }
.product-card h3 a { color: var(--dark); }
.product-card h3 a:hover { color: var(--purple); }
.product-card p { font-size: var(--fs-sm); color: var(--muted); margin: 0; }

.product-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: var(--fs-xs); color: var(--muted); }
.product-code {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	background: var(--light-2);
	padding: 0.15rem 0.45rem;
	border-radius: 5px;
	letter-spacing: .02em;
}

/* Price above, enquiry button across the card. A side-by-side row looked
   tidier on short prices and wrapped untidily on long ones ("From GHS 3,200"),
   so every card is laid out the same way at every width instead. */
.product-foot {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: var(--space-3);
	margin-top: auto;
	padding-top: var(--space-4);
	border-top: 1px solid var(--border);
}
.product-foot .btn { justify-content: center; }
.product-price { display: flex; flex-direction: column; line-height: 1.25; }
.product-price s { font-size: var(--fs-xs); color: var(--muted); }
.product-price strong { font-size: 1.1rem; color: var(--purple); font-weight: 700; }
.product-price.is-request strong { font-size: var(--fs-sm); color: var(--muted); font-weight: 600; }

/* Category cards */
.category-card { text-align: left; }
.category-card:hover { border-color: var(--purple-100); }
.category-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.category-card p { font-size: var(--fs-sm); color: var(--muted); }
.category-count {
	display: inline-block;
	margin-top: var(--space-3);
	font-size: var(--fs-xs);
	font-weight: 600;
	color: var(--blue-700);
}

/* Homepage category strip */
.shop-category-strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-3);
	margin-top: var(--space-6);
}
.shop-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 1.1rem;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 999px;
	font-size: var(--fs-sm);
	font-weight: 600;
	color: var(--dark);
	transition: all var(--transition);
}
.shop-chip:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-2px); }
.shop-chip.pillar-connect:hover { border-color: var(--blue); color: var(--blue-700); }
.shop-chip.pillar-power:hover { border-color: var(--burgundy); color: var(--burgundy); }

/* ------------------------- Product detail ------------------------- */
.product-detail { padding-block: var(--space-7) var(--space-6); }
.product-layout {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: var(--space-7);
	align-items: start;
}

.product-stage {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border);
	background: #fff;
}
.product-stage img { width: 100%; height: 100%; object-fit: contain; padding: var(--space-5); }

.product-thumbs { display: flex; gap: var(--space-3); margin-top: var(--space-4); flex-wrap: wrap; }
.product-thumb {
	width: 84px;
	height: 68px;
	padding: 0;
	border-radius: var(--radius-sm);
	overflow: hidden;
	border: 2px solid var(--border);
	background: var(--light);
	cursor: pointer;
	transition: border-color var(--transition);
}
.product-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; display: block; background: #fff; }
.product-thumb.is-active, .product-thumb:hover { border-color: var(--purple); }

.product-panel h1 { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.3rem); margin: 0.65rem 0 0.75rem; }
.product-identity {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--space-3);
	font-size: var(--fs-sm);
	color: var(--muted);
	margin-bottom: var(--space-4);
}
.product-identity span { display: inline-flex; align-items: center; gap: 0.4rem; }
.product-identity .product-stock { position: static; background: var(--light); }
.product-lede { font-size: 1.05rem; color: var(--muted); margin-bottom: var(--space-5); }

.product-price-block {
	padding: var(--space-5);
	background: var(--purple-50);
	border: 1px solid var(--purple-100);
	border-radius: var(--radius);
	margin-bottom: var(--space-5);
}
.product-price-block s { color: var(--muted); margin-right: 0.6rem; }
.product-price-block strong { display: block; font-size: 1.9rem; color: var(--purple); line-height: 1.2; }
.product-price-block.is-request strong { font-size: 1.35rem; }
.price-note { display: block; font-size: var(--fs-xs); color: var(--muted); margin-top: 0.4rem; }

.product-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-4); }
.product-actions .btn { flex: 1 1 220px; justify-content: center; }

.product-assurance {
	display: flex;
	gap: 0.6rem;
	font-size: var(--fs-xs);
	color: var(--muted);
	margin-bottom: var(--space-5);
	line-height: 1.5;
}
.product-assurance .icon { flex: 0 0 auto; color: var(--blue); margin-top: 2px; }

.product-assurances { list-style: none; padding: 0; margin: 0 0 var(--space-5); display: grid; gap: var(--space-3); }
.product-assurances li { display: flex; align-items: center; gap: 0.7rem; font-size: var(--fs-sm); color: var(--dark); }
.product-assurances .icon { color: var(--purple); flex: 0 0 auto; }

.product-datasheet {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	padding: var(--space-4);
	border: 1px dashed var(--border);
	border-radius: var(--radius);
	font-size: var(--fs-sm);
	color: var(--dark);
	transition: all var(--transition);
}
.product-datasheet:hover { border-color: var(--blue); background: var(--blue-50); color: var(--dark); }
.product-datasheet .icon { color: var(--blue-700); flex: 0 0 auto; }

/* Specifications */
.spec-block { margin-top: var(--space-7); }
.spec-table { width: 100%; border-collapse: collapse; margin-top: var(--space-4); background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.spec-table th, .spec-table td { padding: 0.9rem 1.1rem; text-align: left; font-size: var(--fs-sm); border-bottom: 1px solid var(--border); }
.spec-table th { width: 38%; background: var(--light); color: var(--muted); font-weight: 600; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }

/* Sticky enquiry bar, small screens only */
.product-sticky-bar {
	display: none;
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 60;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-3);
	padding: 0.7rem 1rem;
	background: #fff;
	border-top: 1px solid var(--border);
	box-shadow: 0 -6px 20px rgba(26, 10, 32, .1);
}
.sticky-product { display: flex; flex-direction: column; min-width: 0; }
.sticky-product strong { font-size: var(--fs-sm); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-product span { font-size: var(--fs-xs); color: var(--purple); font-weight: 600; }
