/* ==========================================================================
   Trimy Fire Tech — design system
   Self-contained. Replaces the previous Bootstrap "Canvas" theme entirely.
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
	--brand: #053097;
	--brand-dark: #0a1f5c;
	--brand-tint: #EEF2FC;
	--wa: #1FAF54;
	--wa-dark: #178f44;
	--alert: #C4341F;
	--alert-tint: #FFF1EC;

	--ink: #14181D;
	--body: #4E5762;
	--muted: #6B7480;
	--faint: #8A929D;

	--line: #E6E9ED;
	--line-soft: #EAEDF1;
	--surface: #FFFFFF;
	--surface-alt: #F7F8FA;
	--surface-bar: #F5F6F8;

	--r-sm: 8px;
	--r-md: 12px;
	--r-lg: 16px;
	--r-xl: 22px;
	--r-pill: 999px;

	--pad: 60px;
	--maxw: 1320px;

	--display: 'Bricolage Grotesque', 'Segoe UI', Arial, sans-serif;
	--sans: 'Public Sans', 'Helvetica Neue', Arial, sans-serif;

	--ease: cubic-bezier(.16,.84,.44,1);
	--ease-out: cubic-bezier(.22,1,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden;
	overflow-x: clip;
}
body {
	margin: 0;
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--ink);
	background: var(--surface);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
img, svg, video, iframe { max-width: 100%; }
img, video { height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; letter-spacing: -0.026em; line-height: 1.12; margin: 0; text-wrap: balance; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
sub { font-size: 0.72em; }
:focus-visible { outline: 2.5px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding: 76px 0; }
.section--tight { padding: 52px 0; }
.section--alt { background: var(--surface-alt); }
.grid { display: grid; gap: 16px; }
.g2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.stack { display: flex; flex-direction: column; }
.row { display: flex; align-items: center; }
.gap8 { gap: 8px; } .gap12 { gap: 12px; } .gap16 { gap: 16px; } .gap24 { gap: 24px; }

/* ---------- type ---------- */
.h-xl { font-size: clamp(34px, 4.4vw, 60px); line-height: 1.04; letter-spacing: -0.032em; }
.h-lg { font-size: clamp(28px, 3.1vw, 40px); letter-spacing: -0.028em; }
.h-md { font-size: clamp(23px, 2.2vw, 30px); letter-spacing: -0.024em; }
.h-sm { font-size: 19px; letter-spacing: -0.01em; }
.lede { font-size: clamp(16.5px, 1.35vw, 18.5px); line-height: 1.62; color: var(--body); }
.muted { color: var(--muted); }
.small { font-size: 14px; color: var(--body); line-height: 1.55; }
.eyebrow {
	display: inline-block; font-size: 12px; font-weight: 700; color: var(--brand);
	background: var(--brand-tint); padding: 6px 12px; border-radius: 6px;
	letter-spacing: .07em; text-transform: uppercase;
}

/* ---------- buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	font-family: var(--sans); font-size: 15.5px; font-weight: 600; line-height: 1;
	padding: 16px 26px; border-radius: var(--r-sm); border: 1.5px solid transparent;
	cursor: pointer; text-align: center; min-height: 48px;
	transition: background-color .25s var(--ease), color .25s var(--ease),
	            border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); color: #fff; box-shadow: 0 10px 22px -10px rgba(5,48,151,.6); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { color: var(--ink); border-color: #C6CCD4; box-shadow: 0 8px 18px -10px rgba(20,24,29,.3); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-dark); color: #fff; box-shadow: 0 10px 22px -10px rgba(31,175,84,.6); }
.btn--white { background: #fff; color: var(--brand); }
.btn--white:hover { color: var(--brand-dark); box-shadow: 0 10px 22px -10px rgba(0,0,0,.35); }
.btn--block { width: 100%; }

/* ---------- utility bar ---------- */
.ubar { background: var(--surface-bar); font-size: 13px; color: #5A636E; }
.ubar .wrap {
	display: flex; justify-content: space-between; align-items: center;
	height: 38px; gap: 18px; flex-wrap: nowrap; overflow: hidden; white-space: nowrap;
}
.ubar__left { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.ubar a { color: var(--brand); font-weight: 600; }
.ubar__right { display: flex; gap: 14px; align-items: center; flex-wrap: nowrap; flex-shrink: 0; }
.ubar__sep { color: #C9CED5; }

/* ---------- header ---------- */
.hdr {
	position: sticky; top: 0; z-index: 90; background: rgba(255,255,255,.94);
	backdrop-filter: saturate(160%) blur(10px); -webkit-backdrop-filter: saturate(160%) blur(10px);
	border-bottom: 1px solid var(--line-soft);
	transition: box-shadow .35s var(--ease);
}
.hdr.is-scrolled { box-shadow: 0 6px 26px -14px rgba(5,48,151,.35); }
.hdr .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; min-width: 0; }
.brand__mark {
	flex: 0 0 auto;
	width: 46px; height: 46px;
	display: block;
	object-fit: contain;
	object-position: center;
}
.ftr__brand .brand__mark { width: 42px; height: 42px; }
.brand__name { font-family: var(--display); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.nav { display: flex; gap: 26px; align-items: center; }
.nav a { font-size: 15px; font-weight: 500; color: #3D454F; position: relative; padding: 6px 0; white-space: nowrap; }
.nav__cta { display: none; }
.nav a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
	background: var(--brand); transform: scaleX(0); transform-origin: left center;
	transition: transform .35s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--brand); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.hdr__cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.hdr__tel { font-size: 14.5px; font-weight: 600; color: var(--ink); padding: 10px 12px; white-space: nowrap; }
.hdr__cta .btn { padding: 13px 20px; min-height: 44px; font-size: 14.5px; }

.navtoggle {
	position: relative; z-index: 95;
	display: none; width: 46px; height: 46px; align-items: center; justify-content: center;
	background: none; border: 1px solid var(--line); border-radius: var(--r-sm); cursor: pointer; padding: 0;
}
.navtoggle span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: background .2s; }
.navtoggle span::before, .navtoggle span::after {
	content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink);
	transition: transform .3s var(--ease), top .3s var(--ease);
}
.navtoggle span::before { top: -6px; } .navtoggle span::after { top: 6px; }
.navtoggle[aria-expanded="true"] span { background: transparent; }
.navtoggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.navtoggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- hero ---------- */
.hero { padding: 62px 0 70px; }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.hero__badge {
	display: inline-flex; align-items: center; gap: 8px; background: var(--brand-tint);
	padding: 7px 14px; border-radius: var(--r-pill); margin-bottom: 24px;
	font-size: 13.5px; font-weight: 600; color: var(--brand);
}
.dot { width: 7px; height: 7px; background: var(--wa); border-radius: 50%; display: block; flex-shrink: 0; }
.dot--pulse { animation: pulse 2.4s var(--ease-out) infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(31,175,84,.5); } 60% { box-shadow: 0 0 0 8px rgba(31,175,84,0); } }
.hero h1 { margin-bottom: 20px; }
.hero .lede { margin-bottom: 28px; max-width: 560px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.trustrow { display: flex; gap: 14px 24px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--line-soft); }
.trustrow li { display: flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--muted); }

/* ---------- router card ---------- */
.router { background: var(--surface-alt); border: 1px solid var(--line); border-radius: 18px; padding: 30px; }
.router__title { font-family: var(--display); font-size: 21px; font-weight: 600; letter-spacing: -.015em; margin-bottom: 5px; }
.router__sub { font-size: 14.5px; color: var(--muted); margin-bottom: 20px; }
.router__list { display: flex; flex-direction: column; gap: 9px; }
.job {
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
	padding: 15px 17px; text-align: left; width: 100%;
	transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.job:hover { border-color: var(--brand); transform: translateX(3px); box-shadow: 0 8px 20px -12px rgba(5,48,151,.5); }
.job__ic { flex-shrink: 0; display: flex; }
.job__main { display: flex; align-items: center; gap: 13px; min-width: 0; }
.job__t { display: block; font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.job__d { display: block; font-size: 12.5px; color: var(--faint); margin-top: 3px; line-height: 1.35; }
.job--featured { border: 1.5px solid var(--brand); }
.job--urgent .job__d { color: var(--alert); font-weight: 500; }
.job__arrow { flex-shrink: 0; }
.router__foot { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--muted); text-align: center; }

/* ---------- client logos ---------- */
.clients { background: var(--surface-alt); border-radius: 18px; padding: 32px 40px; }
.clients__label { font-size: 13.5px; font-weight: 600; color: var(--muted); margin-bottom: 24px; text-align: center; }
.clients__grid { display: grid; grid-template-columns: repeat(8, minmax(0,1fr)); gap: 34px; align-items: center; }
.clients__grid img { height: 30px; width: 100%; object-fit: contain; filter: grayscale(1); opacity: .55; transition: opacity .3s var(--ease), filter .3s var(--ease); }
.clients__grid img:hover { filter: grayscale(0); opacity: 1; }

/* ---------- cards ---------- */
.card { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; background: #fff; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); }
.card--hover:hover { transform: translateY(-5px); border-color: #D3D9E2; box-shadow: 0 18px 38px -20px rgba(5,48,151,.35); }
.card__ic { width: 44px; height: 44px; background: var(--brand-tint); border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.card__ic--alert { background: var(--alert-tint); }
.card h3 { font-size: 19px; margin-bottom: 12px; }
.ticks { display: flex; flex-direction: column; gap: 9px; font-size: 14.5px; color: var(--body); line-height: 1.45; }
.ticks li { display: flex; gap: 9px; align-items: flex-start; }
.ticks svg { flex-shrink: 0; margin-top: 4px; }

/* media card (sectors, products) */
.mcard { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.mcard:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -20px rgba(5,48,151,.4); }
.mcard__img { aspect-ratio: 4/3; overflow: hidden; background: var(--surface-alt); }
.mcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.mcard:hover .mcard__img img { transform: scale(1.07); }
.mcard__body { padding: 18px 20px 20px; }
.mcard__body h3 { font-size: 16.5px; letter-spacing: -.012em; }

/* pill list (sectors text) */
.pills { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.pills li { border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 22px; font-size: 15px; font-weight: 600; color: #3D454F; transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease); }
.pills li:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-3px); }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 20px; }
.step__head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.step__n { width: 30px; height: 30px; background: var(--brand); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.step__n--last { background: #fff; border: 1.5px solid var(--brand); color: var(--brand); }
.step__line { flex-grow: 1; height: 1px; background: #DDE2E8; }
.step h3 { font-family: var(--sans); font-size: 16.5px; font-weight: 600; letter-spacing: 0; margin-bottom: 7px; }

/* ---------- spec rows ---------- */
.spec { display: flex; align-items: flex-start; gap: 16px; border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.spec:hover { border-color: #D3D9E2; transform: translateX(4px); }
.spec__ic { width: 40px; height: 40px; background: var(--brand-tint); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.spec__ic--alert { background: var(--alert-tint); }
.spec h3 { font-family: var(--sans); font-size: 16px; font-weight: 600; letter-spacing: 0; margin-bottom: 5px; }

/* ---------- page banner ---------- */
.pbanner { position: relative; background: var(--brand); color: #fff; overflow: hidden; }
.pbanner__bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: .3; }
.pbanner__inner { position: relative; padding: 72px 0 76px; }
.pbanner h1 { color: #fff; margin-bottom: 14px; }
.pbanner p { color: #C3CFEA; font-size: 17px; line-height: 1.6; max-width: 620px; }
.crumbs { font-size: 13.5px; color: #93A8D4; margin-bottom: 18px; }
.crumbs a { color: #C3CFEA; }
.crumbs a:hover { color: #fff; }

/* ---------- CTA band ---------- */
.cta { background: var(--brand); border-radius: var(--r-xl); padding: 54px; display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; align-items: center; }
.cta h2 { color: #fff; margin-bottom: 12px; }
.cta p { color: #B7C4E4; font-size: 16.5px; line-height: 1.6; }
.cta__actions { display: flex; flex-direction: column; gap: 11px; }

/* ---------- footer ---------- */
.ftr { background: #0E1319; color: #99A2AE; padding: 64px 0 0; margin-top: 8px; }
.ftr__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.ftr h4 { font-family: var(--sans); font-size: 13px; font-weight: 700; color: #fff; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.ftr a { color: #99A2AE; font-size: 14.5px; }
.ftr a:hover { color: #fff; }
.ftr__links { display: flex; flex-direction: column; gap: 11px; }
.ftr__brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.ftr__brand .brand__name { color: #fff; }
.ftr__bio { font-size: 14.5px; line-height: 1.65; max-width: 330px; }
.ftr__social { display: flex; gap: 10px; margin-top: 20px; }
.ftr__social a { width: 40px; height: 40px; border: 1px solid #262D37; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease); }
.ftr__social a:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-3px); }
.ftr__bar { border-top: 1px solid #1D242D; padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }

/* ---------- floating WhatsApp ---------- */
.wa-float {
	position: fixed; right: 24px; bottom: 24px; z-index: 50;
	width: 58px; height: 58px; border-radius: 50%; background: var(--wa);
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 10px 26px -8px rgba(31,175,84,.7);
	transition: transform .35s var(--ease);
}
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; animation: halo 2.6s var(--ease-out) infinite; }
@keyframes halo { 70% { box-shadow: 0 0 0 16px rgba(31,175,84,0); } 100% { box-shadow: 0 0 0 0 rgba(31,175,84,0); } }
.wa-float:hover { transform: scale(1.08); }

/* ---------- forms ---------- */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13.5px; font-weight: 600; color: #3D454F; }
.field .req { color: var(--alert); }
.field input, .field textarea, .field select {
	font-family: var(--sans); font-size: 15.5px; color: var(--ink); background: #fff;
	border: 1px solid var(--line); border-radius: var(--r-sm); padding: 13px 15px; width: 100%;
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease); min-height: 48px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
	outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(5,48,151,.13);
}
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__note { font-size: 13.5px; color: var(--muted); }

/* ---------- gallery (CSS scroll-snap, no JS library) ---------- */
.gal { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; -webkit-overflow-scrolling: touch; }
.gal::-webkit-scrollbar { height: 8px; }
.gal::-webkit-scrollbar-track { background: var(--surface-alt); border-radius: 4px; }
.gal::-webkit-scrollbar-thumb { background: #C6CCD4; border-radius: 4px; }
.gal::-webkit-scrollbar-thumb:hover { background: var(--brand); }
.gal > * { scroll-snap-align: start; flex: 0 0 clamp(260px, 30%, 380px); border-radius: var(--r-md); overflow: hidden; background: var(--surface-alt); }
.gal img, .gal video { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* ---------- misc ---------- */
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.center { text-align: center; }
.mb0 { margin-bottom: 0; } .mb8 { margin-bottom: 8px; } .mb16 { margin-bottom: 16px; }
.mb24 { margin-bottom: 24px; } .mb32 { margin-bottom: 32px; } .mb40 { margin-bottom: 40px; }
.maxw-prose { max-width: 640px; }
.sec-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 34px; }
.sec-head p { max-width: 460px; font-size: 16px; line-height: 1.62; color: var(--body); }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 200; background: #fff; padding: 12px 18px; border-radius: var(--r-sm); box-shadow: 0 6px 20px rgba(0,0,0,.2); }

/* ---------- scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translate3d(0,26px,0); transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-group] > * { opacity: 0; transform: translate3d(0,26px,0); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal-group].is-in > * { opacity: 1; transform: none; }
[data-reveal-group].is-in > *:nth-child(1){transition-delay:0s}
[data-reveal-group].is-in > *:nth-child(2){transition-delay:.07s}
[data-reveal-group].is-in > *:nth-child(3){transition-delay:.14s}
[data-reveal-group].is-in > *:nth-child(4){transition-delay:.21s}
[data-reveal-group].is-in > *:nth-child(5){transition-delay:.28s}
[data-reveal-group].is-in > *:nth-child(6){transition-delay:.35s}
[data-reveal-group].is-in > *:nth-child(7){transition-delay:.42s}
[data-reveal-group].is-in > *:nth-child(n+8){transition-delay:.49s}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
	:root { --pad: 40px; }
	.nav { gap: 18px; }
	.nav a { font-size: 14px; }
	.hdr__tel { display: none; }
	.clients__grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 28px 34px; }
	.ubar__region { display: none; }
	.ubar__sep { display: none; }
	.steps { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px 20px; }
	.ftr__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 1024px) {
	.hero__grid { grid-template-columns: 1fr; gap: 36px; }
	.g3, .g4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.pills { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.cta { grid-template-columns: 1fr; padding: 40px; }
	.sec-head { flex-direction: column; align-items: flex-start; gap: 16px; }
	.form__grid { grid-template-columns: 1fr; }

	/* mobile nav */
	.navtoggle { display: flex; }
	/* The header must not create a containing block for the fixed panel below,
	   so drop the backdrop filter at these widths. */
	.hdr, .hdr.is-scrolled {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		background: #fff;
	}

	.nav {
		position: fixed; top: 0; right: 0; width: min(320px, 84vw);
		height: 100vh; height: 100dvh;
		background: #fff; flex-direction: column; align-items: stretch; gap: 0;
		padding: 88px 24px 32px; box-shadow: -12px 0 40px -18px rgba(0,0,0,.4);
		transform: translateX(100%); visibility: hidden;
		transition: transform .38s var(--ease), visibility 0s linear .38s;
		z-index: 80; overflow-y: auto; -webkit-overflow-scrolling: touch;
	}
	.nav.is-open {
		transform: none; visibility: visible;
		transition: transform .38s var(--ease), visibility 0s;
	}
	.nav a { font-size: 17px; padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
	.nav a::after { display: none; }
	.nav a[aria-current="page"] { color: var(--brand); }
	.nav__cta { display: flex; margin-top: 20px; flex-direction: column; gap: 10px; }
	.navscrim { position: fixed; inset: 0; background: rgba(10,14,20,.45); opacity: 0; pointer-events: none; transition: opacity .35s var(--ease); z-index: 60; }
	.navscrim.is-open { opacity: 1; pointer-events: auto; }
	body.nav-open { overflow: hidden; }
	.hdr__cta .btn { display: none; }
}

@media (max-width: 640px) {
	:root { --pad: 20px; }
	.section { padding: 52px 0; }
	.hero { padding: 40px 0 48px; }
	.ubar { display: none; }
	.g2, .g3, .g4, .pills { grid-template-columns: 1fr; }
	.steps { grid-template-columns: 1fr; gap: 26px; }
	.clients__grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
	.clients { padding: 26px 20px; }
	.cta { padding: 32px 24px; border-radius: var(--r-lg); }
	.router { padding: 22px; }
	.ftr__grid { grid-template-columns: 1fr; gap: 32px; }
	.ftr__bar { flex-direction: column; gap: 10px; }
	.hero__actions .btn { width: 100%; }
	.trustrow { gap: 12px; flex-direction: column; }
	.wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
	.pbanner__inner { padding: 48px 0 52px; }
	.gal > * { flex-basis: 78%; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	[data-reveal], [data-reveal-group] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ---------- print ---------- */
@media print {
	.hdr, .ubar, .wa-float, .cta, .ftr__social { display: none; }
	body { color: #000; }
}

/* --------------------------------------------------------------------------
   Company video
   Poster plus click to play. The source carries preload="none" so the file
   is only fetched once a visitor presses play.
   -------------------------------------------------------------------------- */
.vframe {
	position: relative;
	border-radius: var(--r-xl);
	overflow: hidden;
	background: #0E1319;
	box-shadow: 0 30px 70px -34px rgba(5, 48, 151, .55);
}

.vframe video {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: #0E1319;
}

.vplay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	padding: 0;
	cursor: pointer;
	background: linear-gradient(180deg, rgba(5, 48, 151, .18), rgba(10, 14, 20, .5));
	transition: background .35s var(--ease), opacity .3s var(--ease);
}

.vplay:hover { background: linear-gradient(180deg, rgba(5, 48, 151, .3), rgba(10, 14, 20, .58)); }
.vplay[hidden] { display: none; }

.vplay__disc {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .96);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 14px 34px -10px rgba(0, 0, 0, .6);
	transition: transform .35s var(--ease);
}

.vplay:hover .vplay__disc { transform: scale(1.09); }
.vplay:focus-visible .vplay__disc { outline: 3px solid #fff; outline-offset: 4px; }

.vplay__label {
	position: absolute;
	bottom: 26px;
	left: 28px;
	right: 28px;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-align: left;
	text-shadow: 0 2px 14px rgba(0, 0, 0, .6);
}

@media (max-width: 640px) {
	.vplay__disc { width: 62px; height: 62px; }
	.vplay__disc svg { width: 22px; height: 22px; }
	.vplay__label { bottom: 16px; left: 18px; right: 18px; font-size: 13.5px; }
	.vframe { border-radius: var(--r-lg); }
}

/* ==========================================================================
   Credentials strip
   ========================================================================== */
.creds { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.cred {
	display: flex; align-items: center; gap: 13px;
	border: 1px solid var(--line); border-radius: var(--r-md);
	padding: 16px 18px; background: #fff;
	transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.cred:hover { border-color: var(--brand); transform: translateY(-3px); }
.cred__ic { width: 34px; height: 34px; flex-shrink: 0; background: var(--brand-tint); border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.cred__t { display: block; font-size: 14.5px; font-weight: 600; line-height: 1.25; }
.cred__d { display: block; font-size: 12.5px; color: var(--muted); margin-top: 3px; line-height: 1.3; }

/* ==========================================================================
   Featured services (the two flagship B2B systems)
   ========================================================================== */
.feat { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.feat__card {
	position: relative; overflow: hidden;
	border-radius: var(--r-xl); padding: 34px 32px 30px;
	background: linear-gradient(160deg, #0A2472 0%, #053097 55%, #0B3AAE 100%);
	color: #fff;
	transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feat__card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px -24px rgba(5,48,151,.75); }
.feat__card::after {
	content: ""; position: absolute; right: -60px; top: -60px;
	width: 210px; height: 210px; border-radius: 50%;
	background: rgba(255,255,255,.07);
}
.feat__tag {
	display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .08em;
	text-transform: uppercase; background: rgba(255,255,255,.16); color: #fff;
	padding: 5px 11px; border-radius: 5px; margin-bottom: 16px;
}
.feat__card h3 { position: relative; font-size: clamp(22px,2.1vw,27px); color: #fff; margin-bottom: 12px; }
.feat__card p { position: relative; font-size: 15.5px; line-height: 1.6; color: #C3CFEA; margin-bottom: 20px; }
.feat__list { position: relative; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.feat__list span {
	font-size: 13px; font-weight: 500; color: #DCE5F7;
	background: rgba(255,255,255,.12); padding: 6px 11px; border-radius: var(--r-pill);
}
.feat__cta { position: relative; display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: #fff; }
.feat__cta:hover { color: #fff; }

/* secondary services below the two flagships */
.sec-svc { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.sec-svc a {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px 18px;
	font-size: 14.5px; font-weight: 600; color: #3D454F;
	transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.sec-svc a:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-3px); }

/* ==========================================================================
   Sectors, compact (no cover images)
   ========================================================================== */
.sectors { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px 26px; }
.sectors li {
	display: flex; align-items: center; gap: 11px;
	padding: 13px 0; border-bottom: 1px solid var(--line-soft);
	font-size: 15px; font-weight: 500; color: #3D454F;
}
.sectors li svg { flex-shrink: 0; color: var(--brand); }

/* ==========================================================================
   Product category cards and product grid
   ========================================================================== */
.pcat {
	display: flex; flex-direction: column;
	border: 1px solid var(--line); border-radius: var(--r-lg);
	padding: 30px 28px; background: #fff; height: 100%;
	transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.pcat:hover { transform: translateY(-6px); border-color: #D3D9E2; box-shadow: 0 20px 44px -22px rgba(5,48,151,.4); }
.pcat h3 { font-size: 21px; margin-bottom: 10px; }
.pcat p { font-size: 14.5px; line-height: 1.6; color: var(--body); margin-bottom: 18px; }
.pcat ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; flex-grow: 1; }
.pcat li { font-size: 14px; color: var(--muted); display: flex; gap: 8px; }
.pcat li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); flex-shrink: 0; margin-top: 8px; }

.pitem { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.pitem:hover { transform: translateY(-5px); box-shadow: 0 18px 40px -22px rgba(5,48,151,.4); }
.pitem__img { aspect-ratio: 1/1; background: var(--surface-alt); display: flex; align-items: center; justify-content: center; padding: 20px; }
.pitem__img img { width: 100%; height: 100%; object-fit: contain; }
.pitem__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex-grow: 1; }
.pitem__body h3 { font-size: 16px; letter-spacing: -.01em; margin-bottom: 5px; }
.pitem__spec { font-size: 12.5px; color: var(--faint); margin-bottom: 9px; }
.pitem__body p { font-size: 13.5px; line-height: 1.55; color: var(--body); flex-grow: 1; margin-bottom: 16px; }

/* Buy now button, deliberately unmistakable */
.btn--buy {
	background: #16A34A; color: #fff; width: 100%;
	font-size: 15px; font-weight: 700; letter-spacing: .01em;
}
.btn--buy:hover { background: #12833C; color: #fff; box-shadow: 0 10px 22px -10px rgba(22,163,74,.7); }
.btn--enquire { background: var(--brand); color: #fff; width: 100%; font-size: 15px; font-weight: 600; }
.btn--enquire:hover { background: var(--brand-dark); color: #fff; }

/* placeholder client logo tiles */
.clients__grid .ph {
	display: flex; align-items: center; justify-content: center;
	height: 46px; border: 1px dashed #C9D0DA; border-radius: 8px;
	font-size: 11.5px; color: #97A0AC; letter-spacing: .04em; background: #fff;
}

@media (max-width: 1024px) {
	.creds, .sec-svc, .sectors { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.feat { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	.creds, .sec-svc, .sectors { grid-template-columns: 1fr; }
	.sectors { gap: 0; }
	.feat__card { padding: 26px 22px 24px; }
}

/* ==========================================================================
   Requirement selector
   One conversion block per page, replacing per-card buttons.
   ========================================================================== */
.reqsel { background: var(--surface-alt); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 40px; }
.reqsel__head { text-align: center; max-width: 560px; margin: 0 auto 28px; }
.reqsel__head h2 { margin-bottom: 10px; }
.reqsel__head p { font-size: 16px; color: var(--body); line-height: 1.6; }
.reqsel__grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; max-width: 940px; margin: 0 auto; }
.reqsel__opt {
	display: flex; align-items: center; gap: 13px; text-align: left;
	background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
	padding: 16px 18px; width: 100%; cursor: pointer;
	transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.reqsel__opt:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: 0 10px 24px -14px rgba(5,48,151,.6); }
.reqsel__opt span.t { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.reqsel__opt span.d { display: block; font-size: 12.5px; color: var(--faint); margin-top: 2px; }
.reqsel__ic { flex-shrink: 0; display: flex; width: 34px; height: 34px; border-radius: 9px; background: var(--brand-tint); align-items: center; justify-content: center; }
.reqsel__foot { text-align: center; margin-top: 24px; font-size: 14px; color: var(--muted); }

/* ==========================================================================
   Card buttons align to a common baseline across a row
   ========================================================================== */
.pitem__body .btn, .card .btn { margin-top: auto; }
.pitem__body p { margin-bottom: 18px; }

/* ==========================================================================
   Sticky action bar, mobile only. One obvious action, always reachable.
   ========================================================================== */
.actionbar { display: none; }

@media (max-width: 1024px) {
	.reqsel__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.reqsel { padding: 30px 24px; }
}

@media (max-width: 640px) {
	.reqsel__grid { grid-template-columns: 1fr; }
	.reqsel { padding: 24px 18px; border-radius: var(--r-lg); }

	.actionbar {
		position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
		display: flex; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
		background: rgba(255,255,255,.97); border-top: 1px solid var(--line);
		box-shadow: 0 -6px 24px -12px rgba(0,0,0,.28);
	}
	.actionbar .btn { flex: 1; min-height: 50px; font-size: 15px; padding: 14px 12px; }
	.actionbar .btn:hover { transform: none; }
	body { padding-bottom: 76px; }
	.wa-float { bottom: 88px; }
}

/* ==========================================================================
   FAQ. Native details/summary, no JavaScript required.
   ========================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item[open] { background: var(--surface-alt); border-radius: var(--r-md); border-bottom-color: transparent; }
.faq__q {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding: 20px 18px; cursor: pointer; list-style: none;
	font-size: 16.5px; font-weight: 600; color: var(--ink); line-height: 1.4;
	transition: color .2s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--brand); }
.faq__q::after {
	content: ""; flex-shrink: 0; width: 11px; height: 11px;
	border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
	transform: rotate(45deg) translate(-2px,-2px);
	transition: transform .3s var(--ease);
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg) translate(-2px,-2px); }
.faq__a { padding: 0 18px 22px; font-size: 15.5px; line-height: 1.65; color: var(--body); }
.faq__a p + p { margin-top: 10px; }

/* ==========================================================================
   Photo strip. Real job photography, used as evidence rather than decoration.
   ========================================================================== */
.photostrip { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.photostrip figure { margin: 0; border-radius: var(--r-md); overflow: hidden; background: var(--surface-alt); }
.photostrip img { width: 100%; aspect-ratio: 4/7; object-fit: cover; object-position: center; transition: transform .9s var(--ease); }
.photostrip figure:hover img { transform: scale(1.06); }

/* sector tiles with a small photo instead of a large cover card */
.sectors--photo { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.sectors--photo li { display: flex; align-items: center; gap: 12px; padding: 0; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.sectors--photo li:hover { border-color: var(--brand); transform: translateY(-3px); }
.sectors--photo img { width: 78px; height: 72px; object-fit: cover; object-position: center; flex-shrink: 0; }
.sectors--photo span { font-size: 14.5px; font-weight: 600; color: #3D454F; padding-right: 12px; line-height: 1.3; }

@media (max-width: 1024px) {
	.photostrip { grid-template-columns: repeat(3, minmax(0,1fr)); }
	.sectors--photo { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
	.photostrip { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.sectors--photo { grid-template-columns: 1fr; }
	.faq__q { font-size: 15.5px; padding: 17px 14px; }
	.faq__a { padding: 0 14px 18px; font-size: 15px; }
}
