/* ===============================================================
BURTON LOGISTICS GROUP Ã¢â‚¬â€ style.css
Medical Courier & Logistics Ã‚Â· Central Florida
Palette: #0149DD primary Ã‚Â· #E7EFFF tint Ã‚Â· #0F172A dark (single-color theme)
=============================================================== */

/* ---------- ROOT TOKENS ---------- */
:root {
	--primary:        #0149DD;
	--primary-d:      #0136B0;
	--primary-l:      #3A6FE6;
	--primary-tn:     #E7EFFF;
	--primary-tn-2:   #D4DFFB;

	--dark:           #0F172A;
	--dark-2:         #1E293B;
	--dark-3:         #334155;

	/* gold tokens mapped to primary blues Ã¢â‚¬â€ theme uses a single color */
	--gold:           #3A6FE6;
	--gold-d:         #0149DD;
	--gold-tn:        #E7EFFF;

	--ink:            #0F172A;
	--ink-2:          #1E293B;
	--muted:          #64748B;
	--muted-2:        #94A3B8;
	--line:           #E5E7EB;
	--line-soft:      #F1F3F6;

	--bg:             #FFFFFF;
	--bg-2:           #E7EFFF;
	--bg-3:           #F5F7FB;

	--sans:           'indivisible', 'Inter', system-ui, -apple-system, sans-serif;

	/* radius */
	--r-xs: 6px;
	--r-sm: 10px;
	--r-md: 14px;
	--r-lg: 20px;
	--r-xl: 28px;
	--r-pill: 999px;

	/* shadows */
	--e1: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
	--e2: 0 4px 10px rgba(15,23,42,.05), 0 2px 4px rgba(15,23,42,.04);
	--e3: 0 12px 30px rgba(15,23,42,.08), 0 4px 10px rgba(15,23,42,.05);
	--e4: 0 24px 50px rgba(15,23,42,.12), 0 8px 16px rgba(15,23,42,.06);
	--e-blue: 0 14px 30px rgba(1, 73, 221, .26);
	--e-gold: 0 14px 30px rgba(1, 73, 221, .26);

	/* ease */
	--ease:        cubic-bezier(.4, 0, .2, 1);
	--ease-out:    cubic-bezier(.16, 1, .3, 1);
	--ease-bounce: cubic-bezier(.34, 1.56, .64, 1);

	/* layout */
	--maxw: 1280px;
	--gutter: 32px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	background: var(--dark); /* matches footer Ã¢â‚¬â€ kills white overscroll/end-of-page area */
}
body {
	font-family: var(--sans);
	font-size: 15px;
	color: var(--ink);
	background: var(--bg);
	line-height: 1.65;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	min-height: 100vh;
}
img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--primary); color: #fff; }

/* ---------- SHARED ---------- */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .12em;
	color: var(--primary);
	text-transform: uppercase;
	padding: 5px 12px;
	background: var(--primary-tn);
	border-radius: var(--r-pill);
}
.eyebrow::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--primary);
}
.eyebrow--light {
	background: rgba(255,255,255,.08);
	color: #fff;
	border: 1px solid rgba(255,255,255,.14);
}
.eyebrow--light::before { background: var(--gold); }

.section-title {
	font-family: var(--sans);
	font-weight: 700;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	line-height: 1.18;
	letter-spacing: -.02em;
	color: var(--ink);
}
.section-title em {
	font-style: normal;
	color: var(--primary);
	font-weight: 700;
	position: relative;
	display: inline-block;
}
.section-title em::after {
	content: '';
	position: absolute;
	left: 0; right: 0;
	bottom: 2px;
	height: 8px;
	background: var(--gold);
	opacity: .25;
	border-radius: 4px;
	z-index: -1;
}
.section-title--light { color: #fff; }
.section-title--light em { color: var(--gold); }
.section-title--light em::after { background: var(--gold); opacity: .35; }

.section-head {
	max-width: 720px;
	margin: 0 auto 56px;
	padding: 0 var(--gutter);
}
.section-head--center { text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-lead {
	color: var(--muted);
	font-size: 15.5px;
	margin-top: 16px;
	line-height: 1.65;
}

/* ===============================================================
PHLOX-STYLE HEADER (fixed Ã‚Â· dark utility bar + white main bar)
=============================================================== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 80;
	transition: box-shadow .35s var(--ease);
}
.header.scrolled .header__main { box-shadow: 0 8px 24px rgba(15,23,42,.10); }

/* --- TOP utility bar (dark, slim) --- */
.header__top {
	background: var(--dark);
	color: #fff;
	font-size: 13px;
	line-height: 1;
}
.header__top-inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 11px var(--gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.header__contacts {
	display: inline-flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}
.header__contact-link {
	color: rgba(255,255,255,.82);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	letter-spacing: .01em;
	white-space: nowrap;
	transition: color .25s var(--ease);
}
.header__contact-link i {
	color: var(--primary-l);
	font-size: 12px;
}
.header__contact-link:hover { color: #fff; }
.header__contact-link:hover i { color: #fff; }

.header__socials {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.header__socials a {
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	color: rgba(255,255,255,.72);
	border-radius: 50%;
	font-size: 12px;
	transition: background .25s var(--ease), color .25s var(--ease);
}
.header__socials a:hover {
	background: var(--primary);
	color: #fff;
}

/* --- MAIN bar (white) --- */
.header__main {
	background: #fff;
	border-bottom: 1px solid var(--line);
	transition: box-shadow .35s var(--ease);
}
.header__main-inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 36px var(--gutter);
	height: 62px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

/* legacy alias Ã¢â‚¬â€ old templates used .header__pill */
.header__pill { display: contents; }

/* BRAND (left of main bar) */
.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
	min-height: 0;
	transition: opacity .25s var(--ease);
}
.brand:hover { opacity: .9; }
/* CSS "B" mark */
.brand__mark {
	width: 38px;
	height: 38px;
	flex-shrink: 0;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--primary-l) 0%, var(--primary) 55%, var(--primary-d) 100%);
	color: #fff;
	font-family: var(--sans);
	font-weight: 800;
	font-size: 20px;
	letter-spacing: -.02em;
	display: grid;
	place-items: center;
	box-shadow: 0 6px 14px rgba(1,73,221,.30), inset 0 -2px 0 rgba(0,0,0,.10);
	position: relative;
	overflow: hidden;
	transition: transform .35s var(--ease-bounce);
}
.brand__mark::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.18) 50%, transparent 65%);
	pointer-events: none;
}
.brand:hover .brand__mark {
	transform: scale(1.05) rotate(-2deg);
}
/* Legacy image-logo support (other places like footer still use it) */
.brand__logo {
	height: 52px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
	display: none;
	flex-shrink: 0;
	transition: transform .35s var(--ease-bounce);
}
.brand--has-logo .brand__logo { display: block; }
.brand--has-logo .brand__text { display: none; }
.brand--text-only .brand__logo { display: none !important; }
.brand--text-only .brand__text { display: flex; }
/* Header brand always shows text alongside the CSS mark */
.header .brand .brand__text { display: flex !important; }

.brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}
.brand__name {
	font-family: var(--sans);
	font-weight: 800;
	font-size: 17px;
	color: var(--ink);
	letter-spacing: -.015em;
	line-height: 1;
}
.brand__sub {
	font-size: 9px;
	color: var(--primary);
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	margin-top: 5px;
}

/* Header contact (still used by legacy templates) */
.header-contact {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--ink-2);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: -.005em;
	transition: color .3s var(--ease);
}
.header-contact__ico {
	width: 24px;
	height: 24px;
	border-radius: 6px;
	background: var(--primary-tn);
	color: var(--primary);
	display: grid;
	place-items: center;
	font-size: 10px;
	flex-shrink: 0;
}
.header-contact:hover { color: var(--primary); }

/* Centered NAV (Phlox style) */
.nav {
	display: flex;
	align-items: center;
	gap: 4px;
	flex: 1;
	justify-content: center;
}
.nav__link {
	position: relative;
	padding: 24px 14px;
	font-size: 12px;
	font-weight: 600;
	color: var(--ink);
	background: none;
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	letter-spacing: .12em;
	text-transform: uppercase;
	transition: color .3s var(--ease);
	font-family: var(--sans);
	white-space: nowrap;
}
.nav__link::after {
	content: '';
	position: absolute;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--primary);
	border-radius: 2px;
	transition: width .35s var(--ease);
}
.nav__link:hover { color: var(--primary); }
.nav__link:hover::after { width: 24px; }
.nav__link.active { color: var(--primary); }
.nav__link.active::after { width: 24px; }
.nav__chev {
	font-size: 9px;
	color: var(--muted-2);
	transition: transform .3s var(--ease), color .3s var(--ease);
	margin-left: 4px;
}
.nav__dd-wrap { position: relative; }
.nav__dd-wrap:hover .nav__chev,
.nav__dd-wrap.open .nav__chev {
	transform: rotate(180deg);
	color: var(--primary);
}

/* MEGA DROPDOWN (light themed to match new header) */
.mega {
	position: absolute;
	top: calc(100% - 8px);
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	width: 720px;
	background: #fff;
	border-radius: var(--r-lg);
	border: 1px solid var(--line);
	box-shadow: 0 24px 50px rgba(15,23,42,.14), 0 4px 12px rgba(15,23,42,.06);
	padding: 22px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .35s var(--ease), transform .4s var(--ease-out), visibility .35s var(--ease);
	z-index: 90;
}
.mega__arrow {
	position: absolute;
	top: -7px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 14px;
	height: 14px;
	background: #fff;
	border-left: 1px solid var(--line);
	border-top: 1px solid var(--line);
	border-radius: 3px;
}
.nav__dd-wrap:hover .mega,
.nav__dd-wrap.open .mega {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}
.mega__head {
	padding-bottom: 14px;
	margin-bottom: 14px;
	border-bottom: 1px solid var(--line-soft);
}
.mega__eyebrow {
	font-size: 10px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--primary);
	font-weight: 700;
	display: block;
	margin-bottom: 4px;
}
.mega__title {
	font-size: 17px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.2;
	letter-spacing: -.01em;
}
.mega__title em {
	font-style: normal;
	color: var(--primary);
}
.mega__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4px;
}
.mega__item {
	display: flex;
	gap: 11px;
	padding: 10px 12px;
	border-radius: var(--r-md);
	transition: background .25s var(--ease);
	align-items: center;
}
.mega__item:hover { background: var(--primary-tn); }
.mega__ico {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: var(--primary-tn);
	color: var(--primary);
	display: grid;
	place-items: center;
	flex-shrink: 0;
	transition: background .25s var(--ease), color .25s var(--ease);
}
.mega__ico i { font-size: 12px; }
.mega__item:hover .mega__ico {
	background: var(--primary);
	color: #fff;
}
.mega__item strong {
	display: block;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--ink);
	line-height: 1.3;
	margin-bottom: 1px;
}
.mega__item small {
	font-size: 10.5px;
	color: var(--muted);
	line-height: 1.4;
}
.mega__foot {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--line-soft);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.mega__foot > span {
	font-size: 11px;
	color: var(--muted);
	font-weight: 500;
}
.mega__foot > span i {
	color: var(--primary);
	margin-right: 6px;
	font-size: 10px;
}
.mega__cta {
	color: var(--primary);
	font-weight: 700;
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	transition: gap .3s var(--ease);
}
.mega__cta i { font-size: 10px; }
.mega__cta:hover { gap: 11px; }

/* HEADER ACTIONS (CTA + search) */
.header__actions {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}

/* CTA Ã¢â‚¬â€ gradient pill (Phlox style) */
.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 28px;
	background: linear-gradient(135deg, var(--primary-l) 0%, var(--primary) 50%, var(--primary-d) 100%);
	background-size: 200% 100%;
	background-position: 0% 50%;
	color: #fff;
	border-radius: var(--r-pill);
	font-weight: 700;
	font-size: 12.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	transition: background-position .5s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
	box-shadow: 0 8px 18px rgba(1,73,221,.25);
}
.header-cta:hover {
	background-position: 100% 50%;
	box-shadow: 0 14px 28px rgba(1,73,221,.38);
	color: #fff;
}
.header-cta__arrow {
	display: none;
}
.header-cta > i {
	font-size: 10px;
	transition: margin-left .3s var(--ease);
}
.header-cta:hover > i { margin-left: 3px; }

/* SEARCH icon Ã¢â‚¬â€ hidden site-wide */
.header__search {
	display: none !important;
}

/* HEADER RIGHT CLUSTER (legacy support) */
.header__right {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}
.header-phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ink);
	font-size: 13px;
	font-weight: 600;
	padding: 8px 4px 8px 0;
	transition: color .3s var(--ease);
	letter-spacing: -.01em;
}
.header-phone i {
	color: var(--primary);
	font-size: 11px;
}
.header-phone:hover { color: var(--primary); }

/* keep contact lines on a single row, never wrap */
.header-contact { white-space: nowrap; }
.header-cta { white-space: nowrap; }

.hamburger {
	display: none;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid rgba(15,23,42,.06);
	box-shadow: 0 8px 22px rgba(15,23,42,.06);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	transition: background .3s var(--ease), box-shadow .3s var(--ease);
	flex-shrink: 0;
}
.hamburger:hover { background: var(--primary); box-shadow: 0 10px 24px rgba(1,73,221,.30); }
.hamburger span {
	width: 18px;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: background .3s var(--ease);
}
.hamburger:hover span { background: #fff; }

/* MOBILE DRAWER */
.drawer {
	position: fixed;
	top: 0;
	right: 0;
	width: 84%;
	max-width: 340px;
	height: 100vh;
	background: #fff;
	z-index: 100;
	padding: 80px 28px 28px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	box-shadow: var(--e4);
	clip-path: circle(0 at calc(100% - 50px) 50px);
	transition: clip-path .6s var(--ease-out);
	overflow-y: auto;
}
.drawer.open { clip-path: circle(160% at calc(100% - 50px) 50px); }
.drawer__close {
	position: absolute;
    top: 0;
    left: 0;
    margin-left: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
	background: var(--bg-3);
	display: grid;
	place-items: center;
	transition: background .3s var(--ease), color .3s var(--ease);
}
.drawer__close:hover { background: var(--primary); color: #fff; }
.drawer a {
	padding: 12px 16px;
	border-radius: var(--r-md);
	font-weight: 500;
	color: var(--ink);
	transition: background .25s var(--ease), color .25s var(--ease);
	font-size: 15px;
}
.drawer a:hover { background: var(--bg-2); color: var(--primary); }
.drawer__cta {
	background: var(--primary) !important;
	color: #fff !important;
	text-align: center;
	margin-top: 14px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	box-shadow: var(--e-blue);
}
.drawer__cta:hover { background: var(--primary-d) !important; color: #fff !important; }
.drawer__contact {
	margin-top: auto;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}
.drawer__contact a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: var(--muted);
	padding: 8px 0 !important;
}
.drawer__contact a i { color: var(--primary); }

/* Drawer Ã¢â‚¬â€ services sub-menu */
.drawer__group { border-bottom: 1px solid var(--line-soft); }
.drawer__toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 14px 20px;
	font-size: 15px;
	font-weight: 600;
	color: var(--ink);
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--sans);
	text-align: left;
}
.drawer__toggle i {
	font-size: 11px;
	color: var(--muted);
	transition: transform .3s var(--ease);
}
.drawer__group.open .drawer__toggle i { transform: rotate(180deg); }
.drawer__sub {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s var(--ease);
}
.drawer__group.open .drawer__sub { max-height: 520px; }
.drawer__sub a {
	display: block;
	padding: 10px 20px 10px 34px;
	font-size: 14px;
	font-weight: 500;
	color: var(--muted);
	border-top: 1px solid var(--line-soft);
}
.drawer__sub a:hover {
	background: var(--bg-2);
	color: var(--primary);
}

/* Single service Ã¢â‚¬â€ Hero 3 style (matches contact.html cinematic hero) */
body.single-service .header { padding-top: 0; }
body.single-service .ssvc-hero {
	padding-top: 170px;
	margin-top: 0;
}

/* ===============================================================
HERO (full-bleed bg Ã‚Â· starts at top Ã‚Â· header floats over)
=============================================================== */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 160px 0 100px;
	overflow: hidden;
	color: #fff;
	margin-top: 0;
}
.hero__bg {
	position: absolute;
	inset: 0;
	background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1800&auto=format&fit=crop&q=80');
	background-size: cover;
	background-position: center;
	z-index: 0;
	animation: hero-zoom 28s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
	from { transform: scale(1); }
	to   { transform: scale(1.08); }
}
.hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(15,23,42,.95) 0%, rgba(15,23,42,.82) 42%, rgba(1,73,221,.75) 100%);
	z-index: 1;
}
.hero__pattern {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
	z-index: 1;
}

/* decorative ring (top-right) */
.hero__ring {
	position: absolute;
	top: 90px;
	right: -60px;
	width: 480px;
	height: 480px;
	z-index: 1;
	animation: ring-rotate 50s linear infinite;
	opacity: .6;
}
@keyframes ring-rotate { to { transform: rotate(360deg); } }

/* decorative dots grid (bottom-left) */
.hero__dots {
	position: absolute;
	bottom: 60px;
	left: 40px;
	width: 140px;
	height: 140px;
	background-image: radial-gradient(rgba(255,255,255,.18) 1.5px, transparent 1.5px);
	background-size: 16px 16px;
	z-index: 1;
	mask-image: linear-gradient(135deg, #000 30%, transparent 80%);
	-webkit-mask-image: linear-gradient(135deg, #000 30%, transparent 80%);
}

.hero__content {
	max-width: 940px;
	margin: 0 auto;
	padding: 0 var(--gutter);
	text-align: center;
	position: relative;
	z-index: 2;
}

/* clean text-only eyebrow */
.hero__eyebrow {
	display: inline-block;
	color: var(--primary-l);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	margin-bottom: 26px;
	padding-bottom: 14px;
	position: relative;
}
.hero__eyebrow::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 36px;
	height: 2px;
	background: var(--primary-l);
	border-radius: 2px;
}

.hero__title {
	font-family: var(--sans);
	font-weight: 800;
	font-size: clamp(2.2rem, 5.4vw, 4.2rem);
	line-height: 1.08;
	letter-spacing: -.025em;
	color: #fff;
	margin-bottom: 26px;
}
.hero__title em {
	font-style: normal;
	color: var(--primary-l);
	font-weight: 800;
	position: relative;
	display: inline-block;
}
.hero__title em::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 6px;
	height: 8px;
	background: rgba(1, 73, 221, .35);
	border-radius: 4px;
	z-index: -1;
}

.hero__lead {
	color: rgba(255,255,255,.78);
	font-size: 17px;
	max-width: 680px;
	margin: 0 auto 40px;
	line-height: 1.7;
}

/* SCROLL indicator */
.hero__scroll {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	z-index: 3;
	color: rgba(255,255,255,.55);
	transition: color .3s var(--ease);
}
.hero__scroll:hover { color: #fff; }
.hero__scroll-text {
	font-size: 10px;
	letter-spacing: .3em;
	text-transform: uppercase;
	font-weight: 500;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}
.hero__scroll-line {
	width: 1px;
	height: 48px;
	background: linear-gradient(180deg, rgba(255,255,255,.5) 0%, transparent 100%);
	position: relative;
	overflow: hidden;
}
.hero__scroll-line::after {
	content: '';
	position: absolute;
	top: -12px;
	left: 0;
	width: 1px;
	height: 12px;
	background: var(--primary-l);
	animation: scroll-line 1.8s ease-in-out infinite;
}
@keyframes scroll-line {
	0%   { transform: translateY(0); opacity: 1; }
	100% { transform: translateY(60px); opacity: 0; }
}

.hero__actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
}

.hero__stats {
	margin-top: 70px;
	padding-top: 40px;
	border-top: 1px solid rgba(255,255,255,.12);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.hero__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.hero__stat-num {
	font-family: var(--sans);
	font-size: 32px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	letter-spacing: -.02em;
}
.hero__stat-num i {
	font-style: normal;
	color: var(--primary-l);
	font-size: 17px;
	margin-left: 3px;
	font-weight: 700;
}
.hero__stat-lbl {
	margin-top: 10px;
	font-size: 11px;
	color: rgba(255,255,255,.6);
	text-transform: uppercase;
	letter-spacing: .12em;
	font-weight: 500;
}

/* ===============================================================
FEATURES (clean 3-column grid Ã‚Â· replaces char-strip)
=============================================================== */
.features {
	padding: 110px 0 100px;
	background: #fff;
	position: relative;
	overflow: hidden;
}
.features::before,
.features::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(80px);
}
.features::before {
	width: 360px;
	height: 360px;
	background: var(--primary-tn);
	top: -120px;
	left: -120px;
	opacity: .6;
}
.features::after {
	width: 280px;
	height: 280px;
	background: var(--gold-tn);
	bottom: -100px;
	right: -100px;
	opacity: .35;
}
.features__inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--gutter);
	position: relative;
	z-index: 1;
}
.features__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 76px;
}
.features__indicator {
	display: inline-grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: var(--r-md);
	background: var(--primary-tn);
	color: var(--primary);
	margin-bottom: 22px;
	position: relative;
}
.features__indicator::after {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: 16px;
	border: 1px dashed var(--primary);
	opacity: .25;
	animation: ring-rotate 22s linear infinite;
}
.features__indicator i { font-size: 22px; }
.features__title {
	font-family: var(--sans);
	font-weight: 700;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	line-height: 1.2;
	letter-spacing: -.02em;
	color: var(--ink);
	margin-bottom: 18px;
}
.features__sub {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.65;
}

.features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 56px 44px;
	max-width: 1100px;
	margin: 0 auto;
}
.feature {
	position: relative;
	padding-left: 0;
	transition: padding-left .35s var(--ease);
}
.feature::before {
	content: '';
	position: absolute;
	left: 0;
	top: 16px;
	width: 0;
	height: 18px;
	background: var(--primary);
	border-radius: 2px;
	transition: width .35s var(--ease);
}
.feature:hover { padding-left: 18px; }
.feature:hover::before { width: 3px; }
.feature__ico {
	width: 48px;
	height: 48px;
	border-radius: var(--r-md);
	background: var(--primary-tn);
	color: var(--primary);
	display: grid;
	place-items: center;
	margin-bottom: 22px;
	transition: background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
}
.feature:hover .feature__ico {
	background: var(--primary);
	color: #fff;
	box-shadow: 0 10px 22px rgba(1, 73, 221, .25);
}
.feature__ico i { font-size: 18px; }
.feature h4 {
	font-size: 18px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 12px;
	letter-spacing: -.01em;
	transition: color .35s var(--ease);
}
.feature:hover h4 { color: var(--primary); }
.feature p {
	color: var(--muted);
	font-size: 14.5px;
	line-height: 1.7;
}

/* ===============================================================
ABOUT
=============================================================== */
.about {
	padding: 100px 0;
}
.about__inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 70px;
	align-items: center;
}

.about__visual {
	position: relative;
	height: 580px;
}
.about__img-main {
	position: absolute;
	width: 75%;
	height: 70%;
	top: 0;
	left: 0;
	border-radius: var(--r-xl);
	background:
		linear-gradient(180deg, rgba(1,73,221,.18) 0%, rgba(15,23,42,.35) 100%),
		url('https://images.unsplash.com/photo-1551601651-2a8555f1a136?w=900&auto=format&fit=crop&q=80') center/cover;
	box-shadow: var(--e4);
}
.about__img-sub {
	position: absolute;
	width: 56%;
	height: 50%;
	bottom: 0;
	right: 0;
	border-radius: var(--r-xl);
	background:
		linear-gradient(180deg, rgba(1,73,221,.22) 0%, rgba(15,23,42,.4) 100%),
		url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=700&auto=format&fit=crop&q=80') center/cover;
	border: 8px solid #fff;
}

.about__badge {
	position: absolute;
	bottom: 6%;
	left: -22px;
	background: #fff;
	padding: 14px 20px 14px 14px;
	border-radius: var(--r-pill);
	display: flex;
	align-items: center;
	gap: 14px;
	box-shadow: var(--e3);
	border: 1px solid var(--line);
}
.about__badge-circle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary), var(--primary-l));
	color: #fff;
	display: grid;
	place-items: center;
	text-align: center;
	line-height: 1;
	box-shadow: 0 8px 18px rgba(1, 73, 221, .35);
}
.about__badge-num {
	font-size: 17px;
	font-weight: 800;
	display: block;
	letter-spacing: -.02em;
}
.about__badge-num i { font-style: normal; font-size: 12px; }
.about__badge-lbl {
	font-size: 9px;
	letter-spacing: .1em;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 3px;
	display: block;
}

.about__sticker {
	position: absolute;
	top: 32px;
	right: 4%;
	background: var(--gold);
	color: var(--dark);
	padding: 10px 18px;
	border-radius: var(--r-pill);
	font-size: 12.5px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: var(--e-gold);
	animation: float-y 4s ease-in-out infinite;
}

.about__content .eyebrow { margin-bottom: 18px; }
.about__lead {
	color: var(--muted);
	font-size: 15px;
	margin-top: 22px;
	line-height: 1.75;
}
.about__points {
	margin-top: 28px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.about__points li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
	color: var(--ink-2);
}
.about__points li i {
	color: var(--primary);
	font-size: 17px;
	flex-shrink: 0;
}
.about__actions {
	display: flex;
	gap: 16px;
	margin-top: 36px;
	align-items: center;
	flex-wrap: wrap;
}

/* ===============================================================
SERVICES
=============================================================== */
.services {
	padding: 100px 0;
	background: var(--bg-2);
	position: relative;
	overflow: hidden;
}
.services::before {
	content: '';
	position: absolute;
	top: -150px;
	right: -150px;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: var(--primary-tn-2);
	opacity: .5;
	filter: blur(80px);
	pointer-events: none;
}
.services__inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--gutter);
	position: relative;
}
.services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.svc {
	position: relative;
	background: #fff;
	padding: 36px 28px 28px;
	border-radius: var(--r-lg);
	border: 1px solid var(--line);
	overflow: hidden;
	isolation: isolate;
	transition: border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.svc::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(155deg, var(--primary) 0%, var(--primary-d) 100%);
	opacity: 0;
	transition: opacity .45s var(--ease);
	z-index: -1;
}
.svc::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--gold);
	transition: width .5s var(--ease);
	border-top-left-radius: var(--r-lg);
}
.svc:hover {
	border-color: transparent;
	box-shadow: var(--e-blue);
	color: #fff;
}
.svc:hover::before { opacity: 1; }
.svc:hover::after { width: 100%; }

.svc__num {
	position: absolute;
	top: 20px;
	right: 24px;
	font-size: 42px;
	font-weight: 800;
	color: var(--bg-2);
	letter-spacing: -.04em;
	line-height: 1;
	transition: color .4s var(--ease);
}
.svc:hover .svc__num { color: rgba(255,255,255,.18); }

.svc__ico {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: var(--primary-tn);
	color: var(--primary);
	display: grid;
	place-items: center;
	margin-bottom: 20px;
	transition: background .4s var(--ease), color .4s var(--ease);
}
.svc__ico i { font-size: 22px; }
.svc:hover .svc__ico {
	background: rgba(255,255,255,.16);
	color: #fff;
}

.svc h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.3;
	margin-bottom: 10px;
	letter-spacing: -.01em;
	transition: color .4s var(--ease);
}
.svc:hover h3 { color: #fff; }

.svc p {
	font-size: 13.5px;
	color: var(--muted);
	margin-bottom: 18px;
	line-height: 1.6;
	transition: color .4s var(--ease);
}
.svc:hover p { color: rgba(255,255,255,.85); }

.svc__more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--primary);
	transition: color .35s var(--ease), gap .35s var(--ease);
}
.svc__more i {
	font-size: 11px;
	transition: transform .35s var(--ease);
}
.svc:hover .svc__more { color: var(--gold); gap: 12px; }
.svc:hover .svc__more i { transform: translateX(2px); }

/* ===============================================================
WHY CHOOSE US (dark #0F172A)
=============================================================== */
.why {
	padding: 100px 0;
	background: var(--dark);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.why__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.why__blob {
	position: absolute;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: var(--primary);
	filter: blur(100px);
	opacity: .25;
	top: -180px;
	right: -120px;
}
.why__inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 70px;
	align-items: center;
	position: relative;
	z-index: 1;
}
.why__left .eyebrow { margin-bottom: 18px; }
.why__lead {
	color: rgba(255,255,255,.65);
	font-size: 15px;
	margin: 20px 0 32px;
	line-height: 1.7;
	max-width: 520px;
}

.why__list {
	display: grid;
	gap: 14px;
}
.why__list li {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 18px 22px;
	background: rgba(255,255,255,.04);
	border-radius: var(--r-md);
	border: 1px solid rgba(255,255,255,.07);
	transition: background .35s var(--ease), border-color .35s var(--ease);
}
.why__list li:hover {
	background: rgba(255,255,255,.07);
	border-color: var(--gold);
}
.why__ico {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-l) 100%);
	color: #fff;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	transition: background .35s var(--ease);
	box-shadow: 0 6px 16px rgba(1, 73, 221, .35);
}
.why__ico i { font-size: 18px; }
.why__list li:hover .why__ico {
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-d) 100%);
	box-shadow: 0 6px 16px rgba(1, 73, 221, .35);
}
.why__list strong {
	display: block;
	font-size: 14.5px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	margin-bottom: 4px;
}
.why__list small {
	font-size: 13px;
	color: rgba(255,255,255,.6);
	line-height: 1.5;
}

/* WHY RIGHT */
.why__right {
	position: relative;
	height: 540px;
}
.why__img {
	position: absolute;
	inset: 0;
	border-radius: var(--r-xl);
	background:
		linear-gradient(180deg, rgba(1,73,221,.18) 0%, rgba(15,23,42,.55) 100%),
		url('https://images.unsplash.com/photo-1582719471384-894fbb16e074?w=900&auto=format&fit=crop&q=80') center/cover;
	box-shadow: 0 30px 70px -20px rgba(0,0,0,.5);
}

/* clean corner accents on the image (no floating cards) */
.why__corner {
	position: absolute;
	width: 64px;
	height: 64px;
	pointer-events: none;
	z-index: 2;
}
.why__corner--tl {
	top: -10px;
	left: -10px;
	border-top: 2px solid var(--primary-l);
	border-left: 2px solid var(--primary-l);
	border-top-left-radius: 8px;
}
.why__corner--br {
	bottom: -10px;
	right: -10px;
	border-bottom: 2px solid var(--gold);
	border-right: 2px solid var(--gold);
	border-bottom-right-radius: 8px;
}

/* ===============================================================
CTA BANNER (quote card + vehicle)
=============================================================== */
.cta {
	padding: 90px 0;
	background: var(--bg);
}
.cta__card {
	width: calc(100% - var(--gutter) * 2);
	max-width: var(--maxw);
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	border-radius: var(--r-xl);
	border: 1px solid var(--primary-tn-2);
	background:
		radial-gradient(130% 150% at 100% 0%, #DCE7FF 0%, var(--primary-tn) 52%, #EEF3FF 100%);
	box-shadow: var(--e3);
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: center;
	gap: 24px;
	padding: clamp(34px, 5vw, 60px);
}

.cta__content { position: relative; z-index: 2; }
.cta__content .eyebrow {
	margin-bottom: 18px;
	background: #fff;
	box-shadow: var(--e1);
}
.cta__title {
	font-family: var(--sans);
	font-weight: 800;
	font-size: clamp(1.7rem, 3.2vw, 2.6rem);
	line-height: 1.15;
	letter-spacing: -.02em;
	color: var(--ink);
	margin-bottom: 16px;
}
.cta__title em {
	font-style: normal;
	font-weight: 800;
	color: var(--primary);
	position: relative;
	display: inline-block;
}
.cta__title em::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: 2px;
	height: 8px;
	background: var(--primary);
	opacity: .14;
	border-radius: 4px;
	z-index: -1;
}
.cta__lead {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.7;
	max-width: 440px;
	margin-bottom: 30px;
}
.cta__actions {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}
.cta__btn { padding: 15px 28px; font-size: 14.5px; }
.cta__phone {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	font-weight: 700;
	font-size: 15px;
	color: var(--ink);
	transition: color .3s var(--ease);
}
.cta__phone i {
	width: 38px; height: 38px;
	display: grid; place-items: center;
	background: #fff;
	color: var(--primary);
	border-radius: 50%;
	box-shadow: var(--e2);
	font-size: 14px;
	transition: background .3s var(--ease), color .3s var(--ease);
}
.cta__phone:hover { color: var(--primary); }
.cta__phone:hover i { background: var(--primary); color: #fff; }

/* media / vehicle */
.cta__media {
	position: relative;
	z-index: 1;
	min-height: 220px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.cta__glow {
	position: absolute;
	width: 78%;
	aspect-ratio: 1 / 1;
	right: 4%;
	top: 50%;
	transform: translateY(-50%);
	background: radial-gradient(circle, rgba(1,73,221,.20), transparent 62%);
	z-index: 0;
}
.cta__truck {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 480px;
	height: auto;
	filter: drop-shadow(0 22px 26px rgba(15,23,42,.22));
	transition: transform .7s var(--ease-out);
}
.cta__card:hover .cta__truck { transform: translateX(-12px); }

/* reveal: slide the truck in from the right */
.cta__media.r { transform: translate(46px, 22px); }
.cta__media.r.in { transform: translate(0, 0); }

@media (max-width: 900px) {
	.cta__card {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 30px;
		padding: 40px 28px;
	}
	.cta__lead { margin-inline: auto; }
	.cta__actions { justify-content: center; }
	.cta__media { justify-content: center; min-height: auto; order: -1; }
	.cta__glow { right: auto; }
	.cta__truck { width: 88%; max-width: 420px; }
	.cta__media.r { transform: translateY(22px); }
}

/* ===============================================================
PARTNERS SLIDER
=============================================================== */
.partners {
	padding: 90px 0;
	background: #fff;
}
.partners__inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.partners__track-wrap {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.partners__track {
	display: flex;
	gap: 48px;
	width: max-content;
	animation: partners-scroll 32s linear infinite;
	padding: 12px 0;
}
@keyframes partners-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
.partner {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 16px 28px;
	background: var(--bg-3);
	border-radius: var(--r-md);
	border: 1px solid var(--line-soft);
	flex-shrink: 0;
	transition: background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
	min-width: 230px;
}
.partner i {
	font-size: 24px;
	color: var(--primary);
	transition: color .35s var(--ease);
}
.partner span {
	font-size: 15px;
	font-weight: 600;
	color: var(--ink);
	transition: color .35s var(--ease);
	white-space: nowrap;
}
.partner:hover {
	background: var(--primary);
	border-color: var(--primary);
}
.partner:hover i,
.partner:hover span { color: #fff; }

/* ===============================================================
CERTIFICATES SLIDER
=============================================================== */
.certs {
	padding: 90px 0;
	background: var(--bg-2);
	position: relative;
	overflow: hidden;
}
.certs__inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--gutter);
	position: relative;
}
.certs__track-wrap {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
	padding: 14px 0;
}
.certs__track {
	display: flex;
	gap: 24px;
	width: max-content;
	animation: certs-scroll 40s linear infinite;
}
@keyframes certs-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
.certs__track:hover { animation-play-state: paused; }

.cert {
	position: relative;
	width: 320px;
	flex-shrink: 0;
	background: #fff;
	padding: 28px 26px 24px;
	border-radius: var(--r-lg);
	border: 1px solid var(--line);
	box-shadow: var(--e1);
	transition: box-shadow .4s var(--ease), border-color .4s var(--ease);
	overflow: hidden;
}
.cert:hover {
	box-shadow: var(--e3);
	border-color: var(--primary);
}
.cert__num {
	position: absolute;
	top: 18px;
	right: 24px;
	font-size: 34px;
	font-weight: 800;
	color: var(--bg-2);
	letter-spacing: -.04em;
	line-height: 1;
}
.cert__ribbon {
	position: absolute;
	top: -10px;
	left: 24px;
	background: linear-gradient(135deg, var(--gold), var(--gold-d));
	color: #fff;
	width: 32px;
	height: 50px;
	display: grid;
	place-items: center;
	box-shadow: var(--e1);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
}
.cert__ribbon i { font-size: 13px; margin-top: -8px; }
.cert__ico {
	width: 58px;
	height: 58px;
	border-radius: 14px;
	background: var(--primary-tn);
	color: var(--primary);
	display: grid;
	place-items: center;
	margin: 18px 0 18px;
	transition: background .35s var(--ease), color .35s var(--ease);
}
.cert__ico i { font-size: 24px; }
.cert:hover .cert__ico {
	background: var(--primary);
	color: #fff;
}
.cert h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.3;
	margin-bottom: 8px;
}
.cert p {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 16px;
	min-height: 60px;
}
.cert__date {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	background: var(--gold-tn);
	color: var(--gold-d);
	border-radius: var(--r-pill);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .04em;
}

/* ===============================================================
CONTACT
=============================================================== */
.contact {
	padding: 100px 0;
	background: #fff;
}
.contact__inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 70px;
	align-items: start;
}

.contact__left .eyebrow { margin-bottom: 18px; }
.contact__lead {
	color: var(--muted);
	margin: 20px 0 36px;
	font-size: 15px;
	line-height: 1.7;
}

.contact__methods {
	display: grid;
	gap: 16px;
}
.cm {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	background: var(--bg-3);
	border-radius: var(--r-md);
	border: 1px solid var(--line);
	transition: background .35s var(--ease), border-color .35s var(--ease);
}
.cm:hover {
	background: var(--primary-tn);
	border-color: var(--primary);
}
.cm__ico {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #fff;
	color: var(--primary);
	display: grid;
	place-items: center;
	flex-shrink: 0;
	box-shadow: var(--e1);
	transition: background .35s var(--ease), color .35s var(--ease);
}
.cm__ico i { font-size: 17px; }
.cm:hover .cm__ico { background: var(--primary); color: #fff; }
.cm small {
	display: block;
	font-size: 11px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .08em;
	font-weight: 600;
	margin-bottom: 3px;
}
.cm strong {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--ink);
	word-break: break-word;
}

/* CONTACT FORM */
.contact__form {
	background: var(--bg-3);
	padding: 40px 36px;
	border-radius: var(--r-xl);
	border: 1px solid var(--line);
	position: relative;
	overflow: hidden;
}
.contact__form::before {
	content: '';
	position: absolute;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: var(--primary);
	opacity: .04;
	top: -80px;
	right: -80px;
	filter: blur(40px);
}
.contact__form h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 6px;
	letter-spacing: -.01em;
}
.contact__form-sub {
	color: var(--muted);
	font-size: 14px;
	margin-bottom: 28px;
}

.field {
	position: relative;
	margin-bottom: 18px;
}
.field input,
.field select,
.field textarea {
	width: 100%;
	padding: 20px 44px 8px 16px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	font-size: 14.5px;
	color: var(--ink);
	outline: none;
	transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
	appearance: none;
	font-family: var(--sans);
	resize: vertical;
}
.field textarea { padding: 18px 16px 14px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(1, 73, 221, .1);
}
.field label {
	position: absolute;
	left: 16px;
	top: 16px;
	font-size: 14px;
	color: var(--muted);
	pointer-events: none;
	transition: top .25s var(--ease), font-size .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
	padding: 0 4px;
	background: transparent;
}
.field__ico {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--muted);
	font-size: 14px;
	pointer-events: none;
}
.field input:focus + label,
.field input:valid + label,
.field select + label,
.field select:focus + label,
.field textarea:focus + label,
.field textarea:valid + label {
	top: -7px;
	font-size: 11px;
	color: var(--primary);
	background: #fff;
}
.field select + label {
	color: var(--muted);
}
.field select:focus + label {
	color: var(--primary);
}
.field input:focus ~ .field__ico,
.field select:focus ~ .field__ico,
.field textarea:focus ~ .field__ico { color: var(--primary); }

.field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.form-toast {
	margin-top: 14px;
	padding: 0 16px;
	background: rgba(34,197,94,.1);
	border: 0 solid rgba(34,197,94,.4);
	color: #16A34A;
	border-radius: var(--r-md);
	font-size: 13px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height .4s var(--ease), opacity .4s var(--ease), padding .4s var(--ease), border-width .4s var(--ease), margin-top .4s var(--ease);
}
.form-toast i { font-size: 16px; }
.form-toast.show {
	max-height: 80px;
	opacity: 1;
	padding: 12px 16px;
	border-width: 1px;
	margin-top: 14px;
}

/* ===============================================================
BUTTONS (clean Ã‚Â· NO transform Ã‚Â· no letter-spacing wiggle)
=============================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 24px;
	border-radius: var(--r-pill);
	font-family: var(--sans);
	font-weight: 600;
	font-size: 13.5px;
	cursor: pointer;
	position: relative;
	transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
	text-align: center;
	justify-content: center;
	line-height: 1.2;
	white-space: nowrap;
}
.btn__arr {
	font-size: 11px;
	transition: margin-left .3s var(--ease);
}
.btn:hover .btn__arr { margin-left: 4px; }

.btn--primary {
	background: var(--primary);
	color: #fff;
	box-shadow: 0 8px 20px rgba(1, 73, 221, .25);
}
.btn--primary:hover {
	background: var(--primary-d);
	box-shadow: 0 12px 28px rgba(1, 73, 221, .38);
}

.btn--gold {
	background: var(--gold);
	color: var(--dark);
	box-shadow: 0 8px 20px rgba(1, 73, 221, .25);
}
.btn--gold:hover {
	background: var(--gold-d);
	box-shadow: 0 12px 28px rgba(1, 73, 221, .35);
}

.btn--outline {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255,255,255,.4);
}
.btn--outline:hover {
	background: #fff;
	color: var(--ink);
	border-color: #fff;
}

.btn--ghost {
	background: #fff;
	color: var(--ink);
	border: 1px solid var(--line);
}
.btn--ghost:hover {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}

.btn--ghost-light {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255,255,255,.3);
}
.btn--ghost-light:hover {
	background: #fff;
	color: var(--ink);
	border-color: #fff;
}

.btn--text {
	background: transparent;
	color: var(--primary);
	padding: 13px 6px;
}
.btn--text:hover {
	color: var(--primary-d);
}

.btn--block { width: 100%; }

/* ===============================================================
FOOTER (#0F172A with #3A6FE6 primary-light accents)
=============================================================== */
.footer {
	background: var(--dark);
	color: rgba(255,255,255,.7);
	padding: 80px 0 24px;
	position: relative;
	overflow: hidden;
}
.footer__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.footer__pattern {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 240px;
	font-weight: 800;
	color: rgba(58,111,230,.05);
	letter-spacing: -.05em;
	line-height: 1;
	white-space: nowrap;
}
.footer__pattern::before {
	content: 'BURTON';
}
.footer__inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--gutter);
	position: relative;
	z-index: 1;
}
.footer__top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand--light .brand__name { color: #fff; }
.brand--light .brand__sub { color: var(--gold); }
.brand--light.brand--has-logo .brand__logo {
	filter: brightness(0) invert(1);
	opacity: .95;
}
.footer .brand--light.brand--has-logo .brand__logo {
	filter: none;
	opacity: 1;
	height: 52px;
	max-width: 240px;
	width: auto;
}
.footer .brand__logo { height: 52px; max-width: 240px; width: auto; }

.footer__about {
	margin: 22px 0 24px;
	font-size: 14px;
	line-height: 1.7;
	max-width: 320px;
	color: rgba(255,255,255,.62);
}

.footer__socials {
	display: flex;
	gap: 8px;
}
.footer__socials a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255,255,255,.06);
	display: grid;
	place-items: center;
	color: #fff;
	transition: background .3s var(--ease), color .3s var(--ease);
}
.footer__socials a i { font-size: 14px; }
.footer__socials a:hover {
	background: var(--gold);
	color: var(--dark);
}

.footer__head {
	color: var(--gold);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	margin-bottom: 24px;
	position: relative;
	padding-bottom: 12px;
}
.footer__head::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 24px;
	height: 2px;
	background: var(--gold);
	border-radius: 2px;
}
.footer__link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 0;
	color: rgba(255,255,255,.65);
	font-size: 14px;
	transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.footer__link::before {
	content: 'Ã¢â€ â€™';
	color: var(--gold);
	font-size: 11px;
	opacity: 0;
	transition: opacity .3s var(--ease), margin-right .3s var(--ease);
	margin-right: -16px;
}
.footer__link:hover {
	color: var(--gold);
	padding-left: 4px;
}
.footer__link:hover::before { opacity: 1; margin-right: 0; }

.footer__contact {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin-bottom: 18px;
}
.footer__contact > i {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(58,111,230,.14);
	color: var(--gold);
	display: grid;
	place-items: center;
	flex-shrink: 0;
	font-size: 14px;
}
.footer__contact small {
	display: block;
	font-size: 11px;
	color: rgba(255,255,255,.5);
	text-transform: uppercase;
	letter-spacing: .08em;
	font-weight: 600;
	margin-bottom: 2px;
}
.footer__contact strong {
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	transition: color .3s var(--ease);
}
.footer__contact a:hover strong { color: var(--gold); }

.footer__bottom {
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	font-size: 13px;
	color: rgba(255,255,255,.5);
}
.footer__credits a {
	color: rgba(255,255,255,.6);
	transition: color .3s var(--ease);
}
.footer__credits a:hover { color: var(--gold); }
.footer__credits .dot { margin: 0 8px; color: rgba(255,255,255,.3); }

/* ===============================================================
SCROLL TOP
=============================================================== */
.scroll-top {
	position: fixed;
	bottom: 28px;
	right: 28px;
	left: auto;
	width: 48px;
	height: 48px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	display: grid;
	place-items: center;
	box-shadow: var(--e-blue);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition:
		opacity .35s var(--ease),
		visibility .35s var(--ease),
		transform .35s var(--ease-out),
		background .3s var(--ease);
	z-index: 999;
	cursor: pointer;
}
.scroll-top.show {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}
.scroll-top:hover {
	background: var(--primary-d);
	transform: translateY(-2px);
}
.scroll-top:focus-visible {
	outline: 2px solid var(--primary-l);
	outline-offset: 3px;
}
.scroll-top i {
	font-size: 15px;
	line-height: 1;
	pointer-events: none;
}

/* ===============================================================
ABOUT PAGE Ã¢â‚¬â€ ABOUT HERO (split Ã‚Â· light Ã‚Â· curved van panel)
=============================================================== */
.ahero {
	position: relative;
	background:
		radial-gradient(120% 80% at 0% 0%, #EAF0FF 0%, transparent 60%),
		linear-gradient(180deg, #F3F7FF 0%, #FFFFFF 100%);
	padding: 150px 0 70px;
	overflow: hidden;
}
.ahero::before {
	content: '';
	position: absolute;
	top: -120px;
	left: -120px;
	width: 360px;
	height: 360px;
	background: var(--primary-tn);
	border-radius: 50%;
	filter: blur(70px);
	opacity: .6;
	pointer-events: none;
}
.ahero__inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 40px;
	align-items: center;
	min-height: 380px;
	position: relative;
	z-index: 1;
}
.ahero__left { padding: 20px 0; }

.ahero__crumbs {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	letter-spacing: .14em;
	font-weight: 600;
	color: var(--muted);
	text-transform: uppercase;
	margin-bottom: 26px;
}
.ahero__crumbs a {
	color: var(--muted);
	transition: color .25s var(--ease);
}
.ahero__crumbs a:hover { color: var(--primary); }
.ahero__sep { color: var(--muted-2); }
.ahero__current { color: var(--primary); }

.ahero__title {
	font-family: var(--sans);
	font-weight: 800;
	font-size: clamp(2rem, 4.4vw, 3.6rem);
	line-height: 1.1;
	letter-spacing: -.025em;
	color: var(--ink);
}
.ahero__title-accent {
	display: block;
	color: var(--primary);
	margin-top: 4px;
}
.ahero__underline {
	display: block;
	width: 56px;
	height: 4px;
	background: var(--primary);
	border-radius: 4px;
	margin: 18px 0 22px;
}

.ahero__lead {
	color: var(--muted);
	font-size: 15.5px;
	line-height: 1.7;
	max-width: 440px;
}

.ahero__right {
	position: relative;
	height: 420px;
}
.ahero__panel {
	position: absolute;
	inset: 0 calc(-1 * var(--gutter)) 0 0;
	border-radius: 260px 0 0 260px;
	overflow: hidden;
	box-shadow: 0 30px 60px -20px rgba(15,23,42,.20);
	background-size: cover;
	background-repeat: no-repeat;
}
.ahero__panel::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse at 60% 50%, #000 30%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse at 60% 50%, #000 30%, transparent 80%);
	pointer-events: none;
}
.ahero__panel::after {
	content: '';
	position: absolute;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(58,111,230,.45) 0%, transparent 70%);
	top: 40px;
	right: 80px;
	filter: blur(20px);
	pointer-events: none;
}
.ahero__image {
	position: absolute;
	right: 6%;
	bottom: 6%;
	width: 72%;
	height: 62%;
	background: url('images/VAN%201.png') center bottom / contain no-repeat;
	filter: drop-shadow(0 24px 30px rgba(0,0,0,.45));
	z-index: 2;
}
.ahero__badge {
	position: absolute;
	left: 28px;
	bottom: 32px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: rgba(255,255,255,.10);
	border: 1px solid rgba(255,255,255,.20);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: #fff;
	padding: 12px 18px 12px 12px;
	border-radius: var(--r-pill);
	font-size: 13px;
	font-weight: 600;
}
.ahero__badge-ico {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 13px;
	box-shadow: 0 6px 14px rgba(1,73,221,.45);
}
.ahero__badge-text { display: flex; flex-direction: column; line-height: 1.15; }
.ahero__badge-text small {
	font-size: 9.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255,255,255,.7);
	font-weight: 600;
}
.ahero__badge-text strong { font-size: 13.5px; font-weight: 700; }

/* ===============================================================
WHO WE ARE
=============================================================== */
.who { padding: 90px 0; background: #fff; }
.who__inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 64px;
	align-items: center;
}

.who__visual { position: relative; }
.who__img-frame {
	position: relative;
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--e3);
	height: 480px;
	border: 8px solid #fff;
	outline: 1px solid var(--line);
}
.who__img {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-repeat: no-repeat
}
.who__chip {
	position: absolute;
	left: 20px;
	bottom: 20px;
	background: var(--primary);
	color: #fff;
	border-radius: var(--r-md);
	padding: 14px 18px 14px 18px;
	display: inline-flex;
	flex-direction: column;
	gap: 2px;
	box-shadow: 0 12px 28px rgba(1,73,221,.35);
	z-index: 2;
}
.who__chip-eyebrow {
	font-size: 10px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255,255,255,.75);
	font-weight: 600;
}
.who__chip strong {
	font-size: 15px;
	letter-spacing: .05em;
	font-weight: 800;
}
.who__chip-ico {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(255,255,255,.18);
	display: grid;
	place-items: center;
	font-size: 11px;
}

.who__eyebrow {
	display: inline-block;
	color: var(--primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.who__title {
	font-family: var(--sans);
	font-weight: 700;
	font-size: clamp(1.7rem, 2.6vw, 2.2rem);
	line-height: 1.2;
	letter-spacing: -.02em;
	color: var(--ink);
	margin-bottom: 22px;
}
.who__title em {
	font-style: normal;
	color: var(--primary);
	font-weight: 700;
}
.who__p {
	color: var(--muted);
	font-size: 14.5px;
	line-height: 1.75;
	margin-bottom: 14px;
}
.who__stats {
	margin-top: 32px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	padding-top: 28px;
	border-top: 1px solid var(--line);
}
.who__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
}
.who__stat-ico {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--primary-tn);
	color: var(--primary);
	display: grid;
	place-items: center;
	font-size: 16px;
	margin-bottom: 4px;
}
.who__stat-num {
	font-size: 22px;
	font-weight: 800;
	color: var(--ink);
	letter-spacing: -.01em;
	line-height: 1.1;
}
.who__stat-num--sm { font-size: 16px; line-height: 1.2; }
.who__stat-lbl {
	font-size: 11.5px;
	color: var(--muted);
	font-weight: 500;
}

/* ===============================================================
MISSION & VALUES
=============================================================== */
.mvalues {
	padding: 100px 0;
	background: linear-gradient(180deg, #F3F7FF 0%, #EAF1FF 100%);
	position: relative;
	overflow: hidden;
}
.mvalues::before {
	content: '';
	position: absolute;
	width: 360px;
	height: 360px;
	background: rgba(1,73,221,.10);
	border-radius: 50%;
	filter: blur(90px);
	top: -140px;
	right: -140px;
	pointer-events: none;
}
.mvalues__inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: minmax(280px, .9fr) minmax(0, 2fr);
	gap: 72px;
	align-items: start;
	position: relative;
	z-index: 1;
}
.mvalues__left { padding-top: 12px; }
.mvalues__eyebrow {
	display: inline-block;
	color: var(--primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	margin-bottom: 14px;
	padding-bottom: 10px;
	position: relative;
}
.mvalues__eyebrow::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 32px;
	height: 2px;
	background: var(--primary);
	border-radius: 2px;
}
.mvalues__title {
	font-family: var(--sans);
	font-weight: 800;
	font-size: clamp(1.9rem, 3vw, 2.4rem);
	line-height: 1.15;
	letter-spacing: -.025em;
	color: var(--ink);
	margin-bottom: 22px;
}
.mvalues__p {
	color: var(--muted);
	font-size: 14.5px;
	line-height: 1.8;
	margin-bottom: 16px;
}

.mvalues__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px 48px;
	position: relative;
}


.vcard {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 20px;
	align-items: start;
	text-decoration: none;
	color: inherit;
	padding: 4px 0;
	transition: transform .3s var(--ease);
}
.vcard:hover { transform: translateX(4px); }

.vcard__ico {
	color: var(--primary);
	font-size: 32px;
	line-height: 1;
	flex-shrink: 0;
	padding-top: 4px;
}
.vcard__ico i { display: block; }

.vcard__body { min-width: 0; }
.vcard h4 {
	font-size: 17px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 6px;
	letter-spacing: -.01em;
	transition: color .25s var(--ease);
}
.vcard:hover h4 { color: var(--primary); }
.vcard p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.65;
	margin-bottom: 10px;
}
.vcard__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--primary);
	letter-spacing: .02em;
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity .3s var(--ease), transform .3s var(--ease), gap .3s var(--ease);
}
.vcard__link i { font-size: 10px; }
.vcard:hover .vcard__link {
	opacity: 1;
	transform: translateX(0);
	gap: 10px;
}

/* ===============================================================
EXPERTISE THAT DELIVERS (alternating rows Ã‚Â· bootstrap grid)
=============================================================== */
.expertise {
	padding: 100px 0;
	background: #fff;
	position: relative;
	overflow: hidden;
}
.expertise::before {
	content: '';
	position: absolute;
	width: 280px;
	height: 280px;
	background: var(--primary-tn);
	border-radius: 50%;
	filter: blur(80px);
	top: 10%;
	left: -120px;
	opacity: .55;
	pointer-events: none;
}
.expertise__inner { position: relative; z-index: 1; }
.expertise__row { margin-bottom: 90px; }
.expertise__row:last-child { margin-bottom: 0; }

.expertise__title {
	font-family: var(--sans);
	font-weight: 800;
	font-size: clamp(1.7rem, 2.6vw, 2.2rem);
	line-height: 1.15;
	letter-spacing: -.025em;
	color: var(--primary-d);
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 16px;
}
.expertise__title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 48px;
	height: 3px;
	background: var(--primary);
	border-radius: 3px;
}

.expertise__features--right { padding-top: 6px; }

.ef { padding-right: 6px; }
.ef__ico {
	display: inline-block;
	color: var(--primary);
	font-size: 32px;
	line-height: 1;
	margin-bottom: 18px;
}
.ef__ico i { display: block; }
.ef h4 {
	font-size: 16.5px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 8px;
	letter-spacing: -.01em;
	line-height: 1.25;
}
.ef p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.65;
}

.expertise__img {
	width: 100%;
	height: 360px;
	border-radius: var(--r-xl);
	background-size: cover;
	background-position: center;
	box-shadow: var(--e3);
	position: relative;
	overflow: hidden;
}
.expertise__img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 60%, rgba(1,73,221,.18) 100%);
	pointer-events: none;
}
.expertise__img--a {
	background-image: url('https://images.unsplash.com/photo-1553413077-190dd305871c?w=1200&auto=format&fit=crop&q=80');
}
.expertise__img--b {
	background-image: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d4?w=1200&auto=format&fit=crop&q=80');
}

@media (max-width: 991.98px) {
	.expertise { padding: 70px 0; }
	.expertise__row { margin-bottom: 60px; }
	.expertise__img { height: 280px; }
}
@media (max-width: 640px) {
	.expertise { padding: 56px 0; }
	.expertise__row { margin-bottom: 48px; }
	.expertise__img { height: 220px; }
	.expertise__title { margin-bottom: 22px; }
	
/* 	.hhero__swiper{
    height: 1200px;
    background-position: bottom
	}
	section#home{
		height: 1200px
	} */
}

/* ===============================================================
HOME Ã¢â‚¬â€ let GSAP own the reveal animations
(overrides the IntersectionObserver-based .r fade)
=============================================================== */
.page-home .r {
	opacity: 1;
	transform: none;
	transition: none;
}

/* About page Ã¢â‚¬â€ no scroll/GSAP animations */
.page-about .r {
	opacity: 1;
	transform: none;
	transition: none;
}

/* ===============================================================
HOME PAGE Ã¢â‚¬â€ SHARED SECTION HEADER PRIMITIVES
=============================================================== */
.hsec__eyebrow {
	display: inline-block;
	color: var(--primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	margin-bottom: 14px;
	padding-bottom: 10px;
	position: relative;
}
.hsec__eyebrow::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 32px;
	height: 2px;
	background: var(--primary);
	border-radius: 2px;
}
.hsec__eyebrow--light { color: rgba(255,255,255,.85); }
.hsec__eyebrow--light::after { background: var(--primary-l); }
.text-center .hsec__eyebrow::after { left: 50%; transform: translateX(-50%); }

.hsec__title {
	font-family: var(--sans);
	font-weight: 800;
	font-size: clamp(2rem, 3.2vw, 2.6rem);
	line-height: 1.15;
	letter-spacing: -.025em;
	color: var(--ink);
	margin-bottom: 20px;
}
.hsec__title em {
	font-style: normal;
	color: var(--primary);
	font-weight: 800;
}
.hsec__title--light { color: #fff; }
.hsec__title--light em { color: var(--primary-l); }

.hsec__lead {
	color: var(--muted);
	font-size: 15.5px;
	line-height: 1.7;
	max-width: 640px;
	margin: 0 auto;
}
.hsec__head { max-width: 760px; margin: 0 auto 60px; padding: 0 var(--gutter); }

.hservices__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	max-width: var(--maxw);
	margin: 0 auto 52px;
	padding: 0 var(--gutter);
}
.hservices__head .hsec__head {
	margin: 0;
	padding: 0;
	text-align: left;
	max-width: 720px;
}
.hservices__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 14px;
}
.hservices__eyebrow::before {
	content: '';
	width: 3px;
	height: 16px;
	background: var(--primary);
	border-radius: 2px;
}
.hservices__explore {
	flex-shrink: 0;
	padding: 13px 26px;
	font-size: 14px;
}
.hservices__grid .col-md-6 { display: flex; }

/* ===============================================================
HOME HERO Ã¢â‚¬â€ Full-bleed + Quote Widget (two-column)
=============================================================== */
.hhero {
	position: relative;
	background: var(--dark);
	overflow: hidden;
}
.hhero__layout {
	display: flex;
	flex-direction: column;
	position: relative;
}

.hhero__swiper {
	width: 100%;
	height: 480px; /* Mobile height */
	position: relative;
}


@media (max-width:640px) { 
	.hhero {
		/* padding-top: 40px; */
	}
}

@media (max-width:640px) {
	.hhero__swiper {
		height: 520px
	}
}

@media (min-width: 992px) {
	.hhero__swiper {
		height: 600px; /* Desktop height */
	}
}
section#home {
    height: 600px;
}

.hhero__slide {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
}


.hhero__slide-bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 0;
	transform: scale(1.05);
	transition: transform 8s var(--ease-out);
}


.swiper-slide-active .hhero__slide-bg {
	transform: scale(1.1);
}

.hhero__slide-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-top: 80px;
	padding-bottom: 48px;
}
.hhero__left {
	color: #fff;
}

/* Badge */
.hhero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(1, 73, 221, 0.12);
	border: 1px solid rgba(1, 73, 221, 0.28);
	color: var(--primary-l);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: var(--r-pill);
	margin-bottom: 20px;
}
.hhero__badge a {
	color: inherit;
	transition: color 0.2s var(--ease);
}
.hhero__badge a:hover { color: #fff; }
.hhero__badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--primary);
	flex-shrink: 0;
	box-shadow: 0 0 8px rgba(1, 73, 221, 0.6);
	animation: hhero-pulse-dot 2.4s ease-in-out infinite;
}
@keyframes hhero-pulse-dot {
	0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(1, 73, 221, 0.6); }
	50%       { opacity: 0.6; box-shadow: 0 0 18px rgba(1, 73, 221, 0.25); }
}

/* Title */
.hhero__title {
	font-family: var(--sans);
	font-size: clamp(2.4rem, 3rem, 4.2rem);
	font-weight: 900;
	line-height: 1.04;
	letter-spacing: -0.04em;
	color: #fff;
	margin-bottom: 20px;
	text-transform: none;
	line-height: 48px;
}
.hhero__title em {
	color: var(--primary-l);
	font-style: normal;
}

/* Metrics */
.hhero__metrics {
	display: flex;
	align-items: stretch;
	margin-bottom: 20px;
	padding: 12px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hhero__metric {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 0 20px 0 0;
}
.hhero__metric + .hhero__metric {
	padding-left: 20px;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.hhero__metric-value {
	font-family: var(--sans);
	font-size: 1.65rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.04em;
	line-height: 1;
}
.hhero__metric-value sup {
	font-size: 0.55em;
	font-weight: 700;
	color: var(--primary-l);
	vertical-align: super;
}
.hhero__metric-label {
	font-size: 0.68rem;
	font-weight: 500;
	color: white;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
	font-weight: 600;
}

/* Lead */
.hhero__lead {
	font-size: 15px;
	color: rgba(243, 242, 242, 0.58);
	line-height: 1.78;
	max-width: 460px;
	margin-bottom: 28px;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 400;
}

/* CTAs */
.hhero__ctas {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 8px;
}
.hhero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	padding: 13px 37px;
	border-radius: var(--r-pill);
	transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
	white-space: nowrap;
}
.hhero__btn--primary {
	background: var(--primary);
	color: #fff;
	border: 2px solid var(--primary);
	box-shadow: 0 8px 24px rgba(1, 73, 221, 0.35);
}
.hhero__btn--primary:hover {
	background: var(--primary-d);
	border-color: var(--primary-d);
	color: #fff;
	transform: translateY(-1px);
}
.hhero__btn--ghost {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.35);
}
.hhero__btn--ghost:hover {
	border-color: rgba(255, 255, 255, 0.65);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
}

/* Industry tags */
.hhero__industries {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}
.hhero__industries-label {
	font-size: 11px;
	color: rgba(243, 242, 242, 0.38);
	font-weight: 500;
	margin-right: 4px;
}
.hhero__industry-tag {
	display: inline-flex;
	font-size: 11px;
	font-weight: 500;
	color: rgba(243, 242, 242, 0.65);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--r-pill);
	padding: 4px 12px;
	transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.hhero__industry-tag:hover {
	background: rgba(1, 73, 221, 0.12);
	border-color: rgba(1, 73, 221, 0.28);
	color: var(--primary-l);
}

/* Quote widget overlay */
.hhero__widget-wrap {
	order: 2;
	width: 100%;
	max-width: 420px;
	margin: -24px auto 32px;
	padding: 0 16px;
	position: relative;
	z-index: 6;
}
@media (min-width: 992px) {

	.hhero {
		/* padding-top: 70px; */
	}

	.hhero__widget-wrap {
		order: 0;
		position: absolute;
		top: 80px;
		left: 0;
		right: 0;
		width: 100%;
		max-width: none;
		min-width: 0;
		margin: 0;
		padding: 0 max(16px, calc((100% - 1140px) / 2 + 12px));
		display: flex;
		justify-content: flex-end;
		align-items: flex-start;
		pointer-events: none;
		z-index: 6;
	}
	.hhero__widget-wrap .hhero__widget {
		pointer-events: auto;
		flex: 0 0 420px;
		width: 420px;
		max-width: 41.666vw;
	}
}
.hhero__widget {
	width: 100%;
	min-width: 0;
	background: #fff;
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow:
		0 40px 100px rgba(0, 0, 0, 0.5),
		0 8px 24px rgba(0, 0, 0, 0.25);
}
.hhero__widget-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	padding: 18px 24px;
	border-bottom: 1px solid var(--line);
	background: var(--bg-3);
}
.hhero__widget-header-title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
}
.hhero__widget-live {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 8px rgba(34, 197, 94, 0.65);
	animation: hhero-pulse-live 2s ease-in-out infinite;
	flex-shrink: 0;
}
@keyframes hhero-pulse-live {
	0%, 100% { box-shadow: 0 0 8px rgba(34, 197, 94, 0.65); }
	50%       { box-shadow: 0 0 16px rgba(34, 197, 94, 0.3); }
}
.hhero__widget-meta {
	font-size: 11px;
	color: var(--muted);
}
.hhero__widget-body {
	padding: 24px;
}
.hhero__widget-divider {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 20px 0 14px;
	font-size: 0.68rem;
	font-weight: 600;
	color: var(--muted);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.hhero__widget-divider::before,
.hhero__widget-divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--line);
}
.hhero__widget-features {
	display: flex;
	flex-direction: column;
}
.hhero__widget-feature {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--line);
}
.hhero__widget-feature:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.hhero__widget-feature-icon {
	width: 28px;
	height: 28px;
	border-radius: var(--r-md);
	background: var(--primary-tn);
	border: 1px solid var(--primary-tn-2);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--primary);
	margin-top: 1px;
}
.hhero__widget-feature-title {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.3;
	margin-bottom: 2px;
}
.hhero__widget-feature-desc {
	display: block;
	font-size: 11px;
	color: var(--muted);
	line-height: 1.4;
}

/* Hero quote form */
.hhero__qform .row {
	--bs-gutter-x: 10px;
	--bs-gutter-y: 10px;
}
.hhero__qform .field {
	margin-bottom: 0;
}
.hhero__qform .field--compact input,
.hhero__qform .field--compact select {
	width: 100%;
	min-width: 0;
	padding: 18px 32px 6px 12px;
	font-size: 13px;
	border-radius: var(--r-sm);
}
.hhero__qform .field--compact label {
	left: 12px;
	font-size: 13px;
}
.hhero__qform .field--compact .field__ico {
	right: 12px;
	font-size: 12px;
}
.hhero__qform .field--compact input:focus + label,
.hhero__qform .field--compact input:valid + label,
.hhero__qform .field--compact select + label,
.hhero__qform .field--compact select:focus + label {
	font-size: 10px;
	top: -7px;
	background: #fff;
}
.hhero__widget-submit {
	width: 100%;
	margin-top: 14px;
}
.hhero__qform .form-toast {
	margin-top: 12px;
	font-size: 12px;
}

/* Pagination */
.hhero__pagination,
.iec_single_office_banner_swiper_warpper .swiper-pagination {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	width: auto;
	display: inline-flex !important;
	align-items: center;
	gap: 10px;
	z-index: 15;
	pointer-events: auto;
}
.iec_single_office_banner_swiper_warpper .swiper-pagination span.swiper-pagination-bullet,
.hhero__pagination .swiper-pagination-bullet {
	width: 8px !important;
	height: 8px !important;
	background: rgba(255, 255, 255, 0.35) !important;
	border: none !important;
	border-radius: 50% !important;
	opacity: 1 !important;
	margin: 0 !important;
	cursor: pointer;
	transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.iec_single_office_banner_swiper_warpper .swiper-pagination span.swiper-pagination-bullet-active,
.hhero__pagination .swiper-pagination-bullet-active {
	background: var(--primary) !important;
	transform: scale(1.3);
}

/* Legacy eyebrow alias */
.hhero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(1, 73, 221, 0.12);
	border: 1px solid rgba(1, 73, 221, 0.28);
	color: var(--primary-l);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: var(--r-pill);
	margin-bottom: 20px;
}
.tpill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 14px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-pill);
	font-size: 12.5px;
	font-weight: 600;
	color: var(--ink-2);
}
.tpill i { color: var(--primary); font-size: 12px; }

/* ===============================================================
TRUST FEATURES Ã¢â‚¬â€ floating panel over hero
=============================================================== */

.hfeatures {
	padding: 56px 0;
	background: var(--bg-3);
	border-bottom: 1px solid var(--line-soft);
}
.hfeatures__panel {
	background: #fff;
	border-radius: 18px;
	box-shadow:
		0 28px 70px rgba(15, 23, 42, .14),
		0 8px 24px rgba(1, 73, 221, .08),
		0 0 0 1px rgba(15, 23, 42, .06);
	overflow: hidden;
	position: relative;
	padding: 24px;
}
.hfeatures__panel::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--primary-l) 50%, var(--primary) 100%);
}
.hfeatures__row > .hf {
	padding: 0;
	position: relative;
	display: flex;
}
.hfeatures__row > .hf + .hf::before {
	display: none;
}
.hf__inner {
	flex: 1;
	padding: 30px 26px;
	border: none;
	border-radius: 0;
	background: transparent;
	height: 100%;
}
@media (min-width: 992px) {
	.hfeatures__row > .hf + .hf .hf__inner {
		border-left: 1px solid var(--line-soft);
	}
}
.hf__ico {
	display: inline-block;
	color: var(--primary);
	font-size: 32px;
	line-height: 1;
	margin-bottom: 18px;
}
.hf h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 10px;
	letter-spacing: -.02em;
}
.hf p {
	color: var(--muted);
	font-size: 13.5px;
	line-height: 1.65;
	margin: 0;
}

/* ===============================================================
ABOUT PREVIEW (split)
=============================================================== */
.habout { padding: 50px 0 110px; background: #fff; }
.habout__visual { position: relative; }
.habout__img-wrap {
	position: relative;
	border-radius: var(--r-xl);
	overflow: hidden;
	height: 520px;
}
.habout__img {
	position: absolute;
	inset: 0;
	border-radius: var(--r-xl);
	background:
		linear-gradient(180deg, rgba(1,73,221,.10) 0%, rgba(15,23,42,.25) 100%),
		url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1200&auto=format&fit=crop&q=80') center/cover no-repeat;
	box-shadow: var(--e3);
	background-size: cover;
}
.habout__chip {
	position: absolute;
	left: -22px;
	bottom: 50px;
	background: #fff;
	padding: 16px 22px;
	border-radius: var(--r-md);
	display: flex;
	flex-direction: column;
	gap: 4px;
	box-shadow: 0 18px 38px rgba(15,23,42,.18);
	border: 1px solid var(--line);
	z-index: 2;
}
.habout__chip-num {
	font-size: 28px;
	font-weight: 800;
	color: var(--primary);
	letter-spacing: -.02em;
	line-height: 1;
}
.habout__chip-lbl {
	font-size: 11.5px;
	color: var(--muted);
	font-weight: 500;
	line-height: 1.4;
}

.habout__content .hsec__eyebrow { margin-bottom: 14px; }
.habout__lead {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.75;
	margin-bottom: 22px;
}
.habout__points {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 30px;
}
.habout__points li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--ink-2);
	font-weight: 500;
}
.habout__points li i { color: var(--primary); font-size: 16px; }
.habout__cta { margin-top: 8px; }

/* ===============================================================
SERVICES (clean professional grid)
=============================================================== */
.hservices {
	padding: 110px 0;
	background: var(--primary-tn);
	position: relative;
}
.hsvc {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	background: #fff;
	border-radius: var(--r-md);
	padding: 30px 28px 32px;
	color: inherit;
	text-decoration: none;
	border: 1px solid var(--line-soft);
	box-shadow: var(--e1);
	min-height: 100%;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
	overflow: hidden;
}
.hsvc:hover {
	transform: translateY(-5px);
	border-color: var(--primary-tn-2);
	box-shadow: var(--e3);
}
.hsvc__corner {
	position: absolute;
	top: 0;
	right: 0;
	width: 74px;
	height: 74px;
	display: grid;
	place-items: center;
	font-size: 26px;
	color: #fff;
	border-radius: 0 var(--r-md) 0 28px;
}
.hsvc__corner--dark { background: var(--dark); }
.hsvc__corner--primary { background: var(--primary); }
.hsvc__title {
	font-size: clamp(1.05rem, 1.5vw, 1.25rem);
	font-weight: 700;
	color: var(--dark);
	margin: 0 72px 18px 0;
	letter-spacing: -.02em;
	line-height: 1.3;
	transition: color .25s var(--ease);
}
.hsvc:hover .hsvc__title { color: var(--primary); }
.hsvc__rule {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 18px;
}
.hsvc__rule-mark {
	width: 10px;
	height: 10px;
	background: var(--primary);
	flex-shrink: 0;
}
.hsvc__rule::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--line);
}
.hsvc__text {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.75;
	margin: 0 0 28px;
	flex: 1;
}
.hsvc__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 36px;
	background: var(--primary);
	border: 1.5px solid var(--primary);
	border-radius: var(--r-pill);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	align-self: flex-start;
	transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.hsvc:hover .hsvc__btn {
	background: var(--primary-d);
	color: #fff;
	border-color: var(--primary-d);
	transform: translateY(-1px);
}

/* ===============================================================
STATS (counter row Ã‚Â· light)
=============================================================== */
.hstats {
	padding: 70px 0;
	background: var(--dark);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.hstats::before {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	background: rgba(1,73,221,.30);
	border-radius: 50%;
	filter: blur(120px);
	top: -150px;
	right: -100px;
	pointer-events: none;
}
.hstats__row { position: relative; z-index: 1; }
.hstat {
	text-align: center;
	padding: 16px 0;
	position: relative;
}
.hstat::after {
	content: '';
	position: absolute;
	right: 0;
	top: 16px;
	bottom: 16px;
	width: 1px;
	background: rgba(255,255,255,.10);
}
.hstats__row > .hstat:last-child::after,
.hstats__row > .col-6:nth-child(even) .hstat::after { display: none; }
@media (min-width: 992px) {
	.hstats__row > .col-6:nth-child(even) .hstat::after { display: block; }
	.hstats__row > .col-6:last-child .hstat::after { display: none; }
}
.hstat__num {
	display: block;
	font-size: clamp(2.4rem, 4vw, 3.4rem);
	font-weight: 800;
	color: #fff;
	letter-spacing: -.03em;
	line-height: 1.1;
	margin-bottom: 10px;
}
.hstat__sep { color: var(--primary-l); margin: 0 2px; }
.hstat__lbl {
	color: rgba(255,255,255,.62);
	font-size: 12.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 600;
}

/* ===============================================================
WHY CHOOSE US (dark Ã‚Â· split Ã‚Â· grid)
=============================================================== */
.hwhy {
	background: var(--dark);
	color: rgba(255,255,255,.78);
	padding: 110px 0;
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(255,255,255,.06);
}
.hwhy__glow {
	position: absolute;
	width: 600px;
	height: 600px;
	background: rgba(1,73,221,.20);
	border-radius: 50%;
	filter: blur(150px);
	bottom: -250px;
	left: -200px;
	pointer-events: none;
}
.hwhy__left { padding-right: 30px; }
.hwhy__lead {
	color: rgba(255,255,255,.7);
	font-size: 15.5px;
	line-height: 1.75;
	margin-bottom: 30px;
}
.hwhy__cta {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255,255,255,.30);
}
.hwhy__cta:hover { background: #fff; color: var(--ink); border-color: #fff; }

.hwhy__cell {
	padding: 14px 8px;
}
.hwhy__ico {
	display: inline-block;
	color: var(--primary-l);
	font-size: 30px;
	line-height: 1;
	margin-bottom: 16px;
}
.hwhy__cell h4 {
	font-size: 16.5px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
	letter-spacing: -.01em;
}
.hwhy__cell p {
	color: rgba(255,255,255,.65);
	font-size: 13.5px;
	line-height: 1.65;
}

/* ===============================================================
HOME CTA BANNER
=============================================================== */
.hcta { padding: 80px 0; background: #fff; }
.hcta__card {
	background: linear-gradient(120deg, var(--primary) 0%, #1B5DE3 100%);
	border-radius: var(--r-xl);
	padding: 32px 40px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 28px;
	align-items: center;
	box-shadow: 0 30px 60px rgba(1,73,221,.30);
	position: relative;
	overflow: hidden;
}
.hcta__card::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 0% 0%, rgba(255,255,255,.18) 0%, transparent 40%),
		radial-gradient(circle at 100% 100%, rgba(255,255,255,.10) 0%, transparent 50%);
	pointer-events: none;
}
.hcta__icon {
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background: rgba(255,255,255,.16);
	border: 1px solid rgba(255,255,255,.25);
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 26px;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}
.hcta__content { color: #fff; position: relative; z-index: 1; }
.hcta__title {
	font-size: clamp(1.2rem, 1.8vw, 1.5rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	letter-spacing: -.015em;
	margin-bottom: 6px;
}
.hcta__lead {
	color: rgba(255,255,255,.85);
	font-size: 14px;
	line-height: 1.5;
}
.hcta__btn {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	background: #fff;
	color: var(--ink);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: 12px 12px 12px 22px;
	border-radius: var(--r-pill);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}
.hcta__btn-arr {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 11px;
	transition: background .3s var(--ease);
}
.hcta__btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0,0,0,.18); }
.hcta__btn:hover .hcta__btn-arr { background: var(--primary-d); }

/* ===============================================================
HOME Ã¢â‚¬â€ CERTIFICATIONS SLIDER (marquee on arrow hover)
=============================================================== */
.hcerts-slider {
	padding: 100px 0;
	background: var(--bg-3);
}

.hcerts-slider__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 40px;
}

.hcerts-slider__intro {
	max-width: 640px;
}

.hcerts-slider__lead {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.7;
	margin-top: 14px;
}

.hcerts-slider__nav {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.hcerts-slider__arrow {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--dark);
	color: #fff;
	border: none;
	display: grid;
	place-items: center;
	font-size: 14px;
	cursor: pointer;
	transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
	box-shadow: var(--e2);
}

.hcerts-slider__arrow:hover {
	background: var(--primary);
	transform: translateY(-2px);
	box-shadow: var(--e-blue);
}

.hcerts-slider__viewport {
	overflow: hidden;
	margin: 0 calc(var(--gutter) * -1);
	padding: 8px var(--gutter) 12px;
}

.hcerts-slider__track {
	display: flex;
	gap: 24px;
	width: max-content;
	will-change: transform;
	animation: hcerts-marquee 42s linear infinite;
	animation-play-state: running;
}

.hcerts-slider.is-marquee .hcerts-slider__track {
	animation-play-state: running;
}

.hcerts-slider__track.is-manual {
	animation: none !important;
	transition: transform .55s var(--ease-out);
}

@keyframes hcerts-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

.hcerts-slider__card {
	flex-shrink: 0;
	width: clamp(220px, 22vw, 280px);
}

.hcerts-slider__lightbox {
	display: block;
	text-decoration: none;
	color: inherit;
	cursor: zoom-in;
}

.hcerts-slider__lightbox img {
	width: 100%;
	display: block;
	border-radius: var(--r-md);
}

.hcerts-slider__caption {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.4;
	margin-top: 14px;
	letter-spacing: -.01em;
}

@media (max-width: 991.98px) {
	.hservices__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		margin-bottom: 40px;
	}
	.hservices__explore { align-self: flex-start; }
	.hcerts-slider { padding: 80px 0; }
	.hcerts-slider__head {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 575.98px) {
	.hcerts-slider { padding: 64px 0; }
	.hcerts-slider__card { width: 220px; }
	.hcerts-slider__arrow { width: 44px; height: 44px; }
}

/* ===============================================================
SHARED PAGE HERO (services / contact / quote / certificates / single-service)
=============================================================== */
.phero {
	position: relative;
	padding: 180px 0 90px;
	background:
		radial-gradient(120% 80% at 0% 0%, #EAF0FF 0%, transparent 60%),
		linear-gradient(180deg, #F3F7FF 0%, #FFFFFF 100%);
	overflow: hidden;
}
.phero::before {
	content: '';
	position: absolute;
	width: 460px;
	height: 460px;
	background: var(--primary-tn);
	border-radius: 50%;
	filter: blur(110px);
	top: -160px;
	right: -160px;
	opacity: .55;
	pointer-events: none;
}
.phero__inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--gutter);
	position: relative;
	z-index: 1;
}
.phero__crumbs {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	letter-spacing: .14em;
	font-weight: 600;
	color: var(--muted);
	text-transform: uppercase;
	margin-bottom: 20px;
}
.phero__crumbs a {
	color: var(--muted);
	transition: color .25s var(--ease);
}
.phero__crumbs a:hover { color: var(--primary); }
.phero__crumbs .sep { color: var(--muted-2); }
.phero__crumbs .current { color: var(--primary); }
.phero__title {
	font-family: var(--sans);
	font-weight: 800;
	font-size: clamp(2.2rem, 4.6vw, 3.4rem);
	line-height: 1.08;
	letter-spacing: -.03em;
	color: var(--ink);
	max-width: 760px;
}
.phero__title em {
	font-style: normal;
	color: var(--primary);
	font-weight: 800;
}
.phero__lead {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.7;
	max-width: 640px;
	margin-top: 18px;
}
.phero__actions {
	display: flex;
	gap: 14px;
	margin-top: 28px;
	flex-wrap: wrap;
}

@media (max-width: 640px) {
	.phero { padding: 120px 0 60px; }
	.phero__title { font-size: clamp(1.9rem, 8vw, 2.4rem); }
	.phero__actions {
		flex-direction: column;
	}

	.phero__actions .btn {
		width: 100%;
		justify-content: center;
	}
}

/* ===============================================================
SLIGHTLY SHARPER CARD EDGES (consistency pass)
=============================================================== */
.hsvc, .hcerts-slider__card, .vcard, .commit__right {
	border-radius: 14px;
}
.hcta__card, .bdcta__inner, .habout__img-wrap, .habout__img {
	border-radius: 16px;
}

/* ===============================================================
SWIPER OVERRIDES (services slider)
=============================================================== */
.home-svc-swiper.swiper { padding-bottom: 0 !important; }
.swiper-slide { height: auto; display: flex; }
.swiper-slide > * { width: 100%; }
.swiper-pagination-bullet {
	width: 32px;
	height: 4px;
	border-radius: 2px;
	background: var(--line);
	opacity: 1;
	transition: background .3s var(--ease), width .3s var(--ease);
}
.swiper-pagination-bullet-active {
	background: var(--primary);
	width: 56px;
}
.swiper-button-prev, .swiper-button-next {
	width: 48px !important;
	height: 48px !important;
	border-radius: 50% !important;
	background: #fff;
	color: var(--primary) !important;
	box-shadow: 0 8px 20px rgba(1,73,221,.20);
	transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
	top: 38% !important;
}
.swiper-button-prev::after, .swiper-button-next::after {
	font-size: 16px !important;
	font-weight: 800 !important;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
	background: var(--primary);
	color: #fff !important;
	transform: scale(1.08);
}

/* ===============================================================
TIMELINE (about page)
=============================================================== */
.timeline {
	padding: 110px 0;
	background: linear-gradient(180deg, #FFFFFF 0%, #F4F7FF 100%);
	position: relative;
}
.timeline__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 70px;
	padding: 0 var(--gutter);
}
.timeline__head .hsec__eyebrow::after { left: 50%; transform: translateX(-50%); }
.timeline__track {
	max-width: 920px;
	margin: 0 auto;
	position: relative;
	padding: 0 var(--gutter);
}
.timeline__track::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: linear-gradient(180deg, transparent, var(--primary-tn-2) 8%, var(--primary-tn-2) 92%, transparent);
	transform: translateX(-1px);
}
.tline {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 80px 1fr;
	align-items: start;
	margin-bottom: 50px;
}
.tline:last-child { margin-bottom: 0; }
.tline__dot {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--primary);
	border: 4px solid #fff;
	box-shadow: 0 0 0 4px rgba(1,73,221,.20);
	justify-self: center;
	margin-top: 16px;
	position: relative;
	z-index: 2;
}
.tline__card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 22px 24px;
	box-shadow: 0 12px 28px -16px rgba(15,23,42,.10);
	transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tline__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 48px -20px rgba(1,73,221,.22);
}
.tline__year {
	display: inline-block;
	color: var(--primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.tline__title {
	font-size: 17px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 6px;
	letter-spacing: -.01em;
}
.tline__desc {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.65;
}
.tline--left .tline__card  { grid-column: 1; text-align: right; }
.tline--right .tline__card { grid-column: 3; text-align: left; }
.tline--left .tline__spacer  { grid-column: 3; }
.tline--right .tline__spacer { grid-column: 1; }

@media (max-width: 768px) {
	.timeline__track::before { left: 18px; }
	.tline { grid-template-columns: 36px 1fr; gap: 8px; }
	.tline__dot { justify-self: start; margin-top: 18px; display:none }
	.tline--left .tline__card,
	.tline--right .tline__card {
		grid-column: 2;
		text-align: left;
	}
	.tline__spacer { display: none; }
}

/* ===============================================================
FAQ ACCORDION (single service + contact pages)
=============================================================== */
.faq__item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 12px;
	margin-bottom: 12px;
	overflow: hidden;
	transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq__item.open {
	border-color: var(--primary-tn-2);
	box-shadow: 0 18px 40px -22px rgba(1,73,221,.25);
}
.faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 22px;
	cursor: pointer;
	font-weight: 600;
	color: var(--ink);
	font-size: 15px;
	line-height: 1.4;
	background: none;
	width: 100%;
	border: none;
	text-align: left;
	font-family: var(--sans);
}
.faq__plus {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--primary-tn);
	color: var(--primary);
	display: grid;
	place-items: center;
	flex-shrink: 0;
	font-size: 12px;
	transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.faq__item.open .faq__plus {
	background: var(--primary);
	color: #fff;
	transform: rotate(45deg);
}
.faq__a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s var(--ease);
}
.faq__item.open .faq__a { max-height: 320px; }
.faq__a-inner {
	padding: 0 22px 22px;
	color: var(--muted);
	font-size: 14.5px;
	line-height: 1.7;
}

/* ===============================================================
SERVICES PAGE Ã¢â‚¬â€ INTRO STRIP + GRID
=============================================================== */
.svcs-intro { padding: 80px 0; background: #fff; }
.svcs-intro__inner {
	max-width: 880px;
	margin: 0 auto;
	text-align: center;
	padding: 0 var(--gutter);
}
.svcs-intro__title {
	font-size: clamp(1.7rem, 2.6vw, 2.1rem);
	font-weight: 700;
	color: var(--ink);
	line-height: 1.3;
	letter-spacing: -.02em;
}
.svcs-intro__title em { font-style: normal; color: var(--primary); }
.svcs-intro__lead {
	color: var(--muted);
	font-size: 15.5px;
	line-height: 1.75;
	margin-top: 18px;
}
.svcs-grid { padding: 30px 0 110px; background: #fff; }

/* ===============================================================
SERVICES PAGE Ã¢â‚¬â€ PROCESS STEPS
=============================================================== */
.process { padding: 110px 0; background: var(--dark); color: rgba(255,255,255,.78); position: relative; overflow: hidden; }
.process::before {
	content: '';
	position: absolute;
	width: 480px;
	height: 480px;
	background: rgba(1,73,221,.18);
	border-radius: 50%;
	filter: blur(140px);
	bottom: -180px;
	right: -120px;
	pointer-events: none;
}
.process__inner { position: relative; z-index: 1; }
.process__head { text-align: center; max-width: 720px; margin: 0 auto 70px; padding: 0 var(--gutter); }
.process__head .hsec__eyebrow { color: rgba(255,255,255,.85); }
.process__head .hsec__eyebrow::after { background: var(--primary-l); left: 50%; transform: translateX(-50%); }
.process__head h2 {
	font-family: var(--sans);
	font-weight: 800;
	font-size: clamp(1.9rem, 3vw, 2.4rem);
	line-height: 1.2;
	color: #fff;
	letter-spacing: -.025em;
}
.process__head h2 em { font-style: normal; color: var(--primary-l); }
.pstep {
	text-align: center;
	padding: 24px 16px;
	position: relative;
}
.pstep__num {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.15);
	color: var(--primary-l);
	display: inline-grid;
	place-items: center;
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 22px;
	position: relative;
	z-index: 1;
}
.pstep h4 {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
	letter-spacing: -.01em;
}
.pstep p {
	color: rgba(255,255,255,.65);
	font-size: 13.5px;
	line-height: 1.65;
}

/* ===============================================================
SINGLE SERVICE Ã¢â‚¬â€ premium detail page
=============================================================== */

/* Hero */
.ssvc-hero {
	position: relative;
	min-height: 420px;
	display: flex;
	align-items: center;
	padding: 170px 0 80px;
	margin: 0;
	border-radius: 0;
	overflow: hidden;
	color: #fff;
	background: var(--dark);
}
.ssvc-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}
.ssvc-hero__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.06);
	animation: ssvc-hero-zoom 14s ease-out forwards;
}
@keyframes ssvc-hero-zoom {
	to { transform: scale(1.12); }
}
.ssvc-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(120deg, rgba(15, 23, 42, .90) 0%, rgba(15, 23, 42, .74) 50%, rgba(1, 73, 221, .42) 100%);
}
.ssvc-hero__content {
	position: relative;
	z-index: 2;
}
.ssvc-hero__crumbs {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	letter-spacing: .14em;
	font-weight: 600;
	text-transform: uppercase;
	color: rgba(255,255,255,.75);
	margin-bottom: 20px;
}
.ssvc-hero__crumbs a {
	color: rgba(255,255,255,.75);
	transition: color .25s var(--ease);
}
.ssvc-hero__crumbs a:hover { color: var(--primary-l); }
.ssvc-hero__crumbs .sep { color: rgba(255,255,255,.4); }
.ssvc-hero__crumbs .current { color: var(--primary-l); }
.ssvc-hero__title {
	font-family: var(--sans);
	font-weight: 800;
	font-size: clamp(1.85rem, 3.4vw, 2.85rem);
	line-height: 1.1;
	letter-spacing: -.01em;
	color: #fff;
	max-width: 720px;
	margin-bottom: 16px;
	text-transform: uppercase;
}
.ssvc-hero__title em {
	font-style: normal;
	color: var(--primary-l);
}
.ssvc-hero__lead {
	font-size: clamp(.88rem, 1.1vw, 1rem);
	line-height: 1.6;
	color: rgba(255,255,255,.88);
	max-width: 580px;
	margin: 0;
	letter-spacing: .03em;
	text-transform: uppercase;
	font-weight: 500;
}
.ssvc-hero__actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 28px;
}

/* Shared typography */
.ssvc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 14px;
}
/* .ssvc-eyebrow::before {
	content: '';
	display: block;
	width: 18px;
	height: 2px;
	background: var(--primary);
	flex-shrink: 0;
} */
.ssvc-eyebrow--light { color: rgba(255,255,255,.85); }
.ssvc-eyebrow--light::before { background: var(--primary-l); }
.ssvc-lead__title {
	font-family: var(--sans);
	font-weight: 800;
	font-size: clamp(1.9rem, 3.2vw, 2.6rem);
	line-height: 1.15;
	letter-spacing: -.03em;
	color: var(--ink);
	margin-bottom: 18px;
}
.ssvc-lead__title em {
	font-style: normal;
	color: var(--primary);
}
.ssvc-prose {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.8;
}
.ssvc-prose--sm { font-size: 14px; }
.ssvc-prose--light { color: rgba(255,255,255,.72); }

/* Lead section */
.ssvc-lead {
	padding: 100px 0;
	background: var(--bg-3);
}
.ssvc-lead__metrics {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.ssvc-lead__metric {
	background: var(--dark);
	border-radius: var(--r-lg);
	padding: 28px 22px;
	min-height: 140px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	overflow: hidden;
}
.ssvc-lead__metric::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
	opacity: .7;
}
.ssvc-lead__metric-value {
	font-family: var(--sans);
	font-size: clamp(2rem, 4vw, 2.6rem);
	font-weight: 800;
	color: var(--primary-l);
	letter-spacing: -.04em;
	line-height: 1;
	display: block;
	margin-bottom: 8px;
}
.ssvc-lead__metric-label {
	font-size: 11px;
	font-weight: 600;
	color: rgba(255,255,255,.62);
	text-transform: uppercase;
	letter-spacing: .08em;
	line-height: 1.45;
}
.ssvc-lead__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.ssvc-lead__tag {
	font-size: 12px;
	font-weight: 500;
	color: var(--muted);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-pill);
	padding: 6px 14px;
}

/* Mosaic */
.ssvc-mosaic {
	padding: 100px 0;
	background: #fff;
}
.ssvc-mosaic__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 12px;
	align-items: stretch;
}
.ssvc-mosaic__primary {
	border-radius: var(--r-xl);
	overflow: hidden;
	position: relative;
	min-height: 520px;
}
.ssvc-mosaic__secondary {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.ssvc-mosaic__panel {
	border-radius: var(--r-xl);
	overflow: hidden;
	position: relative;
	flex: 1;
	min-height: 250px;
}
.ssvc-mosaic__panel-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
	transition: transform .6s var(--ease);
}
.ssvc-mosaic__panel:hover .ssvc-mosaic__panel-img { transform: scale(1.04); }
.ssvc-mosaic__panel-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15,23,42,.15) 0%, rgba(15,23,42,.72) 52%, rgba(15,23,42,.96) 100%);
}
.ssvc-mosaic__panel-body {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	padding: 28px;
	z-index: 1;
}
.ssvc-mosaic__panel-label {
	font-size: 11px;
	font-weight: 600;
	color: var(--primary-l);
	text-transform: uppercase;
	letter-spacing: .1em;
	display: block;
	margin-bottom: 8px;
}
.ssvc-mosaic__panel-title {
	font-family: var(--sans);
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	font-weight: 700;
	color: #fff;
	letter-spacing: -.02em;
	line-height: 1.25;
	margin-bottom: 8px;
}
.ssvc-mosaic__panel-desc {
	font-size: 13.5px;
	color: rgba(255,255,255,.82);
	line-height: 1.65;
	margin: 0;
	max-width: 420px;
}

/* Process */
.ssvc-process {
	padding: 100px 0;
	background: var(--dark);
	position: relative;
	overflow: hidden;
}
.ssvc-process::before {
	content: '';
	position: absolute;
	width: 480px;
	height: 480px;
	background: rgba(1,73,221,.16);
	border-radius: 50%;
	filter: blur(140px);
	bottom: -160px;
	right: -100px;
	pointer-events: none;
}
.ssvc-process__title {
	font-family: var(--sans);
	font-weight: 800;
	font-size: clamp(1.9rem, 3vw, 2.5rem);
	line-height: 1.15;
	letter-spacing: -.03em;
	color: #fff;
}
.ssvc-process__title em {
	font-style: normal;
	color: var(--primary-l);
}
.ssvc-process__steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	position: relative;
}
.ssvc-process__connector {
	position: absolute;
	top: 20px;
	left: 44px;
	right: 44px;
	height: 1px;
	background: rgba(255,255,255,.12);
}
.ssvc-process__step {
	padding: 0 18px;
}
.ssvc-process__step-num {
	font-size: 11px;
	font-weight: 700;
	color: var(--primary-l);
	background: rgba(1,73,221,.12);
	border: 1px solid rgba(58,111,230,.35);
	border-radius: var(--r-pill);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}
.ssvc-process__step-title {
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -.01em;
	margin-bottom: 10px;
}
.ssvc-process__step-desc {
	font-size: 13.5px;
	color: rgba(255,255,255,.62);
	line-height: 1.7;
	margin: 0;
}

/* Coverage */
.ssvc-coverage {
	padding: 100px 0;
	background: var(--primary-tn);
}
.ssvc-coverage__cta {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid rgba(1,73,221,.12);
}
.ssvc-coverage__region {
	font-size: 16px;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: -.01em;
	display: inline-block;
	margin-bottom: 14px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--primary);
}
.ssvc-coverage__list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.ssvc-coverage__list li {
	font-size: 14px;
	color: var(--muted);
	padding: 8px 0;
	border-bottom: 1px solid rgba(1,73,221,.1);
	display: flex;
	align-items: center;
	gap: 10px;
}
.ssvc-coverage__list li::before {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--primary);
	flex-shrink: 0;
}

/* Benefits */
.ssvc-benefits {
	padding: 100px 0;
	background: linear-gradient(180deg, #fff 0%, var(--bg-3) 100%);
}
.ssvc-benefits__head {
	max-width: 640px;
	margin: 0 auto 56px;
}
.ssvc-benefits__head .ssvc-eyebrow::before { display: none; }
.ssvc-benefits__head .ssvc-eyebrow { justify-content: center; }
.ssvc-benefit {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 28px 24px;
	height: 100%;
	transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.ssvc-benefit:hover {
	transform: translateY(-4px);
	border-color: var(--primary-tn-2);
	box-shadow: 0 18px 36px -18px rgba(1,73,221,.22);
}
.ssvc-benefit__ico {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--primary-tn);
	color: var(--primary);
	font-size: 20px;
	margin-bottom: 16px;
}
.ssvc-benefit h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 8px;
	letter-spacing: -.01em;
}
.ssvc-benefit p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.65;
	margin: 0;
}

/* FAQ */
.ssvc-faq {
	padding: 100px 0;
	background: #fff;
}
.ssvc-faq__head {
	max-width: 560px;
	margin: 0 auto 48px;
}
.ssvc-faq__head .ssvc-eyebrow::before { display: none; }
.ssvc-faq__head .ssvc-eyebrow { justify-content: center; }
.ssvc-faq__list {
	max-width: 800px;
	margin: 0 auto;
}

/* Related */
.ssvc-related {
	padding: 80px 0 100px;
	background: var(--bg-3);
}
.ssvc-related__head {
	margin-bottom: 40px;
}
.ssvc-related__card {
	display: block;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 24px 22px;
	height: 100%;
	transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
	text-decoration: none;
	color: inherit;
}
.ssvc-related__card:hover {
	transform: translateY(-4px);
	border-color: var(--primary-tn-2);
	box-shadow: var(--e3);
	color: inherit;
}
.ssvc-related__card-ico {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: var(--primary-tn);
	color: var(--primary);
	font-size: 18px;
	margin-bottom: 14px;
}
.ssvc-related__card h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 8px;
}
.ssvc-related__card p {
	font-size: 13.5px;
	color: var(--muted);
	line-height: 1.6;
	margin: 0 0 14px;
}
.ssvc-related__card-link {
	font-size: 13px;
	font-weight: 600;
	color: var(--primary);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

@media (max-width: 991.98px) {
	.ssvc-hero {
		margin: 0;
		border-radius: 0;
		min-height: 420px;
		padding: 140px 0 60px;
	}
	.ssvc-mosaic__grid { grid-template-columns: 1fr; }
	.ssvc-mosaic__primary { min-height: 380px; }
	.ssvc-mosaic__panel { min-height: 220px; }
	.ssvc-process__steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 36px;
	}
	.ssvc-process__connector { display: none; }
}

@media (max-width: 640px) {
	.ssvc-hero { min-height: 360px; padding: 120px 0 52px; }
	.ssvc-lead, .ssvc-mosaic, .ssvc-process, .ssvc-coverage,
	.ssvc-benefits, .ssvc-faq, .ssvc-related { padding: 64px 0; }
	.ssvc-lead__metrics { grid-template-columns: 1fr; }
	.ssvc-process__steps { grid-template-columns: 1fr; gap: 28px; }
}

/* ===============================================================
CONTACT PAGE Ã¢â‚¬â€ hero Ã‚Â· channel cards Ã‚Â· split form
Burton theme: --primary #0149DD Ã‚Â· --dark #0F172A
=============================================================== */

/* ----- Hero ----- */
.chero {
	position: relative;
	min-height: 420px;
	display: flex;
	align-items: center;
	padding: 170px 0 80px;
	overflow: hidden;
	color: #fff;
}
.chero__bg {
	position: absolute;
	inset: 0;
	background:
		url('https://images.unsplash.com/photo-1553413077-190dd305871c?w=1800&auto=format&fit=crop&q=80') center/cover no-repeat;
	z-index: 0;
}
.chero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, rgba(15,23,42,.88) 0%, rgba(15,23,42,.72) 50%, rgba(1,73,221,.45) 100%);
	z-index: 1;
}
.chero__inner { position: relative; z-index: 2; }
.chero__crumbs {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	letter-spacing: .14em;
	font-weight: 600;
	color: rgba(255,255,255,.75);
	text-transform: uppercase;
	margin-bottom: 20px;
}
.chero__crumbs a {
	color: rgba(255,255,255,.75);
	transition: color .25s var(--ease);
}
.chero__crumbs a:hover { color: var(--primary-l); }
.chero__crumbs .sep { color: rgba(255,255,255,.4); }
.chero__crumbs .current { color: var(--primary-l); }
.chero__title {
	font-family: var(--sans);
	font-weight: 800;
	font-size: clamp(1.85rem, 3.4vw, 2.85rem);
	line-height: 1.1;
	letter-spacing: -.01em;
	color: #fff;
	margin-bottom: 16px;
	text-transform: uppercase;
}
.chero__lead {
	color: rgba(255,255,255,.88);
	font-size: clamp(.88rem, 1.1vw, 1rem);
	line-height: 1.6;
	max-width: 520px;
	letter-spacing: .03em;
	text-transform: uppercase;
	font-weight: 500;
	margin: 0;
}

/* ----- Channel cards ----- */
.contact-channels {
	background: var(--bg);
	padding: 72px 0 56px;
}

.contact-channel-card {
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 28px 24px;
	height: 100%;
	transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}

.contact-channel-card:hover {
	border-color: var(--primary-tn-2);
	box-shadow: var(--e3);
	transform: translateY(-4px);
}

.contact-channel-card__icon {
	width: 44px;
	height: 44px;
	border-radius: var(--r-sm);
	background: var(--primary-tn);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	margin-bottom: 18px;
	transition: background .3s var(--ease), color .3s var(--ease);
}

.contact-channel-card:hover .contact-channel-card__icon {
	background: var(--primary);
	color: #fff;
}

.contact-channel-card__label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--muted);
	margin-bottom: 6px;
}

.contact-channel-card__value {
	display: block;
	font-size: 17px;
	font-weight: 700;
	color: var(--ink);
	text-decoration: none;
	margin-bottom: 6px;
	line-height: 1.35;
	word-break: break-word;
	transition: color .25s var(--ease);
}

a.contact-channel-card__value:hover { color: var(--primary); }

.contact-channel-card__note {
	font-size: 13px;
	color: var(--muted);
	margin: 0;
	line-height: 1.5;
}

/* ----- Main split section ----- */
.contact-main-section {
	background: var(--bg-3);
	padding: 0 0 100px;
}

.contact-main-section > .container > .row {
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--e4);
}

/* Info panel (dark left) */
.contact-info-panel {
	background: var(--dark);
	border-radius: var(--r-xl) 0 0 var(--r-xl);
	padding: 52px 44px;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 32px;
	position: relative;
	overflow: hidden;
}

.contact-info-panel::before {
	content: '';
	position: absolute;
	width: 320px;
	height: 320px;
	background: rgba(1,73,221,.22);
	border-radius: 50%;
	filter: blur(100px);
	bottom: -120px;
	left: -100px;
	pointer-events: none;
}

.contact-info-panel > * { position: relative; z-index: 1; }

.contact-info-panel__eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: var(--primary-l);
	margin-bottom: 12px;
}

.contact-info-panel__title {
	font-family: var(--sans);
	font-size: clamp(1.55rem, 2.4vw, 2rem);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -.02em;
	color: #fff;
	margin-bottom: 14px;
}

.contact-info-panel__desc {
	font-size: 14px;
	color: rgba(255,255,255,.68);
	line-height: 1.75;
	margin: 0;
}

.contact-info-panel__details {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-info-detail {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.contact-info-detail__icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: var(--r-xs);
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.10);
	color: var(--primary-l);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	margin-top: 2px;
}

.contact-info-detail__label {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255,255,255,.5);
	margin-bottom: 3px;
}

.contact-info-detail__value {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	line-height: 1.45;
	transition: color .25s var(--ease);
}

a.contact-info-detail__value:hover { color: var(--primary-l); }

.contact-info-panel__social {
	margin-top: auto;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,.10);
}

.contact-info-panel__social-label {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: rgba(255,255,255,.5);
	margin-bottom: 12px;
}

.contact-info-panel__social-link {
	width: 36px;
	height: 36px;
	border-radius: var(--r-sm);
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.10);
	color: rgba(255,255,255,.75);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	text-decoration: none;
	transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}

.contact-info-panel__social-link:hover {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}

/* Form panel (light right) */
.contact-form-panel {
	background: var(--bg);
	border-radius: 0 var(--r-xl) var(--r-xl) 0;
	padding: 52px 48px;
	height: 100%;
}

.contact-form-panel__title {
	font-family: var(--sans);
	font-size: clamp(1.35rem, 2vw, 1.65rem);
	font-weight: 700;
	color: var(--ink);
	letter-spacing: -.02em;
	margin-bottom: 6px;
}

.contact-form-panel__sub {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 28px;
}

.contact-form__label {
	display: block;
	font-size: 10.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--ink-2);
	margin-bottom: 7px;
}

.contact-form__label span { color: var(--primary); }

.contact-form__input,
.contact-form__textarea,
.contact-form__select {
	width: 100%;
	font-family: var(--sans);
	font-size: 14px;
	color: var(--ink);
	background: var(--bg-3);
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	padding: 12px 14px;
	outline: none;
	transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
	appearance: none;
	-webkit-appearance: none;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder { color: var(--muted-2); }

.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(1,73,221,.12);
	background: var(--bg);
}

.contact-form__textarea {
	resize: vertical;
	min-height: 130px;
}

.contact-form__select-wrap { position: relative; }

.contact-form__select { padding-right: 40px; cursor: pointer; }

.contact-form__select-arrow {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--muted);
	font-size: 11px;
	pointer-events: none;
}

.contact-form__consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.contact-form__checkbox {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	margin-top: 3px;
	accent-color: var(--primary);
	cursor: pointer;
}

.contact-form__consent-label {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.55;
	cursor: pointer;
}

.contact-form__consent-link {
	color: var(--primary);
	text-decoration: underline;
	font-weight: 600;
}

.contact-form__submit {
	min-width: 180px;
	margin-top: 4px;
}

.contact-form__confirm.form-toast {
	margin-top: 14px;
}

@media (max-width: 991.98px) {
	.chero { min-height: 360px; padding: 130px 0 64px; }
	.contact-channels { padding: 56px 0 44px; }
	.contact-main-section { padding-bottom: 80px; }
	.contact-main-section > .container > .row { border-radius: var(--r-lg); }
	.contact-info-panel {
		border-radius: var(--r-lg) var(--r-lg) 0 0;
		padding: 40px 32px;
	}
	.contact-form-panel {
		border-radius: 0 0 var(--r-lg) var(--r-lg);
		padding: 40px 32px;
	}
}

@media (max-width: 575.98px) {
	.chero { min-height: 300px; padding: 110px 0 52px; }
	.contact-channels { padding: 44px 0 36px; }
	.contact-info-panel,
	.contact-form-panel { padding: 32px 22px; }
	.contact-form-panel__title { font-size: 1.25rem; }
}

/* ===============================================================
CONTACT PAGE Ã¢â‚¬â€ METHODS GRID + MAP-LIKE BANNER (legacy)
=============================================================== */
.cpage-methods { padding: 90px 0; background: #fff; }
.cmcard {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 32px 28px;
	text-align: center;
	height: 100%;
	transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
	text-decoration: none;
	color: inherit;
	display: block;
}
.cmcard:hover {
	transform: translateY(-6px);
	border-color: var(--primary-tn-2);
	box-shadow: 0 24px 50px -22px rgba(1,73,221,.25);
}
.cmcard__ico {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--primary-tn);
	color: var(--primary);
	display: inline-grid;
	place-items: center;
	font-size: 22px;
	margin-bottom: 22px;
	transition: background .3s var(--ease), color .3s var(--ease);
}
.cmcard:hover .cmcard__ico { background: var(--primary); color: #fff; }
.cmcard__lbl {
	font-size: 11.5px;
	color: var(--muted);
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 6px;
}
.cmcard__val {
	font-size: 16px;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: -.01em;
	word-break: break-word;
}

.cpage-form { padding: 90px 0; background: linear-gradient(180deg, #F4F7FF 0%, #FFFFFF 100%); }
.cpage-form__grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 60px;
	align-items: start;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.cpage-form__left .hsec__eyebrow { margin-bottom: 14px; }
.cpage-form__left p {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.75;
	margin-bottom: 24px;
}
.cpage-form__list { display: grid; gap: 14px; margin-bottom: 30px; }
.cpage-form__list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: var(--ink-2);
	font-weight: 500;
}
.cpage-form__list li i { color: var(--primary); font-size: 16px; }

@media (max-width: 991.98px) {
	.cpage-form__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===============================================================
QUOTE PAGE
=============================================================== */
.qpage { padding: 90px 0; background: linear-gradient(180deg, #F4F7FF 0%, #FFFFFF 100%); }
.qpage__grid {
	display: grid;
	grid-template-columns: .9fr 1.4fr;
	gap: 60px;
	align-items: start;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.qpage__aside {
	background: var(--dark);
	color: #fff;
	border-radius: 16px;
	padding: 40px 32px;
	position: sticky;
	top: 100px;
	overflow: hidden;
	position: relative;
}
.qpage__aside::before {
	content: '';
	position: absolute;
	width: 280px;
	height: 280px;
	background: rgba(1,73,221,.30);
	border-radius: 50%;
	filter: blur(100px);
	bottom: -100px;
	right: -80px;
}
.qpage__aside > * { position: relative; z-index: 1; }
.qpage__aside h3 {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 14px;
	letter-spacing: -.02em;
}
.qpage__aside p {
	color: rgba(255,255,255,.75);
	font-size: 14.5px;
	line-height: 1.7;
	margin-bottom: 24px;
}
.qpage__pts { display: grid; gap: 14px; margin-bottom: 32px; }
.qpage__pts li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: rgba(255,255,255,.88);
	font-weight: 500;
}
.qpage__pts li i { color: var(--primary-l); font-size: 16px; }
.qpage__contact {
	border-top: 1px solid rgba(255,255,255,.10);
	padding-top: 24px;
	display: grid;
	gap: 14px;
}
.qpage__contact a {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	transition: color .3s var(--ease);
}
.qpage__contact a:hover { color: var(--primary-l); }
.qpage__contact i {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,.08);
	color: var(--primary-l);
	display: grid;
	place-items: center;
	font-size: 13px;
}

.qform {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 36px 32px;
	box-shadow: 0 18px 40px -22px rgba(15,23,42,.12);
}
.qform__head { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line-soft); }
.qform__head h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 6px;
	letter-spacing: -.02em;
}
.qform__head p { color: var(--muted); font-size: 14px; line-height: 1.6; }

@media (max-width: 991.98px) {
	.qpage__grid { grid-template-columns: 1fr; gap: 30px; }
	.qpage__aside { position: static; }
}
@media (max-width: 640px) {
	.qform { padding: 28px 22px; }
}

/* ===============================================================
CERTIFICATES PAGE
=============================================================== */
.cpage { padding: 100px 0; background: linear-gradient(180deg, #FFFFFF 0%, #F4F7FF 100%); }
.cpage-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 32px 28px;
	text-align: center;
	height: 100%;
	transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
	position: relative;
	overflow: hidden;
}
.cpage-card:hover {
	transform: translateY(-8px);
	border-color: var(--primary-tn-2);
	box-shadow: 0 28px 50px -22px rgba(1,73,221,.25);
}
.cpage-card__img {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 12px;
	background: var(--primary-tn);
	margin-bottom: 22px;
	overflow: hidden;
	display: grid;
	place-items: center;
	position: relative;
}
.cpage-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cpage-card__placeholder {
	color: var(--primary);
	text-align: center;
	padding: 24px;
}
.cpage-card__placeholder i { font-size: 44px; opacity: .85; }
.cpage-card__placeholder span {
	display: block;
	margin-top: 14px;
	font-size: 11.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--primary-d);
}
.cpage-card__num {
	position: absolute;
	top: 16px;
	right: 18px;
	background: var(--primary);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
	letter-spacing: .08em;
}
.cpage-card h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 10px;
	letter-spacing: -.01em;
}
.cpage-card p {
	color: var(--muted);
	font-size: 13.5px;
	line-height: 1.6;
	margin-bottom: 14px;
}
.cpage-card__date {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11.5px;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--primary);
}
.cpage-card__date::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #22C55E;
	box-shadow: 0 0 0 4px rgba(34,197,94,.15);
}

/* "View All" link helper */
.view-all-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--primary);
	font-weight: 700;
	font-size: 13.5px;
	letter-spacing: .04em;
	margin-top: 36px;
	transition: gap .3s var(--ease);
}
.view-all-link:hover { gap: 16px; }
.view-all-link i {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--primary-tn);
	color: var(--primary);
	display: grid;
	place-items: center;
	font-size: 11px;
	transition: background .3s var(--ease), color .3s var(--ease);
}
.view-all-link:hover i { background: var(--primary); color: #fff; }

/* ===============================================================
HOME PAGE Ã¢â‚¬â€ RESPONSIVE
=============================================================== */
@media (max-width: 991.98px) {
	.hhero {
		margin: 0;
		border-radius: 0;
	}
	.hhero__swiper,
	.hhero__slide {
		min-height: auto;
	}
	.hhero__slide-inner {
		padding-top: 74px;
		padding-bottom: 32px;
	}
	.hhero__widget-wrap {
		position: relative;
		top: auto;
		right: auto;
		width: 100%;
		max-width: 520px;
		min-width: 0;
		margin: -24px auto 32px;
		padding: 0 16px;
	}
	.hhero__widget {
		max-width: 100%;
	}

	.hf__inner { padding: 26px 24px; }

	.habout { padding: 80px 0; }
	.habout__img-wrap { height: 420px; max-width: 560px; margin: 0 auto; }
	.habout__points { grid-template-columns: 1fr; }

	.hservices { padding: 80px 0; }
	.hwhy { padding: 80px 0; }
	.hwhy__left { padding-right: 0; margin-bottom: 30px; }
	.hcerts-slider { padding: 80px 0; }
}

@media (max-width: 640px) {
	.hhero__slide-inner {/* padding: 100px 20px; */}
	.hhero__swiper{
    height: 600px;
    background-position: bottom
	}
	section#home{
		height: 600px;
		overflow:hidden;
	}
	.hhero__title {font-size: clamp(1.4rem, 8.2vw, 2.8rem);text-align: center;line-height: 36px;}
	.hhero__lead{text-align: center;font-size: 15px;}
	.hhero__metrics { flex-wrap: wrap; gap: 12px; justify-content: center; }
	.hhero__metric { padding-right: 16px; }
	.hhero__metric + .hhero__metric {
		padding-left: 16px;
		border-left: 1px solid rgba(255, 255, 255, 0.1);
	}
	.hhero__metric-label{font-size: 11px}
	.hhero__ctas { flex-direction: column; align-items: stretch; }
	.hhero__btn {padding: 6px;width: 100%;font-size:12px}

	.hsec__head { margin-bottom: 44px; }

	.habout, .hservices, .hwhy, .hcerts-slider, .hcta { padding: 60px 0; }
	.habout__img-wrap { height: 320px; }
	.habout__chip { left: 0; }

	.hcta__card { grid-template-columns: 1fr; padding: 26px 24px; text-align: center; gap: 18px; }
	.hcta__icon { margin: 0 auto; }
	.hcta__btn { justify-self: center; }

	.hstats { padding: 50px 0; }
	.hstat__num { font-size: 2.2rem; }
	.who__visual.r {
    order: 2;
}
}

/* ===============================================================
OUR COMMITMENT (dark Ã‚Â· split)
=============================================================== */
.commit {
	background: var(--dark);
	color: rgba(255,255,255,.78);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
	border-radius: var(--r-xl);
	margin: 70px var(--gutter);
}
.commit::before {
	content: '';
	position: absolute;
	width: 420px;
	height: 420px;
	background: rgba(1,73,221,.18);
	border-radius: 50%;
	filter: blur(120px);
	top: -120px;
	right: -120px;
	pointer-events: none;
}
.commit__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 56px;
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.commit__eyebrow {
	display: inline-block;
	color: rgba(255,255,255,.65);
	font-size: 11px;
	letter-spacing: .22em;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.commit__title {
	font-family: var(--sans);
	font-weight: 700;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	line-height: 1.2;
	letter-spacing: -.02em;
	color: #fff;
	margin-bottom: 20px;
}
.commit__title em {
	font-style: normal;
	color: var(--primary-l);
	font-weight: 700;
}
.commit__lead {
	color: rgba(255,255,255,.72);
	font-size: 14.5px;
	line-height: 1.75;
	margin-bottom: 26px;
}
.commit__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}
.commit__list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: rgba(255,255,255,.86);
	font-weight: 500;
}
.commit__list li i {
	color: var(--primary-l);
	font-size: 16px;
	flex-shrink: 0;
}

.commit__right {
	position: relative;
	height: 360px;
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: 0 24px 48px rgba(0,0,0,.4);
}
.commit__img {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

/* ===============================================================
BURTON DIFFERENCE CTA BANNER
=============================================================== */
.bdcta {
	padding: 0 var(--gutter) 80px;
}
.bdcta__inner {
	max-width: 1200px;
	margin: 0 auto;
	background: linear-gradient(120deg, var(--primary) 0%, #1B5DE3 100%);
	border-radius: var(--r-xl);
	padding: 28px 36px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 28px;
	align-items: center;
	box-shadow: 0 24px 50px rgba(1,73,221,.30);
	position: relative;
	overflow: hidden;
}
.bdcta__inner::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 0% 0%, rgba(255,255,255,.15) 0%, transparent 40%),
		radial-gradient(circle at 100% 100%, rgba(255,255,255,.08) 0%, transparent 50%);
	pointer-events: none;
}
.bdcta__icon {
	width: 66px;
	height: 66px;
	border-radius: 50%;
	background: rgba(255,255,255,.16);
	border: 1px solid rgba(255,255,255,.25);
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 22px;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}
.bdcta__content { color: #fff; position: relative; z-index: 1; }
.bdcta__title {
	font-size: clamp(1.05rem, 1.6vw, 1.4rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	letter-spacing: -.01em;
	margin-bottom: 4px;
}
.bdcta__lead {
	color: rgba(255,255,255,.85);
	font-size: 13.5px;
	line-height: 1.5;
}
.bdcta__btn {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	background: #fff;
	color: var(--ink);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: 12px 12px 12px 22px;
	border-radius: var(--r-pill);
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}
.bdcta__btn-arr {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 11px;
	transition: background .3s var(--ease);
}
.bdcta__btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.bdcta__btn:hover .bdcta__btn-arr { background: var(--primary-d); }

/* ===============================================================
ABOUT PAGE Ã¢â‚¬â€ RESPONSIVE
=============================================================== */
@media (max-width: 1100px) {
	.ahero { padding: 120px 0 60px; }
	.ahero__inner { grid-template-columns: 1fr; gap: 36px; }
	.ahero__right { height: 280px; }
	.ahero__panel { border-radius: var(--r-xl); inset: 0; }

	.who__inner { grid-template-columns: 1fr; gap: 48px; }
	.who__img-frame { height: 380px; max-width: 560px; margin: 0 auto; }

	.mvalues__inner { grid-template-columns: 1fr; gap: 36px; }

	.commit { margin: 56px var(--gutter); }
	.commit__inner { grid-template-columns: 1fr; gap: 40px; padding: 0 36px; }
	.commit__right { height: 300px; }

	.bdcta__inner { grid-template-columns: auto 1fr; gap: 22px; padding: 24px 28px; }
	.bdcta__btn { grid-column: 1 / -1; justify-self: stretch; justify-content: space-between; }
}

@media (max-width: 640px) {
	.ahero { padding: 100px 0 48px; }
	.ahero__title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
	.ahero__right { height: 220px; }
	.ahero__panel { border-radius: var(--r-lg); }

	.who { padding: 60px 0; }
	.who__stats { grid-template-columns: 1fr 1fr; gap: 22px; }
	.who__img-frame { height: 320px; }

	.mvalues { padding: 60px 0; }
	.mvalues__grid { grid-template-columns: 1fr; gap: 22px; }
	.vcard:nth-child(odd) { border-right: 0; padding-right: 0; }

	.commit { margin: 40px var(--gutter); padding: 60px 0; border-radius: var(--r-lg); }
	.commit__inner { padding: 0 24px; gap: 32px; }
	.commit__right { height: 240px; }

	.bdcta { padding: 0 var(--gutter) 60px; }
	.bdcta__inner { padding: 22px; gap: 16px; grid-template-columns: 1fr; text-align: center; }
	.bdcta__icon { margin: 0 auto; }
	.bdcta__btn { justify-self: center; width: 100%; max-width: 280px; }
}

/* ===============================================================
404 PAGE
=============================================================== */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	word-wrap: normal !important;
}

.e404 {
	position: relative;
	min-height: calc(100vh - 80px);
	padding: 140px 0 80px;
	overflow: hidden;
	background:
		radial-gradient(120% 80% at 100% 0%, #EAF0FF 0%, transparent 55%),
		linear-gradient(180deg, #F3F7FF 0%, #FFFFFF 52%);
}

.e404__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.e404__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	opacity: .55;
}

.e404__orb--a {
	width: 420px;
	height: 420px;
	top: -140px;
	right: -80px;
	background: var(--primary-tn);
}

.e404__orb--b {
	width: 300px;
	height: 300px;
	bottom: -60px;
	left: -60px;
	background: rgba(1, 73, 221, .12);
}

.e404__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(1, 73, 221, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(1, 73, 221, .04) 1px, transparent 1px);
	background-size: 40px 40px;
	mask-image: radial-gradient(ellipse at 30% 40%, #000 20%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse at 30% 40%, #000 20%, transparent 75%);
}

.e404__inner {
	position: relative;
	z-index: 1;
}

.e404__code {
	font-size: clamp(4.5rem, 12vw, 7.5rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.04em;
	color: var(--primary);
	opacity: .15;
	margin-bottom: -.35em;
	user-select: none;
}

.e404__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .12em;
	color: var(--primary);
	text-transform: uppercase;
	padding: 5px 12px;
	background: var(--primary-tn);
	border-radius: var(--r-pill);
	margin-bottom: 18px;
}

.e404__eyebrow::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--primary);
}

.e404__title {
	font-weight: 800;
	font-size: clamp(1.85rem, 4vw, 2.75rem);
	line-height: 1.12;
	letter-spacing: -.025em;
	color: var(--ink);
	margin-bottom: 18px;
}

.e404__title em {
	font-style: normal;
	color: var(--primary);
}

.e404__lead {
	color: var(--muted);
	font-size: clamp(14.5px, 1.8vw, 16px);
	line-height: 1.7;
	max-width: 520px;
	margin-bottom: 28px;
}

.e404__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
}

.e404 .btn--outline {
	background: transparent;
	color: var(--ink);
	border: 1px solid var(--line);
	box-shadow: none;
}

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

.e404__search {
	display: flex;
	align-items: stretch;
	max-width: 480px;
	margin-bottom: 28px;
	border: 1px solid var(--line);
	border-radius: var(--r-pill);
	background: #fff;
	box-shadow: var(--e1);
	overflow: hidden;
	transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.e404__search:focus-within {
	border-color: var(--primary-tn-2);
	box-shadow: var(--e2), 0 0 0 3px rgba(1, 73, 221, .1);
}

.e404__search input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	padding: 14px 18px;
	font-size: 14px;
	outline: none;
}

.e404__search input::placeholder { color: var(--muted-2); }

.e404__search-btn {
	width: 48px;
	flex-shrink: 0;
	display: grid;
	place-items: center;
	background: var(--primary);
	color: #fff;
	transition: background .25s var(--ease);
}

.e404__search-btn:hover { background: var(--primary-d); }

.e404__links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	font-size: 13.5px;
	font-weight: 500;
}

.e404__links a {
	color: var(--muted);
	transition: color .25s var(--ease);
}

.e404__links a:hover { color: var(--primary); }

.e404__visual {
	position: relative;
	min-height: 380px;
	margin-top: 20px;
}

.e404__card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	box-shadow: var(--e3);
}

.e404__card--main {
	position: relative;
	z-index: 2;
	padding: 36px 32px;
	max-width: 340px;
	margin: 40px auto 0;
	text-align: center;
	background: linear-gradient(145deg, var(--dark) 0%, var(--dark-2) 100%);
	border-color: rgba(255,255,255,.08);
	color: #fff;
}

.e404__icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(1, 73, 221, .25);
	border: 1px solid rgba(58, 111, 230, .4);
	color: var(--primary-l);
	display: grid;
	place-items: center;
	font-size: 24px;
	margin: 0 auto 18px;
}

.e404__card-title {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 6px;
	color: #fff;
}

.e404__card-text {
	font-size: 13px;
	color: rgba(255,255,255,.72);
}

.e404__card--float {
	position: absolute;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--ink);
	z-index: 3;
	animation: e404-float 4s ease-in-out infinite alternate;
}

.e404__card--float i {
	color: var(--primary);
	font-size: 15px;
}

.e404__card--one {
	top: 18%;
	right: 0;
	animation-delay: 0s;
}

.e404__card--two {
	bottom: 12%;
	left: 0;
	animation-delay: 1.2s;
}

@keyframes e404-float {
	from { transform: translateY(0); }
	to { transform: translateY(-10px); }
}

@media (max-width: 991.98px) {
	.e404 { padding: 120px 0 64px; }

	.e404__visual {
		min-height: 320px;
		max-width: 420px;
		margin: 0 auto;
	}

	.e404__card--one { right: 4%; }
	.e404__card--two { left: 4%; }
}

@media (max-width: 767.98px) {
	.e404 { padding: 110px 0 56px; }

	.e404__inner > .row > .col-lg-6:first-child {
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.e404__code {
		font-size: clamp(3.5rem, 18vw, 5rem);
		margin-bottom: -.2em;
		width: 100%;
		text-align: center;
	}

	.e404__lead {
		max-width: none;
		margin-left: auto;
		margin-right: auto;
	}

	.e404__actions {
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.e404__actions .btn {
		width: 100%;
		max-width: 320px;
		white-space: normal;
	}

	.e404__search {
		max-width: none;
		width: 100%;
	}

	.e404__links {
		justify-content: center;
		width: 100%;
	}

	.e404__visual {
		min-height: 280px;
		margin-top: 36px;
	}

	.e404__card--main {
		padding: 28px 24px;
		max-width: 100%;
		margin-top: 20px;
	}

	.e404__card--float {
		padding: 10px 14px;
		font-size: 11.5px;
	}

	.e404__card--one { top: 8%; right: 0; }
	.e404__card--two { bottom: 6%; left: 0; }
}

@media (max-width: 479.98px) {
	.e404 { padding: 100px 0 48px; }

	.e404__orb--a {
		width: 260px;
		height: 260px;
	}

	.e404__visual { min-height: 240px; }

	.e404__card--float span { display: none; }

	.e404__card--float {
		padding: 10px;
		border-radius: var(--r-sm);
	}
}

@media (prefers-reduced-motion: reduce) {
	.e404__card--float { animation: none; }
}

/* ===============================================================
REVEAL ANIMATIONS
=============================================================== */
.r {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.r.in { opacity: 1; transform: translateY(0); }
.r.d1 { transition-delay: .08s; }
.r.d2 { transition-delay: .16s; }
.r.d3 { transition-delay: .24s; }
.r.d4 { transition-delay: .32s; }
.r.d5 { transition-delay: .40s; }
.r.d6 { transition-delay: .48s; }

/* ===============================================================
RESPONSIVE
=============================================================== */
@media (max-width: 1180px) {
	.nav__link { padding: 26px 12px; font-size: 12.5px; letter-spacing: .10em; }
	.header__main-inner { gap: 16px; }
	.header-cta { padding: 11px 22px; font-size: 12px; letter-spacing: .10em; }
}

@media (max-width: 1024px) {
	.nav { display: none; }
	.hamburger { display: flex; }
	.header__main-inner { height: 70px; }
	.header__top-inner { padding: 9px var(--gutter); gap: 14px; }
	.header__contacts { gap: 16px; }
	.header__contact-link { font-size: 12px; }
}

@media (max-width: 780px) {
	.header__contacts .header__contact-link:nth-child(n+2) { display: none; }
	.header__socials a:nth-child(n+3) { display: none; }
	.header-cta { display: none; }
}

@media (max-width: 520px) {
	.header__socials { display: none; }
	.header__top-inner { justify-content: center; }
	.header__contacts { gap: 14px; }
}

@media (max-width: 980px) {
	.hero { min-height: 78vh; padding: 70px 0 80px; }
	.hero__stats { grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 480px; }

	.features { padding: 80px 0; }
	.features__head { margin-bottom: 56px; }
	.features__grid { grid-template-columns: 1fr 1fr; gap: 44px 32px; }

	.about__inner { grid-template-columns: 1fr; gap: 48px; }
	.about__visual { height: 460px; max-width: 540px; }

	.services__grid { grid-template-columns: 1fr 1fr; }

	.why__inner { grid-template-columns: 1fr; gap: 48px; }
	.why__right { height: 380px; }

	.contact__inner { grid-template-columns: 1fr; gap: 40px; }

	.footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
	:root { --gutter: 14px; }

	.header__main-inner { height: 64px; gap: 12px; }
	.brand__mark { width: 38px; height: 38px; border-radius: 9px; font-size: 20px; }
	.brand__name { font-size: 15px; }
	.brand__sub { font-size: 9px; letter-spacing: .16em; }
	.hamburger { width: 42px; height: 42px; border-radius: 11px; }
	.footer .brand__logo { height: 44px; max-width: 200px; }
	body.single-service .header { padding-top: 0; }

	.hero { min-height: 72vh; padding: 56px 0 60px; }
	.hero__title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
	.hero__lead { font-size: 14.5px; margin-bottom: 28px; }
	.hero__eyebrow { font-size: 10.5px; letter-spacing: .2em; }
	.hero__ring { width: 320px; height: 320px; top: 60px; right: -100px; }
	.hero__dots { display: none; }
	.hero__scroll { display: none; }
	.hero__stats { grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 44px; padding-top: 28px; }
	.hero__stat-num { font-size: 24px; }
	.hero__stat-lbl { font-size: 10px; }

	.features { padding: 60px 0; }
	.features__head { margin-bottom: 44px; }
	.features__grid { grid-template-columns: 1fr; gap: 36px; }

	.about, .services, .why, .cta, .partners, .certs, .contact { padding: 60px 0; }

	.about__points { grid-template-columns: 1fr; }

	.services__grid { grid-template-columns: 1fr; }

	.why__list li { padding: 14px 16px; }

	.contact__form { padding: 32px 24px; }
	.field-row { grid-template-columns: 1fr; }

	.footer__top { grid-template-columns: 1fr; gap: 32px; }
	.footer__bottom { flex-direction: column; text-align: center; }

	.scroll-top { bottom: 18px; right: 18px; width: 42px; height: 42px; }

	.cert { width: 280px; }
	.partner { min-width: 200px; padding: 14px 22px; }
}
a.brand.brand--has-logo.brand--logo-only img {
	width: 105px;
	height: auto;
}
/* ============================================================
Burton Logistics Ã¢â‚¬â€ Service Single Page CSS
Sections: Overview Ã‚Â· Mosaic Ã‚Â· Process Ã‚Â· Coverage Ã‚Â·
Benefits Ã‚Â· FAQ Ã‚Â· Related Ã‚Â· CTA Ã‚Â· Buttons
Colors use brand variables Ã¢â‚¬â€ add to :root or wp-custom-css
Primary: #0149DD Ã‚Â· Dark: #0136B0 Ã‚Â· Light: #3A6FE6
Tint: #E7EFFF Ã‚Â· Tint-2: #D4DFFB
============================================================ */

/* Ã¢â€â‚¬Ã¢â€â‚¬ TOKENS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
:root {
	--primary:      #0149DD;
	--primary-d:    #0136B0;
	--primary-l:    #3A6FE6;
	--primary-tn:   #E7EFFF;
	--primary-tn-2: #D4DFFB;

	--ink:          #0D1B2A;
	--ink-soft:     #1A2E42;
	--slate:        #2D4057;
	--frost:        #EEF4FB;
	--muted:        #7A94AA;
	--white:        #FFFFFF;
	--text:         #1E293B;
	--text-light:   #4A6278;
	--border:       #D1DFED;

	--font-disp:    'Barlow Condensed', sans-serif;
	--font-body:    'Plus Jakarta Sans', sans-serif;

	--radius:       3px;
	--radius-lg:    8px;
	--tr:           0.25s ease;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ SHARED: EYEBROW Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.ssvc-eyebrow {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--primary);
	background: rgba(1, 73, 221, 0.07);
	padding: 0.3rem 0.8rem;
	border-radius: 2px;
	margin-bottom: 1rem;
}
.ssvc-eyebrow--light {
	color: rgba(1, 73, 221, 0.85);
	background: rgba(1, 73, 221, 0.15);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ SHARED: SECTION TITLES Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.ssvc-lead__title,
.ssvc-lead__title.mb-0 {
	font-family: var(--font-disp);
	font-size: clamp(2rem, 4.5vw, 3.1rem);
	font-weight: 800;
	line-height: 1.04;
	color: var(--ink);
	margin-bottom: 1.5rem;
}
.ssvc-lead__title em { font-style: italic; color: var(--primary); }
.ssvc-lead__title.mb-0 { margin-bottom: 0; }

.ssvc-process__title {
	font-family: var(--font-disp);
	font-size: clamp(2rem, 4.5vw, 3.1rem);
	font-weight: 800;
	line-height: 1.04;
	color: var(--white);
	margin-bottom: 1.5rem;
}
.ssvc-process__title em { font-style: italic; color: rgba(1,73,221,0.75); }
.ssvc-process__title.mb-0 { margin-bottom: 0; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ SHARED: PROSE Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.ssvc-prose {
	font-size: 0.975rem;
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 0;
}
.ssvc-prose.mb-4 { margin-bottom: 1.5rem !important; }
.ssvc-prose.mb-3 { margin-bottom: 1rem !important; }
.ssvc-prose.mb-0 { margin-bottom: 0 !important; }
.ssvc-prose--light { color: rgba(255, 255, 255, 0.6); }
.ssvc-prose--sm { font-size: 0.875rem; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ SHARED: TAGS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.ssvc-lead__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.ssvc-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--slate);
	background: var(--primary-tn);
	border: 1px solid var(--primary-tn-2);
	padding: 0.35rem 0.85rem;
	border-radius: 50px;
}
.ssvc-tag::before {
	content: '\2713';
	color: var(--primary);
	font-size: 0.62rem;
}


.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.65rem;
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	border-radius: var(--radius);
	cursor: pointer;
	transition: background var(--tr), border-color var(--tr), color var(--tr);
	border: 2px solid transparent;
	white-space: nowrap;
	text-decoration: none;
}
.btn--primary {
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}
.btn--primary:hover {
	background: var(--primary-d);
	border-color: var(--primary-d);
	color: var(--white);
}
.btn--outline {
	background: transparent;
	color: var(--primary);
	border-color: var(--primary);
}
.btn--outline:hover {
	background: var(--primary);
	color: var(--white);
}
.btn--ghost-light {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.3);
}
.btn--ghost-light:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.55);
}
.btn__arr {
	font-size: 0.72rem;
	transition: transform 0.2s ease;
}
.btn:hover .btn__arr { transform: translateX(3px); }

/* ============================================================
1. OVERVIEW / LEAD
============================================================ */
.ssvc-lead {
	padding-block: 90px;
	background: var(--white);
}

/* Metrics 2Ãƒâ€”2 grid */
.ssvc-lead__metrics {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px;
	background: var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(1, 73, 221, 0.06);
}
.ssvc-metric {
	background: var(--white);
	padding: 2.25rem 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.ssvc-metric__val {
	font-family: var(--font-disp);
	font-size: clamp(1.9rem, 3.5vw, 2.65rem);
	font-weight: 800;
	color: var(--ink);
	line-height: 1;
}
.ssvc-metric__lbl {
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--muted);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* ============================================================
2. MOSAIC / CAPABILITIES
============================================================ */
.ssvc-mosaic {
	padding-block: 90px;
	background: var(--frost);
}
.ssvc-mosaic__grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 1rem;
	min-height: 520px;
}
.ssvc-mosaic__panel {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.ssvc-mosaic__panel--primary {
	grid-row: span 2;
	background: linear-gradient(155deg, #0d2a5e 0%, #071638 60%, var(--ink) 100%);
}
.ssvc-mosaic__panel--secondary:nth-child(2) {
	background: linear-gradient(135deg, #0f2b55 0%, #071228 100%);
}
.ssvc-mosaic__panel--secondary:nth-child(3) {
	background: linear-gradient(135deg, #0a2045 0%, #060f22 100%);
}

/* decorative large icon behind content */
.ssvc-mosaic__panel::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(4, 12, 28, 0.95) 30%,
		rgba(4, 12, 28, 0.15) 100%
	);
	pointer-events: none;
}
.ssvc-mosaic__panel--primary::after {
	content: '\f0fa'; /* fa-truck-medical unicode */
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	top: 50%;
	right: 1.5rem;
	transform: translateY(-50%);
	font-size: 8rem;
	color: rgba(255, 255, 255, 0.04);
	pointer-events: none;
}
.ssvc-mosaic__body {
	position: relative;
	z-index: 2;
	padding: 2rem;
}
.ssvc-mosaic__label {
	display: inline-block;
	font-size: 0.63rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--primary-l);
	background: rgba(1, 73, 221, 0.2);
	padding: 0.22rem 0.65rem;
	border-radius: 2px;
	margin-bottom: 0.75rem;
}
.ssvc-mosaic__title {
	font-family: var(--font-disp);
	font-weight: 700;
	color: var(--white);
	line-height: 1.15;
	margin-bottom: 0.65rem;
}
.ssvc-mosaic__panel--primary .ssvc-mosaic__title { font-size: 2rem; }
.ssvc-mosaic__panel--secondary .ssvc-mosaic__title { font-size: 1.45rem; }
.ssvc-mosaic__desc {
	font-size: 0.87rem;
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.65;
}

/* ============================================================
3. PROCESS
============================================================ */
.ssvc-process {
	padding-block: 90px;
	background: var(--ink);
	position: relative;
	overflow: hidden;
}
.ssvc-process::before {
	content: '';
	position: absolute;
	top: -160px;
	right: -160px;
	width: 480px;
	height: 480px;
	background: radial-gradient(circle, rgba(1, 73, 221, 0.08) 0%, transparent 70%);
	pointer-events: none;
}
.ssvc-process__steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	position: relative;
}
.ssvc-process__connector {
	position: absolute;
	top: 1.5rem;
	left: calc(12.5% - 1px);
	right: calc(12.5% - 1px);
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
	z-index: 0;
	overflow: hidden;
}
.ssvc-process__connector::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--primary) 0%, rgba(1,73,221,0) 100%);
	transform-origin: left;
	transform: scaleX(0);
	animation: blg-connector 2.2s ease 0.8s forwards;
}
@keyframes blg-connector { to { transform: scaleX(1); } }

.ssvc-step {
	position: relative;
	z-index: 1;
}
.ssvc-step__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: var(--slate);
	border: 2px solid rgba(255, 255, 255, 0.1);
	font-family: var(--font-disp);
	font-size: 1rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 1.5rem;
}
.ssvc-step:first-child .ssvc-step__num {
	background: var(--primary);
	border-color: var(--primary);
}
.ssvc-step__title {
	font-family: var(--font-disp);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 0.65rem;
	letter-spacing: 0.01em;
}
.ssvc-step__desc {
	font-size: 0.86rem;
	color: rgba(255, 255, 255, 0.52);
	line-height: 1.72;
}

/* ============================================================
4. COVERAGE
============================================================ */
.ssvc-coverage {
	padding-block: 90px;
	background: var(--white);
}
.ssvc-coverage__cta {
	margin-top: 2.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid var(--border);
}
.ssvc-region {
	background: var(--frost);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	height: 100%;
	transition: border-color var(--tr), box-shadow var(--tr);
}
.ssvc-region:hover {
	border-color: rgba(1, 73, 221, 0.25);
	box-shadow: 0 4px 16px rgba(1, 73, 221, 0.07);
}
.ssvc-region__name {
	font-family: var(--font-disp);
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
	padding-bottom: 0.65rem;
	border-bottom: 1px solid var(--border);
}
.ssvc-region__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}
.ssvc-region__list li {
	font-size: 0.84rem;
	color: var(--text-light);
	display: flex;
	align-items: center;
	gap: 0.55rem;
	padding-block: 0.18rem;
}
.ssvc-region__list li::before {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--primary);
	flex-shrink: 0;
}

/* ============================================================
5. BENEFITS
============================================================ */
.ssvc-benefits {
	padding-block: 90px;
	background: var(--primary-tn);
}
.ssvc-benefits__head {
	max-width: 560px;
	margin-inline: auto;
	margin-bottom: 3.5rem;
}
.ssvc-feature {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 2rem;
	border: 1px solid var(--primary-tn-2);
	height: 100%;
	transition: box-shadow var(--tr), transform var(--tr);
}
.ssvc-feature:hover {
	box-shadow: 0 8px 24px rgba(1, 73, 221, 0.09);
	transform: translateY(-2px);
}
.ssvc-feature__ico {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.9rem;
	height: 2.9rem;
	background: rgba(1, 73, 221, 0.08);
	border-radius: var(--radius-lg);
	font-size: 1.1rem;
	color: var(--primary);
	margin-bottom: 1.2rem;
}
.ssvc-feature h4 {
	font-family: var(--font-disp);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: 0.02em;
	margin-bottom: 0.6rem;
}
.ssvc-feature p {
	font-size: 0.875rem;
	color: var(--text-light);
	line-height: 1.72;
	margin: 0;
}

/* ============================================================
6. FAQ
============================================================ */
.ssvc-faq {
	padding-block: 90px;
	background: var(--white);
}
.ssvc-faq__head {
	max-width: 480px;
	margin-inline: auto;
	margin-bottom: 3.5rem;
}
.ssvc-faq__list {
	max-width: 760px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.faq__item {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: border-color var(--tr);
}
.faq__item[open] {
	border-color: rgba(1, 73, 221, 0.3);
}
.faq__q {
	padding: 1.3rem 1.5rem;
	cursor: pointer;
	font-family: var(--font-disp);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: 0.01em;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	user-select: none;
	background: var(--white);
	transition: color var(--tr), background var(--tr);
	margin: 0;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__item[open] .faq__q {
	color: var(--primary);
	background: rgba(1, 73, 221, 0.02);
}
.faq__q::after {
	content: '+';
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--muted);
	line-height: 1;
	flex-shrink: 0;
}
.faq__item[open] .faq__q::after {
	content: 'Ã¢Ë†â€™';
	color: var(--primary);
}
.faq__a {
	padding: 0 1.5rem 1.3rem;
	background: var(--white);
}
.faq__a p {
	font-size: 0.9rem;
	color: var(--text-light);
	line-height: 1.78;
	margin: 0;
}


/* ============================================================
RESPONSIVE
============================================================ */
@media (max-width: 991px) {
	.ssvc-lead,
	.ssvc-mosaic,
	.ssvc-process,
	.ssvc-coverage,
	.ssvc-benefits,
	.ssvc-faq,
	.ssvc-related,
	.hcta { padding-block: 64px; }

	.ssvc-mosaic__grid {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	.ssvc-mosaic__panel--primary {
		grid-row: auto;
		min-height: 320px;
	}
	.ssvc-mosaic__panel--secondary { min-height: 200px; }

	.ssvc-process__steps  { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
	.ssvc-process__connector { display: none; }
}

@media (max-width: 640px) {
	.ssvc-lead,
	.ssvc-mosaic,
	.ssvc-process,
	.ssvc-coverage,
	.ssvc-benefits,
	.ssvc-faq,
	.ssvc-related,
	.hcta { padding-block: 48px; }

	.ssvc-process__steps  { grid-template-columns: 1fr; }
	.ssvc-lead__metrics   { grid-template-columns: 1fr 1fr; }
	.hcta__card {
		flex-direction: column;
		text-align: center;
		padding: 2rem 1.5rem;
		gap: 1.5rem;
	}
	.ssvc-faq__list,
	.ssvc-faq__head { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	.ssvc-process__connector::after { animation: none; transform: scaleX(1); }
}
.phero {
	position: relative;
	padding: 100px 0 90px;
	background:
		linear-gradient(160deg, #0B1F3A 0%, #071427 100%);
	overflow: hidden;
	margin-bottom: 60px;
}

.phero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(90% 70% at 10% 0%, #2A4D7A 0%, transparent 55%),
		radial-gradient(60% 60% at 90% 100%, #17304F 0%, transparent 60%);
	pointer-events: none;
}

.phero::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
}

h1.phero__title {
	color: white
}
.hhero__metric-icon svg {
    width: 40px;
    margin-bottom: 20px;
    color: #0149DD;
}

.hhero__metric {
    justify-content: center;
    align-items: center
}
.hhero__slide-bg {
    background-image: var(--bg-desktop);
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .hhero__slide-bg {
        background-image: var(--bg-mobile);
		background-position-y: -3px !important;
    }
	.hhero__slide-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
	.hhero__metric-value{
		font-size: 18px;
	}
	.hhero__metric-icon svg{
		width: 30px
	}
	.footer__pattern::before{
		content: ""
	}
}
@media (max-width: 767px) {
	.silde_1 .hhero__metrics,
	.silde_2 .hhero__metrics {
		display: none;
	}
	.hhero__left{
	gap: 35px;
}
	@media (max-width: 768px) {
    .hhero__slide-bg {
        background-image: var(--bg-mobile);
        background-position-y: -3px;
    }
}
@media (max-width: 767px) {
    .silde_2 .hhero__slide-bg {
        background-position: top center !important;
    }
}
}
.hhero__metrics{
	display:none
}
.hhero__left {
	display: flex;
	flex-direction:column;
	gap: 25px;
	justify-content: center;
}
.header {
    position: relative; /* initial state - normal flow me */
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    transition: box-shadow .35s var(--ease), background .35s var(--ease);
}

.header.is-sticky {
    position: fixed;
    /* yahan aap background, shadow, ya padding change kar sakte hain */
}

/* agar header ka height fixed hone ke baad content jump kare to spacer use karein */
.header-spacer {
    display: none;
}

.header.is-sticky ~ .header-spacer,
body.header-sticky .header-spacer {
    display: block;
}
@media (max-width: 768px) {
	.hhero__slide-bg,
	.swiper-slide-active .hhero__slide-bg {
		transform: none;
		transition: none;
	}
}
@media (max-width: 767px) {
	.hhero__left{
	gap: 35px;
}
}
@media (max-width: 767px) {
  .hhero__slide-inner {
    padding-top: 36px;   /* heading ko upar le aaye */
    padding-bottom: 28px;
  }

  .hhero__title {
    margin-bottom: 100px;  /* heading ke baad extra distance - ye .hhero__left ka 25px gap ke ऊपर add hoga */
  }
}