/* ==========================================================================
   Terra Elevators — Main Stylesheet
   One CSS file, no inline styles anywhere in templates.
   ========================================================================== */

@font-face {
	font-family: 'Terra';
	src: url('../font/Terra%20Fonts.ttf') format('truetype');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

/* Force the Terra brand font everywhere — overrides any inherited font-family. */
html, body, button, input, select, textarea,
h1, h2, h3, h4, h5, h6, p, a, span, li, label, blockquote, small, strong, em, code, pre {
	font-family: 'Terra', system-ui, -apple-system, sans-serif !important;
}

:root {
	/* --- Brand (from logo) --- */
	--primary:       #00ADEE;        /* logo cyan — main brand */
	--primary-dark:  #0089BC;        /* hover / pressed */
	--primary-700:   #006FA0;        /* deep on-primary surfaces */
	--primary-light: #E6F7FD;        /* tinted surfaces, card bg */
	--white:         #FFFFFF;

	/* --- Supporting neutrals (derived from primary, not competing with it) --- */
	--navy:          #1e1e1e;        /* deep dark for contrast text on white */
	--navy-700:      #081A30;        /* darker surface (footer / hero bg) */
	--text:          #0F2643;        /* body text */
	--grey:          #5B6B7A;
	--grey-light:    #F4F8FB;
	--border:        #DDE6EE;

	/* --- Accents (used sparingly, for specific affordances) --- */
	--red:           #E0322D;        /* Call-now only */
	--red-dark:      #B7231E;
	--green:         #25D366;        /* WhatsApp brand (do not change) */
	--green-dark:    #1FB557;

	/* Legacy aliases (kept so existing classes keep working) */
	--sky:           var(--primary);
	--sky-light:     var(--primary-light);

	--radius-sm:     6px;
	--radius-md:     10px;
	--radius-lg:     16px;
	--shadow-sm:     0 2px 6px rgba(0,52,80,.06);
	--shadow-md:     0 6px 20px rgba(0,52,80,.10);
	--shadow-lg:     0 14px 36px rgba(0,52,80,.14);
	--font-head:     'Terra', system-ui, -apple-system, sans-serif;
	--font-body:     'Terra', system-ui, -apple-system, sans-serif;
	--container:     1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: clip;
}
html { overflow-x: clip; }

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

a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-head);
	color: var(--navy);
	line-height: 1.2;
	margin: 0 0 .6em;
	font-weight: 800;
}

h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.4rem; }
p  { margin: 0 0 1em; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
	overflow: hidden;
}

.skip-link {
	position: absolute; top: -40px; left: 0;
	background: var(--navy); color: var(--white);
	padding: 8px 16px; z-index: 9999;
}
.skip-link:focus { top: 0; color: var(--white); }

/* Layout ================================================================== */
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}
.container--narrow { max-width: 820px; }

.section         { padding: 80px 0; }
.section--grey   { background: var(--grey-light); }
.section--sky    { background: var(--sky-light); }

/* Tighter rhythm on mobile — sections breathe at half the desktop padding */
@media (max-width: 720px) {
	.section { padding: 40px 0; }
	.section-head { margin-bottom: 28px; }
	.cta-section { padding: 56px 0; }
	.testimonials-pro { padding: 56px 0; }
	.footer { padding: 48px 0 22px; }
	h1 { font-size: clamp(1.6rem, 6vw, 2.1rem); line-height: 1.18; }
	h2 { font-size: clamp(1.45rem, 5vw, 1.85rem); line-height: 1.2; }
	.section-subtitle { font-size: .92rem; }
	.container { padding: 0 18px; }
}

.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-subtitle { color: var(--grey); max-width: 680px; margin: 0 auto; }

.section-label {
	display: inline-block;
	font-family: var(--font-head);
	font-size: .78rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 12px;
}
.section-label--sky { color: var(--primary); }

.mt-24 { margin-top: 24px; }
.mt-lg { margin-top: 24px; }

/* Grids =================================================================== */
.grid-2, .grid-3, .grid-4, .grid-5 {
	display: grid;
	gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 64px; align-items: center; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1024px) {
	.grid-2 { grid-template-columns: 1fr; gap: 40px; }
	.grid-4 { grid-template-columns: repeat(3, 1fr); }
	.grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
	.grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}

/* Buttons ================================================================= */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: var(--radius-md);
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .92rem;
	letter-spacing: .01em;
	line-height: 1;
	border: 2px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 9px 16px; font-size: .85rem; }
.btn-lg { padding: 15px 28px; font-size: 1rem; }

.btn-primary       { background: var(--primary);      color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); border-color: var(--primary-dark); }

.btn-secondary       { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-secondary:hover { background: var(--primary); color: var(--white); }

.btn-navy       { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-700); color: var(--white); border-color: var(--navy-700); }

.btn-red       { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); color: var(--white); border-color: var(--red-dark); }

.btn-green       { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }

.btn-outline-white       { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-group--center { justify-content: center; }

/* Navbar ================================================================== */
.navbar {
	position: sticky; top: 0;
	z-index: 100;
	background: rgba(255,255,255,.96);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	box-shadow: 0 4px 22px rgba(11,26,53,.05);
}
.nav-wrap {
	display: flex; align-items: center; justify-content: space-between;
	gap: 24px;
	width: 100%;
	padding: 12px clamp(20px, 3vw, 56px);
}

.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img, .nav-logo-img { height: 48px; width: auto; max-width: 180px; object-fit: contain; border-radius:3px; }
.footer-logo-img { height: 48px; width: auto; max-width: 180px; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text .brand { font-family: var(--font-head); font-weight: 900; color: var(--navy); font-size: 1.05rem; letter-spacing: .04em; line-height: 1.1; }
.nav-logo-text .tagline { font-size: .7rem; color: var(--grey); text-transform: uppercase; letter-spacing: .08em; }

.nav-main {
	flex: 1;
	display: flex;
	justify-content: center;
}
.nav-links {
	list-style: none; padding: 0; margin: 0;
	display: flex; gap: 28px; align-items: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 12px 0;
	font-family: var(--font-head);
	font-weight: 600; font-size: .92rem;
	color: var(--navy);
	text-decoration: none;
	transition: color .25s ease;
}
.nav-links > li > a:hover,
.nav-links > li > a.active,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a { color: var(--primary); }
.has-caret i { font-size: .6rem; transition: transform .25s ease; }
.nav-links > li:hover .has-caret i,
.nav-links > li:focus-within .has-caret i { transform: rotate(180deg); color: var(--primary); }

/* Standard dropdown (Services, Cities, Blog) */
.nav-dropdown {
	position: absolute; top: 100%; left: 0;
	min-width: 240px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: 0 18px 40px -10px rgba(11,35,64,.20);
	padding: 10px 0;
	opacity: 0; visibility: hidden;
	transform: translateY(8px);
	transition: opacity .25s ease, transform .25s ease, visibility .25s;
	z-index: 110;
}
.nav-dropdown--scroll { max-height: 360px; overflow-y: auto; }
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
	opacity: 1; visibility: visible; transform: translateY(0);
}

/* Multi-column flat dropdown — auto-applied when a flat list has many items.
   Mirrors the .mega-panel visual (wide white panel) and lays the links out
   in a CSS grid for even distribution. */
.nav-dropdown--cols-2,
.nav-dropdown--cols-3 {
	left: 50%;
	transform: translate(-50%, 8px);
	padding: 20px 22px;
	display: grid;
	gap: 4px 24px;
	border-radius: var(--radius-md);
	box-shadow: 0 24px 50px -8px rgba(11,35,64,.22);
}
.nav-dropdown--cols-2 { grid-template-columns: repeat(2, minmax(160px, 1fr)); min-width: 380px; }
.nav-dropdown--cols-3 { grid-template-columns: repeat(3, minmax(160px, 1fr)); min-width: 560px; }
.has-dropdown:hover .nav-dropdown--cols-2,
.has-dropdown:hover .nav-dropdown--cols-3,
.has-dropdown:focus-within .nav-dropdown--cols-2,
.has-dropdown:focus-within .nav-dropdown--cols-3 {
	transform: translate(-50%, 0);
}
.nav-dropdown--cols-2 a,
.nav-dropdown--cols-3 a {
	padding: 7px 10px;
	border-radius: 6px;
}
.nav-dropdown--cols-2 a:hover,
.nav-dropdown--cols-3 a:hover { padding-left: 14px; }
.nav-dropdown a {
	display: block;
	padding: 9px 22px;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: .9rem;
	color: var(--navy);
	text-decoration: none;
	transition: background .2s ease, color .2s ease, padding-left .2s ease;
}
.nav-dropdown a:hover {
	background: var(--primary-light);
	color: var(--primary-dark);
	padding-left: 28px;
}

/* Mega menu (Elevators) */
.has-mega .mega-panel {
	position: absolute;
	top: 100%; left: 50%;
	transform: translate(-50%, 8px);
	width: min(900px, 92vw);
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: 0 24px 50px -8px rgba(11,35,64,.22);
	padding: 26px 28px;
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
	opacity: 0; visibility: hidden;
	transition: opacity .25s ease, transform .25s ease, visibility .25s;
	z-index: 110;
}
.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel {
	opacity: 1; visibility: visible;
	transform: translate(-50%, 0);
}
.mega-col-title {
	margin: 0 0 12px;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: .76rem;
	color: var(--primary);
	letter-spacing: .14em;
	text-transform: uppercase;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--border);
}
.mega-col ul { list-style: none; padding: 0; margin: 0; }
.mega-col li { margin: 0; }
.mega-col a {
	display: block;
	padding: 8px 0;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: .9rem;
	color: var(--navy);
	text-decoration: none;
	transition: color .2s, padding-left .2s;
}
.mega-col a:hover {
	color: var(--primary);
	padding-left: 6px;
}

/* Long mega list (7+ items, e.g. Elevators): span 2 grid tracks
   and break the items into two balanced columns (6 x 6). */
.mega-panel .mega-col:has(ul > li:nth-child(7)) {
	grid-column: span 2;
}
.mega-col:has(ul > li:nth-child(7)) ul {
	column-count: 2;
	column-gap: 32px;
}
.mega-col:has(ul > li:nth-child(7)) li {
	break-inside: avoid;
}

/* CTA — highlighted */
.nav-cta { display: flex; align-items: center; flex-shrink: 0; }
.nav-cta-btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 11px 22px;
	background: var(--primary);
	color: var(--white);
	border: 0;
	border-radius: 999px;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: .85rem;
	letter-spacing: .02em;
	text-decoration: none;
	box-shadow: 0 8px 22px -6px rgba(0,173,238,.55);
	transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
	white-space: nowrap;
	position: relative;
}
.nav-cta-btn::before {
	content: "";
	position: absolute; inset: -3px;
	border-radius: 999px;
	border: 2px solid rgba(0,173,238,.35);
	animation: navCtaPulse 2.4s ease-out infinite;
	pointer-events: none;
}
@keyframes navCtaPulse {
	0%   { transform: scale(1);    opacity: .6; }
	100% { transform: scale(1.18); opacity: 0;  }
}
.nav-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px -6px rgba(0,173,238,.7);
	color: var(--white);
}
.nav-cta-btn i { font-size: .68rem; transition: transform .25s ease; }
.nav-cta-btn:hover i { transform: translateX(3px); }

.nav-hamburger {
	display: none; background: none; border: 0;
	width: 36px; height: 36px; cursor: pointer;
	flex-direction: column; justify-content: center; gap: 5px; align-items: center;
}
.nav-hamburger span {
	display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px;
}

@media (max-width: 1100px) {
	.nav-main { display: none; }
	.nav-cta  { display: none; }
	.nav-hamburger { display: flex; flex-shrink: 0; }
	.nav-wrap { gap: 12px; padding: 12px clamp(14px, 3vw, 24px); }
	.nav-logo { gap: 8px; min-width: 0; }
	.nav-logo-text { min-width: 0; overflow: hidden; }
	.nav-logo-text .tagline { font-size: .58rem; letter-spacing: .06em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
	.nav-logo-text .brand   { font-size: .92rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
	.nav-logo img, .nav-logo-img { height: 38px; }
}

/* ============================================================
   Compact NAVBAR for laptop scaling — 1025–1366px
   (= 1920×1080 Windows scale 125–150%, plus 1366×768 laptops).
   Shrinks logo, brand text, menu links and CTA so the full
   horizontal nav still fits without wrapping.
   ============================================================ */
@media (min-width: 1101px) and (max-width: 1366px) {
	.nav-wrap { gap: 16px; padding: 8px clamp(16px, 2vw, 28px); }
	.nav-logo { gap: 8px; }
	.nav-logo img, .nav-logo-img { height: 38px; max-width: 140px; }
	.nav-logo-text .brand   { font-size: .88rem; letter-spacing: .03em; }
	.nav-logo-text .tagline { font-size: .58rem; letter-spacing: .06em; }
	.nav-links { gap: 18px; }
	.nav-links > li > a {
		font-size: .8rem;
		padding: 10px 0;
		gap: 4px;
	}
	.has-caret i { font-size: .52rem; }
	.nav-cta-btn {
		padding: 8px 16px;
		font-size: .76rem;
	}
	.nav-cta-btn i { font-size: .62rem; }
	/* Dropdown links also compact for visual consistency */
	.nav-dropdown a { font-size: .82rem; padding: 7px 18px; }
	.nav-dropdown--cols-2 a,
	.nav-dropdown--cols-3 a { font-size: .8rem; padding: 6px 9px; }
	.mega-col a { font-size: .82rem; padding: 6px 0; }
	.mega-col-title { font-size: .68rem; }
}
@media (max-width: 540px) {
	.nav-wrap { padding: 10px 12px; gap: 8px; }
	.nav-logo-text .brand   { font-size: .82rem; letter-spacing: .02em; }
	.nav-logo-text .tagline { font-size: .54rem; }
	.nav-logo img, .nav-logo-img { height: 32px; }
	.nav-hamburger { width: 32px; height: 32px; }
}
@media (max-width: 380px) {
	.nav-logo-text .brand   { font-size: .74rem; }
	/*.nav-logo-text .tagline { display: none; }*/
}

/* Mobile Nav — clean white drawer ======================================= */
.mobile-nav {
	position: fixed; top: 0; right: -100%;
	width: min(340px, 100%); height: 100%;
	background: var(--white);
	color: var(--navy);
	padding: 24px 22px 28px;
	overflow-y: auto;
	z-index: 200;
	box-shadow: -10px 0 40px rgba(0,52,80,.18);
	transition: right .3s ease;
}
.mobile-nav.is-open { right: 0; }

.mobile-nav .m-head {
	display: flex; align-items: center; justify-content: space-between;
	gap: 12px;
	padding-bottom: 16px;
	margin-bottom: 14px;
	border-bottom: 1px solid var(--border);
}
.mobile-nav .m-logo {
	display: flex; align-items: center; gap: 10px;
	text-decoration: none;
	border-bottom: 0;
	padding: 0;
	flex: 1; min-width: 0;
}
.mobile-nav .m-logo-img { height: 40px; width: auto; max-width: 56px; object-fit: contain; flex-shrink: 0; border-radius: 3px; }
.mobile-nav .m-logo-text { display: flex; flex-direction: column; min-width: 0; }
.mobile-nav .m-logo-text .brand {
	font-family: var(--font-head); font-weight: 900;
	color: var(--navy); font-size: .95rem; letter-spacing: .04em; line-height: 1.1;
}
.mobile-nav .m-logo-text .tagline {
	font-family: var(--font-head); font-weight: 600;
	color: var(--primary); font-size: .68rem; letter-spacing: .04em; line-height: 1.3;
}
.mobile-close {
	flex-shrink: 0;
	width: 38px; height: 38px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--white);
	border: 1px solid var(--primary);
	border-radius: 50%;
	color: var(--primary);
	font-size: 1rem;
	cursor: pointer;
	transition: background .25s ease, color .25s ease, transform .25s ease;
}
.mobile-close:hover { background: var(--primary); color: var(--white); transform: rotate(90deg); }

/* Menu — list-styled, no bullets, soft hairlines */
.mobile-nav-menu,
.mobile-nav-menu .sub-menu,
.mobile-nav ul {
	list-style: none !important;
	padding: 0; margin: 0;
	line-height: 1.6;
}
.mobile-nav-menu > li { position: relative; }
.mobile-nav-menu > li > a {
	display: flex; align-items: center; justify-content: space-between;
	padding: 14px 0;
	border-bottom: 1px solid var(--border);
	color: var(--navy);
	font-family: var(--font-head); font-weight: 700;
	font-size: .95rem;
	letter-spacing: .01em;
	text-decoration: none;
	transition: color .25s ease, padding-left .25s ease;
}
.mobile-nav-menu > li > a:hover { color: var(--primary); padding-left: 4px; }

/* Toggle chevron — separate button so the link itself navigates normally */
.mobile-nav-menu .menu-item-has-children {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.mobile-nav-menu .menu-item-has-children > a {
	flex: 1 1 auto;
	min-width: 0;
}
.mobile-nav-menu .menu-item-has-children > a::after { content: none !important; }
.mobile-nav-menu .m-submenu-toggle {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center; justify-content: center;
	width: 36px; height: 36px;
	margin-left: 8px;
	padding: 0;
	background: rgba(0,173,238,.12);
	border: 1px solid rgba(0,173,238,.32);
	border-radius: 50%;
	color: var(--primary);
	font-size: .82rem;
	cursor: pointer;
	transition: transform .35s cubic-bezier(.2,.8,.2,1), background .25s ease, color .25s ease, border-color .25s ease;
}
.mobile-nav-menu .m-submenu-toggle:hover {
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}
.mobile-nav-menu .menu-item-has-children.is-open > .m-submenu-toggle {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
	transform: rotate(180deg);
}
.mobile-nav-menu .menu-item-has-children.is-open > a { color: var(--primary); }
.mobile-nav-menu .menu-item-has-children > .sub-menu { flex: 1 0 100%; }

/* Sub-menu — collapsed by default, animated on .is-open */
.mobile-nav-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 0 12px;
	border-left: 2px solid transparent;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height .45s cubic-bezier(.2,.8,.2,1), opacity .3s ease, border-color .3s ease, padding .35s ease, margin .35s ease;
}
.mobile-nav-menu .menu-item-has-children.is-open > .sub-menu {
	max-height: 1400px;
	opacity: 1;
	padding: 6px 0 10px 14px;
	margin: 4px 0 8px 8px;
	border-left-color: var(--primary);
}
.mobile-nav-menu .sub-menu li { margin: 0; }
.mobile-nav-menu .sub-menu a {
	display: block;
	padding: 9px 0 9px 12px;
	border-bottom: 0;
	color: var(--grey);
	font-family: var(--font-head); font-weight: 500;
	font-size: .88rem;
	text-decoration: none;
	transition: color .25s ease, padding-left .25s ease;
}
.mobile-nav-menu .sub-menu a:hover { color: var(--primary); padding-left: 18px; }

.mobile-nav .m-cta-group {
	display: flex; flex-direction: column; gap: 10px;
	margin-top: 22px;
}
.mobile-nav .m-cta-group .btn { justify-content: center; }

/* Hero ==================================================================== */
.hero--full {
	position: relative;
	width: 100%;
	background: var(--primary);
	color: var(--white);
	overflow: hidden;
}

/* Full-width slider with the form floating on top-right.
   Subtract navbar (~80px) AND trust bar (~80px) so the trust bar stays
   visible inside the first viewport — same behaviour as other archives. */
.hero--full .hero-split-grid {
	position: relative; z-index: 2;
	display: block;
	min-height: calc(100vh - 160px);
}
.hero--full .hero-slider { width: 100%; height: 100%; min-height: calc(100vh - 160px); }
@media (max-width: 720px) {
	.hero--full .hero-split-grid,
	.hero--full .hero-slider { min-height: calc(100vh - 200px); }
}
.hero--full .hero-form {
	position: absolute;
	top: 50%;
	right: clamp(24px, 4vw, 64px);
	transform: translateY(-50%);
	width: min(460px, 40vw);
	height: auto;
	min-height: 0;
	z-index: 4;
	/*background: rgba(8,26,48,.55);*/
	background: inherit;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,.10);
	border-radius: var(--radius-lg);
	box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

/* Slider ------------------------------------------------------------------ */
.hero-slider {
	position: relative;
	overflow: hidden;
	display: flex; flex-direction: column;
	--rig-inset: 110px; /* reserved padding on right side of slide content only */
	--door-ms: 520ms;
	--reveal-ms: 900ms;
}

/* Elevator rig — floating overlay on the left of the slider (no own column) */
.elevator-rig {
	position: absolute; top: 32px; left: 28px; bottom: 32px;
	width: 90px;
	z-index: 3;
	display: flex;
	pointer-events: none;
}
.rig-shaft {
	position: relative;
	width: 54px;
	background: transparent;
	border-left: 1px solid rgba(126,200,227,.2);
	border-right: 1px solid rgba(126,200,227,.2);
}
.rig-rail {
	position: absolute; top: 0; bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, transparent, #7EC8E3 20%, #7EC8E3 80%, transparent);
	opacity: .55;
	left: 10px;
}
.rig-rail--right { left: auto; right: 10px; }

.rig-cabin {
	position: absolute;
	left: 6px; right: 6px;
	height: 60px;
	background: var(--white);
	border: 1px solid var(--white);
	border-radius: 4px;
	bottom: 0;
	transition: bottom 1.3s cubic-bezier(.5,.05,.15,1);
	box-shadow: 0 0 24px rgba(255,255,255,.45);
	overflow: hidden;
}
.rig-cabin-light {
	position: absolute; left: 50%; top: 6px; width: 26px; height: 4px;
	transform: translateX(-50%);
	background: var(--primary);
	border-radius: 2px;
	box-shadow: 0 0 12px var(--primary);
	animation: rig-blink 1.8s ease-in-out infinite;
}
.rig-cabin-door {
	position: absolute; top: 16px; bottom: 10px;
	width: 50%;
	background: var(--white);
	border: 1px solid var(--primary);
	transition: transform var(--door-ms) cubic-bezier(.5,.05,.15,1);
}
.rig-cabin-door--l { left: 2px; border-right: 0; }
.rig-cabin-door--r { right: 2px; border-left: 0; }
.hero-slider.is-transitioning .rig-cabin-door--l { transform: translateX(-110%); }
.hero-slider.is-transitioning .rig-cabin-door--r { transform: translateX( 110%); }

@keyframes rig-blink {
	0%, 100% { opacity: 1; }
	50%      { opacity: .35; }
}

/* Floor indicator column */
.rig-floors {
	list-style: none; margin: 0; padding: 0;
	flex: 1;
	display: flex; flex-direction: column; justify-content: space-between;
	align-items: flex-start;
	padding-left: 10px;
}
.rig-floor {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .78rem;
	letter-spacing: .08em;
	color: rgba(255,255,255,.35);
	display: flex; align-items: center; gap: 10px;
	transition: color .4s ease;
}
.rig-floor::before {
	content: '';
	display: inline-block;
	width: 8px; height: 8px; border-radius: 50%;
	background: rgba(126,200,227,.25);
	transition: background .4s ease, box-shadow .4s ease, transform .4s ease;
}
.rig-floor.is-current {
	color: var(--sky);
}
.rig-floor.is-current::before {
	background: var(--sky);
	box-shadow: 0 0 10px var(--sky);
	transform: scale(1.4);
}

/* Door-wipe transition panels over the whole stage ----------------------- */
.slider-doors {
	position: absolute; inset: 0;
	pointer-events: none;
	z-index: 2;
	overflow: hidden;
}
.door {
	position: absolute; top: 0; bottom: 0;
	width: 52%;
	background: linear-gradient(180deg, var(--primary), var(--primary-dark));
	border-right: 1px solid rgba(126,200,227,.15);
	transform: translateX(-102%);
	transition: transform var(--door-ms) cubic-bezier(.5,.05,.15,1);
	will-change: transform;
}
.door--l { left: 0; }
.door--r { right: 0; transform: translateX(102%); border-right: 0; border-left: 1px solid rgba(126,200,227,.15); }
.hero-slider.is-transitioning .door--l { transform: translateX(0); }
.hero-slider.is-transitioning .door--r { transform: translateX(0); }

/* Floor number revealed between doors during transition */
.slider-doors::after {
	content: attr(data-floor);
	position: absolute; top: 50%; left: 50%;
	transform: translate(-50%, -50%) scale(.6);
	font-family: var(--font-head); font-weight: 900;
	font-size: 7rem; color: var(--sky);
	opacity: 0;
	transition: opacity var(--door-ms) ease, transform var(--door-ms) ease;
	text-shadow: 0 0 30px rgba(126,200,227,.5);
	letter-spacing: .04em;
}
.hero-slider.is-transitioning .slider-doors::after {
	opacity: 1; transform: translate(-50%, -50%) scale(1);
}
.slider-stage {
	position: relative;
	flex: 1;
	overflow: hidden;
}
.slide {
	position: absolute; inset: 0;
	display: flex; flex-direction: column; justify-content: center;
	padding: 64px clamp(480px, 44vw, 540px) 64px calc(var(--rig-inset) + 24px);
	opacity: 0; visibility: hidden;
	transition: opacity .6s ease, visibility .6s;
}
.slide.is-active { opacity: 1; visibility: visible; }

/* Staggered entrance on active slide */
.slide .slide-subtitle,
.slide .slide-title,
.slide .slide-desc,
.slide .slide-btn {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}
.slide.is-active .slide-subtitle { opacity: 1; transform: none; transition-delay: .05s; }
.slide.is-active .slide-title    { opacity: 1; transform: none; transition-delay: .18s; }
.slide.is-active .slide-desc     { opacity: 1; transform: none; transition-delay: .32s; }
.slide.is-active .slide-btn      { opacity: 1; transform: none; transition-delay: .46s; }
.slide-img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover; object-position: center;
	z-index: 0;
}
.slide-overlay {
	position: absolute; inset: 0; z-index: 1;
	background: rgba(7, 120, 180, 0.55);
}
.slide-inner {
	position: relative; z-index: 2;
	max-width: 640px;
}
.slide-subtitle {
	font-family: var(--font-head);
	font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
	color: var(--sky); font-weight: 700; margin: 14px 0;
}
.slide-title {
	display: block;
	color: var(--white);
	font-family: var(--font-head);
	font-weight: 800;
	font-size: clamp(1.8rem, 3.4vw, 2.8rem);
	line-height: 1.2; margin: 0 0 16px;
}
.slide-desc {
	color: rgba(255,255,255,.88);
	font-size: 1.05rem;
	margin-bottom: 24px;
	max-width: 560px;
}
.slide-btn { align-self: flex-start; }

.slider-controls {
	position: absolute; bottom: 24px; left: calc(var(--rig-inset) + 24px);
	z-index: 3;
	display: flex; align-items: center; gap: 14px;
}
.slider-prev, .slider-next {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.2);
	color: var(--white);
	cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	transition: background .2s ease, border-color .2s ease;
}
.slider-prev:hover, .slider-next:hover {
	background: var(--primary, #00ADEE); border-color: var(--primary, #00ADEE);
}
.slider-dots {
	display: flex; gap: 8px;
	margin: 0 4px;
}
.slider-dot {
	width: 10px; height: 10px; border-radius: 50%;
	background: rgba(255,255,255,.3);
	border: 0; padding: 0; cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}
.slider-dot.is-active {
	background: var(--sky);
	transform: scale(1.2);
}

/* Form (right) ------------------------------------------------------------ */
.hero-form {
	background: transparent;
	border: 0;
	color: var(--white);
	padding: clamp(22px, 2.4vw, 34px) clamp(22px, 2.4vw, 32px);
	box-shadow: none;
	display: flex; flex-direction: column;
	width: 100%;
	height: 100%;
}
.hero-form-head { margin-bottom: 18px; }
.hero-form-heading { font-size: 1.25rem; margin: 0 0 6px; }
.hero-form-sub { font-size: .88rem; margin: 0; }
.hero-form-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.hero-form .wpcf7 { display: flex; flex-direction: column; justify-content: center; height: 100%; }
.hero-form-head { margin-bottom: 20px; }
.hero-form-heading {
	font-size: 1.4rem;
	margin: 0 0 8px;
	color: var(--white);
}
.hero-form-sub {
	color: rgba(255,255,255,.72);
	font-size: .92rem;
	margin: 0;
}
.hero-form-body { flex-grow: 1; display: flex; flex-direction: column; }
.hero-form-placeholder {
	padding: 20px; background: var(--grey-light);
	border: 1px dashed var(--border); border-radius: var(--radius-md);
	color: var(--grey); font-size: .88rem;
}
.hero-form-placeholder code {
	display: inline-block; margin-top: 6px;
	background: var(--white); padding: 4px 8px; border-radius: 4px;
	font-size: .82rem; color: var(--navy);
}

/* CF7 styling ------------------------------------------------------------- */
.hero-form .wpcf7-form { display: flex; flex-direction: column; gap: 12px; }
.hero-form .wpcf7-form p { margin: 0; }
.hero-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-form .form-group { display: flex; flex-direction: column; }
.hero-form .form-submit-row { margin-top: 6px; }
.hero-form .req { color: var(--red); }
.hero-form .wpcf7-form label {
	display: block;
	font-family: var(--font-head);
	font-size: .8rem;
	font-weight: 600;
	color: rgba(255,255,255,.85);
	margin-bottom: 0;
}
@media (max-width: 520px) {
	.hero-form .form-row { grid-template-columns: 1fr; }
}
.hero-form .wpcf7-form-control:not([type="submit"]):not([type="radio"]):not([type="checkbox"]) {
	width: 100%;
	margin-top: 4px;
	padding: 10px 12px;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: var(--radius-md);
	font-family: var(--font-body);
	font-size: .95rem;
	color: var(--white);
	background: rgba(255,255,255,.06);
	transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.hero-form .wpcf7-form-control::placeholder { color: rgba(255,255,255,.55); }
.hero-form select.wpcf7-form-control { color: var(--white); }
.hero-form select.wpcf7-form-control option { color: var(--navy); background: var(--white); }
.hero-form .wpcf7-form-control:focus {
	outline: none;
	border-color: var(--primary);
	background: rgba(255,255,255,.10);
	box-shadow: 0 0 0 3px rgba(0,173,238,.28);
}
.hero-form textarea.wpcf7-form-control { min-height: 80px; resize: vertical; }
.hero-form .wpcf7-submit { width: 100%; }
.hero-form .wpcf7-submit {
	background: var(--primary); color: var(--white);
	border: 0; border-radius: var(--radius-md);
	padding: 13px 22px;
	font-family: var(--font-head); font-weight: 700;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.hero-form .wpcf7-submit:hover {
	background: var(--primary-dark);
	color: var(--white);
	transform: translateY(-2px);
}
@media (max-width: 1024px) {
	.hero-form .wpcf7-submit {
		border: 2px solid var(--white);
	}
	.hero-form .wpcf7-submit:hover {
		background: var(--white);
		color: var(--primary);
		border-color: var(--white);
	}
}
.hero-form .req { color: var(--primary); }

/* ==========================================================================
   Contact Form 7 — global message + validation styling (works on every form)
   ========================================================================== */
.wpcf7 form .wpcf7-response-output {
	display: block;
	margin: 18px 0 0;
	padding: 12px 16px;
	border: 2px solid var(--white);
	border-radius: var(--radius-md);
	background: var(--white);
	color: var(--navy);
	font-family: var(--font-body);
	font-size: .9rem;
	line-height: 1.5;
	word-wrap: break-word;
	overflow-wrap: break-word;
	white-space: normal;
	letter-spacing: 0;
	text-align: center;
}
/* Success — sent ok */
.wpcf7 form.sent .wpcf7-response-output {
	background: var(--white);
	border-color: var(--primary);
	color: var(--primary);
}
/* Invalid — server says one or more fields failed */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	background: var(--white);
	border-color: #c33;
	color: #c33;
}
/* Spam / aborted / error */
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
	background: var(--white);
	border-color: #c33;
	color: #c33;
}

/* Inline field validation tip — shown right under each invalid input.
   Styled as a small white pill with red text + red border so it stays
   legible on both white and cyan form backgrounds. */
.wpcf7 .wpcf7-not-valid-tip {
	display: inline-block;
	margin: 4px 0 0;
	padding: 3px 10px;
	font-family: var(--font-body);
	font-size: .78rem;
	font-weight: 600;
	line-height: 1.4;
	color: #c33;
	
	
	border-radius: 4px;
	white-space: normal;
	word-wrap: break-word;
}
.wpcf7 .wpcf7-form-control.wpcf7-not-valid {
	border-color: #c33 !important;
	box-shadow: 0 0 0 2px rgba(204,51,51,.18);
}

/* Spinner — keep visually clean */
.wpcf7 .wpcf7-spinner {
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
}

/* On dark/cyan-background forms (hero, sidebar CTA, contact-page form),
   the response box stays white but text reads navy/cyan — already covered.
   Mobile: ensure long messages wrap and don't overlap into the field below. */
@media (max-width: 600px) {
	.wpcf7 form .wpcf7-response-output {
		padding: 10px 12px;
		font-size: .85rem;
	}
	.wpcf7 .wpcf7-not-valid-tip {
		font-size: .75rem;
	}
}

.hero-form .wpcf7-response-output { margin-top: 14px; }

/* ============================================================
   HOME hero form ONLY — minimal error UX + no message field
   Scoped to `.hero--full .hero-form` so other CF7 forms across
   the site (popup, sidebar, contact page) keep their full UX.
   ============================================================ */
/* Hide the standalone "Message / Project Details" textarea group */
.hero--full .hero-form .form-group:has(textarea) { display: none; }

/* Validation error: keep red border on invalid field, drop the tip text */
.hero--full .hero-form .wpcf7-not-valid-tip { display: none !important; }
.hero--full .hero-form .wpcf7-form-control.wpcf7-not-valid {
	border-color: #c33 !important;
	box-shadow: 0 0 0 2px rgba(204,51,51,.18);
}

/* Submit failure: plain red text — no box, no border, no background.
   Override needs higher specificity than the global `.wpcf7 form.X` rules. */
.hero--full .hero-form .wpcf7 form .wpcf7-response-output,
.hero--full .hero-form .wpcf7 form.invalid .wpcf7-response-output,
.hero--full .hero-form .wpcf7 form.unaccepted .wpcf7-response-output,
.hero--full .hero-form .wpcf7 form.payment-required .wpcf7-response-output,
.hero--full .hero-form .wpcf7 form.failed .wpcf7-response-output,
.hero--full .hero-form .wpcf7 form.aborted .wpcf7-response-output,
.hero--full .hero-form .wpcf7 form.spam .wpcf7-response-output,
.hero--full .hero-form .wpcf7 form.sent .wpcf7-response-output {
	margin: 10px 0 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #ff6b6b;
	text-align: left;
	font-weight: 500;
	font-size: .85rem;
}
.hero--full .hero-form .wpcf7 form.sent .wpcf7-response-output { color: #6ee7b7; }

/* ============================================================
   HOME hero contact form — compact laptop sizing
   Targets only `.hero--full .hero-form` (the home page hero
   panel) so other CF7 forms across the site are untouched.

   Why this matters: Windows scaling at 125%/150% on a 1920×1080
   screen reports CSS viewport widths of 1536px / 1280px to the
   browser. The standard "1920px desktop" assumption is wrong
   for most Windows laptop users — so we go compact starting
   well below 1600px.
   ============================================================ */

/* Big-screen comfortable: 1600px+ keeps the original spacious form */

/* Standard laptop / large laptop (1367–1599px) — moderately compact */
@media (min-width: 1367px) and (max-width: 1599px) {
	.hero--full .hero-form {
		width: min(420px, 35vw);
		padding: 18px 22px;
		right: clamp(20px, 2.5vw, 40px);
	}
	.hero--full .hero-form-head { margin-bottom: 10px; }
	.hero--full .hero-form-heading { font-size: 1.1rem; margin: 0 0 4px; line-height: 1.25; }
	.hero--full .hero-form-sub { font-size: .8rem; line-height: 1.3; }
	.hero--full .hero-form .wpcf7-form { gap: 8px; }
	.hero--full .hero-form .form-row { gap: 8px; }
	.hero--full .hero-form .wpcf7-form label { font-size: .72rem; }
	.hero--full .hero-form .wpcf7-form-control:not([type="submit"]):not([type="radio"]):not([type="checkbox"]) {
		padding: 7px 10px;
		font-size: .82rem;
		margin-top: 2px;
	}
	.hero--full .hero-form textarea.wpcf7-form-control { min-height: 50px; }
	.hero--full .hero-form .wpcf7-submit { padding: 9px 18px; font-size: .9rem; }
	.hero--full .hero-form .form-submit-row { margin-top: 4px; }
	.hero--full .hero-form .cf7-recaptcha-wrap .g-recaptcha {
		transform: scale(0.78);
		transform-origin: 0 0;
		margin-bottom: -46px;
	}
}

/* Small laptops / 1920×1080 at 125–150% scale (1025–1366px) — 2-COLUMN
   compact form with tiny fonts + tight spacing. Covers the most common
   Windows scaling scenarios that previously broke the layout. */
@media (min-width: 1025px) and (max-width: 1366px) {
	.hero--full .hero-form {
		width: min(400px, 34vw);
		padding: 12px 14px;
		right: clamp(12px, 1.5vw, 24px);
	}
	.hero--full .hero-form-head { margin-bottom: 6px; }
	.hero--full .hero-form-heading { font-size: .9rem; margin: 0 0 2px; line-height: 1.2; }
	.hero--full .hero-form-sub { font-size: .68rem; line-height: 1.25; }
	.hero--full .hero-form .wpcf7-form { gap: 4px; }
	.hero--full .hero-form .form-row {
		grid-template-columns: 1fr 1fr; /* 2-column 2x2 layout */
		gap: 6px;
	}
	.hero--full .hero-form .wpcf7-form label {
		font-size: .62rem;
		margin-bottom: 0;
		line-height: 1.1;
		letter-spacing: 0;
	}
	.hero--full .hero-form .wpcf7-form-control:not([type="submit"]):not([type="radio"]):not([type="checkbox"]) {
		padding: 5px 8px;
		font-size: .72rem;
		margin-top: 1px;
		border-radius: 6px;
	}
	.hero--full .hero-form textarea.wpcf7-form-control { min-height: 34px; }
	.hero--full .hero-form .wpcf7-submit {
		padding: 7px 12px;
		font-size: .78rem;
		border-radius: 6px;
	}
	.hero--full .hero-form .form-submit-row { margin-top: 2px; }
	.hero--full .hero-form .cf7-recaptcha-wrap .g-recaptcha {
		transform: scale(0.62);
		transform-origin: 0 0;
		margin-bottom: -74px;
	}
}

@media (max-width: 1024px) {
	.hero--full .hero-split-grid { display: block; min-height: 0; }
	.slider-stage { min-height: 520px; }
	.hero--full .hero-slider { min-height: 520px; }
	.hero--full .hero-form {
		position: relative; top: auto; right: auto; transform: none;
		width: 100%; max-width: 100%;
		margin: 0; border-radius: 0;
		border: 0; border-top: 1px solid rgba(255,255,255,.08);
		box-shadow: none;
	}
	.slide { padding: 64px clamp(32px, 6vw, 96px) 64px calc(var(--rig-inset) + 24px); }
}
@media (max-width: 720px) {
	.elevator-rig { display: none; }
	.slider-doors { right: 0; }
	.slide { padding: 80px 24px 100px; }
	.slider-controls { left: 24px; bottom: 16px; }
}

/* Trust bar — global full-width strip ==================================== */
.trust-bar {
	position: relative;
	width: 100%;
	margin: 0;
	background: var(--primary);
	color: var(--white);
	border-top: 1px solid rgba(255,255,255,.18);
	border-bottom: 1px solid rgba(255,255,255,.18);
	overflow: hidden;
	isolation: isolate;
}
.trust-bar-grid {
	position: absolute; inset: 0; z-index: 0;
	background-image:
		linear-gradient(rgba(126,200,227,.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(126,200,227,.05) 1px, transparent 1px);
	background-size: 36px 36px;
	mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 0%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 0%, transparent 75%);
	pointer-events: none;
}
.trust-bar-glow {
	position: absolute; z-index: 0;
	width: 360px; height: 220px;
	border-radius: 50%;
	filter: blur(20px);
	pointer-events: none;
}
.trust-bar-glow--a { display: none; }
.trust-bar-glow--b { display: none; }

.trust-bar-inner {
	position: relative; z-index: 1;
	display: grid;
	grid-template-columns: repeat(var(--total, 6), minmax(0, 1fr));
	align-items: center;
	gap: 0;
	padding: 18px 28px;
	width: 100%;
	max-width: none;
	margin: 0;
}
.trust-item { justify-content: center; }
.trust-item {
	position: relative;
	display: flex; align-items: center; gap: 12px;
	padding: 8px 22px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: .88rem;
	letter-spacing: .01em;
	color: rgba(255,255,255,.92);
	min-height: 48px;
	opacity: 0;
	transform: translateY(8px);
	animation: trustRise .55s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 80ms + 100ms);
}
@keyframes trustRise { to { opacity: 1; transform: translateY(0); } }
.trust-item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0; top: 18%; bottom: 18%;
	width: 1px;
	background: rgba(255,255,255,.25);
}
.trust-item .t-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px;
	flex: 0 0 40px;
	color: var(--primary);
	background: var(--white);
	border: 1px solid var(--white);
	border-radius: 12px;
	font-size: 1rem;
	transition: transform .35s cubic-bezier(.2,.8,.2,1), background .25s ease, color .25s ease, box-shadow .25s ease;
}
.trust-item:hover .t-icon {
	transform: translateY(-2px) rotate(-4deg);
	background: var(--white);
	color: var(--primary);
	box-shadow: 0 8px 18px -8px rgba(0,0,0,.25);
}
.trust-item .t-text {
	white-space: normal;
	overflow: visible;
	text-overflow: clip;
	min-width: 0;
	line-height: 1.25;
}

@media (max-width: 1100px) {
	.trust-bar-inner { grid-template-columns: repeat(3, 1fr); row-gap: 10px; padding: 14px 18px; }
	.trust-item { padding: 6px 14px; font-size: .82rem; }
	.trust-item:nth-child(3n)::after { display: none; }
	/* hide separator above the wrapping row's last item */
	.trust-item:nth-last-child(-n+3):nth-child(3n+1) ~ .trust-item:last-child::after { display: none; }
}
@media (max-width: 600px) {
	.trust-bar-inner { grid-template-columns: repeat(2, 1fr); padding: 14px 12px; row-gap: 12px; column-gap: 6px; }
	.trust-item { padding: 6px 6px; font-size: .74rem; gap: 8px; min-height: 44px; justify-content: flex-start;}
	.trust-item:nth-child(2n)::after { display: none; }
	.trust-item:nth-child(3n)::after { display: block; }
	.trust-item .t-icon { width: 32px; height: 32px; flex-basis: 32px; font-size: .85rem; }
}
@media (max-width: 380px) {
	.trust-bar-inner { grid-template-columns: 1fr; row-gap: 8px; padding: 12px; }
	.trust-item::after { display: none !important; }
	.trust-item { justify-content: flex-start; padding: 6px 10px; }
}

/* About / stats =========================================================== */
.about-body p { color: var(--grey); margin-bottom: 14px; line-height: 1.7; }

/* About — premium editorial layout ======================================= */
.about-pro {
	position: relative;
	background: var(--white);
	overflow: hidden;
}
.about-bg-grid {
	position: absolute; inset: 0;
	pointer-events: none;
	background-image:
		radial-gradient(circle, rgba(11,35,64,.06) 1px, transparent 1px);
	background-size: 28px 28px;
	background-position: 0 0;
	mask-image: radial-gradient(ellipse 60% 70% at 90% 0%, #000 0%, transparent 60%);
	-webkit-mask-image: radial-gradient(ellipse 60% 70% at 90% 0%, #000 0%, transparent 60%);
}
.about-pro-grid {
	position: relative; z-index: 1;
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: clamp(40px, 6vw, 88px);
	align-items: stretch;
}

/* Left column — content -------------------------------------------------- */
.about-pro-content {
	position: relative;
	padding-left: 32px;
}
.about-rule {
	position: absolute;
	left: 0; top: 6px; bottom: 6px;
	width: 4px;
	background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
	border-radius: 4px;
}
.about-eyebrow {
	display: inline-flex; align-items: center; gap: 12px;
	color: var(--primary);
	font-size: .78rem;
	letter-spacing: .18em;
	margin-bottom: 14px;
}
.about-eyebrow::before {
	content: "";
	display: inline-block;
	width: 28px; height: 1px;
	background: var(--primary);
}
.about-heading {
	font-size: clamp(1.9rem, 3vw, 2.6rem);
	line-height: 1.15;
	color: var(--navy);
	margin: 0 0 22px;
	letter-spacing: -.01em;
}
.about-promise {
	position: relative;
	margin: 24px 0 28px;
	padding: 20px 22px 20px 56px;
	background: linear-gradient(135deg, rgba(0,173,238,.06), rgba(11,35,64,.03));
	border-left: 3px solid var(--primary);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.about-promise p {
	margin: 0;
	color: var(--navy);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 1.02rem;
	line-height: 1.5;
}
.about-promise .ap-quote {
	position: absolute;
	left: 18px; top: 18px;
	width: 26px; height: 26px;
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--primary);
	font-size: 1.1rem;
	opacity: .8;
}
.about-cta-row {
	display: flex; flex-wrap: wrap; align-items: center;
	gap: 20px 28px;
	margin-top: 8px;
}
/* Right column — stats panel -------------------------------------------- */
.about-stats-panel {
	position: relative;
	padding: 40px 36px 32px;
	background: var(--primary);
	color: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: 0 30px 60px -20px rgba(0,173,238,.45);
	overflow: hidden;
	min-height: 100%;
	display: flex; flex-direction: column;
	justify-content: space-between;
}
.asp-grid-overlay {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, #000 0%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, #000 0%, transparent 70%);
	pointer-events: none;
}
.about-stats-panel::before {
	content: "";
	position: absolute;
	top: -120px; right: -120px;
	width: 320px; height: 320px;
	background: rgba(255,255,255,.10);
	filter: blur(8px);
	pointer-events: none;
}
.asp-stats {
	position: relative; z-index: 1;
	list-style: none; margin: 0; padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-auto-rows: 1fr;
	gap: 0;
	flex: 1;
	align-self: stretch;
}
.asp-stat {
	position: relative;
	display: flex; flex-direction: column;
	justify-content: center;
	gap: 10px;
	padding: 26px 18px;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
	transition-delay: calc(var(--i, 0) * 120ms);
}
.about-stats-panel.is-in-view .asp-stat {
	opacity: 1;
	transform: translateY(0);
}
.asp-stat:nth-child(odd)  { padding-left: 0; }
.asp-stat:nth-child(even) { padding-right: 0; }
.asp-stat:not(:nth-last-child(-n+2)) { border-bottom: 1px solid rgba(255,255,255,.30); }
.asp-stat:nth-child(odd):not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0; top: 26px; bottom: 26px;
	width: 1px;
	background: rgba(255,255,255,.30);
}
.asp-stat-icon {
	width: 38px; height: 38px;
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--primary);
	background: var(--white);
	border: 1px solid var(--white);
	border-radius: 10px;
	font-size: .95rem;
}
.asp-stat-num {
	font-family: var(--font-head);
	font-weight: 900;
	font-size: clamp(2.6rem, 4.6vw, 3.8rem);
	letter-spacing: -.03em;
	line-height: 1;
	color: var(--white);
}
.asp-stat-label {
	color: rgba(255,255,255,.92);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: .85rem;
	letter-spacing: .04em;
}
.asp-seal {
	position: relative; z-index: 1;
	display: flex; align-items: center; gap: 12px;
	margin-top: auto;
	padding-top: 22px;
	border-top: 1px solid rgba(255,255,255,.30);
}
.asp-seal-mark {
	width: 38px; height: 38px;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px dashed rgba(255,255,255,.7);
	border-radius: 50%;
	color: var(--white);
	font-size: .95rem;
	flex: 0 0 38px;
}
.asp-seal-text {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .82rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--white);
}

@media (max-width: 960px) {
	.about-pro-grid { grid-template-columns: 1fr; gap: 40px; }
	.about-stats-panel { min-height: 0; padding: 28px 24px 22px; }
}
@media (max-width: 520px) {
	.asp-stats {
		grid-template-columns: 1fr 1fr;
		grid-auto-rows: auto;
	}
	.asp-stat:nth-child(odd)::after { display: none; }
	.asp-stat { padding: 14px 8px; gap: 6px; }
	.asp-stat:nth-child(odd)  { padding-left: 0; padding-right: 8px; border-right: 1px solid rgba(255,255,255,.08); }
	.asp-stat:nth-child(even) { padding-right: 0; padding-left: 8px; }
	.asp-stat:not(:nth-last-child(-n+2)) { border-bottom: 1px solid rgba(255,255,255,.08); }
	.asp-stat-num   { font-size: 1.9rem; }
	.asp-stat-icon  { width: 30px; height: 30px; font-size: .78rem; }
	.asp-stat-label { font-size: .72rem; }
	.about-stats-panel { padding: 26px 22px 22px; }
	.asp-seal { padding-top: 18px; }
	.asp-seal-text { font-size: .72rem; letter-spacing: .08em; }
}

/* Type cards ============================================================== */
.type-card {
	display: flex; flex-direction: column;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 22px; transition: all .2s ease;
	box-shadow: var(--shadow-sm);
}
.type-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.tc-icon { font-size: 2rem; color: var(--primary); margin-bottom: 12px; }
.tc-name { font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.tc-price { color: var(--grey); font-size: .9rem; margin-bottom: 12px; }
.tc-link { font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--primary); margin-top: auto; }

/* USP cards =============================================================== */
.usp-card {
	background: var(--white); border: 1px solid var(--border);
	border-radius: var(--radius-lg); padding: 28px;
	transition: all .2s ease;
}
.usp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.usp-icon { font-size: 2rem; color: var(--primary); margin-bottom: 14px; }
.usp-title { font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 1.15rem; margin-bottom: 6px; }
.usp-tag { color: var(--primary-dark); font-weight: 600; font-size: .88rem; margin-bottom: 12px; }
.usp-body { color: var(--grey); font-size: .94rem; }

/* Process steps =========================================================== */
.steps-row {
	display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
}
.step-item { text-align: center; }
.step-num {
	width: 64px; height: 64px; border-radius: 50%;
	background: var(--white); border: 2px solid var(--primary);
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 14px; font-size: 1.4rem; color: var(--primary);
	box-shadow: var(--shadow-sm);
}
.step-label { font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.step-detail { color: var(--grey); font-size: .88rem; }

@media (max-width: 1024px) { .steps-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .steps-row { grid-template-columns: repeat(2, 1fr); } }

/* Testimonials — Pro full-width navy showcase ============================ */
.testimonials-pro {
	position: relative;
	overflow: hidden;
	color: var(--white);
	padding: clamp(72px, 8vw, 112px) 0;
	background: var(--primary);
	isolation: isolate;
}
.tp-bg {
	position: absolute; inset: 0; z-index: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 0%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 0%, transparent 70%);
	pointer-events: none;
}
.tp-glow { display: none; }

.testimonials-pro .container,
.testimonials-pro .tp-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: none;
	margin: 0;
	padding-left: clamp(20px, 3vw, 48px);
	padding-right: clamp(20px, 3vw, 48px);
}

/* Header row */
.tp-head {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: clamp(24px, 4vw, 64px);
	align-items: end;
	margin-bottom: clamp(40px, 5vw, 64px);
}
@media (max-width: 900px) {
	.tp-head { grid-template-columns: 1fr; align-items: start; }
}
.tp-label { color: var(--white); margin-bottom: 14px; display: inline-block; }
.tp-heading {
	margin: 0;
	color: var(--white);
	font-size: clamp(2rem, 3.4vw, 2.8rem);
	letter-spacing: -.01em;
	line-height: 1.15;
}
.tp-meta {
	display: flex; flex-direction: column; align-items: flex-end;
	gap: 12px;
}
@media (max-width: 900px) { .tp-meta { align-items: flex-start; } }
.tp-rating {
	display: inline-flex; align-items: center; gap: 14px;
	padding: 10px 18px;
	background: var(--white);
	border: 1px solid var(--white);
	border-radius: 999px;
}
.tp-rating-num {
	font-family: var(--font-head);
	font-weight: 900;
	font-size: 1.6rem;
	color: var(--primary);
	letter-spacing: -.02em;
	line-height: 1;
}
.tp-rating-stars { display: inline-flex; gap: 3px; color: var(--primary); font-size: .98rem; }
.tp-rating-stars .tp-star-empty { color: rgba(0,173,238,.25); }
.tp-rating-text {
	color: var(--primary);
	font-size: .85rem;
	font-family: var(--font-head);
	font-weight: 500;
	letter-spacing: .02em;
}
.tp-rating-text strong { color: var(--primary); font-weight: 800; }
.tp-cta {
	display: inline-flex; align-items: center; gap: 8px;
	margin-top: 6px;
	padding: 10px 20px;
	background: var(--white);
	color: var(--primary);
	border-radius: 999px;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .85rem;
	text-decoration: none;
	transition: background .25s ease, transform .25s ease;
}
.tp-cta:hover { background: var(--white); color: var(--primary); transform: translateX(4px); }

/* Card grid */
.tp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: stretch;
}
@media (max-width: 1024px) { .tp-grid { grid-template-columns: 1fr; gap: 20px; } }

.tp-card {
	position: relative;
	display: flex; flex-direction: column;
	gap: 16px;
	padding: clamp(26px, 2.4vw, 36px);
	background: var(--white);
	border: 1px solid var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease, background .35s ease;
	opacity: 0;
	transform: translateY(22px);
	animation: tpRise .75s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 110ms + 80ms);
}
@keyframes tpRise { to { opacity: 1; transform: translateY(0); } }

.tp-card.is-featured {
	background: var(--white);
	border-color: var(--white);
	box-shadow: 0 22px 50px -22px rgba(0,52,80,.35);
	transform: translateY(-8px);
}
@media (max-width: 1024px) {
	.tp-card.is-featured { transform: none; }
}

.tp-card:hover {
	transform: translateY(-6px);
	border-color: var(--white);
	background: var(--white);
	box-shadow: 0 26px 50px -20px rgba(0,52,80,.30);
}
.tp-card.is-featured:hover { transform: translateY(-14px); }

.tp-card-glow { display: none; }

.tp-card-quote {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px;
	background: var(--primary);
	border: 1px solid var(--primary);
	border-radius: 12px;
	color: var(--white);
	font-size: 1.05rem;
}
.tp-card.is-featured .tp-card-quote {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}
.tp-card-stars {
	display: inline-flex; gap: 3px;
	color: var(--primary);
	font-size: .92rem;
}
.tp-card-stars .fa-regular { color: rgba(0,173,238,.25); }

.tp-card-text {
	margin: 0;
	color: var(--navy);
	font-size: 1rem;
	line-height: 1.65;
	flex: 1;
}

.tp-card-foot {
	display: grid;
	grid-template-columns: 44px 1fr auto;
	align-items: center;
	gap: 12px;
	margin-top: 8px;
	padding-top: 18px;
	border-top: 1px solid var(--border);
}
.tp-avatar {
	width: 44px; height: 44px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--primary);
	color: var(--white);
	border-radius: 50%;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: .95rem;
	letter-spacing: .04em;
}
.tp-id { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.tp-author {
	font-family: var(--font-head);
	font-weight: 800;
	color: var(--navy);
	font-size: .98rem;
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.tp-detail {
	color: var(--grey);
	font-size: .8rem;
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.tp-verified {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 4px 10px;
	background: var(--primary);
	border: 1px solid var(--primary);
	border-radius: 999px;
	color: var(--white);
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .68rem;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.tp-verified i { font-size: .75rem; }

@media (max-width: 600px) {
	.tp-card-foot { grid-template-columns: 40px 1fr; }
	.tp-verified { grid-column: 1 / -1; justify-self: flex-start; }
}

/* ----- Split-card layout (content + media side panel) ------------------ */
.tp-grid--split { grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 1024px) { .tp-grid--split { grid-template-columns: 1fr; } }

.tp-card.has-media {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 0;
	padding: 0;
	border: 0;
	overflow: hidden;
	min-height: 360px;
}
.tp-card.has-media .tp-card-content {
	display: flex; flex-direction: column;
	gap: 14px;
	padding: clamp(24px, 2.4vw, 34px);
	min-width: 0;
}
.tp-card.has-media .tp-card-text { flex: 1; }

/* No-media card — sits in its normal 50% slot, but the content fills the
   whole card width (no internal media column, no empty space). */
.tp-card.is-fullwidth {
	display: block;
	padding: 0;
	overflow: hidden;
	min-height: 360px;
}
.tp-card.is-fullwidth .tp-card-content {
	display: flex; flex-direction: column;
	gap: 14px;
	padding: clamp(24px, 2.4vw, 34px);
	width: 100%;
	height: 100%;
}
.tp-card.is-fullwidth .tp-card-text { flex: 1; }

.tp-card-media {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
	background: var(--primary-light);
	overflow: hidden;
	align-self: stretch;
	justify-self: stretch;
	font-size: 0;            /* eliminate inline-element gaps from <video>/<img> */
	line-height: 0;
}
.tp-card-img,
.tp-card-video {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	object-fit: cover;
}
.tp-card-video { background: #000; }
.tp-card-embed {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
}
.tp-card-embed iframe {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
.tp-card-play {
	position: absolute;
	left: 50%; top: 50%;
	transform: translate(-50%, -50%);
	width: 64px; height: 64px;
	border-radius: 50%;
	border: 0;
	background: var(--white);
	color: var(--primary);
	font-size: 1.2rem;
	cursor: pointer;
	display: inline-flex; align-items: center; justify-content: center;
	box-shadow: 0 14px 30px -8px rgba(0,52,80,.45);
	transition: transform .25s ease, box-shadow .25s ease;
	z-index: 2;
}
.tp-card-play:hover { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 18px 36px -8px rgba(0,52,80,.55); }
.tp-card-media.is-playing .tp-card-play { display: none; }

@media (max-width: 720px) {
	.tp-card.has-media { grid-template-columns: 1fr; min-height: 0; }
	.tp-card-media { min-height: 220px; aspect-ratio: 16/9; }
}

/* Slider mode */
.tp-slider {
	position: relative;
	overflow: visible;
	padding: 0 0 56px;
}
.tp-viewport {
	overflow: hidden;
	border-radius: var(--radius-lg);
}
.tp-track {
	display: flex;
	gap: 24px;
	transition: transform .65s cubic-bezier(.2,.8,.2,1);
	will-change: transform;
}
.tp-track .tp-card {
	flex: 0 0 calc((100% - (var(--per, 3) - 1) * 24px) / var(--per, 3));
	min-width: 0;
	animation: none;
	opacity: 1;
	transform: none;
}
.tp-nav {
	position: absolute;
	top: 50%;
	width: 48px; height: 48px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--white);
	color: var(--primary);
	border: 2px solid var(--primary);
	border-radius: 50%;
	cursor: pointer;
	z-index: 4;
	font-size: .9rem;
	line-height: 1;
	padding: 0;
	transform: translateY(-50%);
	transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.tp-nav i { display: inline-block; }
.tp-nav:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
	box-shadow: 0 8px 22px -8px rgba(0,52,80,.35);
	transform: translateY(-50%) scale(1.06);
}
.tp-prev { left: -24px; }
.tp-next { right: -24px; }
@media (min-width: 1280px) {
	.tp-prev { left: -32px; }
	.tp-next { right: -32px; }
}
@media (max-width: 600px) {
	.tp-nav { display: none; }
	.tp-slider { padding-bottom: 48px; }
	.tp-dots { bottom: 14px; }
}

.tp-dots {
	position: absolute;
	left: 50%;
	bottom: 12px;
	transform: translateX(-50%);
	display: flex; gap: 8px;
	z-index: 3;
}
.tp-dot {
	width: 28px; height: 6px;
	padding: 0;
	background: rgba(255,255,255,.40);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	transition: background .3s ease, width .3s ease;
}
.tp-dot.is-active {
	background: var(--white);
	width: 44px;
}
.tp-dot:hover { background: var(--white); }

/* Cities — Pan-India city tiles ========================================== */
.cities-pro--row .cp-inner {
	width: 100%;
	max-width: none;
	padding-left: clamp(16px, 2vw, 32px);
	padding-right: clamp(16px, 2vw, 32px);
}
.cp-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}
.cp-grid > .cp-card { flex: 0 1 calc(10% - 11px); max-width: 150px; }
@media (max-width: 1400px) {
	.cp-grid { gap: 14px; }
	.cp-grid > .cp-card { flex-basis: calc(20% - 12px); max-width: 180px; }
}
@media (max-width: 900px)  { .cp-grid > .cp-card { flex-basis: calc(25% - 11px); max-width: none; } }
@media (max-width: 600px)  { .cp-grid > .cp-card { flex-basis: calc(50% - 6px); } }

.cp-card {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	border-radius: var(--radius-lg);
	overflow: hidden;
	color: var(--white);
	text-decoration: none;
	background: linear-gradient(155deg, #0F2A50 0%, var(--navy) 55%, #06142B 100%);
	box-shadow: 0 12px 24px -14px rgba(11,35,64,.45);
	isolation: isolate;
	opacity: 0;
	transform: translateY(20px);
	animation: cpRise .7s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 55ms + 80ms);
	transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
@keyframes cpRise { to { opacity: 1; transform: translateY(0); } }

.cp-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 28px 50px -16px rgba(11,35,64,.5);
}

.cp-card-media {
	position: absolute; inset: 0;
	overflow: hidden;
	z-index: 0;
}
.cp-card-img {
	width: 100%; height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	transition: transform .9s cubic-bezier(.2,.8,.2,1), filter .45s ease;
}
.cp-card:hover .cp-card-img {
	transform: scale(1.10);
	filter: brightness(1.05) saturate(1.05);
}

/* Diagonal shine sweep — same vibe as the elevator tiles */
.cp-card-shine {
	position: absolute;
	top: -120%; left: -40%;
	width: 60%; height: 250%;
	background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
	transform: rotate(18deg);
	pointer-events: none;
	z-index: 2;
	transition: top .9s ease, left .9s ease;
}
.cp-card:hover .cp-card-shine { top: 60%; left: 120%; }

.cp-card-pattern {
	position: absolute; inset: 0;
	background-image:
		radial-gradient(circle at 20% 30%, rgba(0,173,238,.18), transparent 45%),
		radial-gradient(circle at 80% 70%, rgba(126,200,227,.14), transparent 50%),
		linear-gradient(rgba(126,200,227,.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(126,200,227,.05) 1px, transparent 1px);
	background-size: auto, auto, 36px 36px, 36px 36px;
	pointer-events: none;
}

/* India map inside no-image cards */
.cp-map {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 14px 14px 70px;
	box-sizing: border-box;
	pointer-events: none;
	z-index: 1;
	overflow: visible;
}
.cp-map-outline {
	fill: rgba(126,200,227,.08);
	stroke: rgba(126,200,227,.7);
	stroke-width: 3;
	stroke-linejoin: round;
	stroke-linecap: round;
	transition: stroke .35s ease, fill .35s ease, filter .35s ease;
}
.cp-card:hover .cp-map-outline {
	stroke: rgba(0,173,238,.9);
	fill: rgba(0,173,238,.10);
	filter: drop-shadow(0 0 8px rgba(0,173,238,.35));
}
.cp-map-dot {
	fill: rgba(126,200,227,.55);
	transition: fill .3s ease;
}
.cp-map-pin.is-active .cp-map-dot {
	fill: var(--primary);
	filter: drop-shadow(0 0 8px rgba(0,173,238,.95));
}
.cp-map-halo {
	fill: var(--primary);
	transform-box: fill-box;
	transform-origin: center;
	animation: cpMapHalo 2.2s ease-out infinite;
}
@keyframes cpMapHalo {
	0%   { transform: scale(.45); opacity: .6; }
	100% { transform: scale(2.2);  opacity: 0;  }
}
@media (max-width: 600px) {
	.cp-map { padding: 10px 10px 56px; }
}

.cp-card-overlay {
	position: absolute; inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(11,35,64,0) 30%, rgba(6,20,43,.65) 75%, rgba(6,20,43,.95) 100%);
	pointer-events: none;
}
.cp-card.has-image .cp-card-overlay {
	background: linear-gradient(180deg, rgba(11,35,64,0) 25%, rgba(6,20,43,.60) 70%, rgba(6,20,43,.96) 100%);
}

.cp-pin {
	position: absolute;
	top: 14px; left: 14px;
	z-index: 3;
	width: 28px; height: 28px;
	display: inline-flex; align-items: center; justify-content: center;
	pointer-events: none;
}
.cp-card:not(.has-image) .cp-pin { display: none; }
.cp-pin-dot {
	width: 12px; height: 12px;
	border-radius: 50%;
	background: var(--primary);
	box-shadow: 0 0 0 4px rgba(0,173,238,.35);
}
.cp-pin-pulse {
	position: absolute;
	width: 28px; height: 28px;
	border-radius: 50%;
	background: rgba(0,173,238,.55);
	animation: cpPulse 2.4s ease-out infinite;
}
@keyframes cpPulse {
	0%   { transform: scale(.4); opacity: .7; }
	100% { transform: scale(2.2); opacity: 0; }
}

.cp-count { display: none !important; }

/* City name label — sits over the bottom of each card with a dark gradient for legibility. */
.cp-card-name {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	z-index: 3;
	padding: 28px 12px 10px;
	color: #ffffff;
	font-family: var(--font-head, inherit);
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.25;
	background: linear-gradient(180deg, rgba(7,33,79,0) 0%, rgba(7,33,79,0.55) 50%, rgba(7,33,79,0.88) 100%);
	text-shadow: 0 2px 6px rgba(0,0,0,0.45);
	pointer-events: none;
}
.cp-card.has-image .cp-card-img { /* keep name readable — slight darken */ }
@media (max-width: 600px) {
	.cp-card-name { font-size: 0.72rem; padding: 22px 8px 8px; letter-spacing: 0.02em; }
}

.cp-card-foot {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	z-index: 3;
	padding: 10px 12px 12px;
	display: flex; flex-direction: column;
	gap: 2px;
}
.cp-name {
	margin: 0;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .9rem;
	letter-spacing: -.005em;
	line-height: 1.2;
	color: var(--white);
	text-shadow: 0 2px 12px rgba(6,20,43,.55);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.cp-state {
	display: inline-flex; align-items: center; gap: 6px;
	color: var(--primary);
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .76rem;
	letter-spacing: .04em;
}
.cp-state i { color: var(--primary); font-size: .72rem; }

.cp-card-glow {
	position: absolute; inset: 0;
	border-radius: var(--radius-lg);
	pointer-events: none;
	box-shadow: 0 0 0 0 rgba(0,173,238,0);
	transition: box-shadow .4s ease;
	z-index: 2;
}
.cp-card:hover .cp-card-glow {
	box-shadow: inset 0 0 0 1px rgba(0,173,238,.55), 0 0 24px -4px rgba(0,173,238,.45);
}

@media (max-width: 600px) {
	.cp-name { font-size: 1rem; }
	.cp-card-foot { padding: 14px; }
	.cp-count { font-size: .7rem; padding: 5px 10px; }
}

/* Blog — magazine cards =================================================== */
.blog-section--mag .bg-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
@media (max-width: 1024px) { .blog-section--mag .bg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .blog-section--mag .bg-grid { grid-template-columns: 1fr; } }

.bg-card {
	display: block;
	position: relative;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	text-decoration: none;
	color: var(--navy);
	box-shadow: var(--shadow-sm);
	transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
	opacity: 0;
	transform: translateY(20px);
	animation: bgRise .7s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 70ms + 80ms);
	isolation: isolate;
}
@keyframes bgRise { to { opacity: 1; transform: translateY(0); } }
.bg-card:hover {
	transform: translateY(-6px);
	border-color: rgba(0,173,238,.4);
	box-shadow: 0 24px 44px -20px rgba(11,35,64,.4);
}
.bg-card::after {
	content: "";
	position: absolute; left: 0; right: 0; bottom: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), #7EC8E3);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .5s ease;
	z-index: 2;
}
.bg-card:hover::after { transform: scaleX(1); }

.bg-card-media {
	position: relative;
	aspect-ratio: 16 / 10;
	background: linear-gradient(160deg, #0F2A50 0%, var(--navy) 60%, #06142B 100%);
	overflow: hidden;
}
.bg-card-img {
	width: 100%; height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	transition: transform .9s cubic-bezier(.2,.8,.2,1);
}
.bg-card:hover .bg-card-img { transform: scale(1.08); }

.bg-card-pattern {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	background-image:
		radial-gradient(circle at 25% 30%, rgba(0,173,238,.22), transparent 50%),
		radial-gradient(circle at 75% 70%, rgba(126,200,227,.16), transparent 55%),
		linear-gradient(rgba(126,200,227,.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(126,200,227,.06) 1px, transparent 1px);
	background-size: auto, auto, 30px 30px, 30px 30px;
	color: var(--primary);
	font-size: 3rem;
}
.bg-card-pattern i { filter: drop-shadow(0 6px 14px rgba(0,173,238,.4)); }

.bg-card-overlay {
	position: absolute; inset: 0;
	/*background: linear-gradient(180deg, rgba(11,35,64,0) 50%, rgba(11,35,64,.5) 100%);*/
	pointer-events: none;
}
.bg-card-shine {
	position: absolute;
	top: -120%; left: -40%;
	width: 60%; height: 250%;
	background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
	transform: rotate(18deg);
	pointer-events: none;
	transition: top .9s ease, left .9s ease;
}
.bg-card:hover .bg-card-shine { top: 60%; left: 120%; }

.bg-card-cat {
	position: absolute;
	top: 14px; left: 14px;
	z-index: 2;
	display: inline-flex;
	padding: 6px 12px;
	background: rgba(0,173,238,.92);
	color: var(--white);
	border-radius: 999px;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: .68rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	box-shadow: 0 4px 14px -4px rgba(0,173,238,.55);
}
.bg-card-time {
	position: absolute;
	top: 14px; right: 14px;
	z-index: 2;
	display: inline-flex; align-items: center; gap: 6px;
	padding: 5px 11px;
	background: rgba(11,35,64,.6);
	border: 1px solid rgba(126,200,227,.3);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	color: var(--white);
	border-radius: 999px;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .7rem;
	letter-spacing: .04em;
}
.bg-card-time i { color: var(--primary); font-size: .72rem; }

.bg-card-body {
	padding: 22px 22px 18px;
	display: flex; flex-direction: column;
	gap: 10px;
}
.bg-card-title {
	margin: 0;
	font-family: var(--font-head);
	font-weight: 800;
	color: var(--navy);
	font-size: 1.06rem;
	line-height: 1.35;
	letter-spacing: -.005em;
	transition: color .25s ease;
}
.bg-card:hover .bg-card-title { color: var(--primary-dark); }
.bg-card-excerpt {
	margin: 0;
	color: var(--grey);
	font-size: .9rem;
	line-height: 1.6;
}
.bg-card-foot {
	display: flex; align-items: center; justify-content: space-between;
	margin-top: 6px;
	padding-top: 14px;
	border-top: 1px solid var(--border);
}
.bg-card-date {
	align-self: flex-end;
	display: inline-block;
	color: var(--grey);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: .78rem;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.bg-card-title a {
	color: inherit;
	text-decoration: none;
}
.bg-card-title a:hover { color: var(--primary-dark); }
.bg-card-cta {
	display: inline-flex; align-items: center; gap: 6px;
	color: var(--primary);
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .82rem;
	letter-spacing: .02em;
}
.bg-card-cta i { transition: transform .3s ease; }
.bg-card:hover .bg-card-cta i { transform: translateX(4px); }

/* FAQ — two-column accordion ============================================ */
.faq-section--two .faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	max-width: 1100px;
	margin: 0 auto;
}
@media (max-width: 900px) {
	.faq-section--two .faq-grid { grid-template-columns: 1fr; gap: 14px; }
}
.faq-col {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.faq-section--two .faq-item {
	position: relative;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.faq-section--two .faq-item::before {
	content: "";
	position: absolute; left: 0; top: 0; bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, var(--primary), #7EC8E3);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform .35s ease;
}
.faq-section--two .faq-item.is-open {
	border-color: rgba(0,173,238,.45);
	box-shadow: 0 18px 36px -22px rgba(0,173,238,.45);
	background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
}
.faq-section--two .faq-item.is-open::before { transform: scaleY(1); }

.faq-section--two .faq-q {
	display: flex; align-items: center;
	width: 100%; gap: 16px;
	background: none; border: 0;
	padding: 22px 24px;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-head);
	font-weight: 700;
	color: var(--navy);
	font-size: 1rem;
	line-height: 1.4;
	letter-spacing: -.005em;
	transition: color .25s ease;
}
.faq-section--two .faq-q:hover { color: var(--primary-dark); }
.faq-section--two .faq-q-num {
	flex-shrink: 0;
	font-family: var(--font-head);
	font-weight: 900;
	font-size: 1rem;
	color: var(--primary);
	letter-spacing: .02em;
	min-width: 26px;
}
.faq-section--two .faq-q-text { flex: 1; }
.faq-section--two .faq-icon {
	flex-shrink: 0;
	width: 32px; height: 32px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--primary-light);
	color: var(--primary);
	border-radius: 50%;
	font-size: 1rem;
	font-weight: 900;
	transition: transform .3s ease, background .3s ease, color .3s ease;
}
.faq-section--two .faq-item.is-open .faq-icon {
	transform: rotate(45deg);
	background: var(--primary);
	color: var(--white);
}
.faq-section--two .faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .45s cubic-bezier(.2,.8,.2,1);
}
.faq-section--two .faq-a > div {
	padding: 0 24px 24px 64px;
	color: var(--grey);
	font-size: .94rem;
	line-height: 1.7;
}
.faq-section--two .faq-a > div p { margin: 0 0 12px; }
.faq-section--two .faq-a > div p:last-child { margin-bottom: 0; }
.faq-section--two .faq-item.is-open .faq-a { max-height: 800px; }

@media (max-width: 600px) {
	.faq-section--two .faq-q       { padding: 18px 18px; gap: 12px; font-size: .95rem; }
	.faq-section--two .faq-a > div { padding: 0 18px 20px 50px; }
	.faq-section--two .faq-q-num   { min-width: 22px; }
}

/* CTA section ============================================================= */
.cta-section {
	background: linear-gradient(135deg, var(--navy), var(--navy-700));
	color: var(--white);
	padding: 80px 0;
	text-align: center;
}
.cta-section h2 { color: var(--white); }
.cta-section p { color: rgba(255,255,255,.82); max-width: 640px; margin: 0 auto 28px; }
.cta-contact-bar {
	display: flex; justify-content: center; flex-wrap: wrap; gap: 22px;
	margin-top: 40px; padding-top: 28px;
	border-top: 1px solid rgba(255,255,255,.1);
	font-size: .9rem;
}
.cta-contact-bar .cc-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.82); }
.cta-contact-bar .cc-item a { color: var(--white); }
.cta-contact-bar .cc-item a:hover { color: var(--sky); }

/* Footer ================================================================== */
.footer {
	position: relative;
	background: var(--primary);
	color: rgba(255,255,255,.92);
	padding: 72px 0 28px;
	font-size: .92rem;
	overflow: hidden;
}

/* ===== 404 — Elevator-shaft themed not-found page ===== */
.ar-hero--404 {
	min-height: calc(100vh - 80px) !important;
	padding: 0 !important;
	overflow: hidden;
	background:
		radial-gradient(ellipse at 80% 25%, rgba(108,212,255,0.10), transparent 55%),
		linear-gradient(135deg, #0a1d3a 0%, #0d2347 55%, #06142B 100%) !important;
	color: #fff;
	position: relative;
	isolation: isolate;
	display: flex !important;
	align-items: center;
}
.ar-hero--404 .ar-hero-inner { width: 100%; position: relative; z-index: 4; padding: clamp(48px, 6vw, 96px) clamp(20px, 4vw, 48px); }
.err404-content { text-align: center; max-width: 720px; margin: 0 auto; }

/* Decorative elevator rig on the right */
.err404-rig {
	position: absolute;
	right: clamp(24px, 5vw, 80px);
	top: 50%;
	transform: translateY(-50%);
	width: clamp(120px, 14vw, 200px);
	height: clamp(260px, 32vw, 460px);
	z-index: 1;
	pointer-events: none;
	opacity: .35;
}
.err404-rail {
	position: absolute; top: 0; bottom: 0; width: 4px;
	background: linear-gradient(180deg, transparent, rgba(108,212,255,.55) 20%, rgba(108,212,255,.55) 80%, transparent);
	border-radius: 4px;
}
.err404-rail--l { left: 0; }
.err404-rail--r { right: 0; }
.err404-cable {
	position: absolute; left: 50%; top: 0; bottom: 60%;
	width: 2px;
	background: linear-gradient(180deg, rgba(108,212,255,.7), rgba(108,212,255,0));
	transform: translateX(-50%);
}
.err404-cabin {
	position: absolute;
	left: 12px; right: 12px;
	bottom: 18%;
	height: 28%;
	border-radius: 12px 12px 8px 8px;
	background: linear-gradient(180deg, #15355f 0%, #0a1d3a 100%);
	border: 1px solid rgba(108,212,255,.35);
	box-shadow: 0 18px 40px -16px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.04);
	overflow: hidden;
	animation: err404-bounce 4.5s ease-in-out infinite;
}
.err404-cabin-door { position: absolute; top: 8px; bottom: 18px; width: 38%; background: linear-gradient(180deg, #1d3f6f, #0e2347); border: 1px solid rgba(108,212,255,.18); }
.err404-cabin-door--l { left: 8px; border-radius: 4px 0 0 4px; transform-origin: left center; animation: err404-doorL 4.5s ease-in-out infinite; }
.err404-cabin-door--r { right: 8px; border-radius: 0 4px 4px 0; transform-origin: right center; animation: err404-doorR 4.5s ease-in-out infinite; }
.err404-cabin-light {
	position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
	width: 28%; height: 5px; border-radius: 3px;
	background: #6cd4ff;
	box-shadow: 0 0 18px rgba(108,212,255,.85);
	opacity: .7;
}
@keyframes err404-bounce {
	0%, 100% { transform: translateY(0); }
	45%      { transform: translateY(-14px); }
	55%      { transform: translateY(-14px); }
}
@keyframes err404-doorL {
	0%, 35%, 65%, 100% { transform: translateX(0); }
	45%, 55%           { transform: translateX(-90%); }
}
@keyframes err404-doorR {
	0%, 35%, 65%, 100% { transform: translateX(0); }
	45%, 55%           { transform: translateX(90%); }
}

/* Hide the rig on small screens (text takes priority) */
@media (max-width: 900px) { .err404-rig { display: none; } }

/* Content */
.err404-tag {
	display: inline-block;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #6cd4ff;
	padding: 6px 14px;
	border: 1px solid rgba(108,212,255,0.32);
	background: rgba(108,212,255,0.08);
	border-radius: 999px;
	margin-bottom: 24px;
}
.err404-code {
	font-family: var(--font-head);
	font-size: clamp(5rem, 14vw, 9rem);
	line-height: 1;
	font-weight: 900;
	letter-spacing: -0.04em;
	margin: 0;
	background: linear-gradient(180deg, #ffffff 0%, #6cd4ff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 30px 60px rgba(108,212,255,0.18);
}
.err404-zero {
	display: inline-block;
	animation: err404-spin 6s ease-in-out infinite;
	transform-origin: center;
}
@keyframes err404-spin {
	0%, 100% { transform: rotate(0); }
	50%      { transform: rotate(180deg); }
}
.err404-title {
	font-size: clamp(1.6rem, 2.8vw, 2.2rem);
	font-weight: 800;
	margin: 16px 0 12px;
	color: #fff;
}
.err404-lead {
	font-size: clamp(1rem, 1.3vw, 1.1rem);
	line-height: 1.65;
	color: rgba(255,255,255,0.78);
	margin: 0 auto 28px;
	max-width: 540px;
}

/* Quick-link chips */
.err404-links {
	list-style: none; margin: 0 auto 28px; padding: 0;
	display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.err404-link {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 10px 16px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(108,212,255,0.20);
	border-radius: 999px;
	color: rgba(255,255,255,0.88);
	text-decoration: none;
	font-size: 0.92rem;
	font-weight: 600;
	transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.err404-link i { color: #6cd4ff; font-size: 0.9rem; }
.err404-link:hover {
	background: rgba(108,212,255,0.15);
	border-color: rgba(108,212,255,0.55);
	color: #fff;
	transform: translateY(-2px);
}

/* Search */
.err404-search {
	position: relative;
	max-width: 520px;
	margin: 0 auto 26px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(108,212,255,0.22);
	border-radius: 14px;
	padding: 6px 6px 6px 44px;
}
.err404-search-icon {
	position: absolute;
	left: 16px; top: 50%; transform: translateY(-50%);
	color: #6cd4ff;
}
.err404-search input[type="search"] {
	background: transparent;
	border: 0;
	color: #fff;
	font-size: 0.96rem;
	padding: 12px 4px;
	outline: none;
	width: 100%;
	min-width: 0;
}
.err404-search input[type="search"]::placeholder { color: rgba(255,255,255,0.55); }
.err404-search-btn {
	border: 0;
	padding: 0 18px;
	background: linear-gradient(135deg, #00ADEE, #0078A8);
	color: #fff;
	font-weight: 700;
	font-size: 0.92rem;
	border-radius: 10px;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease;
}
.err404-search-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(0,173,238,.55); }

/* Bottom CTAs */
.err404-cta {
	display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.err404-cta-primary,
.err404-cta-ghost {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
	transition: all .25s ease;
}
.err404-cta-primary {
	background: linear-gradient(135deg, #00ADEE, #0078A8);
	color: #fff;
	box-shadow: 0 14px 30px -14px rgba(0,173,238,.55);
}
.err404-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -14px rgba(0,173,238,.7); }
.err404-cta-ghost {
	background: transparent;
	color: rgba(255,255,255,0.85);
	border: 1px solid rgba(108,212,255,0.32);
}
.err404-cta-ghost:hover { background: rgba(108,212,255,0.1); color: #fff; border-color: rgba(108,212,255,0.55); }

@media (max-width: 720px) {
	.err404-search { grid-template-columns: 1fr; padding: 8px; padding-left: 44px; }
	.err404-search-btn { padding: 12px; }
}

/* ===== Generic page hero (page.php) — compact banner (privacy / terms) ===== */
.terra-split-hero .ar-hero.ar-hero--page,
.ar-hero--page {
	min-height: 280px !important;
	max-height: 360px;
	padding: 0 !important;
	overflow: hidden;
	background: var(--primary) !important;
	display: block !important;
	isolation: isolate;
	position: relative;
	color: #fff;
}
.ar-hero--page > .ar-hero-bg {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	z-index: 1;
	display: block !important;
}
.ar-hero--page::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: rgba(0,140,194,0.55);
	pointer-events: none;
}
.terra-split-hero .ar-hero.ar-hero--page .ar-hero-inner,
.ar-hero--page .ar-hero-inner {
	position: relative;
	z-index: 4;
	min-height: 280px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(40px, 5vw, 64px) clamp(20px, 4vw, 48px);
	text-align: center;
}
.ar-hero--page .ar-hero-content {
	max-width: 920px;
	margin: 0 auto;
	text-align: center;
}
.ar-hero--page .ar-hero-title {
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	line-height: 1.15;
	color: #fff;
	margin: 0 0 12px;
}
.ar-hero--page .ar-hero-sub {
	font-size: clamp(0.95rem, 1.2vw, 1.05rem);
	line-height: 1.6;
	color: rgba(255,255,255,0.92);
	margin: 0;
}

/* ===== Generic page body (privacy / terms / fallback page.php) ===== */
.page-body { padding: clamp(48px, 6vw, 96px) 0; background: #fff; }
.page-body .bp-content { max-width: 820px; margin: 0 auto; color: var(--navy, #07214f); font-size: 1rem; line-height: 1.75; }
.page-body .bp-content > *:first-child { margin-top: 0; }
.page-body .bp-content p { margin: 0 0 1.1em; color: rgba(7,33,79,0.86); }
.page-body .bp-content ul,
.page-body .bp-content ol { margin: 0 0 1.2em 1.2em; padding: 0; }
.page-body .bp-content li { margin: 0 0 .5em; line-height: 1.7; }
.page-body .bp-content a { color: var(--primary, #00ADEE); text-decoration: underline; text-underline-offset: 3px; }
.page-body .bp-content a:hover { color: #0078A8; }
.page-body .bp-content strong { color: var(--navy, #07214f); }
.page-body .bp-content blockquote {
	margin: 1.4em 0;
	padding: 14px 20px;
	border-left: 4px solid var(--primary, #00ADEE);
	background: rgba(108,212,255,.08);
	border-radius: 0 10px 10px 0;
	color: var(--navy, #07214f);
	font-style: italic;
}
.page-body .bp-content table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: .94rem; }
.page-body .bp-content th,
.page-body .bp-content td { padding: 12px 14px; border-bottom: 1px solid rgba(7,33,79,.10); text-align: left; }
.page-body .bp-content th { background: rgba(108,212,255,.08); color: var(--navy, #07214f); font-weight: 800; }

/* ===== 4-column footer (Brand · India Office · Dubai Office · Quick Links) ===== */
.footer--4col .footer-wrap { max-width: 1320px; margin: 0 auto; padding: 0 clamp(20px, 3vw, 40px); position: relative; z-index: 1; }
.footer--4col .footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: clamp(28px, 3vw, 56px);
	align-items: start;
}
@media (max-width: 1024px) { .footer--4col .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 28px; } }
@media (max-width: 600px)  { .footer--4col .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.footer--4col .footer-col { color: rgba(255,255,255,.78); }
.footer--4col .footer-col h3 { font-size: 1rem; font-weight: 800; color: #fff; margin: 0 0 14px; letter-spacing: .01em; }

/* Column 1 — Brand */
.footer--4col .footer-col--brand .f-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}
.footer--4col .footer-col--brand .footer-logo-img { height: 56px; width: auto; max-width: 96px; object-fit: contain; flex-shrink: 0; border-radius:3px; }
.footer--4col .footer-col--brand .f-logo-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.footer--4col .footer-col--brand .f-logo-text .brand {
	font-family: var(--font-head);
	font-size: 1.05rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: .01em;
	white-space: nowrap;
}
.footer--4col .footer-col--brand .f-logo-text .tagline {
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255,255,255,.85);
	margin-top: 4px;
}
.footer--4col .footer-tagline { font-size: .92rem; line-height: 1.65; margin: 0 0 16px; color: rgba(255,255,255,.92); }
.footer--4col .footer-hours {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 8px 14px;
	background: var(--white);
	border: 1px solid var(--white);
	border-radius: 999px;
	color: var(--primary);
	font-size: .88rem;
	font-weight: 600;
	margin-bottom: 18px;
}
.footer--4col .footer-hours-icon { color: var(--primary); }
.footer--4col .footer-certs { margin-top: 6px; }
.footer--4col .footer-certs-logos { list-style: none; margin: 0 0 8px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.footer--4col .footer-certs-logos li {
	background: rgba(255,255,255,.92);
	border-radius: 8px;
	padding: 6px 8px;
	display: inline-flex; align-items: center; justify-content: center;
}
.footer--4col .footer-cert-logo { height: 36px; width: auto; max-width: 80px; object-fit: contain; display: block; }
.footer--4col .footer-certs-text { margin: 0; font-size: .82rem; color: rgba(255,255,255,.85); }

/* Columns 2 + 3 — Office cards */
.footer--4col .footer-office { color: rgba(255,255,255,.92); }
.footer--4col .footer-office-head { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer--4col .footer-office-pin {
	width: 38px; height: 38px;
	flex-shrink: 0;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--white);
	border-radius: 10px;
	color: var(--primary);
	box-shadow: 0 8px 20px -10px rgba(0,52,80,.35);
}
.footer--4col .footer-office-tag {
	display: block;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: rgba(255,255,255,.92);
	margin-bottom: 2px;
}
.footer--4col .footer-office-name { margin: 0; font-size: 1.1rem; font-weight: 800; color: #fff; line-height: 1.25; }
.footer--4col .footer-office-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer--4col .footer-office-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; line-height: 1.5; }
.footer--4col .footer-office-icon {
	width: 26px; height: 26px;
	flex-shrink: 0;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--white);
	border: 1px solid var(--white);
	border-radius: 7px;
	color: var(--primary);
	font-size: .78rem;
}
/* WhatsApp icon uses the same white treatment */
.footer--4col .footer-office-icon--wa { background: var(--white); border-color: var(--white); color: var(--primary); }
.footer--4col .footer-office-list a { color: rgba(255,255,255,.92); text-decoration: none; transition: color .2s ease; }
.footer--4col .footer-office-list a:hover { color: var(--white); }

/* Column 4 — Quick Links */
.footer--4col .footer-links-heading { font-size: 1rem; font-weight: 800; color: #fff; margin: 0 0 14px; }
.footer--4col .footer-links-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer--4col .footer-links-list a {
	color: rgba(255,255,255,.92);
	text-decoration: none;
	font-size: .92rem;
	transition: color .2s ease, padding-left .2s ease;
	display: inline-block;
}
.footer--4col .footer-links-list a::before {
	content: "→";
	display: inline-block;
	margin-right: 8px;
	color: rgba(255,255,255,.85);
	transition: transform .2s ease;
}
.footer--4col .footer-links-list a:hover { color: var(--white); padding-left: 4px; }

/* Bottom bar */
.footer--4col .footer-bottom {
	margin-top: clamp(36px, 4vw, 56px);
	padding-top: 22px;
	border-top: 1px solid rgba(255,255,255,.30);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
}
.footer--4col .footer-copy { margin: 0; font-size: .82rem; color: rgba(255,255,255,.85); }
.footer--4col .footer-credit { color: rgba(255,255,255,.85); }
.footer--4col .footer-credit a { color: var(--white); }
.footer--4col .footer-credit a:hover { color: var(--white); }
.footer--4col .footer-bottom-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 18px; flex-wrap: wrap; }
.footer--4col .footer-bottom-links a { color: rgba(255,255,255,.92); font-size: .82rem; text-decoration: none; }
.footer--4col .footer-bottom-links a:hover { color: var(--white); }
.footer::before {
	content: "";
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000, transparent 70%);
	pointer-events: none;
}
.footer .container { position: relative; z-index: 1; }
.footer a { color: rgba(255,255,255,.92); transition: color .25s ease; }
.footer a:hover { color: var(--white); }
.footer h5,
.footer .footer-col-title {
	font-family: var(--font-head); color: var(--white);
	font-size: 1rem; font-weight: 800; margin: 0 0 16px;
	letter-spacing: .02em;
	position: relative; padding-bottom: 10px;
}
.footer h5::after,
.footer .footer-col-title::after {
	content: "";
	position: absolute; left: 0; bottom: 0;
	width: 28px; height: 2px;
	background: var(--white);
	border-radius: 2px;
}
.footer-wrap {
	width: 100%;
	padding: 0 clamp(20px, 3vw, 56px);
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr;
	gap: 36px;
}

/* Brand block */
.footer-brand .f-logo {
	display: flex; align-items: center; gap: 14px;
	margin-bottom: 18px;
	padding: 14px 16px;
	background: rgba(255,255,255,.10);
	border: 1px solid rgba(255,255,255,.30);
	border-radius: var(--radius-lg);
}
.footer-brand .footer-logo-img {
	width: 48px; height: 48px;
	object-fit: contain;
	flex-shrink: 0;
}
.footer-brand .f-logo-text {
	display: flex; flex-direction: column; gap: 2px;
	min-width: 0;
}
.footer-brand .f-logo-text .brand {
	font-family: var(--font-head);
	font-weight: 900;
	color: var(--white);
	letter-spacing: .06em;
	font-size: 1rem;
}
.footer-brand .f-logo-text .tagline {
	font-size: .76rem;
	color: rgba(255,255,255,.92);
	letter-spacing: .04em;
	font-family: var(--font-head);
	font-weight: 600;
}
.footer-brand > p {
	color: rgba(255,255,255,.92);
	font-size: .88rem;
	line-height: 1.6;
	margin: 0 0 18px;
}

.footer-contact-item {
	display: flex; align-items: flex-start; gap: 12px;
	margin-bottom: 10px;
	font-size: .86rem;
	color: rgba(255,255,255,.92);
}
.footer-contact-item .fc-icon {
	flex-shrink: 0;
	width: 28px; height: 28px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--white);
	border: 1px solid var(--white);
	border-radius: 8px;
	color: var(--primary);
	font-size: .78rem;
}
.footer-contact-item a { color: rgba(255,255,255,.92); }
.footer-contact-item a:hover { color: var(--white); }

.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 9px; font-size: .9rem; }
.footer ul li a {
	display: inline-flex; align-items: center; gap: 6px;
	transition: color .25s ease, transform .25s ease;
}
.footer ul li a:hover { transform: translateX(3px); }

/* Widgetised footer columns */
.footer-widget { margin-bottom: 18px; }
.footer-widget:last-child { margin-bottom: 0; }
.footer-widget .menu,
.footer-widget ul { list-style: none; padding: 0; margin: 0; }
.footer-bottom-widget { display: contents; }
.footer-bottom-links .menu,
.footer-bottom-links ul {
	display: flex; gap: 22px; list-style: none; padding: 0; margin: 0;
}
.footer-bottom-links .menu li,
.footer-bottom-links ul li { margin: 0; }
.footer-bottom-links .menu a,
.footer-bottom-links ul a {
	font-family: var(--font-head);
	font-weight: 600;
	color: rgba(255,255,255,.7);
	text-decoration: none;
	transition: color .25s ease;
}
.footer-bottom-links .menu a:hover { color: var(--primary); }
.footer-bottom-links .screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Operations tag list (under brand block) */
.footer-tags {
	list-style: none; padding: 0; margin: 18px 0 22px;
	display: flex; flex-direction: column; gap: 8px;
}
.footer-tags li {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 8px 14px;
	background: rgba(255,255,255,.10);
	border: 1px solid rgba(255,255,255,.30);
	border-radius: 999px;
	color: var(--white);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: .8rem;
	letter-spacing: .02em;
	max-width: max-content;
}
.footer-tags li i { color: var(--white); font-size: .82rem; }

.footer-contact-block { display: flex; flex-direction: column; gap: 10px; }

/* Bottom bar */
.footer-bottom {
	margin-top: 48px; padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,.30);
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
	font-size: .82rem; color: rgba(255,255,255,.92);
}
.footer-copy { margin: 0; line-height: 1.6; }
.footer-credit { color: rgba(255,255,255,.85); }
.footer-credit a {
	color: var(--white);
	font-weight: 700;
	text-decoration: none;
}
.footer-credit a:hover { color: var(--white); }
.footer-heart { color: var(--white); font-style: normal; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a {
	font-family: var(--font-head);
	font-weight: 600;
	color: rgba(255,255,255,.92);
	text-decoration: none;
	transition: color .25s ease;
}
.footer-bottom-links a:hover { color: var(--white); }

@media (max-width: 1100px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
	.footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 24px 18px;
	}
	.footer-brand { grid-column: 1 / -1; }
	.footer-tags li { font-size: .74rem; padding: 6px 12px; }
}
.footer-bottom { row-gap: 8px; }

/* WhatsApp float ========================================================= */
/* Floating action cluster — call, whatsapp, scroll-to-top */
.terra-fab {
	position: fixed;
	right: 22px; bottom: 22px;
	z-index: 999;
	display: flex; flex-direction: column;
	gap: 12px;
	pointer-events: none;
}
.terra-fab-btn {
	pointer-events: auto;
	width: 54px; height: 54px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
	border: 0;
	color: var(--white);
	font-size: 1.3rem;
	cursor: pointer;
	text-decoration: none;
	transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.terra-fab-btn:hover { transform: translateY(-3px) scale(1.06); color: var(--white); }

.terra-fab-call {
	background: var(--red, #FF5C5C);
	box-shadow: 0 6px 18px -4px rgba(255,92,92,.55);
	animation: fabPulseRed 2.4s ease-in-out infinite;
}
.terra-fab-call:hover { background: #e8434c; box-shadow: 0 10px 24px -4px rgba(255,92,92,.7); }

.terra-fab-wa {
	background: var(--green, #25D366);
	box-shadow: 0 6px 18px -4px rgba(37,211,102,.55);
}
.terra-fab-wa:hover { background: #1ebe5a; box-shadow: 0 10px 24px -4px rgba(37,211,102,.7); }

.terra-fab-top {
	background: var(--primary);
	color: var(--white);
	box-shadow: 0 6px 18px -4px rgba(0,52,80,.35);
	border: 2px solid var(--white);
	opacity: 0;
	transform: translateY(12px);
	transition: opacity .3s ease, transform .3s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.terra-fab-top.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.terra-fab-top:hover {
	background: var(--white);
	color: var(--primary);
	border-color: var(--white);
	box-shadow: 0 10px 24px -4px rgba(0,52,80,.35);
}

@keyframes fabPulseRed {
	0%, 100% { box-shadow: 0 6px 18px -4px rgba(255,92,92,.55), 0 0 0 0 rgba(255,92,92,.45); }
	50%      { box-shadow: 0 6px 18px -4px rgba(255,92,92,.55), 0 0 0 12px rgba(255,92,92,0); }
}

@media (max-width: 600px) {
	.terra-fab { right: 12px; bottom: 12px; gap: 10px; }
	.terra-fab-btn { width: 46px; height: 46px; font-size: 1.05rem; }
}
@media (max-width: 380px) {
	.terra-fab { right: 8px; bottom: 8px; gap: 8px; }
	.terra-fab-btn { width: 42px; height: 42px; font-size: 1rem; }
}

/* Breadcrumb ============================================================== */
.breadcrumb { background: var(--grey-light); padding: 14px 0; font-size: .85rem; color: var(--grey); border-bottom: 1px solid var(--border); }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--border); }
.breadcrumb a { color: var(--navy); }

/* Elevator Types — Showcase ============================================== */
.types-section--floors .section-head { margin-bottom: 32px; }
.types-section-inner {
	width: 100%;
	max-width: none;
	padding-left: clamp(20px, 3vw, 48px);
	padding-right: clamp(20px, 3vw, 48px);
}
.ele-card-name a {
	color: inherit;
	text-decoration: none;
}
.ele-card-name a:hover { text-decoration: none; }

/* Stage / grid */
.types-stage {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
@media (max-width: 1024px) { .types-stage { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .types-stage { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .types-stage { grid-template-columns: 1fr; } }

/* Card — full-bleed image with bottom gradient overlay */
.ele-card {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	border-radius: var(--radius-lg);
	overflow: hidden;
	color: var(--white);
	text-decoration: none;
	background: var(--navy);
	box-shadow: 0 14px 28px -16px rgba(11,35,64,.45);
	isolation: isolate;
	transform: translateY(22px);
	opacity: 0;
	animation: eleRise .75s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 65ms + 80ms);
	transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
}
@keyframes eleRise { to { opacity: 1; transform: translateY(0); } }
.ele-card.is-hidden {
	display: none;
}
.ele-card.is-filtering-in {
	animation: eleRise .55s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 40ms);
}

.ele-card-media {
	position: absolute; inset: 0;
	overflow: hidden;
	z-index: 0;
}
.ele-card-img {
	width: 100%; height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	transition: transform .9s cubic-bezier(.2,.8,.2,1), filter .45s ease;
}
.ele-card:hover .ele-card-img {
	transform: scale(1.10);
	filter: brightness(1.04) saturate(1.05);
}
.ele-card-overlay {
	position: absolute; inset: 0;
	/*background: linear-gradient(180deg, rgba(0,173,238,0) 35%, rgba(0,173,238,.55) 65%, rgba(0,173,238,.92) 100%);*/
	transition: opacity .45s ease;
	z-index: 1;
}
.ele-card:hover .ele-card-overlay { opacity: .96; }

.ele-card-shine {
	position: absolute;
	top: -120%; left: -40%;
	width: 60%; height: 250%;
	background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
	transform: rotate(18deg);
	pointer-events: none;
	z-index: 2;
	transition: transform .9s ease, left .9s ease, top .9s ease;
}
.ele-card:hover .ele-card-shine {
	top: 60%; left: 120%;
}

.ele-card-foot {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	z-index: 3;
	padding: 18px 20px 20px;
	display: flex; flex-direction: column;
	gap: 10px;
}
.ele-card-cat {
	display: inline-flex; align-items: center; align-self: flex-start;
	padding: 5px 12px;
	background: rgba(0,173,238,.92);
	color: var(--white);
	border-radius: 999px;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: .68rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	box-shadow: 0 4px 14px -4px rgba(0,173,238,.55);
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .35s ease, transform .35s ease;
}
.ele-card:hover .ele-card-cat,
.ele-card:focus-visible .ele-card-cat {
	opacity: 1;
	transform: translateY(0);
}
.ele-card-name {
	margin: 0;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 1.12rem;
	line-height: 1.25;
	color: var(--white);
	text-shadow: 0 2px 12px rgba(6,20,43,.55);
}
.ele-card-cta {
	display: inline-flex; align-items: center; gap: 8px;
	align-self: flex-start;
	padding: 9px 16px;
	background: rgba(255,255,255,.10);
	border: 1px solid rgba(255,255,255,.22);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border-radius: 999px;
	color: var(--white);
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .8rem;
	letter-spacing: .04em;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .35s ease, transform .35s ease, background .35s ease, border-color .35s ease;
}
.ele-card:hover .ele-card-cta {
	opacity: 1;
	transform: translateY(0);
	background: var(--primary);
	border-color: var(--primary);
}
.ele-card-cta i { transition: transform .3s ease; }
.ele-card:hover .ele-card-cta i { transform: translateX(3px); }

.ele-card-glow {
	position: absolute; inset: 0;
	border-radius: var(--radius-lg);
	pointer-events: none;
	box-shadow: 0 0 0 0 rgba(0,173,238,0);
	transition: box-shadow .4s ease;
	z-index: 4;
}
.ele-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 28px 50px -16px rgba(11,35,64,.5);
}
.ele-card:hover .ele-card-glow {
	box-shadow: inset 0 0 0 1px rgba(0,173,238,.55), 0 0 28px -4px rgba(0,173,238,.45);
}

@media (max-width: 720px) {
	.ele-card { aspect-ratio: 1 / 1.15; }
	.ele-card-name { font-size: .98rem; }
	.ele-card-num { min-width: 38px; height: 38px; font-size: .85rem; }
	.ele-card-num::before { font-size: .5rem; }
	.ele-card-cta { padding: 7px 12px; font-size: .72rem; }
}

/* Why Choose — editorial feature grid ==================================== */
.why-section--editorial {
	position: relative;
	background: var(--white);
	overflow: hidden;
}
.why-section--editorial.why-section--grey { background: var(--grey-light); }
.why-bg-grid {
	position: absolute; inset: 0;
	background-image: radial-gradient(circle, rgba(11,35,64,.06) 1px, transparent 1px);
	background-size: 28px 28px;
	mask-image: radial-gradient(ellipse 70% 60% at 100% 100%, #000 0%, transparent 60%);
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 100% 100%, #000 0%, transparent 60%);
	pointer-events: none;
}

.why-head {
	position: relative; z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(28px, 4vw, 64px);
	align-items: end;
	margin-bottom: 48px;
}
.why-head-text .section-label { display: inline-block; margin-bottom: 12px; }
.why-head-text h2 {
	margin: 0;
	font-size: clamp(1.9rem, 3vw, 2.6rem);
	color: var(--navy);
	line-height: 1.15;
	letter-spacing: -.01em;
}
.why-head-side .section-subtitle {
	margin: 0 0 16px;
	color: var(--grey);
	font-size: 1rem;
	line-height: 1.6;
}
.why-compare-tag {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 10px 16px;
	background: linear-gradient(90deg, var(--primary-light), rgba(0,173,238,.04));
	border: 1px solid rgba(0,173,238,.25);
	border-radius: 999px;
	color: var(--primary-dark);
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .85rem;
}
.why-compare-tag i { color: var(--primary); }
@media (max-width: 900px) {
	.why-head { grid-template-columns: 1fr; gap: 18px; align-items: start; margin-bottom: 36px; }
}

/* Feature grid */
.why-feature-grid {
	position: relative; z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
@media (max-width: 1024px) { .why-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .why-feature-grid { grid-template-columns: 1fr; } }

.why-feat {
	position: relative;
	display: flex; flex-direction: column;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	opacity: 0;
	transform: translateY(22px);
	animation: whyRise .75s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 90ms + 80ms);
	transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
@keyframes whyRise { to { opacity: 1; transform: translateY(0); } }
.why-feat:hover {
	transform: translateY(-6px);
	border-color: rgba(0,173,238,.4);
	box-shadow: 0 24px 44px -20px rgba(11,35,64,.4);
}
.why-feat::after {
	content: "";
	position: absolute; left: 0; right: 0; bottom: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), #7EC8E3);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .5s ease;
}
.why-feat:hover::after { transform: scaleX(1); }

.why-feat-media {
	position: relative;
	aspect-ratio: 3 / 2;
	background: linear-gradient(160deg, #0F2A50 0%, var(--navy) 60%, #06142B 100%);
	overflow: hidden;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 60px) 100%, 0 100%);
}
.why-feat-img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	transition: transform .9s cubic-bezier(.2,.8,.2,1);
}
.why-feat:hover .why-feat-img { transform: scale(1.08); }
.why-feat-overlay {
	position: absolute; inset: 0;
	/*background: linear-gradient(180deg, rgba(11,35,64,0) 55%, rgba(11,35,64,.45) 100%);*/
	pointer-events: none;
}
.why-feat-num {
	position: absolute;
	top: 16px; left: 16px;
	z-index: 2;
	display: inline-flex; align-items: center; justify-content: center;
	width: 50px; height: 50px;
	background: rgba(11,35,64,.55);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(126,200,227,.35);
	border-radius: 12px;
	font-family: var(--font-head);
	font-weight: 900;
	font-size: 1.05rem;
	letter-spacing: .04em;
	color: var(--white);
}

.why-feat-body {
	padding: 24px 24px 28px;
	display: flex; flex-direction: column;
	gap: 8px;
	flex: 1;
}
.why-feat-title {
	margin: 0;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 1.18rem;
	color: var(--navy);
	line-height: 1.3;
	letter-spacing: -.005em;
}
.why-feat-tag {
	margin: 0;
	color: var(--primary-dark);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: .9rem;
	line-height: 1.45;
}
.why-feat-text {
	margin: 8px 0 0;
	color: var(--grey);
	font-size: .94rem;
	line-height: 1.65;
}

@media (max-width: 600px) {
	.why-feat-body { padding: 20px 20px 24px; }
	.why-feat-num  { width: 42px; height: 42px; font-size: .92rem; }
}

/* Process Steps — Workflow Pipeline (bento) ============================= */
.process-section--pipeline .section-head { margin-bottom: 48px; }
.pipeline {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
@media (max-width: 1024px) { .pipeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .pipeline { grid-template-columns: 1fr; } }

.pipeline-step {
	position: relative;
	overflow: hidden;
	background: var(--primary);
	color: var(--white);
	border-radius: var(--radius-lg);
	padding: 24px 26px 26px;
	min-height: 200px;
	box-shadow: 0 14px 28px -16px rgba(0,173,238,.45);
	opacity: 0;
	transform: translateY(20px);
	animation: psRise .7s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 80ms + 80ms);
	transition: transform .35s ease, box-shadow .35s ease;
}
@keyframes psRise { to { opacity: 1; transform: translateY(0); } }

.pipeline-step::before {
	content: "";
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
	background-size: 36px 36px;
	mask-image: radial-gradient(ellipse 80% 70% at 100% 0%, #000 0%, transparent 65%);
	-webkit-mask-image: radial-gradient(ellipse 80% 70% at 100% 0%, #000 0%, transparent 65%);
	pointer-events: none;
}

.pipeline-step:hover {
	transform: translateY(-6px);
	box-shadow: 0 26px 40px -18px rgba(0,173,238,.55);
}

.ps-num {
	position: absolute;
	top: -10px; right: 4px;
	z-index: 1;
	font-family: var(--font-head);
	font-weight: 900;
	font-size: clamp(6rem, 9vw, 8.5rem);
	line-height: 1;
	letter-spacing: -.04em;
	color: transparent;
	-webkit-text-stroke: 2px rgba(255,255,255,.30);
	pointer-events: none;
	transition: color .35s ease, -webkit-text-stroke-color .35s ease;
}
.pipeline-step:hover .ps-num {
	-webkit-text-stroke-color: rgba(255,255,255,.65);
}

.ps-head {
	position: relative; z-index: 2;
	display: flex; align-items: center; gap: 12px;
	margin-bottom: 28px;
}
.ps-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px;
	background: var(--white);
	border: 1px solid var(--white);
	border-radius: 12px;
	color: var(--primary);
	font-size: 1.05rem;
	transition: background .3s ease, color .3s ease, transform .3s ease;
}
.pipeline-step:hover .ps-icon {
	background: var(--white);
	color: var(--primary);
	transform: rotate(-6deg) scale(1.05);
}
.ps-tag {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .68rem;
	letter-spacing: .25em;
	text-transform: uppercase;
	color: var(--white);
}

.ps-body {
	position: relative; z-index: 2;
	display: flex; flex-direction: column;
	gap: 8px;
}
.ps-title {
	margin: 0;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 1.18rem;
	letter-spacing: -.005em;
	color: var(--white);
}
.ps-detail {
	margin: 0;
	color: rgba(255,255,255,.92);
	font-size: .92rem;
	line-height: 1.55;
}

/* Underline accent that grows on hover */
.ps-bar {
	position: absolute; left: 26px; right: 26px; bottom: 18px;
	height: 2px;
	background: var(--white);
	transform: scaleX(.25);
	transform-origin: left;
	transition: transform .5s cubic-bezier(.2,.8,.2,1);
	z-index: 2;
}
.pipeline-step:hover .ps-bar { transform: scaleX(1); }


/* Quote popup ============================================================ */
.quote-popup {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	width: 100vw; height: 100vh;
	z-index: 1000;
	display: flex; align-items: center; justify-content: center;
	padding: 24px;
	box-sizing: border-box;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity .35s ease, visibility .35s;
}
.quote-popup *,
.quote-popup *::before,
.quote-popup *::after { box-sizing: border-box; }
.quote-popup[hidden] { display: none; }
.quote-popup.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}
/* JS sets position:fixed + top:-{scrollY} on body when popup is open;
   no global overflow lock here so mobile scroll restores cleanly on close. */

.quote-popup-backdrop {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	border: 0; padding: 0; cursor: pointer;
	background: rgba(6,20,43,.72);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	opacity: 0;
	transition: opacity .35s ease;
}
.quote-popup.is-open .quote-popup-backdrop { opacity: 1; }

.quote-popup-shell {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 640px;
	max-height: calc(100vh - 48px);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 30px 60px -12px rgba(11,35,64,.55), 0 0 0 1px rgba(0,173,238,.18);
	transform: scale(.85) rotateX(8deg);
	transform-origin: center;
	opacity: 0;
	transition: transform .55s cubic-bezier(.2,.9,.2,1.05), opacity .35s ease;
	background: var(--white);
}
.quote-popup.is-open .quote-popup-shell {
	transform: scale(1) rotateX(0);
	opacity: 1;
}
@media (max-width: 760px) {
	.quote-popup { padding: 12px; }
	.quote-popup-shell { max-height: calc(100vh - 24px); }
}
@media (max-width: 480px) {
	.quote-popup { padding: 8px; }
}

/* Form panel */
.quote-popup-body {
	position: relative;
	background: var(--white);
	padding: clamp(28px, 4vw, 44px);
	overflow-y: auto;
	max-height: calc(100vh - 48px);
}
@media (max-width: 760px) {
	.quote-popup-body { max-height: calc(100vh - 24px); padding: 24px 18px; }
}
@media (max-width: 480px) {
	.quote-popup-body { max-height: calc(100vh - 16px); padding: 22px 16px; }
}
.quote-popup-close {
	position: absolute;
	top: 14px; right: 14px;
	width: 36px; height: 36px;
	display: inline-flex; align-items: center; justify-content: center;
	background: rgba(11,35,64,.04);
	border: 1px solid var(--border);
	border-radius: 50%;
	color: var(--navy);
	cursor: pointer;
	z-index: 3;
	transition: background .25s ease, color .25s ease, transform .35s ease;
}
.quote-popup-close:hover {
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
	transform: rotate(90deg);
}

.qp-head { margin-bottom: 18px; }
.qp-eyebrow {
	display: inline-block;
	color: var(--primary);
	font-family: var(--font-head);
	font-weight: 800;
	font-size: .72rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.qp-title {
	margin: 0 0 6px;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 1.35rem;
	color: var(--navy);
	letter-spacing: -.01em;
}
.qp-sub {
	margin: 0;
	color: var(--grey);
	font-size: .92rem;
	line-height: 1.5;
}

/* Form — reuse hero-form glass styles but in light mode */
.qp-form.hero-form {
	background: transparent;
	border: 0;
	padding: 0;
	box-shadow: none;
	color: var(--text);
}
.qp-form.hero-form .wpcf7-form label,
.qp-form.hero-form .hero-form-heading,
.qp-form.hero-form .hero-form-sub { color: var(--navy); }
.qp-form.hero-form .wpcf7-form-control:not([type="submit"]):not([type="radio"]):not([type="checkbox"]) {
	color: var(--text);
	background: var(--white);
	border: 1px solid var(--border);
}
.qp-form.hero-form .wpcf7-form-control::placeholder { color: var(--grey); }
.qp-form.hero-form select.wpcf7-form-control { color: var(--text); }
.qp-form.hero-form .wpcf7-form-control:focus {
	border-color: var(--primary);
	background: var(--primary);
	box-shadow: 0 0 0 3px rgba(0,173,238,.18);
}
.qp-form.hero-form .req { color: var(--primary); }

/* Stagger animate the body in when popup opens */
.quote-popup-body > .quote-popup-close,
.quote-popup-body > .qp-form {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .55s cubic-bezier(.2,.9,.2,1), transform .55s cubic-bezier(.2,.9,.2,1);
}
.quote-popup.is-open .quote-popup-body > .quote-popup-close { opacity: 1; transform: none; transition-delay: .25s; }
.quote-popup.is-open .quote-popup-body > .qp-form          { opacity: 1; transform: none; transition-delay: .35s; }

/* About page ============================================================= */
.ab-hero {
	position: relative;
	min-height: clamp(460px, 60vh, 640px);
	display: flex; align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	background: linear-gradient(155deg, #0F2A50 0%, var(--navy) 60%, #06142B 100%);
	color: var(--white);
	padding: clamp(72px, 10vw, 120px) 0;
	isolation: isolate;
}
.ab-hero-media {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	z-index: 0;
	transform: scale(1.04);
	animation: abHeroZoom 18s ease-in-out infinite alternate;
}
@keyframes abHeroZoom { to { transform: scale(1.12); } }

.ab-hero-overlay {
	position: absolute; inset: 0;
	z-index: 1;
	background:
		radial-gradient(ellipse 120% 80% at 50% 50%, rgba(11,35,64,.55) 0%, rgba(11,35,64,.85) 70%, rgba(6,20,43,.95) 100%),
		linear-gradient(rgba(126,200,227,.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(126,200,227,.05) 1px, transparent 1px);
	background-size: auto, 56px 56px, 56px 56px;
	pointer-events: none;
}
.ab-hero-glow {
	position: absolute;
	z-index: 1;
	width: 520px; height: 520px;
	border-radius: 50%;
	filter: blur(10px);
	pointer-events: none;
}
.ab-hero-glow--a {
	top: -180px; left: -160px;
	background: radial-gradient(circle, rgba(0,173,238,.35), transparent 65%);
}
.ab-hero-glow--b {
	bottom: -200px; right: -160px;
	background: radial-gradient(circle, rgba(126,200,227,.22), transparent 65%);
}

/* Subtle inset frame — corners drawn with lines */
.ab-hero-frame {
	position: absolute;
	inset: clamp(20px, 3vw, 40px);
	z-index: 1;
	pointer-events: none;
	border: 1px solid rgba(126,200,227,.16);
	border-radius: 4px;
}
.ab-hero-frame::before,
.ab-hero-frame::after {
	content: "";
	position: absolute;
	width: 38px; height: 38px;
	border: 2px solid var(--primary);
	border-radius: 2px;
}
.ab-hero-frame::before {
	top: -1px; left: -1px;
	border-right: 0; border-bottom: 0;
}
.ab-hero-frame::after {
	bottom: -1px; right: -1px;
	border-left: 0; border-top: 0;
}

.ab-hero-inner { position: relative; z-index: 2; }
.ab-hero-content { max-width: 880px; margin: 0 auto; }

.ab-hero-title {
	margin: 0 0 28px;
	font-size: clamp(2rem, 4.5vw, 3.4rem);
	line-height: 1.08;
	letter-spacing: -.012em;
	color: var(--white);
	font-weight: 900;
}
.ab-hero-quote {
	position: relative;
	margin: 0 auto;
	max-width: 720px;
	padding: 0 8px;
	color: rgba(255,255,255,.88);
	font-style: italic;
	font-size: clamp(1.05rem, 1.8vw, 1.35rem);
	line-height: 1.6;
	letter-spacing: .005em;
}
.ab-hero-quote-mark {
	display: inline-block;
	margin-right: 6px;
	color: var(--primary);
	font-style: normal;
	font-family: var(--font-head);
	font-weight: 900;
	font-size: 1.6em;
	line-height: 0;
	vertical-align: -.25em;
}

/* Standalone breadcrumb bar — sits between hero and trust bar */
.ab-breadcrumb-bar {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	padding: 14px 0;
}
.ab-breadcrumb {
	list-style: none;
	margin: 0; padding: 0;
	display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: .85rem;
	color: var(--grey);
}
.ab-breadcrumb li { display: inline-flex; align-items: center; gap: 6px; }
.ab-breadcrumb a {
	display: inline-flex; align-items: center; gap: 6px;
	color: var(--primary);
	text-decoration: none;
	transition: color .25s ease;
}
.ab-breadcrumb a:hover { color: var(--primary-dark); }
.ab-breadcrumb a i { color: var(--primary); font-size: .82rem; }
.ab-breadcrumb .sep { color: var(--border); font-size: .68rem; }
.ab-breadcrumb .current { color: var(--navy); font-weight: 700; }

/* Story — editorial layout with featured stat panel, pull quote, brand pillars */
.ab-story { position: relative; overflow: hidden; }
.ab-story-bg {
	position: absolute; inset: 0; z-index: 0;
	background-image: radial-gradient(circle, rgba(11,35,64,.05) 1px, transparent 1px);
	background-size: 28px 28px;
	mask-image: radial-gradient(ellipse 60% 70% at 100% 100%, #000 0%, transparent 60%);
	-webkit-mask-image: radial-gradient(ellipse 60% 70% at 100% 100%, #000 0%, transparent 60%);
	pointer-events: none;
}
.ab-story .container { position: relative; z-index: 1; }

.ab-story-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: stretch;
}
.ab-story-text,
.ab-stat-panel { height: 100%; }
@media (max-width: 960px) { .ab-story-grid { grid-template-columns: 1fr; } }

.ab-story-text { position: relative; padding-left: 28px; }
.ab-rule {
	position: absolute; left: 0; top: 6px; bottom: 6px;
	width: 4px;
	background: linear-gradient(180deg, var(--primary), var(--primary-light));
	border-radius: 4px;
}
.ab-story-text .section-label { display: inline-block; margin-bottom: 12px; }
.ab-story-text h2 {
	font-size: clamp(1.85rem, 2.8vw, 2.4rem);
	margin: 0 0 18px;
	color: var(--navy);
	letter-spacing: -.01em;
	line-height: 1.15;
}
.ab-story-body p {
	color: var(--grey);
	font-size: 1rem;
	line-height: 1.75;
	margin: 0 0 14px;
}
.ab-story-body p:first-of-type {
	font-size: 1.08rem;
	color: var(--navy);
	font-weight: 500;
	line-height: 1.65;
}
.ab-story-body strong { color: var(--navy); }
.ab-story-body p:last-child { margin-bottom: 0; }

/* Stat panel — featured + secondary row */
.ab-stat-panel {
	position: relative;
	overflow: hidden;
	background: var(--primary);
	border-radius: var(--radius-lg);
	padding: clamp(26px, 3vw, 36px);
	box-shadow: 0 30px 50px -24px rgba(0,173,238,.45);
	color: var(--white);
}
.ab-stat-glow {
	position: absolute;
	top: -120px; right: -100px;
	width: 320px; height: 320px;
	background: rgba(255,255,255,.10);
	filter: blur(8px);
	pointer-events: none;
}
.ab-stat-grid-bg {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, #000, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, #000, transparent 75%);
	pointer-events: none;
}
.ab-stat-feature {
	position: relative; z-index: 1;
	padding-bottom: 22px;
	margin-bottom: 22px;
	border-bottom: 1px solid rgba(255,255,255,.30);
}
.ab-stat-eyebrow {
	display: inline-block;
	margin-bottom: 12px;
	padding: 4px 10px;
	background: var(--white);
	border: 1px solid var(--white);
	border-radius: 999px;
	color: var(--primary);
	font-family: var(--font-head);
	font-weight: 800;
	font-size: .66rem;
	letter-spacing: .2em;
	text-transform: uppercase;
}
.ab-stat-feature-num {
	display: block;
	font-family: var(--font-head);
	font-weight: 900;
	font-size: clamp(3.2rem, 6vw, 4.8rem);
	line-height: 1;
	letter-spacing: -.04em;
	color: var(--white);
}
.ab-stat-feature-label {
	display: block;
	margin-top: 6px;
	color: rgba(255,255,255,.92);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: .92rem;
	letter-spacing: .04em;
}
.ab-stat-row {
	position: relative; z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}
.ab-stat-mini {
	padding: 4px 10px;
	border-right: 1px solid rgba(255,255,255,.30);
	text-align: left;
}
.ab-stat-mini:first-child { padding-left: 0; }
.ab-stat-mini:last-child  { border-right: 0; padding-right: 0; }
.ab-stat-mini-num {
	display: block;
	font-family: var(--font-head);
	font-weight: 900;
	font-size: clamp(1.8rem, 2.4vw, 2.4rem);
	line-height: 1;
	color: var(--white);
	letter-spacing: -.02em;
}
.ab-stat-mini-label {
	display: block;
	margin-top: 8px;
	color: rgba(255,255,255,.92);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: .92rem;
	letter-spacing: .04em;
}
.ab-stat-meta {
	position: relative; z-index: 1;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,.30);
	display: inline-flex; align-items: center; gap: 10px;
	color: var(--white);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: .78rem;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.ab-stat-meta i {
	display: inline-flex; align-items: center; justify-content: center;
	width: 26px; height: 26px;
	background: var(--white);
	border: 1px solid var(--white);
	border-radius: 50%;
	color: var(--primary);
	font-size: .72rem;
}

/* Trust pillars inside the about stat panel ================================ */
.ab-trusts {
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.ab-trust {
	display: block;
	padding: 14px 18px;
	background: rgba(255,255,255,.10);
	border: 1px solid rgba(255,255,255,.30);
	border-left: 3px solid var(--white);
	border-radius: 14px;
	transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.ab-trust:hover {
	border-color: var(--white);
	background: rgba(255,255,255,.18);
	transform: translateX(2px);
}
.ab-trust-icon {
	width: 48px; height: 48px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--white);
	border: 1px solid var(--white);
	border-radius: 12px;
	color: var(--primary);
	font-size: 1.05rem;
}
.ab-trust-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.ab-trust-title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .98rem;
	color: var(--white);
	letter-spacing: -.005em;
}
.ab-trust-sub {
	color: rgba(255,255,255,.92);
	font-size: .82rem;
	line-height: 1.45;
}

@media (max-width: 600px) {
	.ab-trust { padding: 12px 14px; }
	.ab-trust-title { font-size: .92rem; }
	.ab-trust-sub   { font-size: .78rem; }
}

/* Pull quote — full-width emphasis */
.ab-story-pull {
	position: relative;
	margin: clamp(48px, 6vw, 72px) auto 0;
	max-width: 880px;
	text-align: center;
	padding: 36px 24px 0;
}
.ab-story-pull-mark {
	display: inline-flex; align-items: center; justify-content: center;
	width: 56px; height: 56px;
	background: linear-gradient(160deg, var(--primary), var(--primary-700));
	color: var(--white);
	border-radius: 50%;
	font-size: 1.1rem;
	margin-bottom: 18px;
	box-shadow: 0 14px 28px -10px rgba(0,173,238,.5);
}
.ab-story-pull p {
	margin: 0;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: clamp(1.4rem, 2.6vw, 1.95rem);
	line-height: 1.35;
	color: var(--navy);
	letter-spacing: -.005em;
}
.ab-story-pull-line {
	display: block;
	width: 90px; height: 3px;
	margin: 22px auto 0;
	background: linear-gradient(90deg, var(--primary), #7EC8E3);
	border-radius: 2px;
}

/* Brand pillars */
.ab-pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: clamp(40px, 5vw, 56px);
}
@media (max-width: 900px) { .ab-pillars { grid-template-columns: 1fr; } }
.ab-pillar {
	position: relative;
	padding: 28px 26px 26px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
	opacity: 0;
	transform: translateY(18px);
	animation: abPillarRise .65s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 110ms + 80ms);
	overflow: hidden;
}
@keyframes abPillarRise { to { opacity: 1; transform: translateY(0); } }
.ab-pillar::after {
	content: "";
	position: absolute; left: 0; right: 0; bottom: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), #7EC8E3);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .45s ease;
}
.ab-pillar:hover {
	transform: translateY(-6px);
	border-color: rgba(0,173,238,.45);
	box-shadow: 0 22px 40px -22px rgba(11,35,64,.4);
}
.ab-pillar:hover::after { transform: scaleX(1); }
.ab-pillar-num {
	position: absolute;
	top: 14px; right: 18px;
	font-family: var(--font-head);
	font-weight: 900;
	font-size: 2.6rem;
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(0,173,238,.28);
	letter-spacing: -.04em;
	line-height: 1;
}
.ab-pillar-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px;
	background: var(--primary-light);
	color: var(--primary);
	border: 1px solid rgba(0,173,238,.3);
	border-radius: 12px;
	font-size: 1.05rem;
	margin-bottom: 18px;
	transition: background .3s ease, color .3s ease;
}
.ab-pillar:hover .ab-pillar-icon { background: var(--primary); color: var(--white); }
.ab-pillar-title {
	margin: 0 0 8px;
	font-family: var(--font-head);
	font-weight: 800;
	color: var(--navy);
	font-size: 1.12rem;
	letter-spacing: -.005em;
}
.ab-pillar-body {
	margin: 0;
	color: var(--grey);
	font-size: .94rem;
	line-height: 1.65;
}

/* Difference cards — image-driven with elevator shaft animation */
.ab-diff { position: relative; overflow: hidden; }
.ab-shaft {
	position: absolute;
	top: 0; bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 6px;
	pointer-events: none;
	z-index: 0;
	opacity: .4;
}
.ab-shaft-rail {
	position: absolute; top: 0; bottom: 0;
	width: 1px;
	background: linear-gradient(180deg, transparent, rgba(0,173,238,.45) 15%, rgba(0,173,238,.45) 85%, transparent);
}
.ab-shaft-rail--l { left: 0; }
.ab-shaft-rail--r { right: 0; }
.ab-shaft-cabin {
	position: absolute; left: -8px; right: -8px;
	height: 22px;
	background: linear-gradient(180deg, var(--primary), var(--primary-700));
	border-radius: 3px;
	box-shadow: 0 0 16px rgba(0,173,238,.6);
	animation: abShaft 12s ease-in-out infinite;
}
@keyframes abShaft {
	0%, 100% { top: 5%; }
	50%      { top: 90%; }
}
@media (max-width: 900px) { .ab-shaft { display: none; } }

.ab-diff-grid {
	position: relative; z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
@media (max-width: 1024px) { .ab-diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .ab-diff-grid { grid-template-columns: 1fr; } }

.ab-diff-card {
	position: relative;
	display: flex; flex-direction: column;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
	opacity: 0;
	transform: translateY(18px);
	animation: abRise .7s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 90ms + 80ms);
	isolation: isolate;
}
@keyframes abRise { to { opacity: 1; transform: translateY(0); } }
.ab-diff-card:hover {
	transform: translateY(-8px);
	border-color: rgba(0,173,238,.45);
	box-shadow: 0 28px 50px -22px rgba(11,35,64,.45);
}
.ab-diff-card::after {
	content: "";
	position: absolute; left: 0; right: 0; bottom: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), #7EC8E3);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .5s ease;
	z-index: 2;
}
.ab-diff-card:hover::after { transform: scaleX(1); }

.ab-diff-media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: linear-gradient(160deg, #0F2A50 0%, var(--navy) 60%, #06142B 100%);
	overflow: hidden;
}
.ab-diff-img {
	width: 100%; height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	transition: transform .9s cubic-bezier(.2,.8,.2,1);
}
.ab-diff-card:hover .ab-diff-img { transform: scale(1.10); }

.ab-diff-pattern {
	position: absolute; inset: 0;
	background-image:
		radial-gradient(circle at 25% 30%, rgba(0,173,238,.22), transparent 50%),
		radial-gradient(circle at 75% 70%, rgba(126,200,227,.16), transparent 55%),
		linear-gradient(rgba(126,200,227,.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(126,200,227,.06) 1px, transparent 1px);
	background-size: auto, auto, 30px 30px, 30px 30px;
}

.ab-diff-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(11,35,64,0) 35%, rgba(11,35,64,.55) 100%);
	pointer-events: none;
}
.ab-diff-shine {
	position: absolute;
	top: -120%; left: -40%;
	width: 60%; height: 250%;
	background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
	transform: rotate(18deg);
	pointer-events: none;
	transition: top .9s ease, left .9s ease;
}
.ab-diff-card:hover .ab-diff-shine { top: 60%; left: 120%; }

.ab-diff-num {
	position: absolute;
	top: 14px; right: 16px;
	z-index: 2;
	font-family: var(--font-head);
	font-weight: 900;
	font-size: 2.4rem;
	letter-spacing: -.04em;
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(126,200,227,.55);
	line-height: 1;
}
.ab-diff-icon {
	position: absolute;
	bottom: 14px; left: 14px;
	z-index: 2;
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px;
	background: rgba(11,35,64,.62);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(126,200,227,.4);
	border-radius: 12px;
	color: var(--primary);
	font-size: 1.05rem;
	transition: background .3s ease, color .3s ease, transform .3s ease;
}
.ab-diff-card:hover .ab-diff-icon {
	background: var(--primary);
	color: var(--white);
	transform: rotate(-4deg) scale(1.05);
}

.ab-diff-body {
	padding: 24px 24px 26px;
	display: flex; flex-direction: column;
	gap: 6px;
	flex: 1;
}
.ab-diff-title {
	margin: 0;
	font-family: var(--font-head);
	font-weight: 800;
	color: var(--navy);
	font-size: 1.12rem;
	letter-spacing: -.005em;
}
.ab-diff-tag {
	margin: 0 0 4px;
	color: var(--primary-dark);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: .88rem;
	line-height: 1.45;
}
.ab-diff-text {
	margin: 0;
	color: var(--grey);
	font-size: .92rem;
	line-height: 1.65;
}

/* Team grid — about page =================================================== */
.ab-team {
	background: var(--white);
	position: relative;
	overflow: hidden;
}
.ab-team-inner {
	width: 100%;
	max-width: none;
	padding-left: clamp(20px, 3vw, 48px);
	padding-right: clamp(20px, 3vw, 48px);
}
.ab-team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(20px, 2.5vw, 32px);
	margin-top: 36px;
}
@media (max-width: 1024px) { .ab-team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .ab-team-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 420px)  { .ab-team-grid { grid-template-columns: 1fr; } }

.ab-team-card {
	position: relative;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 12px 24px -16px rgba(11,35,64,.25);
	opacity: 0;
	transform: translateY(20px);
	animation: abTeamRise .6s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 70ms + 100ms);
	transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease, border-color .35s ease;
	isolation: isolate;
}
@keyframes abTeamRise { to { opacity: 1; transform: translateY(0); } }
.ab-team-card::before {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 3px;
	background: var(--primary);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .5s cubic-bezier(.2,.8,.2,1);
	z-index: 3;
}
.ab-team-card:hover {
	transform: translateY(-10px);
	border-color: rgba(0,173,238,.45);
	box-shadow: 0 32px 60px -22px rgba(0,173,238,.45), 0 0 0 1px rgba(0,173,238,.25);
}
.ab-team-card:hover::before { transform: scaleX(1); }

.ab-team-photo-wrap {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--primary);
}
.ab-team-photo {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(.95);
	transition: transform 1s cubic-bezier(.2,.8,.2,1), filter .5s ease;
}
.ab-team-card:hover .ab-team-photo {
	transform: scale(1.08);
	filter: saturate(1.1) brightness(1.05);
}
.ab-team-photo--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,.85);
	font-size: 4rem;
	background: var(--primary);
}

/* Tinted overlay that fades in on hover */
.ab-team-overlay {
	position: absolute; inset: 0;
	background: rgba(0,173,238,.55);
	opacity: 0;
	transition: opacity .45s ease;
	pointer-events: none;
	z-index: 1;
}
.ab-team-card:hover .ab-team-overlay { opacity: 1; }

/* Diagonal shine sweep */
.ab-team-shine {
	position: absolute;
	top: -110%; left: -40%;
	width: 60%; height: 250%;
	background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.22) 50%, transparent 100%);
	transform: rotate(18deg);
	pointer-events: none;
	z-index: 2;
	transition: top .9s ease, left .9s ease;
}
.ab-team-card:hover .ab-team-shine { top: 60%; left: 130%; }

/* Decorative corner brackets — fade + slide in */
.ab-team-corner {
	position: absolute;
	width: 22px; height: 22px;
	border-color: var(--white);
	border-style: solid;
	border-width: 0;
	opacity: 0;
	transition: opacity .35s ease, transform .45s cubic-bezier(.2,.8,.2,1);
	pointer-events: none;
	z-index: 3;
}
.ab-team-corner--tl { top: 12px;    left: 12px;    border-top-width: 2px;    border-left-width: 2px;    transform: translate(-6px,-6px); }
.ab-team-corner--tr { top: 12px;    right: 12px;   border-top-width: 2px;    border-right-width: 2px;   transform: translate( 6px,-6px); }
.ab-team-corner--bl { bottom: 12px; left: 12px;    border-bottom-width: 2px; border-left-width: 2px;    transform: translate(-6px, 6px); }
.ab-team-corner--br { bottom: 12px; right: 12px;   border-bottom-width: 2px; border-right-width: 2px;   transform: translate( 6px, 6px); }
.ab-team-card:hover .ab-team-corner { opacity: 1; transform: translate(0,0); }

.ab-team-body {
	position: relative;
	padding: 18px 20px 22px;
	text-align: center;
	z-index: 1;
}
.ab-team-name {
	margin: 0 0 4px;
	font-family: var(--font-head);
	font-weight: 800;
	color: var(--navy);
	font-size: 1.05rem;
	letter-spacing: -.005em;
	transition: color .3s ease;
}
.ab-team-card:hover .ab-team-name { color: var(--primary-dark); }
.ab-team-role {
	margin: 0;
	color: var(--primary-dark);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: .82rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	transition: letter-spacing .35s ease;
}
.ab-team-card:hover .ab-team-role { letter-spacing: .14em; }

/* Director — message + portrait =========================================== */
.ab-director {
	position: relative;
	background: var(--primary);
	color: var(--white);
	overflow: hidden;
}
.ab-director-bg {
	position: absolute; inset: 0; z-index: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 75%);
	pointer-events: none;
}
.ab-director-glow { display: none; }
.ab-director-glow--a { display: none; }
.ab-director-glow--b { display: none; }

.ab-director-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: none;
	padding-left: clamp(20px, 4vw, 64px);
	padding-right: clamp(20px, 4vw, 64px);
}

.ab-director-grid {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: clamp(28px, 5vw, 72px);
	align-items: center;
}
@media (max-width: 960px) {
	.ab-director-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
}

.ab-director-media {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}
.ab-director-photo-wrap {
	position: relative;
	width: 100%;
	max-width: 340px;
	aspect-ratio: 1 / 1;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
	transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
	isolation: isolate;
}
.ab-director-photo-wrap:hover {
	transform: translateY(-6px) scale(1.01);
	box-shadow: 0 40px 80px -22px rgba(0,173,238,.55), 0 0 0 1px rgba(126,200,227,.35);
}
.ab-director-photo {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(.95);
	transition: transform 1s cubic-bezier(.2,.8,.2,1), filter .5s ease;
}
.ab-director-photo-wrap:hover .ab-director-photo {
	transform: scale(1.06);
	filter: saturate(1.1) brightness(1.05);
}
.ab-director-photo--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,.15);
	color: var(--white);
	font-size: 7rem;
	transition: color .4s ease;
}
.ab-director-photo-wrap:hover .ab-director-photo--placeholder { color: var(--white); }
.ab-director-photo-frame {
	position: absolute; inset: 0;
	border: 1px solid rgba(255,255,255,.4);
	border-radius: 20px;
	pointer-events: none;
	box-shadow: inset 0 0 0 6px rgba(255,255,255,.12);
	transition: border-color .4s ease, box-shadow .4s ease;
	z-index: 4;
}
.ab-director-photo-wrap:hover .ab-director-photo-frame {
	border-color: var(--white);
	box-shadow: inset 0 0 0 6px rgba(255,255,255,.22);
}

/* Tinted overlay sweep on hover */
.ab-director-overlay {
	position: absolute; inset: 0;
	background: rgba(0,173,238,.45);
	opacity: 0;
	transition: opacity .5s ease;
	pointer-events: none;
	z-index: 1;
}
.ab-director-photo-wrap:hover .ab-director-overlay { opacity: 1; }

/* Diagonal shine streak */
.ab-director-shine {
	position: absolute;
	top: -110%; left: -40%;
	width: 60%; height: 250%;
	background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.25) 50%, transparent 100%);
	transform: rotate(18deg);
	pointer-events: none;
	z-index: 2;
	transition: top 1s ease, left 1s ease;
}
.ab-director-photo-wrap:hover .ab-director-shine { top: 60%; left: 130%; }

/* Decorative corner brackets */
.ab-director-corner {
	position: absolute;
	width: 28px; height: 28px;
	border-color: var(--white);
	border-style: solid;
	border-width: 0;
	opacity: 0;
	transition: opacity .4s ease, transform .5s cubic-bezier(.2,.8,.2,1);
	pointer-events: none;
	z-index: 3;
}
.ab-director-corner--tl { top: 14px;    left: 14px;    border-top-width: 2px;    border-left-width: 2px;    transform: translate(-8px,-8px); }
.ab-director-corner--tr { top: 14px;    right: 14px;   border-top-width: 2px;    border-right-width: 2px;   transform: translate( 8px,-8px); }
.ab-director-corner--bl { bottom: 14px; left: 14px;    border-bottom-width: 2px; border-left-width: 2px;    transform: translate(-8px, 8px); }
.ab-director-corner--br { bottom: 14px; right: 14px;   border-bottom-width: 2px; border-right-width: 2px;   transform: translate( 8px, 8px); }
.ab-director-photo-wrap:hover .ab-director-corner { opacity: 1; transform: translate(0,0); }
.ab-director-id {
	text-align: center;
}
.ab-director-name {
	margin: 0;
	font-family: var(--font-head);
	font-weight: 800;
	color: var(--white);
	font-size: 1.15rem;
	letter-spacing: -.005em;
}
.ab-director-role {
	margin: 4px 0 0;
	color: var(--white);
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .82rem;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.ab-director-content {
	position: relative;
	padding-left: 8px;
}
.ab-director-quote-mark {
	display: inline-flex;
	align-items: center; justify-content: center;
	width: 56px; height: 56px;
	margin-bottom: 14px;
	background: var(--white);
	border: 1px solid var(--white);
	border-radius: 14px;
	color: var(--primary);
	font-size: 1.35rem;
	transition: transform .5s cubic-bezier(.2,.8,.2,1), background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.ab-director-content:hover .ab-director-quote-mark {
	transform: rotate(-8deg) scale(1.08);
	background: var(--white);
	border-color: var(--white);
	box-shadow: 0 12px 28px -10px rgba(0,52,80,.35);
}
@media (max-width: 960px) { .ab-director-quote-mark { margin-left: auto; margin-right: auto; display: flex; } }

.ab-director-heading {
	margin: 0 0 18px;
	font-size: clamp(1.7rem, 2.6vw, 2.3rem);
	color: var(--white);
	line-height: 1.2;
	letter-spacing: -.01em;
}
.ab-director-message {
	color: rgba(255,255,255,.92);
	font-size: 1rem;
	line-height: 1.75;
}
.ab-director-message p {
	margin: 0 0 14px;
}
.ab-director-message p:last-child { margin-bottom: 0; }
.ab-director-message strong { color: var(--white); }

.ab-director-sign {
	display: inline-flex; align-items: center; gap: 14px;
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,.30);
	width: 100%;
}
.ab-director-sign-line {
	flex: 1;
	height: 1px;
	background: var(--white);
	max-width: 80px;
	transition: max-width .6s cubic-bezier(.2,.8,.2,1);
}
.ab-director-content:hover .ab-director-sign-line { max-width: 160px; }
.ab-director-sign-name {
	font-family: var(--font-head);
	font-weight: 700;
	color: var(--white);
	font-size: .92rem;
	letter-spacing: .02em;
}

/* =========================================================
   About — Pillars (Vision / Mission / Choose / Maintenance / Safety)
   3+2 card grid (all visible) — ele-card-inspired shine + lift.
   ========================================================= */
.ab-vm-pillars { position: relative; background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%); overflow: hidden; }
.ab-vm-pillars-glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; filter: blur(120px); opacity: 0.18; pointer-events: none; z-index: 0; }
.ab-vm-pillars-glow--a { top: -180px; left: -160px; background: #1a7bd4; }
.ab-vm-pillars-glow--b { bottom: -200px; right: -180px; background: #00b3e0; }
.ab-vm-pillars > .container { position: relative; z-index: 1; }
.ab-vm-pillars-head { margin-bottom: 40px; }

/* Full-viewport-width wrapper for the grid — escapes the .container width cap. */
.ab-vm-pillars-fullwidth { position: relative; z-index: 1; width: 100%; padding: 0 clamp(20px, 4vw, 60px); box-sizing: border-box; }

/* 6-col grid. Both rows fill the FULL grid width:
   Row 1: 3 cards × 2 cols each → cols 1-2, 3-4, 5-6.
   Row 2: 2 cards × 3 cols each → cols 1-3, 4-6 (each card = half of full row). */
.ab-vm-pillars-grid { display: grid; grid-template-columns: repeat(6, 1fr); column-gap: 28px; row-gap: 40px; max-width: 1600px; margin: 0 auto; align-items: stretch; }
.ab-pillar-card { grid-column: span 2; }
.ab-vm-pillars-grid[data-pillar-count="5"] .ab-pillar-card:nth-child(4) { grid-column: 1 / span 3; }
.ab-vm-pillars-grid[data-pillar-count="5"] .ab-pillar-card:nth-child(5) { grid-column: 4 / span 3; }
/* 4 cards → 2 + 2 each row, each card full half-width. */
.ab-vm-pillars-grid[data-pillar-count="4"] .ab-pillar-card { grid-column: span 3; }
/* 2 cards → side by side, each half-width. */
.ab-vm-pillars-grid[data-pillar-count="2"] .ab-pillar-card { grid-column: span 3; }
/* 1 card → full width. */
.ab-vm-pillars-grid[data-pillar-count="1"] .ab-pillar-card { grid-column: span 6; }

.ab-pillar-card {
	position: relative;
	display: flex; flex-direction: column;
	background: #ffffff;
	border-radius: 22px;
	padding: 32px 28px 28px;
	border: 1px solid rgba(7,33,79,0.08);
	box-shadow: 0 20px 50px -28px rgba(7,33,79,0.35);
	overflow: hidden;
	isolation: isolate;
	transform: translateY(22px);
	opacity: 0;
	animation: abPillRise .65s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 80ms + 60ms);
	transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
}
@keyframes abPillRise { to { opacity: 1; transform: translateY(0); } }
.ab-pillar-card::before {
	content: '';
	position: absolute; top: 0; left: 0; right: 0; height: 5px;
	background: linear-gradient(90deg, #00b3e0, #1a7bd4);
	transform: scaleX(.18); transform-origin: left center;
	transition: transform .5s cubic-bezier(.2,.8,.2,1);
	z-index: 2;
}
.ab-pillar-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 32px 70px -28px rgba(0,179,224,0.45);
	border-color: rgba(0,179,224,0.25);
}
.ab-pillar-card:hover::before { transform: scaleX(1); }

/* Shine sweep on hover (matches ele-card style). */
.ab-pillar-card-shine { position: absolute; top: -120%; left: -40%; width: 60%; height: 250%; background: linear-gradient(120deg, transparent 0%, rgba(0,179,224,0.12) 50%, transparent 100%); transform: rotate(18deg); pointer-events: none; z-index: 1; transition: top .9s ease, left .9s ease; }
.ab-pillar-card:hover .ab-pillar-card-shine { top: 60%; left: 120%; }

.ab-pillar-card-head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; position: relative; z-index: 2; }
.ab-pillar-card-icon { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, #00b3e0, #1a7bd4); color: #fff; font-size: 1.35rem; box-shadow: 0 14px 30px -10px rgba(0,179,224,0.55); transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.ab-pillar-card:hover .ab-pillar-card-icon { transform: rotate(-6deg) scale(1.06); }
.ab-pillar-card-titles { min-width: 0; padding-top: 2px; }
.ab-pillar-card-title { margin: 0 0 6px; font-size: 1.25rem; color: var(--primary, #07214f); line-height: 1.25; }
.ab-pillar-card-lead { margin: 0; color: #1a7bd4; font-weight: 600; font-size: 0.92rem; line-height: 1.5; }

.ab-pillar-card-body { position: relative; z-index: 2; flex: 1 1 auto; color: rgba(7,33,79,0.85); line-height: 1.7; font-size: 0.95rem; }
.ab-pillar-card-body p { margin: 0 0 12px; }
.ab-pillar-card-body p:last-child { margin-bottom: 0; }
.ab-pillar-card-body ul, .ab-pillar-card-body ol { margin: 0 0 14px; padding-left: 22px; }
.ab-pillar-card-body li { margin-bottom: 8px; }
.ab-pillar-card-body li::marker { color: #00b3e0; }
.ab-pillar-card-body strong { color: var(--primary, #07214f); }
.ab-pillar-card-body a { color: #1a7bd4; text-decoration: none; border-bottom: 1px solid rgba(26,123,212,0.3); transition: border-color .25s ease; }
.ab-pillar-card-body a:hover { border-bottom-color: #1a7bd4; }

/* Tablet: 2 columns per row, full-width pairs. With 5 cards the lone trailing
   card spans the full row so there's no awkward half-row gap. */
@media (max-width: 1024px) {
	.ab-vm-pillars-grid { grid-template-columns: repeat(4, 1fr); column-gap: 22px; row-gap: 28px; }
	.ab-pillar-card,
	.ab-vm-pillars-grid[data-pillar-count="5"] .ab-pillar-card:nth-child(4),
	.ab-vm-pillars-grid[data-pillar-count="5"] .ab-pillar-card:nth-child(3) { grid-column: span 2; }
	.ab-vm-pillars-grid[data-pillar-count="5"] .ab-pillar-card:nth-child(5) { grid-column: 1 / span 4; }
}

/* Mobile: 1 column stack. */
@media (max-width: 720px) {
	.ab-vm-pillars-grid { grid-template-columns: 1fr; gap: 18px; }
	.ab-pillar-card,
	.ab-vm-pillars-grid[data-pillar-count] .ab-pillar-card { grid-column: 1 / -1; }
	.ab-pillar-card { padding: 24px 20px; border-radius: 18px; }
	.ab-pillar-card-icon { width: 48px; height: 48px; font-size: 1.15rem; border-radius: 14px; }
	.ab-pillar-card-title { font-size: 1.15rem; }
}

/* Factory — vertical numbered process flow */
.ab-facility {
	position: relative;
	background: var(--primary);
	color: var(--white);
	overflow: hidden;
}
.ab-fac-bg {
	position: absolute; inset: 0; z-index: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 75%);
	pointer-events: none;
}
.ab-fac-glow { display: none; }
.ab-fac-glow--a { display: none; }
.ab-fac-glow--b { display: none; }

.ab-facility .container,
.ab-facility .ab-fac-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: none;
	margin: 0;
	padding-left: clamp(20px, 3vw, 48px);
	padding-right: clamp(20px, 3vw, 48px);
}
.ab-fac-head .section-label { color: var(--white); }
.ab-fac-head h2 { color: var(--white); }
.ab-fac-head .ab-fac-intro { max-width: 720px; margin: 14px auto 0; }
.ab-fac-head .ab-fac-intro p { margin: 0; color: rgba(255,255,255,.92); font-size: 1rem; line-height: 1.7; }

.ab-fac-flow {
	position: relative;
	margin: 56px 0 40px;
	padding: 0 0 0 60px;
}
@media (max-width: 600px) { .ab-fac-flow { padding: 0 0 0 50px; } }

/* Production line — connected stations with directional chevrons ========== */
.ab-fac-line {
	position: relative;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 28px;
	margin: 64px 0 56px;
	padding: 16px 0 0;
}
@media (max-width: 1200px) { .ab-fac-line { grid-template-columns: repeat(3, 1fr); gap: 28px 24px; } }
@media (max-width: 720px)  { .ab-fac-line { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; } }
@media (max-width: 480px)  { .ab-fac-line { grid-template-columns: 1fr; gap: 18px; } }

.ab-fac-station {
	position: relative;
	display: flex;
	flex-direction: column;
	opacity: 0;
	transform: translateY(14px);
	animation: abFacRise .65s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 110ms + 100ms);
}

.ab-fac-station-top {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 64px;
	margin-bottom: 14px;
}
.ab-fac-rail-seg {
	position: absolute;
	left: -50%; right: -50%;
	top: 50%;
	height: 2px;
	background-image: linear-gradient(90deg, transparent 0 6px, rgba(255,255,255,.65) 6px 14px, transparent 14px 20px);
	background-size: 20px 2px;
	background-repeat: repeat-x;
	transform: translateY(-1px);
	z-index: 0;
}
.ab-fac-station:first-child .ab-fac-rail-seg { left: 50%; }
.ab-fac-station:last-child .ab-fac-rail-seg  { right: 50%; }
@media (max-width: 1200px) {
	.ab-fac-station:nth-child(3n+1) .ab-fac-rail-seg { left: 50%; }
	.ab-fac-station:nth-child(3n)   .ab-fac-rail-seg { right: 50%; }
}
@media (max-width: 720px) {
	.ab-fac-station:nth-child(3n+1) .ab-fac-rail-seg { left: -50%; right: -50%; }
	.ab-fac-station:nth-child(2n+1) .ab-fac-rail-seg { left: 50%; }
	.ab-fac-station:nth-child(2n)   .ab-fac-rail-seg { right: 50%; }
}
@media (max-width: 480px) { .ab-fac-rail-seg { display: none; } }

.ab-fac-badge {
	position: relative;
	z-index: 2;
	width: 64px; height: 64px;
	display: inline-flex;
	align-items: center; justify-content: center;
	background: var(--white);
	border-radius: 50%;
	box-shadow: 0 10px 28px -10px rgba(0,52,80,.35);
	transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.ab-fac-badge-ring {
	position: absolute;
	inset: -4px;
	border: 2px dashed rgba(255,255,255,.65);
	border-radius: 50%;
	animation: abFacBadgeSpin 18s linear infinite;
}
@keyframes abFacBadgeSpin { to { transform: rotate(360deg); } }
.ab-fac-badge-num {
	font-family: var(--font-head);
	font-weight: 900;
	font-size: 1rem;
	letter-spacing: .04em;
	color: var(--primary);
}
.ab-fac-station:hover .ab-fac-badge {
	transform: translateY(-4px) scale(1.06);
	box-shadow: 0 18px 36px -10px rgba(0,52,80,.45);
}

.ab-fac-tick {
	position: absolute;
	top: 50%;
	right: -10px;
	width: 10px; height: 10px;
	background: var(--white);
	border-radius: 50%;
	transform: translateY(-50%);
	box-shadow: 0 0 0 4px rgba(255,255,255,.30);
	display: none;
}

.ab-fac-card-step {
	position: relative;
	flex: 1 1 auto;
	background: rgba(255,255,255,.10);
	border: 1px solid rgba(255,255,255,.30);
	border-radius: var(--radius-md);
	padding: 16px 18px;
	transition: border-color .35s ease, background .35s ease, transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.ab-fac-card-step::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -8px;
	width: 14px; height: 14px;
	background: var(--white);
	border: 1px solid var(--white);
	transform: translateX(-50%) rotate(45deg);
	border-bottom: 0;
	border-right: 0;
	transition: background .35s ease, border-color .35s ease;
}
.ab-fac-station:hover .ab-fac-card-step {
	background: rgba(255,255,255,.18);
	border-color: var(--white);
	transform: translateY(-4px);
	box-shadow: 0 18px 28px -16px rgba(0,52,80,.40);
}
.ab-fac-station:hover .ab-fac-card-step::before {
	background: var(--white);
	border-color: var(--white);
}
.ab-fac-card-step-area {
	margin: 0 0 4px;
	font-family: var(--font-head);
	font-weight: 800;
	color: var(--white);
	font-size: 1rem;
	letter-spacing: -.005em;
}
.ab-fac-card-step-act {
	margin: 0;
	color: rgba(255,255,255,.92);
	font-size: .88rem;
	line-height: 1.55;
}

/* Directional chevron between stations */
.ab-fac-chevron {
	position: absolute;
	top: 32px;
	right: -22px;
	z-index: 3;
	display: inline-flex;
	align-items: center; justify-content: center;
	width: 26px; height: 26px;
	background: var(--white);
	color: var(--primary);
	border-radius: 50%;
	font-size: .68rem;
	box-shadow: 0 6px 14px -4px rgba(0,52,80,.30);
	transform: translateY(-50%);
}
@media (max-width: 1200px) {
	.ab-fac-station:nth-child(3n) .ab-fac-chevron { display: none; }
}
@media (max-width: 720px) {
	.ab-fac-station:nth-child(2n) .ab-fac-chevron { display: none; }
}
@media (max-width: 480px) {
	.ab-fac-line { gap: 36px; }
	.ab-fac-station:nth-child(n) .ab-fac-chevron {
		display: inline-flex;
		top: auto;
		bottom: -28px;
		right: 50%;
		left: auto;
		transform: translateX(50%) rotate(90deg);
		width: 28px; height: 28px;
		font-size: .72rem;
	}
	.ab-fac-station:last-child .ab-fac-chevron { display: none; }
}

/* Factory dispatch — full-width strip styled like a shipping slip ========= */
.ab-fac-dispatch {
	position: relative;
	display: grid;
	grid-template-columns: 1.4fr 1.6fr auto;
	align-items: stretch;
	gap: clamp(20px, 3vw, 44px);
	padding: clamp(20px, 2.6vw, 32px) clamp(24px, 3vw, 40px);
	background: rgba(255,255,255,.10);
	border: 1px dashed rgba(255,255,255,.55);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 30px 60px -28px rgba(0,52,80,.35);
}
@media (max-width: 1024px) {
	.ab-fac-dispatch { grid-template-columns: 1fr 1fr; }
	.ab-fac-dispatch-action { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
	.ab-fac-dispatch { grid-template-columns: 1fr; gap: 18px; }
	.ab-fac-dispatch-action { grid-column: auto; }
}

.ab-fac-dispatch-corner {
	position: absolute;
	width: 18px; height: 18px;
	border: 2px solid var(--white);
	pointer-events: none;
}
.ab-fac-dispatch-corner--tl { top: 10px;    left: 10px;    border-right: 0; border-bottom: 0; }
.ab-fac-dispatch-corner--tr { top: 10px;    right: 10px;   border-left: 0;  border-bottom: 0; }
.ab-fac-dispatch-corner--bl { bottom: 10px; left: 10px;    border-right: 0; border-top: 0; }
.ab-fac-dispatch-corner--br { bottom: 10px; right: 10px;   border-left: 0;  border-top: 0; }


.ab-fac-dispatch-label {
	display: block;
	margin: 0 0 6px;
	color: var(--white);
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .66rem;
	letter-spacing: .22em;
	text-transform: uppercase;
}

.ab-fac-dispatch-where {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}
.ab-fac-dispatch-where .ab-fac-pin {
	flex: 0 0 44px;
}
.ab-fac-dispatch-where .ab-fac-card-title {
	margin: 0 0 6px;
}

.ab-fac-dispatch-note {
	border-left: 1px dashed rgba(255,255,255,.45);
	padding-left: clamp(16px, 2vw, 28px);
}
.ab-fac-dispatch-note .ab-fac-visit {
	margin: 0;
	padding: 0;
	border: 0;
	color: rgba(255,255,255,.92);
}
@media (max-width: 700px) { .ab-fac-dispatch-note { border-left: 0; padding-left: 0; padding-top: 14px; border-top: 1px dashed rgba(255,255,255,.45); } }

.ab-fac-dispatch-action {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	border-left: 1px dashed rgba(255,255,255,.45);
	padding-left: clamp(16px, 2vw, 28px);
}
@media (max-width: 1024px) { .ab-fac-dispatch-action { border-left: 0; padding-left: 0; padding-top: 14px; border-top: 1px dashed rgba(255,255,255,.45); align-items: stretch; } }
.ab-fac-dispatch .ab-fac-cta { white-space: nowrap; border: 2px solid var(--white); }
@media (max-width: 1024px) { .ab-fac-dispatch .ab-fac-cta { width: 100%; justify-content: center; } }
.ab-fac-flow-rail {
	position: absolute;
	left: 26px; top: 18px; bottom: 18px;
	width: 2px;
	background-image: linear-gradient(180deg, transparent 0 6px, rgba(0,173,238,.55) 6px 14px, transparent 14px 20px);
	background-size: 2px 20px;
	background-repeat: repeat-y;
}
@media (max-width: 600px) { .ab-fac-flow-rail { left: 22px; } }

.ab-fac-step {
	position: relative;
	padding: 12px 0;
	opacity: 0;
	transform: translateY(12px);
	animation: abFacRise .65s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 110ms + 100ms);
}
@keyframes abFacRise { to { opacity: 1; transform: translateY(0); } }
.ab-fac-step-num {
	position: absolute;
	left: -60px; top: 50%;
	transform: translateY(-50%);
	width: 52px; height: 52px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--white);
	border: 2px solid var(--white);
	border-radius: 50%;
	color: var(--primary);
	font-family: var(--font-head);
	font-weight: 900;
	font-size: .92rem;
	letter-spacing: .04em;
	z-index: 2;
	transition: background .3s ease, color .3s ease, transform .3s ease;
}
.ab-fac-step:hover .ab-fac-step-num {
	background: var(--white);
	color: var(--primary);
	transform: translateY(-50%) scale(1.06);
}
@media (max-width: 600px) {
	.ab-fac-step-num { left: -50px; width: 44px; height: 44px; font-size: .82rem; }
}
.ab-fac-step-dot {
	position: absolute;
	left: -40px; top: 50%;
	width: 12px; height: 2px;
	background: var(--white);
	transform: translateY(-1px);
	z-index: 1;
}
@media (max-width: 600px) { .ab-fac-step-dot { display: none; } }

.ab-fac-step-card {
	background: rgba(255,255,255,.10);
	border: 1px solid rgba(255,255,255,.30);
	border-left: 3px solid transparent;
	border-radius: var(--radius-md);
	padding: 16px 20px;
	transition: border-color .3s ease, background .3s ease, transform .3s ease;
}
.ab-fac-step:hover .ab-fac-step-card {
	background: rgba(255,255,255,.18);
	border-left-color: var(--white);
	transform: translateX(4px);
}
.ab-fac-step-area {
	margin: 0 0 4px;
	font-family: var(--font-head);
	font-weight: 800;
	color: var(--white);
	font-size: 1rem;
	letter-spacing: -.005em;
}
.ab-fac-step-act {
	margin: 0;
	color: rgba(255,255,255,.92);
	font-size: .9rem;
	line-height: 1.55;
}

/* Address card */
.ab-fac-card-row {
	display: flex; justify-content: center; align-items: center;
}
.ab-fac-card--horizontal {
	display: grid;
	grid-template-columns: 2fr 2fr auto;
	align-items: center;
	gap: clamp(20px, 3vw, 36px);
	max-width: none;
	width: 100%;
}
.ab-fac-card--horizontal .ab-fac-card-head {
	margin: 0;
	padding: 0;
	border-bottom: 0;
	border-right: 1px solid rgba(255,255,255,.30);
	padding-right: clamp(18px, 2.5vw, 32px);
	align-items: flex-start;
}
.ab-fac-card--horizontal .ab-fac-address {
	margin: 6px 0 0;
}
.ab-fac-card--horizontal .ab-fac-visit {
	margin: 0;
	padding-top: 0;
	border-top: 0;
}
.ab-fac-card--horizontal .ab-fac-cta {
	width: auto;
	white-space: nowrap;
}
@media (max-width: 900px) {
	.ab-fac-card--horizontal {
		grid-template-columns: 1fr;
		gap: 16px;
		text-align: left;
	}
	.ab-fac-card--horizontal .ab-fac-card-head {
		border-right: 0;
		border-bottom: 1px solid rgba(255,255,255,.30);
		padding: 0 0 14px;
	}
	.ab-fac-card--horizontal .ab-fac-cta { width: 100%; }
}
.ab-fac-card {
	max-width: 560px;
	width: 100%;
	background: rgba(255,255,255,.10);
	border: 1px solid rgba(255,255,255,.30);
	border-radius: var(--radius-lg);
	padding: 26px 26px 24px;
	box-shadow: 0 22px 50px -22px rgba(0,52,80,.35);
	color: var(--white);
}
.ab-fac-card-head {
	display: flex; align-items: center; gap: 14px;
	margin-bottom: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255,255,255,.30);
}
.ab-fac-pin {
	flex-shrink: 0;
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px;
	background: var(--white);
	border: 1px solid var(--white);
	border-radius: 12px;
	color: var(--primary);
	font-size: 1rem;
}
.ab-fac-card-eyebrow {
	margin: 0 0 2px;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .68rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--white);
}
.ab-fac-card-title {
	margin: 0;
	font-family: var(--font-head);
	font-weight: 800;
	color: var(--white);
	font-size: 1.1rem;
}
.ab-fac-address {
	margin: 0 0 12px;
	color: rgba(255,255,255,.92);
	line-height: 1.6;
	font-size: .92rem;
}
.ab-fac-visit {
	margin: 0 0 16px;
	color: rgba(255,255,255,.92);
	font-size: .85rem;
	line-height: 1.55;
	padding-top: 12px;
	border-top: 1px solid rgba(255,255,255,.30);
}
.ab-fac-card .btn { width: 100%; justify-content: center; }

/* Certifications — featured BIS seal + standards cards */
.ab-certs {
	position: relative;
	overflow: hidden;
	background: var(--primary);
	color: #FFFFFF;
}
.ab-certs::before { display: none; }
.ab-certs-bg {
	position: absolute; inset: 0; z-index: 0;
	background-image: radial-gradient(circle, rgba(255,255,255,.18) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000, transparent 70%);
	pointer-events: none;
}
.ab-certs-text .section-label { color: #FFFFFF; }
.ab-certs-text h2 { color: #ffffff !important; }
.ab-cert-body p { color: rgba(255,255,255,.92) !important; }
.ab-cert-card {
	background: rgba(255,255,255,.10);
	border: 1px solid rgba(255,255,255,.30);
}
.ab-cert-card-std { color: #ffffff !important; }
.ab-cert-card-applies { color: #FFFFFF !important; }
.ab-cert-card-scope { color: rgba(255,255,255,.92) !important; }
.ab-certs-seal.has-image .ab-seal-img {
	width: 100%; height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 18px 30px rgba(0,52,80,.35));
}
.ab-certs .container { position: relative; z-index: 1; }
.ab-certs-grid {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: clamp(28px, 5vw, 64px);
	align-items: center;
}
@media (max-width: 900px) { .ab-certs-grid { grid-template-columns: 1fr; text-align: center; } }

.ab-certs-seal {
	position: relative;
	width: 240px; height: 240px;
	margin: 0 auto;
	border: 4px solid var(--white);
	border-radius: 50%;
	padding: 6px;
	animation: abSealFloat 6s ease-in-out infinite;
}
@keyframes abSealFloat {
	0%, 100% { transform: translateY(0) rotate(0); }
	50%      { transform: translateY(-8px) rotate(2deg); }
}
.ab-seal-svg {
	width: 100%; height: 100%;
	filter: drop-shadow(0 18px 30px rgba(0,173,238,.35));
}

.ab-certs-text .section-label { display: inline-block; margin-bottom: 12px; }
.ab-certs-text h2 {
	margin: 0 0 14px;
	font-size: clamp(1.7rem, 2.6vw, 2.2rem);
	color: var(--navy);
	letter-spacing: -.01em;
}
.ab-cert-body p {
	margin: 0 0 22px;
	color: var(--grey);
	font-size: 1rem;
	line-height: 1.7;
}
.ab-cert-body strong { color: var(--navy); }

.ab-cert-cards {
	display: grid;
	gap: 12px;
}
.ab-cert-card {
	display: flex; align-items: flex-start; gap: 14px;
	padding: 16px 18px;
	background: rgba(255,255,255,.10);
	border: 2px solid var(--white);
	border-left: 4px solid var(--white);
	border-radius: var(--radius-md);
	box-shadow: 0 8px 24px -16px rgba(0,52,80,.35);
	text-align: left;
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
	opacity: 0;
	transform: translateY(10px);
	animation: abCertRise .55s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 110ms + 80ms);
}
@keyframes abCertRise { to { opacity: 1; transform: translateY(0); } }
.ab-cert-card:hover {
	transform: translateX(4px);
	background: rgba(255,255,255,.18);
	border-color: var(--white);
	box-shadow: 0 18px 30px -16px rgba(0,52,80,.35);
}
.ab-cert-card-icon {
	flex-shrink: 0;
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px;
	background: var(--white);
	color: var(--primary);
	border: 1px solid var(--white);
	border-radius: 10px;
	font-size: .92rem;
}
.ab-cert-card > div { flex: 1; min-width: 0; }
.ab-cert-card-std {
	margin: 0;
	font-family: var(--font-head);
	font-weight: 800;
	color: #ffffff;
	font-size: 1rem;
	letter-spacing: -.005em;
}
.ab-cert-card-applies {
	margin: 2px 0 4px;
	color: #7EC8E3;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: .82rem;
}
.ab-cert-card-scope {
	margin: 0;
	color: rgba(230,242,251,.78);
	font-size: .88rem;
	line-height: 1.55;
}

/* Awards — standalone full-width section ================================== */
.ab-awards-section {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.ab-awards {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: clamp(48px, 6vw, 88px) clamp(20px, 4vw, 80px);
	color: var(--navy);
	background: var(--white);
	overflow: hidden;
}
.ab-awards::before,
.ab-awards::after {
	content: "";
	position: absolute;
	width: 360px; height: 360px;
	border-radius: 50%;
	background: rgba(0,173,238,.08);
	filter: blur(60px);
	pointer-events: none;
	z-index: 0;
}
.ab-awards::before { top: -120px; left: -120px; }
.ab-awards::after  { bottom: -160px; right: -120px; }

.ab-awards-head {
	position: relative; z-index: 1;
	max-width: 760px;
	margin: 0 auto 36px;
	text-align: center;
}
.ab-awards-eyebrow {
	display: inline-block;
	margin-bottom: 12px;
	padding: 6px 16px;
	background: var(--primary);
	color: var(--white);
	font-family: var(--font-head);
	font-weight: 800;
	font-size: .68rem;
	letter-spacing: .25em;
	text-transform: uppercase;
	border-radius: 999px;
}
.ab-awards-heading {
	margin: 0 0 12px;
	color: var(--navy);
	font-family: var(--font-head);
	font-weight: 900;
	font-size: clamp(1.6rem, 2.6vw, 2.2rem);
	letter-spacing: -.01em;
	line-height: 1.15;
}
.ab-awards-sub {
	margin: 0;
	color: var(--grey);
	font-size: .98rem;
	line-height: 1.6;
}
.ab-awards-slider {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 18px;
	width: 100%;
	margin: 0;
}
.ab-awards-viewport {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	padding: 6px 0 14px;
}
.ab-awards-track {
	display: flex;
	gap: 24px;
	transition: transform .6s cubic-bezier(.2,.8,.2,1);
	will-change: transform;
	width: 100%;
}
.ab-awards-track[data-static="1"] {
	justify-content: center;
}
.ab-awards-track[data-static="1"] .ab-awards-card {
	flex: 1 1 0;
	min-width: 0;
}
.ab-awards-card {
	flex: 0 0 calc((100% - 24px * 5) / 6);
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
	font: inherit;
	color: var(--white);
	transition: transform .35s cubic-bezier(.2,.8,.2,1);
	opacity: 0;
	transform: translateY(14px);
	animation: abAwardRise .6s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 80ms + 80ms);
	text-align: left;
}
@keyframes abAwardRise { to { opacity: 1; transform: translateY(0); } }
.ab-awards-card-frame {
	position: relative;
	display: block;
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 22px;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border: 1px solid rgba(0,173,238,.18);
	box-shadow: 0 18px 36px -18px rgba(0,52,80,.25);
	transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.ab-awards-card:hover .ab-awards-card-frame {
	border-color: rgba(0,173,238,.45);
}
.ab-awards-img {
	width: 100%; height: 100%;
	object-fit: contain;
	display: block;
	transition: transform .45s ease, filter .45s ease;
}
.ab-awards-card-zoom {
	position: absolute;
	top: 12px; right: 12px;
	width: 34px; height: 34px;
	display: inline-flex;
	align-items: center; justify-content: center;
	background: var(--primary);
	color: var(--white);
	border-radius: 50%;
	font-size: .85rem;
	opacity: 0;
	transform: translateY(-4px);
	transition: opacity .3s ease, transform .3s ease;
	box-shadow: 0 8px 16px -6px rgba(0,52,80,.45);
}
.ab-awards-card:hover .ab-awards-card-frame {
	transform: translateY(-8px);
	box-shadow: 0 28px 50px -22px rgba(0,52,80,.55);
}
.ab-awards-card:hover .ab-awards-img { transform: scale(1.04); }
.ab-awards-card:hover .ab-awards-card-zoom { opacity: 1; transform: translateY(0); }
.ab-awards-title {
	display: block;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: .95rem;
	color: var(--navy);
	line-height: 1.35;
	letter-spacing: -.005em;
	text-align: center;
	min-height: 2.6em;
}
.ab-awards-nav {
	flex: 0 0 52px;
	width: 52px; height: 52px;
	border-radius: 50%;
	border: 2px solid var(--primary);
	background: var(--white);
	color: var(--primary);
	cursor: pointer;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 1rem;
	transition: transform .25s ease, background .25s ease, color .25s ease;
}
.ab-awards-nav:hover {
	background: var(--primary);
	color: var(--white);
	transform: scale(1.08);
}
.ab-awards-nav[disabled] { opacity: .35; cursor: not-allowed; }
.ab-awards-nav[disabled]:hover { background: var(--white); color: var(--primary); transform: none; }

.ab-awards-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 26px;
	position: relative; z-index: 1;
}
.ab-awards-dot {
	width: 28px; height: 6px;
	padding: 0;
	background: rgba(0,173,238,.30);
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	transition: background .3s ease, width .3s ease;
}
.ab-awards-dot.is-active {
	background: var(--primary);
	width: 44px;
}

@media (max-width: 1200px) { .ab-awards-card { flex-basis: calc((100% - 24px * 3) / 4); } }
@media (max-width: 900px)  { .ab-awards-card { flex-basis: calc((100% - 24px * 2) / 3); } }
@media (max-width: 600px)  {
	.ab-awards-card { flex-basis: calc((100% - 24px) / 2); }
	.ab-awards-nav { width: 42px; height: 42px; flex-basis: 42px; }
	.ab-awards-slider { gap: 10px; }
	.ab-awards-track { gap: 16px; }
}
@media (max-width: 420px)  { .ab-awards-card { flex-basis: 100%; } }

/* Award popup */
.ab-awards-popup {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	width: 100vw; height: 100vh;
	z-index: 9999;
	display: flex; align-items: center; justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}
.ab-awards-popup[hidden] { display: none; }
.ab-awards-popup *,
.ab-awards-popup *::before,
.ab-awards-popup *::after { box-sizing: border-box; }
.ab-awards-popup-backdrop {
	position: absolute; inset: 0;
	background: rgba(0,42,64,.78);
	cursor: pointer;
}
.ab-awards-popup-inner {
	position: relative;
	max-width: 720px;
	width: 100%;
	max-height: calc(100vh - 40px);
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 24px clamp(20px, 3vw, 36px);
	box-shadow: 0 32px 60px -20px rgba(0,52,80,.55);
	overflow: auto;
	text-align: center;
}
@media (max-width: 600px) {
	.ab-awards-popup { padding: 12px; }
	.ab-awards-popup-inner { padding: 18px 16px; max-height: calc(100vh - 24px); }
}
.ab-awards-popup-close {
	position: absolute;
	top: 12px; right: 12px;
	width: 38px; height: 38px;
	border-radius: 50%;
	border: 0;
	background: var(--primary);
	color: var(--white);
	cursor: pointer;
	font-size: .95rem;
	display: inline-flex; align-items: center; justify-content: center;
	transition: transform .2s ease;
}
.ab-awards-popup-close:hover { transform: scale(1.08); }
.ab-awards-popup-img {
	display: block;
	max-width: 100%;
	max-height: 70vh;
	margin: 14px auto 18px;
	object-fit: contain;
}
.ab-awards-popup-title {
	margin: 0;
	font-family: var(--font-head);
	font-weight: 800;
	color: var(--navy);
	font-size: 1.15rem;
}

/* Mobile rhythm tweak for the about hero */
@media (max-width: 720px) {
	.ab-hero { min-height: 360px; padding: 56px 0 36px; }
	.ab-hero-cta { gap: 10px; }
	.ab-fac-card { position: static; }
}

/* Fade-up animations ====================================================== */
.animate-fade-up { opacity: 0; transform: translateY(12px); animation: fadeUp .6s ease forwards; }
.animate-delay-1 { animation-delay: .12s; }
.animate-delay-2 { animation-delay: .24s; }
.animate-delay-3 { animation-delay: .36s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   ARCHIVE PAGES — shared hero + breadcrumb + per-archive grids
   ============================================================ */

/* ---- Shared hero banner with inline contact form ---- */
.ar-hero {
	position: relative;
	overflow: hidden;
	min-height: 520px;
	padding: 96px 0 84px;
	color: #fff;
	isolation: isolate;
}
.ar-hero-bg {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	z-index: 0;
	opacity: .55;
}
.ar-hero-overlay {
	position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(135deg, rgba(6,20,43,.94) 0%, rgba(11,35,64,.86) 50%, rgba(15,42,80,.88) 100%);
}
.ar-hero-grid {
	position: absolute; inset: 0; z-index: 2;
	background-image: radial-gradient(circle, rgba(126,200,227,.10) 1px, transparent 1px);
	background-size: 28px 28px;
	mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000, transparent 75%);
	pointer-events: none;
}
.ar-hero-glow {
	position: absolute; z-index: 2; pointer-events: none;
	width: 520px; height: 520px; border-radius: 50%;
	filter: blur(80px); opacity: .55;
}
.ar-hero-glow--a { top: -180px; left: -120px; background: radial-gradient(circle, rgba(0,173,238,.6), transparent 70%); }
.ar-hero-glow--b { bottom: -200px; right: -140px; background: radial-gradient(circle, rgba(126,200,227,.5), transparent 70%); }
.ar-hero-fade {
	position: absolute; left: 0; right: 0; bottom: 0; height: 60px; z-index: 3;
	background: linear-gradient(to bottom, transparent, var(--white));
	pointer-events: none;
}
.ar-hero-inner {
	position: relative; z-index: 4;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: clamp(24px, 4vw, 56px);
	align-items: center;
	padding-left: 56px;
	padding-right: 56px;
}
@media (max-width: 720px) {
	.ar-hero-inner { padding-left: 32px; padding-right: 32px; }
}
.ar-hero--no-form .ar-hero-inner { grid-template-columns: 1fr; text-align: center; }
.ar-hero--no-form .ar-hero-content { max-width: 820px; margin: 0 auto; }
.ar-hero--no-form .ar-hero-chips { justify-content: center; }
.ar-hero--no-form .ar-hero-sub { margin-left: auto; margin-right: auto; }
.ar-hero-content { max-width: 640px; }
.ar-hero-eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 6px 14px; border-radius: 999px;
	background: rgba(0,173,238,.18);
	border: 1px solid rgba(126,200,227,.40);
	color: #7EC8E3;
	font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.ar-hero-title {
	margin: 18px 0 14px;
	font-family: var(--font-head);
	font-size: clamp(2rem, 4.4vw, 3.4rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -.02em;
	color: #fff;
}
.ar-hero-sub {
	margin: 0 0 22px;
	font-size: clamp(1rem, 1.4vw, 1.12rem);
	line-height: 1.65;
	color: rgba(230,242,251,.85);
	max-width: 56ch;
}
.ar-hero-chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.ar-hero-chip {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 14px; border-radius: 999px;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(126,200,227,.22);
	font-size: .88rem; color: rgba(230,242,251,.92);
}
.ar-hero-chip i { color: #7EC8E3; }

/* All archive banners share the Terra navy base; accent color tints
   the eyebrow, glows and chip icons so each archive feels distinct
   without breaking brand cohesion. */
.ar-hero--elevator { --ar-accent: #00ADEE; --ar-accent-soft: #7EC8E3; }
.ar-hero--service  { --ar-accent: #00ADEE; --ar-accent-soft: #7EC8E3; }
.ar-hero--city     { --ar-accent: #00ADEE; --ar-accent-soft: #7EC8E3; }
.ar-hero--blog     { --ar-accent: #00ADEE; --ar-accent-soft: #7EC8E3; }

/* Blog + City + Elevator banners — pixel-matched to the About page hero
   (.ab-hero). Service archive keeps its own amber treatment. */
.ar-hero .ar-hero-rail,
.ar-hero .ar-hero-fade,
.ar-hero .ar-hero-grid,
.ar-hero .ar-hero-eyebrow,
.ar-hero .ar-hero-chips,
.ar-hero .ar-hero-form { display: none !important; }

.ar-hero .ar-hero-frame { display: none; }
.ar-hero .ar-hero-frame {
	display: block;
	position: absolute;
	inset: clamp(20px, 3vw, 40px);
	z-index: 2;
	pointer-events: none;
	border: 1px solid rgba(126,200,227,.16);
	border-radius: 4px;
}

.ar-hero {
	min-height: clamp(460px, 60vh, 640px) !important;
	padding: clamp(72px, 10vw, 120px) 0 !important;
	background: linear-gradient(155deg, #0F2A50 0%, var(--navy) 60%, #06142B 100%) !important;
	text-align: center;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: var(--white);
	isolation: isolate;
}
.ar-hero .ar-hero-bg {
	transform: scale(1.04);
	animation: arHeroBgZoom 18s ease-in-out infinite alternate;
	opacity: .8;
}
@keyframes arHeroBgZoom { to { transform: scale(1.12); } }

.ar-hero .ar-hero-overlay {
	background:
		radial-gradient(ellipse 120% 80% at 50% 50%, rgba(11,35,64,.55) 0%, rgba(11,35,64,.85) 70%, rgba(6,20,43,.95) 100%),
		linear-gradient(rgba(126,200,227,.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(126,200,227,.05) 1px, transparent 1px);
	background-size: auto, 56px 56px, 56px 56px;
}

.ar-hero .ar-hero-glow {
	width: 520px !important;
	height: 520px !important;
	filter: blur(10px) !important;
	opacity: 1 !important;
}
.ar-hero .ar-hero-glow--a {
	top: -180px; left: -160px; right: auto; bottom: auto;
	background: radial-gradient(circle, rgba(0,173,238,.35), transparent 65%) !important;
}
.ar-hero .ar-hero-glow--b {
	bottom: -200px; right: -160px; top: auto; left: auto;
	background: radial-gradient(circle, rgba(126,200,227,.22), transparent 65%) !important;
}

.ar-hero::before,
.ar-hero::after {
	content: '';
	position: absolute;
	z-index: 3;
	pointer-events: none;
	width: 38px; height: 38px;
	border: 2px solid var(--primary);
	border-radius: 2px;
}
.ar-hero::before {
	top: clamp(20px, 3vw, 40px);
	left: clamp(20px, 3vw, 40px);
	border-right: 0; border-bottom: 0;
}
.ar-hero::after {
	bottom: clamp(20px, 3vw, 40px);
	right: clamp(20px, 3vw, 40px);
	border-left: 0; border-top: 0;
}

.ar-hero .ar-hero-inner {
	padding: 0 !important;
	display: block !important;
	grid-template-columns: none !important;
	text-align: center;
	width: 100%;
}
.ar-hero .ar-hero-content {
	max-width: 880px;
	margin: 0 auto;
	position: relative;
}
.ar-hero .ar-hero-title {
	margin: 0 0 28px !important;
	font-family: var(--font-head);
	font-size: clamp(2rem, 4.5vw, 3.4rem);
	line-height: 1.08;
	letter-spacing: -.012em;
	color: var(--white);
	font-weight: 900;
}
.ar-hero .ar-hero-sub {
	position: relative;
	margin: 0 auto !important;
	max-width: 720px;
	padding: 0 8px;
	color: rgba(255,255,255,.88) !important;
	font-style: italic;
	font-size: clamp(1.05rem, 1.8vw, 1.35rem);
	line-height: 1.6;
	letter-spacing: .005em;
}
.ar-hero .ar-hero-sub::before {
	content: '\201C';
	display: inline-block;
	margin-right: 6px;
	color: var(--primary);
	font-style: normal;
	font-family: var(--font-head);
	font-weight: 900;
	font-size: 1.6em;
	line-height: 0;
	vertical-align: -.25em;
}

/* Map-themed pin pulses for the city archive hero — float across the
   banner with staggered timings to reinforce the "pan-India reach" idea. */
.ar-hero--city .ar-hero-content { z-index: 4; }
.ar-hero--city::after { z-index: 4; }
.ar-hero--city::before { z-index: 4; }
.ar-hero--city .ar-hero-frame { z-index: 4; }
.ar-hero--city .ar-hero-overlay { z-index: 1; }
.ar-hero--city .ar-hero-pins {
	position: absolute; inset: 0;
	z-index: 2;
	pointer-events: none;
}
.ar-city-pin {
	position: absolute;
	width: 12px; height: 12px;
}
.ar-city-pin::before {
	content: '';
	position: absolute; inset: 3px;
	background: var(--primary);
	border-radius: 50%;
	box-shadow: 0 0 0 2px rgba(255,255,255,.9), 0 0 12px rgba(0,173,238,.65);
}
.ar-city-pin::after {
	content: '';
	position: absolute; inset: 0;
	background: rgba(0,173,238,.45);
	border-radius: 50%;
	animation: arCityPinPulse 2.2s ease-out infinite;
}
@keyframes arCityPinPulse {
	0%   { transform: scale(.5); opacity: 1; }
	100% { transform: scale(3.2); opacity: 0; }
}
.ar-city-pin--a { top: 18%; left: 12%;  animation-delay: 0s; }
.ar-city-pin--b { top: 32%; left: 28%;  }
.ar-city-pin--c { top: 70%; left: 18%;  }
.ar-city-pin--d { top: 22%; right: 14%; }
.ar-city-pin--e { top: 64%; right: 22%; }
.ar-city-pin--f { top: 46%; right: 8%;  }
.ar-city-pin--b::after { animation-delay: .4s; }
.ar-city-pin--c::after { animation-delay: .9s; }
.ar-city-pin--d::after { animation-delay: 1.3s; }
.ar-city-pin--e::after { animation-delay: 1.7s; }
.ar-city-pin--f::after { animation-delay: .6s; }

@media (max-width: 720px) {
	.ar-hero { min-height: 360px !important; padding: 56px 0 36px !important; }
}

/* ==========================================================================
   Elevator archive — split hero: NARROW left column (title + description on
   the navy gradient) and WIDE right column (image / video slider with dot
   pagination only). The trust bar inherits the same gradient so the left
   column flows seamlessly into it. Banner + trust bar fill the viewport on
   first load.
   ========================================================================== */

/* 1. Clean dark canvas — strip every inherited decoration. */
.terra-split-hero .ar-hero {
	min-height: calc(100vh - 160px) !important;
	padding: 0 !important;
	overflow: hidden;
	background: var(--primary) !important;
	text-align: left !important;
	display: block !important;
	isolation: isolate;
}
.terra-split-hero .ar-hero::before,
.terra-split-hero .ar-hero::after { display: none !important; }
.terra-split-hero .ar-hero > .ar-hero-overlay,
.terra-split-hero .ar-hero > .ar-hero-grid,
.terra-split-hero .ar-hero > .ar-hero-glow,
.terra-split-hero .ar-hero > .ar-hero-frame,
.terra-split-hero .ar-hero > .ar-hero-fade,
.terra-split-hero .ar-hero > .ar-hero-rail,
.terra-split-hero .ar-hero > .ar-hero-pins { display: none !important; }
/* Hide direct .ar-hero-bg only on the split-slider variant — the no-slider
   variant (blog) keeps its static banner image visible as a full backdrop. */
.terra-split-hero .ar-hero.ar-hero--has-slider > .ar-hero-bg { display: none !important; }
/* No-slider variant — make the static banner image cover the full hero,
   with a dark gradient overlay so the centered text stays legible. */
.terra-split-hero .ar-hero:not(.ar-hero--has-slider) > .ar-hero-bg {
	display: block !important;
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	z-index: 1;
}
.terra-split-hero .ar-hero:not(.ar-hero--has-slider)::before {
	content: "";
	display: block !important;
	position: absolute;
	inset: 0;
	z-index: 2;
	/*background:
		linear-gradient(180deg, rgba(6,20,43,0.55) 0%, rgba(6,20,43,0.78) 100%);*/
	pointer-events: none;
}

/* 2. Inner grid — narrow left content, wide right media.
      pointer-events: none on the wrapper so the empty right cell does NOT
      swallow clicks meant for the slider dots underneath. The left content
      column re-enables pointer-events for its own children. */
.terra-split-hero .ar-hero-inner {
	display: grid !important;
	grid-template-columns: minmax(360px, 36%) 1fr !important;
	gap: 0 !important;
	padding: 0 !important;
	min-height: calc(100vh - 160px);
	max-width: none !important;
	width: 100%;
	align-items: stretch;
	position: relative;
	z-index: 4;
	pointer-events: none;
}
.terra-split-hero .ar-hero-content { pointer-events: auto; }

/* 3. Left column — title + description, centered vertically, left-aligned. */
.terra-split-hero .ar-hero-content {
	max-width: none !important;
	padding: clamp(56px, 6vw, 88px) clamp(28px, 3.5vw, 56px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 !important;
	text-align: left !important;
}
.terra-split-hero .ar-hero-content::before { display: none !important; }
.terra-split-hero .ar-hero-title {
	font-size: clamp(1.9rem, 2.4vw, 2.8rem) !important;
	line-height: 1.1 !important;
	letter-spacing: -0.005em;
	margin: 0 0 18px !important;
	max-width: 100%;
	color: #fff;
}
.terra-split-hero .ar-hero-sub {
	font-size: clamp(0.95rem, 1vw, 1.05rem) !important;
	line-height: 1.6 !important;
	color: rgba(255,255,255,0.82);
	max-width: 100%;
	margin: 0 !important;
	padding: 0 !important;
}
.terra-split-hero .ar-hero-sub::before { display: none !important; }
.terra-split-hero .ar-hero--no-form .ar-hero-sub { margin: 0 !important; }

/* Hero contact list (city single — address / phone / email under subtitle) */
.ar-hero-contact {
	list-style: none;
	margin: 22px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ar-hero-contact-row {
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(255,255,255,0.95);
	font-size: 0.95rem;
	line-height: 1.45;
}
.ar-hero-contact-icon {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: rgba(255,255,255,0.10);
	border: 2px solid var(--white);
	color: var(--white);
	font-size: 0.9rem;
}
.ar-hero-contact-text {
	color: inherit;
	text-decoration: none;
	word-break: break-word;
}
a.ar-hero-contact-text:hover { color: rgba(255,255,255,0.85); }

/* 4. Right column — slider takes the wide right area (1fr of grid = 64%). */
.terra-split-hero .ar-hero-slider {
	position: absolute !important;
	inset: 0 0 0 auto !important;
	width: 64% !important;
	height: auto;
	z-index: 3;
	pointer-events: auto !important;
	overflow: hidden;
	/*background: linear-gradient(95deg, #06142B 0%, var(--navy) 45%, #0F2A50 100%);*/
	border: 0 !important;
}
/* Soft blend overlay — fades the slide image into the navy gradient on the
   LEFT edge (toward the title column) and the BOTTOM edge (toward the
   trust bar). Removes any visible seam without a hard border. */
.terra-split-hero .ar-hero-slider::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 4;
	/*background:
		linear-gradient(90deg, var(--navy) 0%, rgba(11,35,79,0.55) 8%, transparent 22%),
		linear-gradient(0deg,  #0F2A50 0%, rgba(15,42,80,0.55)   8%, transparent 22%); */
}
.terra-split-hero .ar-hero-slides,
.terra-split-hero .ar-hero-slide { position: absolute; inset: 0; }
.terra-split-hero .ar-hero-slide img,
.terra-split-hero .ar-hero-slide video,
.terra-split-hero .ar-hero-slider .ar-hero-bg,
.terra-split-hero .ar-hero-slider img {
	display: block !important;
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	z-index: 1;
}
/* Make sure the active slide is fully opaque even before the JS kicks in */
.terra-split-hero .ar-hero-slide.is-active,
.terra-split-hero .ci-hero-slide.is-active { opacity: 1 !important; }

/* 5. No-slider variant — full-width single column (used by blog archive when
      no hero slides are configured). The right-column placeholder panel is
      suppressed and the inner grid collapses to a single centered cell. */
.terra-split-hero .ar-hero:not(.ar-hero--has-slider) .ar-hero-inner {
	grid-template-columns: 1fr !important;
}
.terra-split-hero .ar-hero:not(.ar-hero--has-slider) .ar-hero-content {
	max-width: 920px !important;
	margin: 0 auto !important;
	text-align: center !important;
	padding-left: clamp(24px, 4vw, 64px);
	padding-right: clamp(24px, 4vw, 64px);
}
.terra-split-hero .ar-hero:not(.ar-hero--has-slider) .ar-hero-title {
	max-width: 100%;
}
.terra-split-hero .ar-hero:not(.ar-hero--has-slider) .ar-hero-sub {
	margin-left: auto !important;
	margin-right: auto !important;
}

/* 6. Controls — kill arrows, polish dots. */
.terra-split-hero .ar-hero-nav,
.terra-split-hero .ci-hero-nav,
.terra-split-hero [data-ci-prev],
.terra-split-hero [data-ci-next] { display: none !important; }
.terra-split-hero .ci-hero-dots,
.terra-split-hero .ar-hero-dots {
	position: absolute !important;
	left: 50%; bottom: 22px;
	transform: translateX(-50%);
	display: flex; gap: 10px;
	z-index: 6;
}
.terra-split-hero .ci-hero-dot,
.terra-split-hero .ar-hero-dot {
	width: 10px; height: 10px;
	border-radius: 999px;
	background: rgba(255,255,255,0.32);
	border: 0;
	transition: width .28s, background .28s;
	cursor: pointer;
}
.terra-split-hero .ci-hero-dot.is-active,
.terra-split-hero .ar-hero-dot.is-active {
	width: 28px;
	background: #6cd4ff;
}

/* 7. Trust bar — identical gradient + direction to the hero so the two
      blocks read as one continuous panel with NO partition line. */
.terra-split-hero .trust-bar {
	background: var(--primary);
	border: 0 !important;
	box-shadow: none !important;
	margin-top: 0 !important;
}
/* Hide trust-bar's decorative grid + glow overlays so the bg is a clean
   continuation of the hero (no inner pattern producing a visible seam). */
.terra-split-hero .trust-bar-grid,
.terra-split-hero .trust-bar-glow,
.terra-split-hero .trust-bar-glow--a,
.terra-split-hero .trust-bar-glow--b { display: none !important; }

/* 8. Mobile — stack: text first, slider strip below. */
@media (max-width: 900px) {
	.terra-split-hero .ar-hero,
	.terra-split-hero .ar-hero-inner { min-height: auto !important; }
	.terra-split-hero .ar-hero-inner {
		grid-template-columns: 1fr !important;
	}
	.terra-split-hero .ar-hero-content {
		padding: 56px 24px 28px !important;
		order: 1;
	}
	.terra-split-hero .ar-hero-slider {
		position: relative !important;
		inset: auto !important;
		width: 100% !important;
		height: 280px !important;
		min-height: 280px;
		order: 2;
		border: 0 !important;
	}
	/* On mobile the blend fade should run TOP→bottom into the trust bar */
	/*.terra-split-hero .ar-hero-slider::after {
		background:
			linear-gradient(180deg, #0a1d3a 0%, rgba(10,29,58,0.6) 12%, transparent 30%),
			linear-gradient(0deg,   #06142B 0%, rgba(6,20,43,0.6)  10%, transparent 24%) !important;
	}*/
	.terra-split-hero .ar-hero:not(.ar-hero--has-slider)::after {
		position: relative;
		width: 100%;
		height: 220px;
		display: block !important;
		border: 0 !important;
	}
}

/* Reusable archive pagination block (used by blog, elevators, etc.) */
.ar-pager {
	display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
	margin: 48px 0 0;
}
.ar-pager .page-numbers {
	display: inline-flex; align-items: center; gap: 6px;
	min-width: 42px;
	padding: 9px 14px;
	background: var(--white);
	border: 1px solid var(--border);
	color: var(--navy);
	border-radius: 10px;
	text-decoration: none; font-weight: 700; font-size: .92rem;
	transition: all .2s ease;
}
.ar-pager .page-numbers:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.ar-pager .page-numbers.current {
	background: linear-gradient(135deg, #00ADEE, #0078A8);
	color: #fff; border-color: transparent;
	box-shadow: 0 8px 18px -8px rgba(0,173,238,.5);
}
.ar-pager .page-numbers.dots { background: transparent; border-color: transparent; cursor: default; }

.ar-hero-overlay {
	background: linear-gradient(135deg, rgba(6,20,43,.94) 0%, rgba(11,35,64,.86) 50%, rgba(15,42,80,.90) 100%);
}
.ar-hero-glow--a { background: radial-gradient(circle, color-mix(in srgb, var(--ar-accent) 65%, transparent), transparent 70%); }
.ar-hero-glow--b { background: radial-gradient(circle, color-mix(in srgb, var(--ar-accent-soft) 55%, transparent), transparent 70%); }
.ar-hero-eyebrow {
	color: var(--ar-accent-soft);
	background: color-mix(in srgb, var(--ar-accent) 18%, transparent);
	border-color: color-mix(in srgb, var(--ar-accent-soft) 50%, transparent);
}
.ar-hero-chip i { color: var(--ar-accent-soft); }
.ar-hero-form-eyebrow { color: var(--ar-accent-soft); }
.ar-hero-form .wpcf7 input[type=submit] {
	background: linear-gradient(135deg, var(--ar-accent), color-mix(in srgb, var(--ar-accent) 60%, #06142B));
}
.ar-hero-form .wpcf7 input[type=submit]:hover {
	box-shadow: 0 10px 24px -10px color-mix(in srgb, var(--ar-accent) 70%, transparent);
}

/* Animated elevator rails on the left/right edges of every banner.
   Left cabin descends, right cabin ascends — opposite directions. */
.ar-hero-rail {
	position: absolute; top: 0; bottom: 0;
	width: 56px; z-index: 3;
	pointer-events: none;
}
.ar-hero-rail--l { left: 0; }
.ar-hero-rail--r { right: 0; }
.ar-hero-rail::before,
.ar-hero-rail::after {
	content: '';
	position: absolute; top: 0; bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, transparent, color-mix(in srgb, var(--ar-accent-soft) 45%, transparent), transparent);
	box-shadow: 0 0 8px color-mix(in srgb, var(--ar-accent) 35%, transparent);
}
.ar-hero-rail::before { left: 14px; }
.ar-hero-rail::after  { right: 14px; }
.ar-hero-rail-line {
	position: absolute; left: 50%; top: 8%; bottom: 8%;
	width: 1px; transform: translateX(-50%);
	background: repeating-linear-gradient(to bottom, transparent 0 12px, color-mix(in srgb, var(--ar-accent-soft) 35%, transparent) 12px 16px);
}
.ar-hero-cabin {
	position: absolute; left: 50%;
	width: 28px; height: 38px;
	transform: translateX(-50%);
}
.ar-hero-cabin-body {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, color-mix(in srgb, var(--ar-accent) 90%, #fff) 0%, var(--ar-accent) 60%, color-mix(in srgb, var(--ar-accent) 70%, #06142B) 100%);
	border: 1px solid color-mix(in srgb, var(--ar-accent-soft) 80%, #fff);
	border-radius: 4px;
	box-shadow:
		0 0 0 2px rgba(255,255,255,.08),
		0 0 18px color-mix(in srgb, var(--ar-accent) 65%, transparent),
		inset 0 6px 0 rgba(255,255,255,.18),
		inset 0 -6px 0 rgba(0,0,0,.20);
}
.ar-hero-cabin-body::before {
	content: '';
	position: absolute; left: 50%; top: 50%;
	width: 1px; height: 70%;
	background: rgba(255,255,255,.35);
	transform: translate(-50%, -50%);
}
.ar-hero-cabin-cable {
	position: absolute; left: 50%; top: -100vh; height: 100vh;
	width: 2px; transform: translateX(-50%);
	background: linear-gradient(to bottom, transparent, color-mix(in srgb, var(--ar-accent-soft) 40%, transparent));
}
.ar-hero-cabin--down { animation: arHeroCabinDown 9s ease-in-out infinite; }
.ar-hero-cabin--up   { animation: arHeroCabinUp   9s ease-in-out infinite; }
@keyframes arHeroCabinDown {
	0%   { top: 4%; }
	50%  { top: calc(100% - 38px - 4%); }
	100% { top: 4%; }
}
@keyframes arHeroCabinUp {
	0%   { top: calc(100% - 38px - 4%); }
	50%  { top: 4%; }
	100% { top: calc(100% - 38px - 4%); }
}
@media (max-width: 720px) {
	.ar-hero-rail { width: 32px; }
	.ar-hero-rail::before { left: 8px; }
	.ar-hero-rail::after { right: 8px; }
	.ar-hero-cabin { width: 18px; height: 26px; }
}
@media (prefers-reduced-motion: reduce) {
	.ar-hero-cabin--down,
	.ar-hero-cabin--up { animation: none; }
}

.ar-hero-form {
	position: relative;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(126,200,227,.22);
	border-radius: var(--radius-md);
	padding: 24px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 24px 48px -20px rgba(0,0,0,.55);
}
.ar-hero-form-eyebrow {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
	color: #7EC8E3;
}
.ar-hero-form-title { margin: 8px 0 6px; font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; color: #fff; }
.ar-hero-form-sub { margin: 0 0 16px; font-size: .9rem; line-height: 1.55; color: rgba(230,242,251,.78); }
.ar-hero-form .wpcf7 input[type=text],
.ar-hero-form .wpcf7 input[type=email],
.ar-hero-form .wpcf7 input[type=tel],
.ar-hero-form .wpcf7 select,
.ar-hero-form .wpcf7 textarea {
	width: 100%;
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(126,200,227,.25);
	color: #fff;
	border-radius: 8px;
	padding: 10px 12px;
	font-size: .92rem;
	margin-bottom: 8px;
}
.ar-hero-form .wpcf7 textarea { min-height: 90px; }
.ar-hero-form .wpcf7 ::placeholder { color: rgba(230,242,251,.55); }
.ar-hero-form .wpcf7 input[type=submit] {
	background: linear-gradient(135deg, #00ADEE, #0078A8);
	color: #fff; border: 0; border-radius: 8px;
	padding: 12px 22px; font-weight: 700; cursor: pointer;
	width: 100%;
	transition: transform .2s ease, box-shadow .2s ease;
}
.ar-hero-form .wpcf7 input[type=submit]:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(0,173,238,.6); }

@media (max-width: 900px) {
	.ar-hero { padding: 64px 0 56px; min-height: auto; }
	.ar-hero-inner { grid-template-columns: 1fr; }
	.ar-hero-form { margin-top: 8px; }
}

/* ---- Shared breadcrumb bar ---- */
.ar-breadcrumb-bar { background: var(--primary-light, #f4fbff); border-bottom: 1px solid var(--border, #e6eef5); }
.ar-breadcrumb {
	list-style: none; margin: 0; padding: 14px 0;
	display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
	font-size: .9rem; color: var(--grey, #5a6b7d);
}
.ar-breadcrumb a { color: var(--navy, #0B2340); text-decoration: none; font-weight: 600; }
.ar-breadcrumb a:hover { color: var(--primary, #00ADEE); }
.ar-breadcrumb .sep { color: rgba(11,35,64,.35); font-size: .75rem; }
.ar-breadcrumb .current { color: var(--primary, #00ADEE); font-weight: 700; }

/* ============================================================
   ARCHIVE — Elevators
   ============================================================ */
.ar-elevator { position: relative; overflow: hidden; }
.ar-el-shaft { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); pointer-events: none; opacity: .12; }
.ar-el-shaft-rail { position: absolute; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, transparent, var(--primary), transparent); }
.ar-el-shaft-rail--l { left: -120px; }
.ar-el-shaft-rail--r { left: 120px; }
.ar-el-shaft-cabin { position: absolute; left: 50%; top: 0; width: 24px; height: 36px; transform: translateX(-50%); background: var(--primary); border-radius: 4px; animation: arElCabin 14s ease-in-out infinite; }
@keyframes arElCabin { 0%,100% { top: 0; } 50% { top: calc(100% - 36px); } }

/* Elevator category links — shows on the elevator archive + taxonomy pages. */
.ar-el-cats {
	display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
	margin: 0 0 32px;
	padding: 14px 18px;
	background: linear-gradient(180deg, var(--primary-light), #ffffff);
	border: 1px solid rgba(0,173,238,.18);
	border-radius: 14px;
}
.ar-el-cats-label {
	font-size: .82rem;
	font-weight: 700;
	color: var(--navy);
	letter-spacing: .04em;
	margin-right: 4px;
}
.ar-el-cat-chip {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 14px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 999px;
	color: var(--navy);
	font-size: .88rem; font-weight: 700;
	text-decoration: none;
	transition: all .25s ease;
}
.ar-el-cat-chip:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.ar-el-cat-chip.is-active {
	background: linear-gradient(135deg, #00ADEE, #0078A8);
	color: #fff;
	border-color: transparent;
	box-shadow: 0 8px 18px -8px rgba(0,173,238,.5);
}
.ar-el-cat-count {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 22px; padding: 0 6px;
	background: rgba(0,173,238,.12);
	color: var(--primary-dark);
	border-radius: 999px;
	font-size: .72rem;
	font-weight: 700;
}
.ar-el-cat-chip.is-active .ar-el-cat-count { background: rgba(255,255,255,.25); color: #fff; }

.ar-el-filter {
	display: flex; flex-wrap: wrap; gap: 10px;
	margin: 0 0 32px;
	padding: 10px;
	background: var(--primary-light);
	border-radius: 999px;
	border: 1px solid rgba(0,173,238,.18);
	justify-content: center;
}
.ar-el-chip {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 9px 18px;
	background: transparent; border: 1px solid transparent;
	border-radius: 999px;
	color: var(--navy);
	font-size: .9rem; font-weight: 700; cursor: pointer;
	transition: all .25s ease;
}
.ar-el-chip:hover { background: rgba(0,173,238,.08); }
.ar-el-chip.is-active { background: linear-gradient(135deg, #00ADEE, #0078A8); color: #fff; box-shadow: 0 8px 18px -8px rgba(0,173,238,.5); }
.ar-el-chip-count { background: rgba(255,255,255,.25); padding: 1px 8px; border-radius: 999px; font-size: .72rem; }
.ar-el-chip:not(.is-active) .ar-el-chip-count { background: rgba(0,173,238,.12); color: var(--primary-dark); }

.ar-el-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
	gap: 24px;
	position: relative; z-index: 1;
}
.ar-el-card {
	position: relative;
	display: flex; flex-direction: column;
	background: var(--white);
	border-radius: var(--radius-md);
	border: 1px solid var(--border);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
	opacity: 0; transform: translateY(20px);
	animation: arElRise .6s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 70ms);
}
@keyframes arElRise { to { opacity: 1; transform: translateY(0); } }
.ar-el-card:hover { transform: translateY(-6px); border-color: rgba(0,173,238,.45); box-shadow: 0 24px 40px -20px rgba(11,35,64,.25); }
/* Full-card click overlay sits behind the category badge so the badge
   wins its own click target. */
.ar-el-card-cover {
	position: absolute; inset: 0; z-index: 1;
	text-indent: -9999em;
	border-radius: inherit;
}
.ar-el-card-cover:focus-visible {
	outline: 3px solid var(--primary);
	outline-offset: 2px;
}
.ar-el-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--primary-light); }
.ar-el-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.ar-el-card:hover .ar-el-card-img { transform: scale(1.06); }
.ar-el-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,35,64,.45), transparent 60%); pointer-events: none; z-index: 1; }
/* Category chip is its own anchor — z-index 3 so it wins over the cover. */
.ar-el-card-cat {
	position: absolute; top: 14px; left: 14px;
	z-index: 3;
	padding: 4px 12px;
	background: rgba(0,173,238,.95);
	color: #fff; border-radius: 999px;
	font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
	text-decoration: none;
	transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.ar-el-card-cat:hover { background: #00ADEE; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 18px -8px rgba(0,173,238,.5); }
.ar-el-card-num { position: absolute; top: 14px; right: 14px; z-index: 2; font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; color: rgba(255,255,255,.85); text-shadow: 0 2px 12px rgba(0,0,0,.5); pointer-events: none; }
.ar-el-card-body { position: relative; padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ar-el-card-title { margin: 0; font-size: 1.18rem; font-weight: 800; color: var(--navy); line-height: 1.25; }
.ar-el-card-title a { color: inherit; text-decoration: none; position: relative; z-index: 3; }
.ar-el-card-title a:hover { color: var(--primary); }
.ar-el-card-tagline { margin: 0; font-size: .9rem; color: var(--grey); line-height: 1.55; }
.ar-el-card-specs {
	list-style: none; margin: 6px 0 0; padding: 12px 0 0;
	display: flex; flex-wrap: wrap; gap: 14px;
	border-top: 1px dashed var(--border);
}
.ar-el-card-specs li { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--navy); font-weight: 600; }
.ar-el-card-specs i { color: var(--primary); }
.ar-el-card-cta {
	margin-top: auto;
	display: inline-flex; align-items: center; gap: 8px;
	color: var(--primary); font-weight: 700; font-size: .92rem;
	text-decoration: none;
	position: relative; z-index: 3;
	transition: gap .25s ease;
	align-self: flex-start;
}
.ar-el-card:hover .ar-el-card-cta { gap: 12px; }

/* ============================================================
   ARCHIVE — Services
   ============================================================ */
.ar-service { position: relative; background: linear-gradient(180deg, #fff 0%, #f4fbff 100%); overflow: hidden; }
.ar-sv-bg {
	position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background-image:
		linear-gradient(rgba(0,173,238,.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0,173,238,.06) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000, transparent 75%);
}
.ar-sv-glow { position: absolute; z-index: 0; pointer-events: none; width: 480px; height: 480px; border-radius: 50%; filter: blur(90px); opacity: .35; }
.ar-sv-glow--a { top: -180px; right: -120px; background: radial-gradient(circle, #00ADEE, transparent 70%); }
.ar-sv-glow--b { bottom: -200px; left: -140px; background: radial-gradient(circle, #7EC8E3, transparent 70%); }
.ar-sv-list { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 56px; }
.ar-sv-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(28px, 5vw, 64px);
	align-items: center;
	opacity: 0; transform: translateY(28px);
	animation: arSvRise .7s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 130ms);
}
@keyframes arSvRise { to { opacity: 1; transform: translateY(0); } }
.ar-sv-row.is-reverse .ar-sv-row-media { order: 2; }
.ar-sv-row-media {
	position: relative;
	aspect-ratio: 5/4;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: linear-gradient(135deg, #E0F4FC, #7EC8E3);
	box-shadow: 0 30px 60px -36px rgba(0,173,238,.45);
}
.ar-sv-img { width: 100%; height: 100%; object-fit: cover; }
.ar-sv-corner { position: absolute; width: 36px; height: 36px; border: 3px solid var(--primary); z-index: 2; }
.ar-sv-corner--tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; border-radius: 6px 0 0 0; }
.ar-sv-corner--br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; border-radius: 0 0 6px 0; }
.ar-sv-pattern { position: absolute; inset: 0; background:
	radial-gradient(circle at 30% 30%, rgba(255,255,255,.4) 2px, transparent 3px),
	linear-gradient(135deg, #E0F4FC, #7EC8E3);
	background-size: 24px 24px, cover;
}
.ar-sv-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 56px; height: 56px;
	background: linear-gradient(135deg, #00ADEE, #0078A8);
	color: #fff;
	border-radius: 14px;
	font-size: 1.5rem;
	margin-bottom: 14px;
	box-shadow: 0 12px 24px -12px rgba(0,173,238,.5);
}
.ar-sv-title { margin: 0 0 12px; font-size: clamp(1.5rem, 2.4vw, 2rem); color: var(--navy); line-height: 1.18; font-weight: 800; }
.ar-sv-title a { color: inherit; text-decoration: none; }
.ar-sv-title a:hover { color: var(--primary); }
/* Services section on the city single — slightly smaller title + single-column features */
.ci-sec--services .ar-sv-title { font-size: clamp(1.15rem, 1.6vw, 1.45rem); margin-bottom: 10px; }
.ci-sec--services .ar-sv-feat { grid-template-columns: 1fr; }
.ar-sv-lead { margin: 0 0 18px; color: var(--grey); line-height: 1.7; font-size: 1rem; }
.ar-sv-feat { list-style: none; margin: 0 0 20px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
.ar-sv-feat li { display: flex; align-items: flex-start; gap: 8px; font-size: .9rem; color: var(--navy); }
.ar-sv-feat i { color: var(--primary); margin-top: 4px; }
.ar-sv-foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ar-sv-pill {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 8px 14px;
	background: rgba(0,173,238,.12);
	color: var(--primary-dark);
	border: 1px solid rgba(0,173,238,.32);
	border-radius: 999px;
	font-size: .85rem; font-weight: 700;
}
.ar-sv-cta { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 700; text-decoration: none; transition: gap .25s ease; }
.ar-sv-cta:hover { gap: 12px; color: var(--primary-dark); }

@media (max-width: 820px) {
	.ar-sv-row { grid-template-columns: 1fr; }
	.ar-sv-row.is-reverse .ar-sv-row-media { order: 0; }
	.ar-sv-feat { grid-template-columns: 1fr; }
}

/* ============================================================
   ARCHIVE — Cities
   ============================================================ */
.ar-city { position: relative; background: linear-gradient(180deg, #f4fbff 0%, #fff 100%); overflow: hidden; }
.ar-ci-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; background-image: radial-gradient(circle, rgba(0,173,238,.07) 1px, transparent 1px); background-size: 32px 32px; }
.ar-city .container { position: relative; z-index: 1; }
.ar-ci-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 0 0 40px;
	padding: 24px;
	background: linear-gradient(135deg, #0F2A50, #0B2340 60%, #06142B);
	color: #fff;
	border-radius: var(--radius-md);
	border: 1px solid rgba(126,200,227,.25);
	text-align: center;
	box-shadow: 0 24px 48px -28px rgba(11,35,64,.6);
}
.ar-ci-stat-num { display: block; font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: #7EC8E3; line-height: 1; }
.ar-ci-stat-lbl { display: block; margin-top: 6px; font-size: .82rem; color: rgba(255,255,255,.75); letter-spacing: .1em; text-transform: uppercase; }
.ar-ci-state { margin-bottom: 44px; }
.ar-ci-state-head { display: flex; align-items: center; gap: 14px; margin: 0 0 20px; }
.ar-ci-state-pin {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px;
	background: var(--primary);
	color: #fff;
	border-radius: 50%;
	font-size: .95rem;
	box-shadow: 0 8px 18px -10px rgba(0,173,238,.6);
}
.ar-ci-state-name { margin: 0; font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--navy); font-weight: 800; }
.ar-ci-state-count { display: none !important; }
.ar-ci-state-rule { flex: 1; height: 1px; background: linear-gradient(to right, rgba(0,173,238,.4), transparent); }
.ar-ci-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.ar-ci-card {
	position: relative;
	display: flex; flex-direction: column;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
	text-decoration: none; color: inherit;
	box-shadow: var(--shadow-sm);
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
	opacity: 0; transform: translateY(14px);
	animation: arCiRise .55s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 60ms);
}
@keyframes arCiRise { to { opacity: 1; transform: translateY(0); } }
.ar-ci-card:hover { transform: translateY(-5px); border-color: rgba(0,173,238,.45); box-shadow: 0 20px 40px -22px rgba(11,35,64,.3); }
.ar-ci-pin { position: absolute; top: 12px; right: 12px; z-index: 3; width: 14px; height: 14px; }
.ar-ci-card-badge { display: none !important; }
.ar-ci-pin-dot { position: absolute; inset: 4px; background: #00ADEE; border-radius: 50%; box-shadow: 0 0 0 2px #fff; }
.ar-ci-pin-pulse { position: absolute; inset: 0; background: rgba(0,173,238,.45); border-radius: 50%; animation: arCiPulse 1.8s ease-out infinite; }
@keyframes arCiPulse { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(2.4); opacity: 0; } }
.ar-ci-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--primary-light); }
.ar-ci-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ar-ci-card:hover .ar-ci-img { transform: scale(1.06); }
.ar-ci-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,35,64,.4), transparent 55%); pointer-events: none; }
.ar-ci-card-foot { padding: 14px 16px; }
.ar-ci-card-name { margin: 0 0 4px; font-size: 1.05rem; font-weight: 800; color: var(--navy); }
.ar-ci-card-count { display: none !important; }

@media (max-width: 600px) {
	.ar-ci-stats { grid-template-columns: 1fr; }
}

/* ============================================================
   ARCHIVE — Blog
   ============================================================ */
.ar-blog { position: relative; background: linear-gradient(180deg, #f4fbff 0%, #fff 100%); overflow: hidden; }
.ar-bl-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; background-image: radial-gradient(circle, rgba(0,173,238,.07) 1px, transparent 1px); background-size: 28px 28px; }
.ar-blog .container { position: relative; z-index: 1; }
.ar-bl-meta { position: relative; z-index: 3; display: flex; flex-wrap: wrap; gap: 12px; font-size: .8rem; color: var(--grey); margin-bottom: 12px; }
.ar-bl-cat {
	background: linear-gradient(135deg, #00ADEE, #0078A8);
	color: #fff;
	padding: 4px 12px;
	border-radius: 999px;
	font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
	font-size: .72rem;
	text-decoration: none;
	transition: transform .25s ease, box-shadow .25s ease;
}
.ar-bl-cat:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 18px -8px rgba(0,173,238,.5); }
.ar-bl-date, .ar-bl-read { display: inline-flex; align-items: center; gap: 6px; }
.ar-bl-date i, .ar-bl-read i { color: var(--primary); }

.ar-bl-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
@media (max-width: 980px) { .ar-bl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ar-bl-grid { grid-template-columns: 1fr; } }
.ar-bl-card {
	position: relative;
	display: flex; flex-direction: column; height: 100%;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
	opacity: 0; transform: translateY(16px);
	animation: arBlRise .55s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 70ms);
}
@keyframes arBlRise { to { opacity: 1; transform: translateY(0); } }
.ar-bl-card:hover { transform: translateY(-6px); border-color: rgba(0,173,238,.45); box-shadow: 0 24px 40px -22px rgba(0,173,238,.3); }
.ar-bl-card-cover {
	position: absolute; inset: 0; z-index: 1;
	text-indent: -9999em;
	border-radius: inherit;
}
.ar-bl-card-cover:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }
.ar-bl-card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--primary-light); }
.ar-bl-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ar-bl-card:hover .ar-bl-card-img { transform: scale(1.05); }
.ar-bl-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,35,64,.3), transparent 60%); pointer-events: none; }
.ar-bl-card-body { position: relative; padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ar-bl-card-title { margin: 0; font-size: 1.1rem; font-weight: 800; color: var(--navy); line-height: 1.3; }
.ar-bl-card-title a { color: inherit; text-decoration: none; position: relative; z-index: 3; }
.ar-bl-card-title a:hover { color: var(--primary); }
.ar-bl-card-excerpt { margin: 0; font-size: .9rem; color: var(--grey); line-height: 1.55; }
.ar-bl-card-cta {
	margin-top: auto;
	display: inline-flex; align-items: center; gap: 6px;
	color: var(--primary); font-weight: 700; font-size: .9rem;
	text-decoration: none;
	position: relative; z-index: 3;
	transition: gap .25s ease;
	align-self: flex-start;
}
.ar-bl-card:hover .ar-bl-card-cta { gap: 10px; }

.ar-empty { text-align: center; padding: 60px 20px; color: var(--grey); font-size: 1.05rem; }

/* ============================================================
   SINGLE BLOG POST — magazine layout, sticky sidebar, accordion FAQ
   ============================================================ */
.bp-hero {
	position: relative;
	min-height: clamp(360px, 50vh, 520px);
	padding: clamp(72px, 9vw, 110px) 0 clamp(56px, 7vw, 80px);
	background: linear-gradient(155deg, #0F2A50 0%, var(--navy) 60%, #06142B 100%);
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}
.bp-hero-bg {
	position: absolute; inset: 0; width: 100%; height: 100%;
	object-fit: cover;
	z-index: 0;
	opacity: .35;
	transform: scale(1.04);
	animation: arHeroBgZoom 18s ease-in-out infinite alternate;
}
.bp-hero-overlay {
	position: absolute; inset: 0; z-index: 1;
	background:
		radial-gradient(ellipse 110% 80% at 50% 50%, rgba(11,35,64,.55) 0%, rgba(11,35,64,.85) 70%, rgba(6,20,43,.95) 100%),
		linear-gradient(rgba(126,200,227,.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(126,200,227,.05) 1px, transparent 1px);
	background-size: auto, 56px 56px, 56px 56px;
}
.bp-hero-grid { display: none; }
.bp-hero-glow { position: absolute; z-index: 1; width: 520px; height: 520px; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.bp-hero-glow--a { top: -180px; left: -160px;  background: radial-gradient(circle, rgba(0,173,238,.35),  transparent 65%); }
.bp-hero-glow--b { bottom: -200px; right: -160px; background: radial-gradient(circle, rgba(126,200,227,.22), transparent 65%); }
.bp-hero-frame {
	position: absolute; inset: clamp(20px, 3vw, 40px);
	z-index: 2; pointer-events: none;
	border: 1px solid rgba(126,200,227,.16);
	border-radius: 4px;
}
.bp-hero-frame::before, .bp-hero-frame::after {
	content: '';
	position: absolute;
	width: 38px; height: 38px;
	border: 2px solid var(--primary);
	border-radius: 2px;
}
.bp-hero-frame::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.bp-hero-frame::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.bp-hero-inner {
	position: relative; z-index: 3;
	max-width: 880px; margin: 0 auto;
	text-align: center;
}
.bp-hero-kicker {
	display: inline-flex; align-items: center; gap: 8px;
	margin-bottom: 18px;
	padding: 6px 14px;
	background: rgba(0,173,238,.18);
	border: 1px solid rgba(126,200,227,.40);
	border-radius: 999px;
	color: #7EC8E3;
	font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.bp-hero-title {
	margin: 0 0 18px;
	font-family: var(--font-head);
	font-size: clamp(1.8rem, 4vw, 3rem);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -.012em;
	color: #fff;
	text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.bp-hero-sub {
	margin: 0 auto 24px;
	max-width: 720px;
	color: rgba(230,242,251,.88);
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	line-height: 1.65;
}
.bp-hero-meta {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-wrap: wrap; justify-content: center;
	gap: 8px 16px;
	font-size: .88rem;
	color: rgba(230,242,251,.78);
}
.bp-hero-meta li { display: inline-flex; align-items: center; gap: 6px; }
.bp-hero-meta i { color: #7EC8E3; }
.bp-hero-meta a { color: inherit; text-decoration: none; transition: color .2s ease; }
.bp-hero-meta a:hover { color: #fff; }

/* Body grid */
.bp-body { padding-top: clamp(36px, 5vw, 56px); padding-bottom: clamp(56px, 7vw, 80px); }
.bp-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: 40px;
	align-items: flex-start;
}
.bp-side { height: 100%; }
@media (max-width: 980px) {
	.bp-grid { grid-template-columns: 1fr; }
}

/* Article prose */
.bp-content {
	background: var(--white);
	padding: clamp(20px, 3vw, 36px);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	min-width: 0;
}
.bp-content > * + * { margin-top: 1.1em; }
.bp-content h2 {
	margin: 1.6em 0 .6em;
	font-family: var(--font-head);
	font-size: clamp(1.3rem, 2.4vw, 1.7rem);
	font-weight: 800;
	color: var(--navy);
	scroll-margin-top: 100px;
}
.bp-content h2::before { content: none; }
.bp-content h3 { margin: 1.4em 0 .5em; font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--navy); }
.bp-content p { line-height: 1.78; color: var(--grey); }
.bp-content strong { color: var(--navy); }
.bp-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.bp-content a:hover { color: var(--primary-dark); }
.bp-content ul, .bp-content ol { padding-left: 1.4em; line-height: 1.75; color: var(--grey); }
.bp-content li + li { margin-top: 6px; }
.bp-content img { max-width: 100%; height: auto; border-radius: var(--radius-md); }
.bp-content blockquote {
	margin: 1.4em 0;
	padding: 18px 22px;
	background: var(--primary-light);
	border-left: 4px solid var(--primary);
	border-radius: 0 12px 12px 0;
	color: var(--navy);
	font-style: italic;
}
.bp-content table { width: 100%; border-collapse: collapse; margin: 1em 0; font-size: .92rem; }
.bp-content thead { background: var(--primary); color: #fff; }
.bp-content th, .bp-content td { padding: 12px 14px; border: 1px solid var(--border); text-align: left; }
.bp-content tbody tr:nth-child(odd) { background: #fafdff; }

.bp-content .info-banner {
	display: flex; gap: 14px;
	padding: 16px 18px;
	background: linear-gradient(135deg, #f4fbff, #ffffff);
	border: 1px solid rgba(0,173,238,.22);
	border-left: 4px solid var(--primary);
	border-radius: 12px;
}
.bp-content .info-banner .ib-icon { font-size: 1.4rem; line-height: 1.2; }
.bp-content .info-banner p { margin: 0; color: var(--navy); }

/* FAQ */
.bp-faq { margin-top: 48px; }
.bp-faq-head { margin-bottom: 18px; }
.bp-faq-eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 4px 12px;
	background: rgba(0,173,238,.12);
	color: var(--primary-dark);
	border-radius: 999px;
	font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.bp-faq-head h2 { margin: 10px 0 0; }
.bp-faq-list { display: flex; flex-direction: column; gap: 12px; }
.bp-faq-item {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
	transition: border-color .25s ease, box-shadow .25s ease;
}
.bp-faq-item[open] { border-color: rgba(0,173,238,.45); box-shadow: 0 14px 30px -20px rgba(0,173,238,.4); }
.bp-faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 16px 20px;
	display: flex; align-items: center; justify-content: space-between; gap: 14px;
	font-family: var(--font-head);
	font-weight: 700;
	color: var(--navy);
	font-size: 1rem;
}
.bp-faq-item summary::-webkit-details-marker { display: none; }
.bp-faq-icon {
	flex-shrink: 0;
	width: 28px; height: 28px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--primary-light);
	color: var(--primary);
	border-radius: 50%;
	transition: transform .3s ease, background .3s ease, color .3s ease;
	font-size: .8rem;
}
.bp-faq-item[open] .bp-faq-icon { transform: rotate(45deg); background: var(--primary); color: #fff; }
.bp-faq-answer { padding: 0 20px 18px; color: var(--grey); line-height: 1.7; }
.bp-faq-answer p { margin: 0; }

/* Standalone FAQ section — split layout, brand cyan canvas */
.bp-faq-section {
	position: relative;
	overflow: hidden;
	background: var(--primary);
	color: #fff;
	padding: clamp(64px, 9vw, 120px) 0;
	isolation: isolate;
}
.bp-faq-section-glow { display: none; }
.bp-faq-section-grid {
	position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background-image:
		linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
	background-size: 56px 56px, 56px 56px;
	-webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
	        mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.bp-faq-section-inner {
	position: relative; z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: start;
}
@media (max-width: 900px) {
	.bp-faq-section-inner { grid-template-columns: 1fr; }
	.bp-faq-aside-stick { position: static; }
}

.bp-faq-aside-stick { position: sticky; top: 96px; }
.bp-faq-section .bp-faq-eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 6px 14px;
	border: 1px solid var(--white);
	background: var(--white);
	color: var(--primary);
	border-radius: 999px;
	font-size: .76rem; font-weight: 800;
	letter-spacing: .14em; text-transform: uppercase;
	margin-bottom: 18px;
}
.bp-faq-heading {
	margin: 0 0 14px;
	font-family: var(--font-head);
	font-size: clamp(1.7rem, 3vw, 2.6rem);
	font-weight: 900;
	color: #fff;
	line-height: 1.12;
	letter-spacing: -.014em;
}
.bp-faq-subheading {
	margin: 0 0 14px;
	font-size: 1.05rem;
	font-weight: 600;
	color: rgba(255,255,255,.92);
	line-height: 1.5;
}
.bp-faq-description { color: rgba(255,255,255,.92); line-height: 1.7; font-size: .95rem; }
.bp-faq-description p { margin: 0 0 10px; }
.bp-faq-description p:last-child { margin-bottom: 0; }

.bp-faq-aside-meta {
	margin-top: 22px;
	padding: 14px 16px;
	border-radius: 12px;
	background: rgba(255,255,255,.10);
	border: 1px solid rgba(255,255,255,.30);
}
.bp-faq-aside-count { font-size: .92rem; color: rgba(255,255,255,.92); }
.bp-faq-aside-count strong { color: #fff; font-size: 1.2rem; font-family: var(--font-head); margin-right: 6px; }

.bp-faq-aside-cta {
	margin-top: 18px;
	display: flex; align-items: center; gap: 14px;
	padding: 14px 18px;
	border-radius: 14px;
	background: var(--white);
	color: var(--primary);
	text-decoration: none;
	box-shadow: 0 18px 40px -22px rgba(0,52,80,.35);
	transition: transform .25s ease, box-shadow .25s ease;
}
.bp-faq-aside-cta:hover { transform: translateY(-2px); box-shadow: 0 24px 50px -22px rgba(0,52,80,.45); color: var(--primary); }
.bp-faq-aside-cta-icon {
	flex: 0 0 auto;
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--primary);
	color: var(--white);
}
.bp-faq-aside-cta-label { display: block; font-size: .78rem; opacity: .85; letter-spacing: .04em; text-transform: uppercase; }
.bp-faq-aside-cta-num { display: block; font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; }
.bp-faq-aside-cta-arrow { margin-left: auto; transition: transform .25s ease; }
.bp-faq-aside-cta:hover .bp-faq-aside-cta-arrow { transform: translateX(4px); }

.bp-faq-list--standalone { display: flex; flex-direction: column; gap: 12px; }
.bp-faq-list--standalone .bp-faq-item {
	background: rgba(255,255,255,.10);
	border: 1px solid rgba(255,255,255,.30);
	border-radius: 16px;
	box-shadow: 0 18px 40px -28px rgba(0,52,80,.35);
	transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.bp-faq-list--standalone .bp-faq-item:hover {
	border-color: var(--white);
	background: rgba(255,255,255,.18);
}
.bp-faq-list--standalone .bp-faq-item[open] {
	background: var(--white);
	border-color: var(--white);
	box-shadow: 0 24px 50px -28px rgba(0,52,80,.45);
}
.bp-faq-list--standalone .bp-faq-item[open] .bp-faq-q { color: var(--navy); }
.bp-faq-list--standalone .bp-faq-item[open] .bp-faq-answer { color: var(--text); }
.bp-faq-list--standalone .bp-faq-item summary {
	display: flex; align-items: center; gap: 16px;
	padding: 20px 22px;
	cursor: pointer;
	list-style: none;
}
.bp-faq-list--standalone .bp-faq-item summary::-webkit-details-marker { display: none; }
.bp-faq-num {
	flex: 0 0 auto;
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px;
	border-radius: 12px;
	background: var(--white);
	border: 1px solid var(--white);
	color: var(--primary);
	font-family: var(--font-head);
	font-size: .92rem; font-weight: 800;
	letter-spacing: .04em;
}
.bp-faq-list--standalone .bp-faq-item[open] .bp-faq-num {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}
.bp-faq-q {
	flex: 1 1 auto;
	margin: 0;
	font-family: var(--font-head);
	font-size: 1.05rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.45;
}
.bp-faq-q::before { content: none; }
.bp-faq-list--standalone .bp-faq-icon {
	flex: 0 0 auto;
	display: inline-flex; align-items: center; justify-content: center;
	width: 32px; height: 32px;
	border-radius: 50%;
	background: var(--white);
	color: var(--primary);
	font-size: .82rem;
	transition: transform .3s ease, background .25s ease, color .25s ease;
}
.bp-faq-list--standalone .bp-faq-item[open] .bp-faq-icon {
	transform: rotate(45deg);
	background: var(--primary);
	color: #fff;
}
.bp-faq-list--standalone .bp-faq-answer {
	padding: 0 22px 22px 78px;
	color: rgba(255,255,255,.92);
	line-height: 1.75;
	font-size: .96rem;
}
.bp-faq-list--standalone .bp-faq-answer p { margin: 0 0 10px; }
.bp-faq-list--standalone .bp-faq-answer p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
	.bp-faq-list--standalone .bp-faq-item summary { padding: 16px; gap: 12px; }
	.bp-faq-list--standalone .bp-faq-answer { padding: 0 16px 18px 16px; }
	.bp-faq-num { width: 36px; height: 36px; }
}

/* Article footer */
.bp-footer {
	margin-top: 36px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.bp-share { display: inline-flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--grey); }
.bp-share a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px;
	background: var(--primary-light);
	color: var(--primary);
	border-radius: 50%;
	text-decoration: none;
	transition: all .2s ease;
}
.bp-share a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.bp-back {
	display: inline-flex; align-items: center; gap: 8px;
	color: var(--primary); font-weight: 700; text-decoration: none;
	transition: gap .25s ease;
}
.bp-back:hover { gap: 12px; }

/* Sidebar */
.bp-side-stick {
	position: sticky;
	top: 96px;
	display: flex; flex-direction: column; gap: 18px;
}
.bp-side-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	padding: 18px;
}
.bp-side-card header {
	display: flex; align-items: center; gap: 8px;
	margin-bottom: 12px;
	font-family: var(--font-head);
	font-weight: 800;
	color: var(--navy);
	font-size: 1rem;
}
.bp-side-card header i { color: var(--primary); }
.bp-side-card-sub { margin: 0 0 14px; color: var(--grey); font-size: .9rem; }

.bp-side-card--cta {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
	overflow: hidden;
	position: relative;
}
.bp-side-card--cta::before { display: none; }
.bp-side-card--cta * { position: relative; z-index: 1; }
.bp-side-card .bp-side-form-head {
	display: block;
	margin: 0 0 16px;
	padding: 0;
	border: 0;
}
.bp-side-form-title {
	margin: 0 0 6px;
	font-family: var(--font-head);
	font-size: 1.05rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -.005em;
}
.bp-side-form-desc {
	margin: 0;
	color: rgba(255,255,255,.92);
	font-size: .9rem;
	line-height: 1.55;
}
.bp-side-card--cta header { color: #fff; }
.bp-side-card--cta header i { color: #fff; }
.bp-side-card--cta .bp-side-card-sub { color: rgba(255,255,255,.92); }
.bp-side-card--cta .wpcf7 input[type=text],
.bp-side-card--cta .wpcf7 input[type=email],
.bp-side-card--cta .wpcf7 input[type=tel],
.bp-side-card--cta .wpcf7 select,
.bp-side-card--cta .wpcf7 textarea {
	width: 100%;
	background: var(--white);
	border: 1px solid var(--white);
	color: var(--navy);
	border-radius: 8px;
	padding: 10px 12px;
	font-size: .9rem;
	margin-bottom: 8px;
}
.bp-side-card--cta .wpcf7 textarea { min-height: 80px; }
.bp-side-card--cta .wpcf7 ::placeholder { color: var(--grey); }
.bp-side-card--cta .wpcf7 input[type=submit] {
	background: var(--white);
	color: var(--primary); border: 0; border-radius: 8px;
	padding: 12px 20px; font-weight: 700; cursor: pointer;
	width: 100%;
	transition: transform .2s ease, box-shadow .2s ease;
}
.bp-side-card--cta .wpcf7 input[type=submit]:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px -10px rgba(0,52,80,.35);
}

/* Sidebar Form — 2×2 grid, placeholder-only (no labels) */
.bp-side-card--cta .wpcf7 form > p,
.bp-side-card--cta .wpcf7 .sf-field,
.bp-side-card--cta .wpcf7 .sf-field-full,
.bp-side-card--cta .wpcf7 .sf-submit { margin: 0; }
.bp-side-card--cta .wpcf7 .sf-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 10px;
}
.bp-side-card--cta .wpcf7 .sf-field .wpcf7-form-control-wrap,
.bp-side-card--cta .wpcf7 .sf-field-full .wpcf7-form-control-wrap { display: block; }
.bp-side-card--cta .wpcf7 .sf-field input,
.bp-side-card--cta .wpcf7 .sf-field select,
.bp-side-card--cta .wpcf7 .sf-field-full textarea { margin-bottom: 0; }
.bp-side-card--cta .wpcf7 .sf-field-full { margin-bottom: 12px; }
.bp-side-card--cta .wpcf7 select {
	appearance: none; -webkit-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%2300ADEE' d='M6 8 0 0h12z'/></svg>");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 32px;
}
.bp-side-card--cta .wpcf7 select option { color: var(--navy); background: #fff; }
.bp-side-card--cta .wpcf7 select:invalid,
.bp-side-card--cta .wpcf7 select option[value=""] { color: var(--grey); }
.bp-side-card--cta .wpcf7 .wpcf7-not-valid { border-color: #ffb4b4 !important; box-shadow: 0 0 0 2px rgba(255,180,180,.45); }
@media (max-width: 480px) {
	.bp-side-card--cta .wpcf7 .sf-grid { grid-template-columns: 1fr; }
}

.bp-side-link {
	display: flex; align-items: center; gap: 10px;
	padding: 10px 12px;
	border: 1px solid var(--border);
	border-radius: 10px;
	color: var(--navy);
	text-decoration: none;
	font-weight: 600;
	font-size: .92rem;
	transition: all .2s ease;
}
.bp-side-link + .bp-side-link { margin-top: 8px; }
.bp-side-link:hover { border-color: var(--primary); color: var(--primary); transform: translateX(2px); }
.bp-side-link i { color: var(--primary); }

.bp-toc { display: flex; flex-direction: column; gap: 6px; max-height: 320px; overflow-y: auto; }
.bp-toc:empty + * { display: none; }
.bp-side-card--toc:has(.bp-toc:empty) { display: none; }
.bp-toc a {
	padding: 6px 8px;
	font-size: .88rem; color: var(--grey);
	text-decoration: none;
	border-left: 2px solid transparent;
	transition: all .2s ease;
	line-height: 1.4;
}
.bp-toc a:hover { color: var(--primary); border-left-color: var(--primary); background: var(--primary-light); }
.bp-toc a.is-active { color: var(--primary); border-left-color: var(--primary); font-weight: 700; }
.bp-toc a.is-h3 { padding-left: 22px; font-size: .82rem; }

/* Related */
.bp-related { padding: clamp(48px, 6vw, 72px) 0; background: linear-gradient(180deg, var(--primary-light), #fff); }
.bp-related-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.bp-related-label { display: inline-block; padding: 4px 12px; background: rgba(0,173,238,.12); color: var(--primary-dark); border-radius: 999px; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.bp-related-head h2 { margin: 0 0 12px; font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--navy); }
.bp-related-head p { margin: 0; color: var(--grey); font-size: 1rem; line-height: 1.65; }
.bp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .bp-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .bp-related-grid { grid-template-columns: 1fr; } }
.bp-related-card {
	position: relative;
	display: flex; flex-direction: column;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.bp-related-card:hover { transform: translateY(-6px); border-color: rgba(0,173,238,.45); box-shadow: 0 24px 40px -22px rgba(0,173,238,.3); }
.bp-related-card-cover { position: absolute; inset: 0; z-index: 1; text-indent: -9999em; border-radius: inherit; }
.bp-related-card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--primary-light); }
.bp-related-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.bp-related-card:hover .bp-related-card-img { transform: scale(1.05); }
.bp-related-card-cat {
	position: absolute; top: 12px; left: 12px; z-index: 3;
	padding: 4px 10px;
	background: linear-gradient(135deg, #00ADEE, #0078A8);
	color: #fff;
	border-radius: 999px;
	font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
	text-decoration: none;
	transition: transform .25s ease;
}
.bp-related-card-cat:hover { color: #fff; transform: translateY(-2px); }
.bp-related-card-body { position: relative; padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.bp-related-card-title { margin: 0; font-size: 1.05rem; font-weight: 800; color: var(--navy); line-height: 1.3; }
.bp-related-card-title a { color: inherit; text-decoration: none; position: relative; z-index: 3; }
.bp-related-card-title a:hover { color: var(--primary); }
.bp-related-card-excerpt { margin: 0; font-size: .88rem; color: var(--grey); line-height: 1.55; }
.bp-related-card-cta {
	margin-top: auto;
	display: inline-flex; align-items: center; gap: 6px;
	color: var(--primary); font-weight: 700; font-size: .9rem;
	text-decoration: none;
	position: relative; z-index: 3;
	transition: gap .25s ease;
	align-self: flex-start;
}
.bp-related-card:hover .bp-related-card-cta { gap: 10px; }

@media (max-width: 980px) {
	.bp-side-stick { position: static; }
	.bp-side { height: auto; }
}
@media (max-width: 720px) {
	.bp-hero { min-height: 320px; padding: 56px 0 40px; }
	.bp-hero-meta { gap: 6px 12px; font-size: .82rem; }
	.bp-faq-section { padding: clamp(48px, 10vw, 80px) 0; }
	.bp-faq-heading { font-size: clamp(1.5rem, 6vw, 2rem); }
	.bp-faq-aside-cta { padding: 12px 14px; gap: 12px; }
	.bp-faq-aside-cta-icon { width: 36px; height: 36px; }
}

/* ============================================================
   SINGLE CITY — image / video hero slider
   ============================================================ */
.ci-hero {
	position: relative;
	overflow: hidden;
	color: #fff;
	isolation: isolate;
	background: linear-gradient(160deg, #0B2340 0%, #06142B 100%);
}
.ci-hero-slider {
	position: relative;
	min-height: clamp(420px, 64vh, 640px);
	display: flex;
	align-items: center;
}
.ci-hero-slides { position: absolute; inset: 0; z-index: 0; }
.ci-hero-slide {
	position: absolute; inset: 0;
	opacity: 0;
	transition: opacity .8s ease;
	pointer-events: none;
}
.ci-hero-slide.is-active { opacity: 1; pointer-events: auto; }
.ci-hero-media {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}
.ci-hero-image { animation: ciHeroZoom 14s ease-in-out infinite alternate; }
@keyframes ciHeroZoom {
	from { transform: scale(1); }
	to   { transform: scale(1.06); }
}
.ci-hero-embed { position: relative; }
.ci-hero-embed iframe {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	border: 0;
}
.ci-hero-caption {
	position: absolute; left: 24px; bottom: 24px;
	z-index: 4;
	padding: 6px 12px;
	background: rgba(11,35,64,.72);
	border-radius: 8px;
	font-size: .84rem;
	color: #cfe5f4;
}
.ci-hero-overlay {
	position: absolute; inset: 0; z-index: 1;
	background:
		linear-gradient(180deg, rgba(6,20,43,.55) 0%, rgba(6,20,43,.78) 100%),
		linear-gradient(135deg, rgba(0,173,238,.18), transparent 55%);
}
.ci-hero-glow { position: absolute; z-index: 1; width: 560px; height: 560px; border-radius: 50%; filter: blur(20px); pointer-events: none; }
.ci-hero-glow--a { top: -200px; left: -180px;  background: radial-gradient(circle, rgba(0,173,238,.35),  transparent 65%); }
.ci-hero-glow--b { bottom: -220px; right: -160px; background: radial-gradient(circle, rgba(126,200,227,.22), transparent 65%); }

.ci-hero-inner {
	position: relative; z-index: 3;
	max-width: 920px;
	padding: clamp(60px, 8vw, 110px) 0;
	text-align: center;
}
.ci-hero-kicker {
	display: inline-flex; align-items: center; gap: 8px;
	margin-bottom: 18px;
	padding: 6px 14px;
	border: 1px solid rgba(126,200,227,.45);
	background: rgba(0,173,238,.14);
	color: #7EC8E3;
	border-radius: 999px;
	font-size: .76rem; font-weight: 800;
	letter-spacing: .14em; text-transform: uppercase;
}
.ci-hero-title {
	margin: 0 0 16px;
	font-family: var(--font-head);
	font-size: clamp(2rem, 4.5vw, 3.4rem);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -.014em;
	color: #fff;
	text-shadow: 0 2px 28px rgba(0,0,0,.45);
}
.ci-hero-sub {
	margin: 0 auto;
	max-width: 720px;
	color: rgba(230,242,251,.92);
	font-size: clamp(1rem, 1.4vw, 1.18rem);
	line-height: 1.65;
}

/* Nav arrows + dots */
.ci-hero-nav {
	position: absolute; top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 48px; height: 48px;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid rgba(126,200,227,.4);
	background: rgba(11,35,64,.55);
	color: #fff;
	border-radius: 50%;
	cursor: pointer;
	-webkit-backdrop-filter: blur(6px);
	        backdrop-filter: blur(6px);
	transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.ci-hero-nav:hover { background: var(--primary); border-color: transparent; transform: translateY(-50%) scale(1.06); }
.ci-hero-nav--prev { left: clamp(12px, 2vw, 28px); }
.ci-hero-nav--next { right: clamp(12px, 2vw, 28px); }
.ci-hero-dots {
	position: absolute; left: 50%; bottom: 22px;
	transform: translateX(-50%);
	z-index: 5;
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 14px;
	background: rgba(11,35,64,.5);
	border: 1px solid rgba(126,200,227,.25);
	border-radius: 999px;
	-webkit-backdrop-filter: blur(6px);
	        backdrop-filter: blur(6px);
}
.ci-hero-dot {
	width: 9px; height: 9px;
	background: rgba(255,255,255,.4);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	padding: 0;
	transition: background .2s ease, transform .2s ease, width .25s ease;
}
.ci-hero-dot:hover { background: rgba(255,255,255,.7); }
.ci-hero-dot.is-active {
	background: var(--primary);
	width: 26px;
	border-radius: 6px;
}

@media (max-width: 720px) {
	.ci-hero-slider { min-height: 360px; }
	.ci-hero-nav { width: 40px; height: 40px; }
	.ci-hero-caption { left: 16px; bottom: 16px; font-size: .78rem; }
}

/* City single — sectioned content */
.ci-content { display: flex; flex-direction: column; gap: clamp(36px, 5vw, 64px); }
.ci-sec {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: clamp(24px, 3vw, 36px);
	box-shadow: 0 18px 40px -32px rgba(15,42,80,.25);
}
.ci-sec-head { margin: 0 0 18px; }
.ci-sec-head h2 {
	margin: 0;
	font-family: var(--font-head);
	font-size: clamp(1.3rem, 2.4vw, 1.75rem);
	font-weight: 800;
	color: var(--navy);
	letter-spacing: -.012em;
}
.ci-sec-head h2::before { content: none; }
.ci-sec-intro { margin: 8px 0 0; color: var(--grey); line-height: 1.65; }
.ci-sec-body p { line-height: 1.78; color: var(--grey); }
.ci-sec-body p + p { margin-top: 12px; }

/* ===== Section 2 — Elevator Types (blueprint cards) ===== */
.ci-types-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 14px;
}
.ci-type-card {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 14px;
	color: var(--navy);
	text-decoration: none;
	overflow: hidden;
	isolation: isolate;
	transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.ci-type-card::before {
	content: '';
	position: absolute; top: 0; left: 0; right: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), #7EC8E3);
	transition: right .35s ease;
	z-index: 1;
}
.ci-type-card::after {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(380px 200px at 100% 0%, rgba(0,173,238,.08), transparent 60%);
	opacity: 0;
	transition: opacity .35s ease;
	z-index: 0;
}
.ci-type-card > * { position: relative; z-index: 2; }
.ci-type-card:hover {
	transform: translateY(-4px);
	border-color: rgba(0,173,238,.35);
	box-shadow: 0 22px 44px -28px rgba(0,173,238,.45);
}
.ci-type-card:hover::before { right: 0; }
.ci-type-card:hover::after  { opacity: 1; }
.ci-type-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 56px; height: 56px;
	border-radius: 50%;
	border: 2px solid rgba(0,173,238,.35);
	background: #fff;
	color: var(--primary);
	font-size: 1.25rem;
	overflow: hidden;
	flex: 0 0 auto;
	transition: border-color .3s ease, background .3s ease, transform .35s ease, box-shadow .3s ease;
}
.ci-type-icon-img {
	width: 70%; height: 70%;
	object-fit: contain;
	display: block;
}
.ci-type-card:hover .ci-type-icon {
	border-color: transparent;
	background: linear-gradient(135deg, var(--primary), #0078A8);
	color: #fff;
	transform: rotate(-8deg);
	box-shadow: 0 12px 28px -14px rgba(0,173,238,.5);
}
.ci-type-card:hover .ci-type-icon-img { filter: brightness(1) invert(1); }
.ci-type-body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.ci-type-label {
	font-family: var(--font-head);
	font-size: 1rem;
	font-weight: 800;
	color: var(--navy);
	letter-spacing: -.005em;
	line-height: 1.25;
}
.ci-type-price {
	display: inline-flex; align-self: flex-start;
	padding: 3px 10px;
	background: rgba(0,173,238,.10);
	color: var(--primary);
	border-radius: 999px;
	font-family: var(--font-body);
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .02em;
}
.ci-type-arrow {
	display: inline-flex; align-items: center; justify-content: center;
	width: 32px; height: 32px;
	border-radius: 50%;
	background: rgba(0,173,238,.08);
	color: var(--primary);
	font-size: .82rem;
	transition: background .3s ease, color .3s ease, transform .3s ease;
}
.ci-type-card:hover .ci-type-arrow {
	background: var(--primary);
	color: #fff;
	transform: translateX(3px);
}

/* ===== Section 3 — Office (dark premium panel) ===== */
.ci-office-card {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: clamp(20px, 3vw, 36px);
	padding: clamp(24px, 3vw, 36px);
	background: linear-gradient(140deg, #0F2A50 0%, #0B2340 55%, #06142B 100%);
	color: #e6f2fb;
	border: 1px solid rgba(126,200,227,.18);
	border-radius: 18px;
	isolation: isolate;
}
.ci-office-card::before {
	content: '';
	position: absolute; inset: 0; z-index: 0;
	background-image:
		linear-gradient(rgba(126,200,227,.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(126,200,227,.06) 1px, transparent 1px);
	background-size: 32px 32px, 32px 32px;
	-webkit-mask-image: radial-gradient(ellipse at top right, #000 30%, transparent 80%);
	        mask-image: radial-gradient(ellipse at top right, #000 30%, transparent 80%);
}
.ci-office-card::after {
	content: '';
	position: absolute; top: -120px; right: -100px; z-index: 0;
	width: 380px; height: 380px;
	background: radial-gradient(circle, rgba(0,173,238,.28), transparent 65%);
	filter: blur(20px);
	pointer-events: none;
}
.ci-office-card > * { position: relative; z-index: 1; }
.ci-office-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 18px 26px;
}
.ci-office-row {
	display: flex; align-items: flex-start; gap: 14px;
	min-width: 0;
}
.ci-office-icon {
	flex: 0 0 auto;
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(0,173,238,.22), rgba(126,200,227,.12));
	border: 1px solid rgba(126,200,227,.32);
	color: #7EC8E3;
	font-size: 1rem;
}
.ci-office-row > div { display: flex; flex-direction: column; gap: 4px; min-width: 0; flex: 1; }
.ci-office-label {
	font-size: .68rem;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: #7EC8E3;
	font-weight: 800;
}
.ci-office-value {
	font-family: var(--font-head);
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	word-break: break-word;
	line-height: 1.4;
}
a.ci-office-value { transition: color .2s ease; }
a.ci-office-value:hover { color: #7EC8E3; }
.ci-office-note {
	grid-column: 1 / -1;
	margin: 0;
	padding-top: 14px;
	border-top: 1px solid rgba(126,200,227,.18);
	color: rgba(230,242,251,.72);
	font-size: .92rem;
	line-height: 1.65;
}
.ci-office-cta {
	display: flex; align-items: center; gap: 14px;
	padding: 14px 18px;
	background: linear-gradient(135deg, var(--primary), #0078A8);
	border-radius: 14px;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 18px 40px -22px rgba(0,173,238,.7);
	transition: transform .25s ease, box-shadow .25s ease;
	white-space: nowrap;
}
.ci-office-cta:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 24px 50px -22px rgba(0,173,238,.85); }
.ci-office-cta-icon {
	flex: 0 0 auto;
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,.18);
}
.ci-office-cta-label { display: flex; flex-direction: column; line-height: 1.2; }
.ci-office-cta-top  { font-size: .72rem; opacity: .85; letter-spacing: .12em; text-transform: uppercase; }
.ci-office-cta-main { font-family: var(--font-head); font-size: 1rem; font-weight: 800; }
.ci-office-cta-arrow { transition: transform .25s ease; }
.ci-office-cta:hover .ci-office-cta-arrow { transform: translateX(4px); }

/* ===== Section 4 — Why Choose (numbered editorial) ===== */
.ci-why-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 0;
	border-top: 1px solid var(--border);
	counter-reset: ciwhy;
}
.ci-why-item {
	counter-increment: ciwhy;
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px;
	padding: 22px 22px 22px 0;
	border-bottom: 1px solid var(--border);
	transition: padding-left .3s ease;
}
.ci-why-item + .ci-why-item:nth-child(odd) { border-left: 1px solid var(--border); padding-left: 22px; }
.ci-why-item::before {
	content: counter( ciwhy, decimal-leading-zero );
	flex: 0 0 auto;
	font-family: var(--font-head);
	font-size: 1.6rem;
	font-weight: 900;
	letter-spacing: -.02em;
	background: linear-gradient(135deg, rgba(0,173,238,.55), rgba(126,200,227,.25));
	-webkit-background-clip: text;
	        background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	line-height: 1;
	transition: -webkit-background-clip .3s, transform .3s ease;
	min-width: 36px;
}
.ci-why-item:hover::before {
	background: linear-gradient(135deg, var(--primary), #0078A8);
	-webkit-background-clip: text;
	        background-clip: text;
	-webkit-text-fill-color: transparent;
	transform: scale(1.08);
}
.ci-why-tick { display: none; }
.ci-why-item > div { display: flex; flex-direction: column; gap: 6px; }
.ci-why-title {
	display: block;
	color: var(--navy);
	font-family: var(--font-head);
	font-size: 1.02rem;
	font-weight: 800;
	letter-spacing: -.005em;
}
.ci-why-desc {
	display: block;
	color: var(--grey);
	font-size: .92rem;
	line-height: 1.65;
}

@media (max-width: 800px) {
	.ci-office-card { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
	.ci-why-item + .ci-why-item:nth-child(odd) { border-left: 0; padding-left: 0; }
}
@media (max-width: 600px) {
	.ci-types-grid { grid-template-columns: 1fr; }
	.ci-office-icon { width: 40px; height: 40px; }
}

/* =========================================================
   Single Service template (sv-*) — unique design
   ========================================================= */
.sv-hero { position: relative; min-height: clamp(440px, 60vh, 680px); overflow: hidden; isolation: isolate; background: var(--primary); color: #fff; }
.sv-hero-slider { position: absolute; inset: 0; }
.sv-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sv-hero-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.sv-hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0,140,194,0.85) 0%, rgba(0,173,238,0.65) 48%, rgba(0,173,238,0.35) 100%); z-index: 1; pointer-events: none; }
.sv-hero-diag { position: absolute; right: -10%; top: -10%; width: 80%; height: 140%; background: linear-gradient(135deg, transparent 0%, transparent 45%, rgba(0,179,224,0.15) 45%, rgba(0,179,224,0.15) 47%, transparent 47%); z-index: 2; pointer-events: none; }
.sv-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 56px 56px; z-index: 2; pointer-events: none; mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent); }
.sv-hero-inner { position: relative; z-index: 3; padding: clamp(60px, 9vw, 130px) 0 clamp(40px, 6vw, 80px); max-width: 760px; }
.sv-hero-badge { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 18px; background: linear-gradient(135deg, #00b3e0, #1a7bd4); box-shadow: 0 12px 30px rgba(0,179,224,0.35); font-size: 1.6rem; color: #fff; margin-bottom: 18px; }
.sv-hero-kicker { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #6cd4ff; margin-bottom: 10px; }
.sv-hero-title { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 900; line-height: 1.05; margin: 0 0 16px; color: #fff; }
.sv-hero-lead { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 0 24px; }
.sv-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.sv-hero-pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); font-weight: 600; font-size: 0.92rem; backdrop-filter: blur(6px); }
.sv-hero-pill i { color: #6cd4ff; }
.sv-hero-cta { display: inline-flex; align-items: center; gap: 10px; padding: 12px 26px; border-radius: 999px; background: linear-gradient(135deg, #00b3e0, #1a7bd4); color: #fff; font-weight: 700; text-decoration: none; box-shadow: 0 14px 32px rgba(0,179,224,0.4); transition: transform .2s ease, box-shadow .2s ease; }
.sv-hero-cta:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(0,179,224,0.5); }
.sv-hero-caption { position: absolute; bottom: 18px; right: 22px; padding: 6px 12px; background: rgba(0,0,0,0.55); border-radius: 999px; font-size: 0.78rem; color: #fff; z-index: 4; }
.sv-hero-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }

.sv-body { background: #f6f9fd; }
.sv-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 380px); gap: 40px; align-items: flex-start; }
@media (max-width: 1024px) { .sv-grid { grid-template-columns: 1fr; gap: 32px; } }
.sv-content { display: flex; flex-direction: column; gap: 56px; }

.sv-lead-card { position: relative; padding: 26px 28px 26px 60px; background: #fff; border-radius: 18px; border-left: 4px solid #00b3e0; box-shadow: 0 18px 40px -28px rgba(7,33,79,0.4); font-size: 1.05rem; color: #2a3a55; line-height: 1.7; }
.sv-lead-card .sv-lead-mark { position: absolute; top: 6px; left: 18px; font-family: Georgia, serif; font-size: 4rem; line-height: 1; color: #00b3e0; opacity: 0.5; }
.sv-lead-card p { margin: 0; }

.sv-sec { position: relative; }
.sv-sec-head { margin-bottom: 28px; }
.sv-sec-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: rgba(0,179,224,0.1); color: #0a6ec1; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.sv-sec-eyebrow--white { background: rgba(255,255,255,0.12); color: #fff; }
.sv-sec-head h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 800; margin: 0 0 6px; color: #07214f; line-height: 1.2; }
.sv-sec--why .sv-sec-head h2 { color: #fff; }
.sv-sec-intro { color: #4a5773; font-size: 1rem; margin: 6px 0 0; max-width: 620px; }

.sv-cover-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 720px) { .sv-cover-grid { grid-template-columns: 1fr; } }
.sv-cover-card { position: relative; padding: 28px 24px 24px; background: #fff; border-radius: 16px; border: 1px solid rgba(7,33,79,0.08); box-shadow: 0 14px 30px -22px rgba(7,33,79,0.35); transition: transform .2s ease, box-shadow .2s ease; overflow: hidden; }
.sv-cover-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary); transform: scaleX(0); transform-origin: left center; transition: transform .3s ease; }
.sv-cover-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -22px rgba(7,33,79,0.5); }
.sv-cover-card:hover::before { transform: scaleX(1); }
.sv-cover-card:nth-child(even) { transform: translateY(18px); }
.sv-cover-card:nth-child(even):hover { transform: translateY(14px); }
@media (max-width: 720px) { .sv-cover-card:nth-child(even) { transform: none; } .sv-cover-card:nth-child(even):hover { transform: translateY(-4px); } }
.sv-cover-num { position: absolute; top: 14px; right: 16px; font-size: 2.2rem; font-weight: 900; color: rgba(0,173,238,0.12); letter-spacing: -0.04em; line-height: 1; }
.sv-cover-icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 14px; background: var(--primary-light); color: var(--primary); font-size: 1.15rem; margin-bottom: 14px; }
.sv-cover-title { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin: 0 0 8px; }
.sv-cover-desc { color: var(--grey); font-size: 0.94rem; line-height: 1.6; margin: 0; }

.sv-sec--why { padding: clamp(34px, 4vw, 52px); background: var(--primary); border-radius: 22px; color: #fff; overflow: hidden; isolation: isolate; }
.sv-sec--why .sv-sec-glow { display: none; }
.sv-sec--why .sv-sec-head, .sv-sec--why .sv-why-body, .sv-sec--why .sv-why-list { position: relative; z-index: 1; }
.sv-why-body { color: rgba(255,255,255,0.92); font-size: 1rem; line-height: 1.75; margin-bottom: 22px; }
.sv-why-body p { margin: 0 0 12px; }
.sv-why-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; }
@media (max-width: 720px) { .sv-why-list { grid-template-columns: 1fr; } }
.sv-why-list li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; color: rgba(255,255,255,0.95); font-weight: 500; border-bottom: 1px dashed rgba(255,255,255,0.30); }
.sv-why-list li i { color: var(--white); margin-top: 4px; flex-shrink: 0; }

.sv-side-stick { position: sticky; top: 100px; }
.sv-side-card { position: relative; padding: 28px 24px 22px; background: #fff; border-radius: 20px; border: 1px solid rgba(7,33,79,0.1); box-shadow: 0 24px 60px -28px rgba(7,33,79,0.4); overflow: hidden; }
.sv-side-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, #00b3e0, #1a7bd4, #ff6b35); }
.sv-side-tag { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; background: linear-gradient(135deg, rgba(0,179,224,0.12), rgba(26,123,212,0.12)); color: #0a6ec1; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.sv-side-title { font-size: 1.3rem; font-weight: 800; color: #07214f; margin: 0 0 8px; line-height: 1.25; }
.sv-side-desc { color: #4a5773; font-size: 0.92rem; margin: 0 0 18px; line-height: 1.55; }
.sv-side-form .wpcf7 { margin: 0; }
.sv-side-form input[type="text"], .sv-side-form input[type="email"], .sv-side-form input[type="tel"], .sv-side-form textarea, .sv-side-form select { width: 100%; padding: 11px 14px; border: 1px solid rgba(7,33,79,0.16); border-radius: 10px; font-size: 0.95rem; background: #f8fafd; transition: border-color .2s ease, box-shadow .2s ease; }
.sv-side-form input:focus, .sv-side-form textarea:focus, .sv-side-form select:focus { outline: none; border-color: #00b3e0; box-shadow: 0 0 0 3px rgba(0,179,224,0.15); }
.sv-side-form textarea { min-height: 96px; resize: vertical; }
.sv-side-form p { margin: 0 0 12px; }
.sv-side-form .wpcf7-submit { width: 100%; padding: 12px 18px; background: linear-gradient(135deg, #00b3e0, #1a7bd4); color: #fff; border: 0; border-radius: 12px; font-weight: 700; font-size: 0.98rem; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.sv-side-form .wpcf7-submit:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(0,179,224,0.4); }
.sv-side-meta { list-style: none; padding: 16px 0 0; margin: 18px 0 0; border-top: 1px dashed rgba(7,33,79,0.12); display: flex; flex-direction: column; gap: 8px; }
.sv-side-meta li { display: flex; align-items: center; gap: 10px; color: #4a5773; font-size: 0.9rem; }
.sv-side-meta i { color: #00b3e0; width: 16px; }
.sv-side-meta a { color: inherit; text-decoration: none; font-weight: 600; }
.sv-side-meta a:hover { color: #0a6ec1; }

.sv-faq { position: relative; background: var(--primary); color: #fff; overflow: hidden; isolation: isolate; }
.sv-faq::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%); pointer-events: none; z-index: 0; }
.sv-faq .container { position: relative; z-index: 2; }
.sv-faq .sv-faq-glow--a { display: none; }
.sv-faq .sv-faq-glow--b { display: none; }

.sv-faq .sv-faq-eyebrow { background: var(--white); color: var(--primary); border: 1px solid var(--white); }
.sv-faq .sv-faq-heading { color: #fff; font-weight: 900; }
.sv-faq .sv-faq-desc { color: rgba(255,255,255,0.92); }

.sv-faq .sv-faq-list { gap: 16px; }
.sv-faq .sv-faq-item { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.30); border-radius: 18px; transition: background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.sv-faq .sv-faq-item:hover { border-color: var(--white); background: rgba(255,255,255,0.18); }
.sv-faq .sv-faq-item[open] { background: var(--white); border-color: var(--white); box-shadow: 0 24px 50px -22px rgba(0,52,80,0.45); }
.sv-faq .sv-faq-item[open] .sv-faq-q { color: var(--navy); }
.sv-faq .sv-faq-item[open] .sv-faq-answer { color: var(--text); }

.sv-faq .sv-faq-item summary { padding: 18px 22px; gap: 18px; }
.sv-faq .sv-faq-num { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; padding: 0; border-radius: 50%; background: var(--white); border: 1px solid var(--white); color: var(--primary); font-weight: 800; font-size: 0.82rem; letter-spacing: 0; flex-shrink: 0; transition: background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease; }
.sv-faq .sv-faq-item[open] .sv-faq-num { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 8px 22px rgba(0,52,80,0.30); }

.sv-faq .sv-faq-q { color: #fff; font-weight: 700; font-size: 1.02rem; }

.sv-faq .sv-faq-icon { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 10px; background: var(--white); border: 1px solid var(--white); color: var(--primary); font-size: 0.78rem; transition: background .25s ease, color .25s ease, border-color .25s ease, transform .3s ease; }
.sv-faq .sv-faq-item[open] .sv-faq-icon { background: var(--primary); color: #fff; border-color: var(--primary); transform: rotate(45deg); box-shadow: 0 8px 22px rgba(0,52,80,0.30); }

.sv-faq .sv-faq-answer { color: rgba(255,255,255,0.92); padding: 0 22px 22px 78px; font-size: 0.96rem; line-height: 1.75; }
@media (max-width: 600px) { .sv-faq .sv-faq-answer { padding-left: 22px; } }
.sv-faq-glow { display: none; }
.sv-faq-glow--a { display: none; }
.sv-faq-glow--b { display: none; }
.sv-faq-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(260px, 360px) minmax(0, 1fr); gap: 48px; align-items: flex-start; }
@media (max-width: 1024px) { .sv-faq-inner { grid-template-columns: 1fr; gap: 28px; } }
.sv-faq-aside-stick { position: sticky; top: 100px; }
.sv-faq-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: var(--primary-light); color: var(--primary); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.sv-faq-heading { font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 800; color: #07214f; margin: 0 0 12px; line-height: 1.2; }
.sv-faq-desc { color: #4a5773; font-size: 1rem; line-height: 1.7; }
.sv-faq-list { display: flex; flex-direction: column; gap: 14px; }
.sv-faq-item { background: #fff; border: 1px solid rgba(7,33,79,0.1); border-radius: 16px; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.sv-faq-item[open] { border-color: rgba(0,179,224,0.4); box-shadow: 0 18px 40px -22px rgba(7,33,79,0.3); }
.sv-faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; display: flex; align-items: center; gap: 14px; }
.sv-faq-item summary::-webkit-details-marker { display: none; }
.sv-faq-num { font-weight: 900; font-size: 0.85rem; letter-spacing: 0.08em; color: #00b3e0; width: 32px; flex-shrink: 0; }
.sv-faq-q { font-size: 1rem; font-weight: 700; color: #07214f; margin: 0; flex: 1; line-height: 1.4; }
.sv-faq-icon { color: #0a6ec1; transition: transform .3s ease; flex-shrink: 0; }
.sv-faq-item[open] .sv-faq-icon { transform: rotate(45deg); }
.sv-faq-answer { padding: 0 22px 20px 68px; color: #4a5773; line-height: 1.7; font-size: 0.96rem; }
.sv-faq-answer p { margin: 0 0 10px; }
@media (max-width: 600px) { .sv-faq-answer { padding-left: 22px; } }

.sv-related { background: linear-gradient(180deg, #f6f9fd 0%, #fff 100%); }
.sv-related-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.sv-related-label { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #00b3e0; margin-bottom: 10px; }
.sv-related-head h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 800; color: #07214f; margin: 0 0 10px; }
.sv-related-head p { color: #4a5773; font-size: 1rem; margin: 0; line-height: 1.65; }
.sv-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .sv-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .sv-related-grid { grid-template-columns: 1fr; } }
.sv-related-card { position: relative; background: #fff; border-radius: 18px; border: 1px solid rgba(7,33,79,0.08); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.sv-related-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(7,33,79,0.45); }
.sv-related-card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, #e6f6fc, #d1ecff); }
.sv-related-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.sv-related-card:hover .sv-related-card-img { transform: scale(1.05); }
.sv-related-card-icon { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.94); color: #0a6ec1; font-size: 1.05rem; box-shadow: 0 8px 20px rgba(7,33,79,0.18); }
.sv-related-card-body { padding: 22px 22px 24px; position: relative; z-index: 2; }
.sv-related-card-body * { pointer-events: auto; }
.sv-related-card-title { font-size: 1.1rem; font-weight: 800; margin: 0 0 8px; line-height: 1.3; }
.sv-related-card-title a { color: #07214f; text-decoration: none; }
.sv-related-card-title a:hover { color: #0a6ec1; }
.sv-related-card-excerpt { color: #4a5773; font-size: 0.92rem; line-height: 1.6; margin: 0 0 14px; }
.sv-related-card-cta { display: inline-flex; align-items: center; gap: 6px; color: #0a6ec1; font-weight: 700; font-size: 0.9rem; text-decoration: none; }
.sv-related-card-cta i { transition: transform .2s ease; }
.sv-related-card:hover .sv-related-card-cta i { transform: translateX(4px); }
.sv-related-card-cover { position: absolute; inset: 0; z-index: 1; }

/* =========================================================
   Single Elevator template (el-*) — unique design
   Logo-only palette: navy #07214f, cyan #00b3e0, blue #1a7bd4
   ========================================================= */
.el-hero { position: relative; min-height: clamp(440px, 60vh, 640px); overflow: hidden; isolation: isolate; background: var(--primary); color: #fff; }
.el-hero-slider { position: absolute; inset: 0; }
.el-hero-asset { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.el-hero-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.el-hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0,140,194,0.88) 0%, rgba(0,173,238,0.65) 50%, rgba(0,173,238,0.35) 100%); z-index: 1; pointer-events: none; }
.el-hero-inner { position: relative; z-index: 3; padding: clamp(70px, 10vw, 140px) 0 clamp(60px, 8vw, 100px); max-width: 760px; }
.el-hero-title { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 900; line-height: 1.05; margin: 0 0 16px; color: #fff; }
.el-hero-lead { font-size: 1.05rem; line-height: 1.65; color: rgba(255,255,255,0.85); max-width: 620px; margin: 0; }
.el-hero-nav { z-index: 5; }
.el-hero-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }

@media (max-width: 1024px) {
	.el-hero { min-height: clamp(360px, 52vh, 540px); }
	.el-hero-inner { padding: clamp(60px, 12vw, 110px) 0 clamp(50px, 10vw, 90px); }
}
@media (max-width: 720px) {
	.el-hero { min-height: clamp(340px, 60vw, 460px); display: flex; align-items: stretch; }
	.el-hero-slider { display: flex; align-items: center; justify-content: center; }
	.el-hero-inner { padding: 50px 20px; max-width: 100%; width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
	.el-hero-overlay { background: linear-gradient(180deg, rgba(0,140,194,0.80) 0%, rgba(0,173,238,0.72) 100%); }
	.el-hero-title { font-size: clamp(1.7rem, 7vw, 2.2rem); margin-bottom: 12px; }
	.el-hero-lead { font-size: 0.95rem; line-height: 1.55; max-width: 100%; }
	.el-hero-dots { bottom: 12px; }
	.el-hero-nav { width: 36px; height: 36px; font-size: 0.78rem; }
	.ci-hero-nav.el-hero-nav.ci-hero-nav--prev { left: 8px; }
	.ci-hero-nav.el-hero-nav.ci-hero-nav--next { right: 8px; }
}
@media (max-width: 420px) {
	.el-hero { min-height: 340px; }
	.el-hero-inner { padding: 44px 18px; }
	.el-hero-title { font-size: 1.6rem; }
	.el-hero-lead { font-size: 0.9rem; }
}

.el-body { background: #fff; }
.el-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 380px); gap: 48px; align-items: flex-start; }
@media (max-width: 1024px) { .el-grid { grid-template-columns: 1fr; gap: 32px; } }
.el-content { display: flex; flex-direction: column; gap: 56px; }

.el-sec { position: relative; }
.el-sec-head { margin-bottom: 22px; }
.el-sec-head.pt-10 { margin-top: 22px; }
.el-sec-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px; border-radius: 999px; background: rgba(0,179,224,0.1); color: #0a6ec1; font-weight: 700; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.el-sec-eyebrow--orange { background: rgba(255,107,53,0.12); color: #d94c1f; }
.el-sec-head h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 800; color: var(--navy); margin: 0; line-height: 1.2; }
.el-sec-head h3 { color: var(--navy); }
.el-sec-body p { color: #3b4a68; line-height: 1.75; margin: 0 0 14px; }

.el-callout { position: relative; display: flex; gap: 14px; align-items: flex-start; padding: 20px 22px; background: linear-gradient(135deg, rgba(0,179,224,0.08) 0%, rgba(26,123,212,0.1) 100%); border-left: 4px solid #00b3e0; border-radius: 12px; margin: 0 0 22px; }
.el-callout-icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; background: linear-gradient(135deg, #00b3e0, #1a7bd4); color: #fff; font-size: 1rem; box-shadow: 0 8px 20px -6px rgba(0,179,224,0.55); }
.el-callout p { margin: 0; color: #07214f; font-weight: 500; line-height: 1.65; }

.el-why-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.el-why-list li { display: flex; gap: 14px; padding: 14px 18px; background: #fff; border: 1px solid rgba(7,33,79,0.08); border-radius: 12px; transition: border-color .2s ease, transform .2s ease; }
.el-why-list li:hover { border-color: rgba(0,179,224,0.4); transform: translateX(4px); }
.el-why-tick { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; background: linear-gradient(135deg, #00b3e0, #1a7bd4); color: #fff; font-size: 0.78rem; box-shadow: 0 6px 14px -4px rgba(0,179,224,0.55); }
.el-why-body { color: #3b4a68; line-height: 1.65; }
.el-why-label { color: var(--navy); font-weight: 800; }

.el-specs-card { background: #fff; border: 1px solid rgba(7,33,79,0.08); border-radius: 16px; overflow: hidden; box-shadow: 0 18px 40px -28px rgba(7,33,79,0.4); }
.el-specs-table { width: 100%; border-collapse: collapse; }
.el-specs-table th, .el-specs-table td { padding: 14px 22px; text-align: left; font-size: 0.96rem; line-height: 1.5; }
.el-specs-table th { width: 38%; background: linear-gradient(90deg, rgba(0,179,224,0.06), transparent); color: var(--navy); font-weight: 700; border-left: 3px solid #00b3e0; }
.el-specs-table td { color: #3b4a68; }
.el-specs-table tr + tr th, .el-specs-table tr + tr td { border-top: 1px solid rgba(7,33,79,0.08); }
.el-specs-table tr:nth-child(even) td, .el-specs-table tr:nth-child(even) th { background-color: rgba(7,33,79,0.02); }
@media (max-width: 600px) { .el-specs-table th, .el-specs-table td { padding: 12px 16px; font-size: 0.9rem; } .el-specs-table th { width: 44%; } }

.el-process-body { color: #3b4a68; line-height: 1.75; }
.el-process-body p { margin: 0 0 14px; }
.el-process-body ol { padding-left: 0; counter-reset: step; list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 16px 0; }
.el-process-body ol li { counter-increment: step; position: relative; padding: 14px 18px 14px 60px; background: #fff; border: 1px solid rgba(7,33,79,0.08); border-radius: 12px; }
.el-process-body ol li::before { content: counter(step, decimal-leading-zero); position: absolute; left: 14px; top: 14px; display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, #00b3e0, #1a7bd4); color: #fff; font-weight: 800; font-size: 0.85rem; box-shadow: 0 6px 14px -4px rgba(0,179,224,0.55); }


.el-related { background: linear-gradient(180deg, #f6f9fd 0%, #fff 100%); }
.el-related-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.el-related-label { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #00b3e0; margin-bottom: 10px; }
.el-related-head h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 800; color: #07214f; margin: 0 0 10px; }
.el-related-head p { color: #4a5773; font-size: 1rem; margin: 0; line-height: 1.65; }
.el-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .el-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .el-related-grid { grid-template-columns: 1fr; } }
.el-related-card { position: relative; background: #fff; border-radius: 18px; border: 1px solid rgba(7,33,79,0.08); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.el-related-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(7,33,79,0.45); }
.el-related-card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, #e6f6fc, #d1ecff); }
.el-related-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.el-related-card:hover .el-related-card-img { transform: scale(1.05); }
.el-related-card-icon { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.94); color: #0a6ec1; font-size: 1.05rem; box-shadow: 0 8px 20px rgba(7,33,79,0.18); }
.el-related-card-price { position: absolute; bottom: 12px; left: 12px; padding: 5px 12px; border-radius: 999px; background: linear-gradient(135deg, #00b3e0, #1a7bd4); border: 1px solid rgba(255,255,255,0.4); color: #fff; font-weight: 800; font-size: 0.78rem; box-shadow: 0 8px 18px -8px rgba(0,179,224,0.55); }
.el-related-card-body { padding: 22px 22px 24px; position: relative; z-index: 2; }
.el-related-card-body * { pointer-events: auto; }
.el-related-card-title { font-size: 1.1rem; font-weight: 800; margin: 0 0 8px; line-height: 1.3; }
.el-related-card-title a { color: #07214f; text-decoration: none; }
.el-related-card-title a:hover { color: #0a6ec1; }
.el-related-card-excerpt { color: #4a5773; font-size: 0.92rem; line-height: 1.6; margin: 0 0 14px; }
.el-related-card-cta { display: inline-flex; align-items: center; gap: 6px; color: #0a6ec1; font-weight: 700; font-size: 0.9rem; text-decoration: none; }
.el-related-card-cta i { transition: transform .2s ease; }
.el-related-card:hover .el-related-card-cta i { transform: translateX(4px); }
.el-related-card-cover { position: absolute; inset: 0; z-index: 1; }

/* =========================================================
   Single Elevator — Gallery carousel (2x2 pages + lightbox)
   ========================================================= */
.el-gallery-carousel { position: relative; }
.el-gallery-viewport { overflow: hidden; border-radius: 14px; }
.el-gallery-track    { display: flex; transition: transform .45s cubic-bezier(.2,.7,.2,1); will-change: transform; }

/* Each tile is its own slide. Desktop shows 2 at a time, mobile shows 1. */
.el-gallery-slide { flex: 0 0 50%; padding: 0 7px; box-sizing: border-box; }
.el-gallery-slide .el-gallery-tile { width: 100%; height: 360px; display: block; }
@media (max-width: 720px) {
	.el-gallery-slide { flex: 0 0 100%; padding: 0; }
	.el-gallery-slide .el-gallery-tile { height: 280px; }
}
/* Cancel the side-padding on the first/last slide so the track aligns flush with the viewport edges. */
.el-gallery-track > .el-gallery-slide:first-child { padding-left: 0; }
.el-gallery-track > .el-gallery-slide:last-child  { padding-right: 0; }

.el-gallery-tile { position: relative; padding: 0; margin: 0; border: 0; cursor: pointer; background: #07214f; border-radius: 14px; overflow: hidden; isolation: isolate; transform: translateY(8px); opacity: 0; animation: elGalIn .5s ease forwards; animation-delay: calc(var(--i, 0) * 60ms); transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease; box-shadow: 0 14px 30px -22px rgba(7,33,79,0.45); }
@keyframes elGalIn { to { opacity: 1; transform: translateY(0); } }

/* Prev/next arrows — only rendered when there's more than one page. */
.el-gallery-nav { position: absolute; top: 50%; z-index: 3; transform: translateY(-50%); width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 50%; background: linear-gradient(135deg, #00b3e0, #1a7bd4); color: #fff; cursor: pointer; box-shadow: 0 14px 30px -10px rgba(0,179,224,0.55); transition: transform .25s ease, box-shadow .25s ease, opacity .2s ease; }
.el-gallery-nav:hover { transform: translateY(-50%) scale(1.08); box-shadow: 0 18px 36px -10px rgba(0,179,224,0.7); }
.el-gallery-nav:focus-visible { outline: 3px solid #6cd4ff; outline-offset: 3px; }
.el-gallery-nav[disabled] { opacity: 0.35; cursor: not-allowed; transform: translateY(-50%); }
.el-gallery-nav--prev { left: -22px; }
.el-gallery-nav--next { right: -22px; }
@media (max-width: 900px) {
	.el-gallery-nav--prev { left: 6px; }
	.el-gallery-nav--next { right: 6px; }
}

/* Pagination dots. */
.el-gallery-dots { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.el-gallery-dot { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%; background: rgba(7,33,79,0.25); cursor: pointer; transition: background .25s ease, transform .25s ease; }
.el-gallery-dot.is-active { background: linear-gradient(135deg, #00b3e0, #1a7bd4); transform: scale(1.2); }
.el-gallery-dot:focus-visible { outline: 2px solid #6cd4ff; outline-offset: 2px; }

.el-gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .35s ease; }
.el-gallery-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,33,79,0.55) 100%); opacity: .55; transition: opacity .35s ease; pointer-events: none; }
.el-gallery-tile:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -22px rgba(0,179,224,0.45); }
.el-gallery-tile:hover img { transform: scale(1.06); filter: saturate(1.05); }
.el-gallery-tile:hover::after { opacity: 1; }
.el-gallery-tile:focus-visible { outline: 3px solid #6cd4ff; outline-offset: 3px; }

.el-gallery-tile-corner { position: absolute; top: 0; right: 0; width: 56px; height: 56px; pointer-events: none; }
.el-gallery-tile-corner::before, .el-gallery-tile-corner::after { content: ''; position: absolute; background: linear-gradient(135deg, #00b3e0, #1a7bd4); transition: transform .35s ease; }
.el-gallery-tile-corner::before { top: 10px; right: 10px; width: 22px; height: 2px; transform-origin: right center; }
.el-gallery-tile-corner::after  { top: 10px; right: 10px; width: 2px;  height: 22px; transform-origin: top right; }
.el-gallery-tile:hover .el-gallery-tile-corner::before { transform: scaleX(1.4); }
.el-gallery-tile:hover .el-gallery-tile-corner::after  { transform: scaleY(1.4); }

.el-gallery-tile-zoom { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: linear-gradient(135deg, #00b3e0, #1a7bd4); color: #fff; font-size: 0.78rem; opacity: 0; transform: translateY(-6px) rotate(-12deg); transition: opacity .3s ease, transform .3s ease; box-shadow: 0 10px 26px -8px rgba(0,179,224,0.6); pointer-events: none; }
.el-gallery-tile:hover .el-gallery-tile-zoom { opacity: 1; transform: translateY(0) rotate(0); }

.el-gallery-tile-cap { position: absolute; left: 14px; right: 14px; bottom: 14px; color: #fff; font-size: 0.82rem; font-weight: 600; line-height: 1.4; text-shadow: 0 2px 8px rgba(0,0,0,0.5); transform: translateY(8px); opacity: 0; transition: transform .35s ease, opacity .35s ease; pointer-events: none; }
.el-gallery-tile:hover .el-gallery-tile-cap { transform: translateY(0); opacity: 1; }

/* Accessory pages: always-visible alt-text title on each gallery tile. */
.el-gallery-tile-title { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px; color: #fff; font-size: 0.92rem; font-weight: 700; line-height: 1.35; letter-spacing: 0.01em; background: linear-gradient(180deg, transparent 0%, rgba(7,33,79,0.78) 60%, rgba(7,33,79,0.94) 100%); text-shadow: 0 2px 8px rgba(0,0,0,0.45); pointer-events: none; z-index: 2; }
.el-sec--gallery-alt-title .el-gallery-tile::after { opacity: 0; }
.el-sec--gallery-alt-title .el-gallery-tile:hover::after { opacity: 0; }
@media (max-width: 720px) { .el-gallery-tile-title { font-size: 0.8rem; padding: 10px 12px; } }

/* Lightbox */
.el-lightbox { position: fixed; inset: 0; z-index: 9999; background: radial-gradient(ellipse at center, rgba(7,33,79,0.96) 0%, rgba(5,11,28,0.98) 70%); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: clamp(60px, 8vh, 100px) 20px clamp(110px, 14vh, 160px); animation: elLbFade .25s ease; backdrop-filter: blur(6px); }
.el-lightbox[hidden] { display: none; }
@keyframes elLbFade { from { opacity: 0; } to { opacity: 1; } }

.el-lightbox-stage { position: relative; max-width: min(1100px, 92vw); max-height: 100%; margin: 0; padding: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.el-lightbox-img { max-width: 100%; max-height: 70vh; object-fit: contain; border-radius: 12px; box-shadow: 0 30px 80px -20px rgba(0,179,224,0.4), 0 0 0 1px rgba(108,212,255,0.18); animation: elLbZoom .35s cubic-bezier(.2,.7,.2,1); }
@keyframes elLbZoom { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.el-lightbox-cap { color: rgba(255,255,255,0.78); font-size: 0.92rem; font-weight: 500; max-width: 720px; text-align: center; line-height: 1.5; }
.el-lightbox-cap:empty { display: none; }

.el-lightbox-close, .el-lightbox-nav { position: absolute; width: 48px; height: 48px; border: 1px solid rgba(108,212,255,0.3); border-radius: 50%; background: rgba(11,35,64,0.7); color: #6cd4ff; font-size: 1rem; cursor: pointer; backdrop-filter: blur(6px); transition: background .25s ease, border-color .25s ease, color .25s ease, transform .2s ease; display: inline-flex; align-items: center; justify-content: center; }
.el-lightbox-close:hover, .el-lightbox-nav:hover { background: linear-gradient(135deg, #00b3e0, #1a7bd4); border-color: transparent; color: #fff; }
.el-lightbox-close { top: 22px; right: 22px; }
.el-lightbox-nav { top: 50%; transform: translateY(-50%); }
.el-lightbox-nav--prev { left: clamp(12px, 3vw, 36px); }
.el-lightbox-nav--next { right: clamp(12px, 3vw, 36px); }
.el-lightbox-nav:hover { transform: translateY(-50%) scale(1.06); }
@media (max-width: 600px) { .el-lightbox-close, .el-lightbox-nav { width: 40px; height: 40px; font-size: 0.88rem; } }

.el-lightbox-counter { position: absolute; top: 26px; left: 50%; transform: translateX(-50%); padding: 6px 14px; border-radius: 999px; background: rgba(11,35,64,0.7); border: 1px solid rgba(108,212,255,0.25); color: #6cd4ff; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; }

.el-lightbox-thumbs { position: absolute; left: 50%; transform: translateX(-50%); bottom: 24px; max-width: 92vw; display: flex; gap: 8px; padding: 8px; background: rgba(11,35,64,0.55); border: 1px solid rgba(108,212,255,0.2); border-radius: 14px; backdrop-filter: blur(8px); overflow-x: auto; scrollbar-width: thin; }
.el-lightbox-thumb { flex-shrink: 0; padding: 0; border: 2px solid transparent; border-radius: 8px; background: transparent; cursor: pointer; overflow: hidden; width: 64px; height: 48px; opacity: 0.6; transition: opacity .25s ease, border-color .25s ease, transform .25s ease; }
.el-lightbox-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.el-lightbox-thumb:hover { opacity: 1; transform: translateY(-2px); }
.el-lightbox-thumb.is-active { opacity: 1; border-color: #6cd4ff; box-shadow: 0 0 0 2px rgba(0,179,224,0.35); }

body.el-lightbox-open { overflow: hidden; }

/* =========================================================
   Banner heroes — centered text on all pages/posts (excludes home).
   Covers archive heroes, single elevator/service/city/blog heroes.
   Also fixes mobile layout when a banner image fills the slider.
   ========================================================= */

/* SERVICE single hero (single-tservice.php) */
.sv-hero { display: flex; align-items: stretch; }
.sv-hero-slider { display: flex; align-items: center; justify-content: center; }
.sv-hero-inner { text-align: center; max-width: 820px; margin-left: auto; margin-right: auto; padding-top: clamp(70px, 9vw, 120px); padding-bottom: clamp(60px, 7vw, 90px); }
.sv-hero-lead { margin-left: auto; margin-right: auto; }
@media (max-width: 720px) {
	.sv-hero { min-height: clamp(340px, 60vw, 460px); }
	.sv-hero-inner { padding: 50px 20px; max-width: 100%; width: 100%; }
	.sv-hero-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
	.sv-hero-lead { font-size: 0.95rem; line-height: 1.55; max-width: 100%; }
}
@media (max-width: 420px) {
	.sv-hero { min-height: 340px; }
	.sv-hero-inner { padding: 44px 18px; }
	.sv-hero-title { font-size: 1.6rem; }
}

/* CITY single hero (single-city.php) */
.ci-hero { display: flex; align-items: stretch; }
.ci-hero-slider { display: flex; align-items: center; justify-content: center; }
.ci-hero-inner { text-align: center; max-width: 820px; margin-left: auto; margin-right: auto; padding-top: clamp(70px, 9vw, 120px); padding-bottom: clamp(60px, 7vw, 90px); }
.ci-hero-sub { margin-left: auto; margin-right: auto; }
@media (max-width: 720px) {
	.ci-hero { min-height: clamp(340px, 60vw, 460px); }
	.ci-hero-inner { padding: 50px 20px; max-width: 100%; width: 100%; }
	.ci-hero-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
	.ci-hero-sub { font-size: 0.95rem; line-height: 1.55; max-width: 100%; }
}
@media (max-width: 420px) {
	.ci-hero { min-height: 340px; }
	.ci-hero-inner { padding: 44px 18px; }
	.ci-hero-title { font-size: 1.6rem; }
}

/* BLOG single hero (single.php / blog) */
.bp-hero-inner { text-align: center; max-width: 880px; margin-left: auto; margin-right: auto; }
.bp-hero-sub, .bp-hero-meta { margin-left: auto; margin-right: auto; }
.bp-hero-meta { justify-content: center; }
@media (max-width: 720px) {
	.bp-hero { min-height: clamp(320px, 56vw, 440px); }
	.bp-hero-inner { padding-left: 18px; padding-right: 18px; }
	.bp-hero-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
	.bp-hero-sub { font-size: 0.95rem; }
}

/* ARCHIVE hero — collapse the 2-col layout on tablets/mobile, center copy.
   Also re-center when no contact form is shown (already handled, kept here). */
@media (max-width: 1024px) {
	.ar-hero-inner { grid-template-columns: 1fr !important; gap: 28px; text-align: center; }
	.ar-hero-content { max-width: 820px; margin-left: auto; margin-right: auto; }
	.ar-hero-chips { justify-content: center; }
	.ar-hero-sub { margin-left: auto; margin-right: auto; }
	.ar-hero-form { margin-left: auto; margin-right: auto; max-width: 560px; }
}
@media (max-width: 720px) {
	.ar-hero { min-height: clamp(320px, 56vw, 440px); padding-top: 30px; padding-bottom: 30px; }
	.ar-hero-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
	.ar-hero-sub { font-size: 0.95rem; line-height: 1.55; }
}

/* ELEVATOR single hero — already centered on mobile; ensure desktop centering too */
.el-hero-inner { text-align: center; max-width: 820px; margin-left: auto; margin-right: auto; padding-top: clamp(70px, 9vw, 130px); padding-bottom: clamp(60px, 7vw, 90px); }
.el-hero-lead { margin-left: auto; margin-right: auto; }

/* Slider support inside archive hero + blog single hero */
.ar-hero-slider, .bp-hero-slider { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.ar-hero-slider .ci-hero-nav, .ar-hero-slider .ci-hero-dots,
.bp-hero-slider .ci-hero-nav, .bp-hero-slider .ci-hero-dots { pointer-events: auto; }
.ar-hero-slider .ci-hero-slides, .bp-hero-slider .ci-hero-slides { position: absolute; inset: 0; }
.ar-hero-slider .ci-hero-slide, .bp-hero-slider .ci-hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; }
.ar-hero-slider .ci-hero-slide.is-active, .bp-hero-slider .ci-hero-slide.is-active { opacity: 1; }
.ar-hero-slider .ar-hero-bg, .bp-hero-slider .bp-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ar-hero-embed iframe, .bp-hero-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ar-hero-dots, .bp-hero-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }

/* =========================================================
   Contact page (ct-*) — unique design
   - Glass-blueprint hero with cyan grid
   - Hex-corner reach cards (3-tone: cyan / green / navy)
   - Glass-morph form card next to a "blueprint" office card
   - Pin-grid city tiles
   - Reuses dark gradient FAQ from sv-faq
   ========================================================= */
.ct-hero { position: relative; overflow: hidden; isolation: isolate; padding: clamp(70px, 9vw, 130px) 0 clamp(50px, 7vw, 90px); background: #050b1c; color: #fff; text-align: center; min-height: calc(100vh - 80px); display: flex; align-items: center; }
.ct-hero > .container { width: 100%; }
@media (max-width: 720px) { .ct-hero { min-height: calc(100vh - 70px); } }
.ct-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #050b1c 0%, #07214f 55%, #0a3a8a 100%); z-index: 0; pointer-events: none; }
.ct-hero-grid { position: absolute; inset: 0; z-index: 0; pointer-events: none; background-image: linear-gradient(rgba(108,212,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(108,212,255,0.08) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%); }
.ct-hero-orb { position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0; pointer-events: none; }
.ct-hero-orb--a { top: -120px; left: -100px; width: 380px; height: 380px; background: rgba(0,179,224,0.32); }
.ct-hero-orb--b { bottom: -140px; right: -100px; width: 340px; height: 340px; background: rgba(26,123,212,0.28); }
.ct-hero-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.ct-hero-kicker { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: rgba(108,212,255,0.12); border: 1px solid rgba(108,212,255,0.28); color: #6cd4ff; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; }
.ct-hero-title { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 900; line-height: 1.1; margin: 0 0 16px; color: #fff; }
.ct-hero-lead { font-size: 1.05rem; line-height: 1.65; color: rgba(255,255,255,0.85); max-width: 720px; margin: 0 auto 26px; }
.ct-hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.ct-hero-btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; border-radius: 999px; font-weight: 700; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.ct-hero-btn--cyan { background: linear-gradient(135deg, #00b3e0, #1a7bd4); color: #fff; box-shadow: 0 14px 30px -12px rgba(0,179,224,0.55); }
.ct-hero-btn--green { background: linear-gradient(135deg, #25D366, #1aa850); color: #fff; box-shadow: 0 14px 30px -12px rgba(37,211,102,0.55); }
.ct-hero-btn:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(0,0,0,0.4); }

.ct-sec-head { margin-bottom: 32px; }
.ct-sec-head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.ct-sec-head h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 800; color: #07214f; margin: 0 0 10px; line-height: 1.2; }
.ct-sec-head p { color: #4a5773; font-size: 1rem; margin: 0; line-height: 1.65; }
.ct-sec-head.ct-sec-head--white h2 { color: #fff; }
.ct-sec-head.ct-sec-head--white p { color: rgba(255,255,255,0.78); }

/* Reach cards — hex corners + tone-coloured accents */
.ct-reach { background: #f6f9fd; }
.ct-reach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .ct-reach-grid { grid-template-columns: 1fr; } }
.ct-reach-card { position: relative; padding: 32px 28px 28px; background: #fff; border-radius: 18px; border: 1px solid rgba(7,33,79,0.08); text-align: center; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; box-shadow: 0 20px 40px -28px rgba(7,33,79,0.4); animation: ctCardIn .55s ease both; animation-delay: calc(var(--i, 0) * 90ms); }
@keyframes ctCardIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.ct-reach-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(7,33,79,0.55); }
.ct-reach-corner { position: absolute; width: 40px; height: 40px; pointer-events: none; }
.ct-reach-corner--tl { top: 0; left: 0; border-top: 3px solid var(--ct-tone, #00b3e0); border-left: 3px solid var(--ct-tone, #00b3e0); border-top-left-radius: 18px; }
.ct-reach-corner--br { bottom: 0; right: 0; border-bottom: 3px solid var(--ct-tone, #00b3e0); border-right: 3px solid var(--ct-tone, #00b3e0); border-bottom-right-radius: 18px; }
.ct-reach-card--cyan  { --ct-tone: #00b3e0; }
.ct-reach-card--green { --ct-tone: #1a7bd4; } /* logo blue (was WhatsApp green) */
.ct-reach-card--navy  { --ct-tone: #07214f; }
.ct-reach-icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 18px; background: linear-gradient(135deg, var(--ct-tone, #00b3e0), color-mix(in srgb, var(--ct-tone, #00b3e0) 65%, #07214f)); color: #fff; font-size: 1.5rem; box-shadow: 0 12px 24px -10px var(--ct-tone, rgba(0,179,224,0.55)); }
.ct-reach-label { font-size: 1.1rem; font-weight: 800; color: #07214f; margin: 0 0 8px; }
.ct-reach-value { font-family: 'Montserrat', sans-serif; font-size: 1.15rem; font-weight: 800; color: #07214f; letter-spacing: 0.02em; margin-bottom: 6px; word-break: break-word; }
.ct-reach-sub { color: #4a5773; font-size: 0.9rem; line-height: 1.55; margin: 0 0 18px; }
.ct-reach-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 11px 18px; border-radius: 12px; background: var(--ct-tone, #00b3e0); color: #fff; font-weight: 700; text-decoration: none; transition: transform .2s ease, filter .2s ease; }
.ct-reach-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.ct-reach-btn i { transition: transform .2s ease; }
.ct-reach-btn:hover i { transform: translateX(3px); }

/* Office cards — sit in the right column of the form section, stacked. */
.ct-offices-side { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 100px; }
.ct-offices-side-head { margin-bottom: 4px; }
.ct-offices-side-head h2 { font-size: 1.4rem; font-weight: 800; color: #07214f; margin: 0 0 4px; line-height: 1.25; }
.ct-offices-side-head p { color: #4a5773; font-size: 0.94rem; margin: 0; line-height: 1.55; }
.ct-offices-stack { display: flex; flex-direction: column; gap: 18px; }
@media (max-width: 1024px) { .ct-offices-side { position: static; } }
.ct-office-card { position: relative; display: flex; flex-direction: column; gap: 22px; padding: 32px 30px; background: var(--primary); color: #fff; border-radius: 22px; overflow: hidden; isolation: isolate; box-shadow: 0 26px 50px -28px rgba(0,52,80,0.45); animation: ctCardIn .55s ease both; animation-delay: calc(var(--i, 0) * 100ms); transition: transform .25s ease, box-shadow .25s ease; }
.ct-office-card:hover { transform: translateY(-4px); box-shadow: 0 36px 70px -30px rgba(0,52,80,0.55); }
.ct-office-card::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px); background-size: 32px 32px; mask-image: radial-gradient(ellipse at top right, #000 0%, transparent 75%); pointer-events: none; }
.ct-office-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--white); }

.ct-office-card-head { position: relative; display: flex; gap: 16px; align-items: center; padding-bottom: 18px; border-bottom: 1px dashed rgba(255,255,255,0.45); }
.ct-office-card-pin { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; flex-shrink: 0; border-radius: 16px; background: var(--white); color: var(--primary); font-size: 1.1rem; box-shadow: 0 12px 26px -10px rgba(0,52,80,0.30); }
.ct-office-card-titles { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.ct-office-card-tag { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.92); }
.ct-office-card-name { font-size: 1.3rem; font-weight: 800; color: #fff; margin: 0; line-height: 1.25; }

.ct-office-card-list { position: relative; list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.ct-office-card-list li { display: flex; gap: 14px; align-items: flex-start; }
.ct-office-card-icon { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px; background: var(--white); color: var(--primary); font-size: 0.88rem; }
.ct-office-card-icon--wa { background: var(--white); color: var(--primary); }
.ct-office-card-list > li > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ct-office-card-label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.92); }
.ct-office-card-value { color: #fff; font-weight: 600; line-height: 1.5; word-break: break-word; text-decoration: none; }
a.ct-office-card-value:hover { color: rgba(255,255,255,0.85); }

/* Form + office grid */
.ct-form-office { background: #fff; }
.ct-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 48px; align-items: stretch; }
.ct-grid > .ct-form-side    { order: 2; }
.ct-grid > .ct-offices-side { order: 1; }
.ct-grid > .ct-form-side,
.ct-grid > .ct-offices-side { display: flex; flex-direction: column; }
.ct-grid > .ct-form-side > .ct-form-card,
.ct-grid > .ct-offices-side > .ct-offices-stack { flex: 1 1 auto; }

/* Match the offices-side header styling exactly for visual symmetry. */
.ct-form-side-head { margin-bottom: 4px; }
.ct-form-side-head h2 { font-size: 1.4rem; font-weight: 800; color: #07214f; margin: 0 0 4px; line-height: 1.25; }
.ct-form-side-head p  { color: #4a5773; font-size: 0.94rem; margin: 0; line-height: 1.55; }
/* Tighten the form card's top padding so the form fields don't sit deep
   below the box edge. The card's visual top edge already aligns with the
   first office card thanks to identical header heights. */
.ct-form-side > .ct-form-card { padding-top: 22px !important; margin-top: 17px; }
@media (max-width: 1024px) { .ct-grid { grid-template-columns: 1fr; gap: 36px; } }

.ct-form-card { position: relative; padding: 36px 32px 32px; background: var(--white); border-radius: 22px; border: 1px solid rgba(0,173,238,0.18); box-shadow: 0 30px 60px -32px rgba(0,52,80,0.30); overflow: hidden; isolation: isolate; }
.ct-form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--primary); }
.ct-form-spark { display: none; }
.ct-form-heading { font-size: 1.5rem; font-weight: 800; color: #07214f; margin: 0 0 8px; }
.ct-form-intro { color: #4a5773; margin: 0 0 22px; }
/* 2-col layout for the dedicated Contact form (uses .form-row / .form-group). */
.ct-form-card .form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-bottom: 14px; }
@media (max-width: 720px) { .ct-form-card .form-row { grid-template-columns: 1fr; gap: 12px; } }
.ct-form-card .form-group { display: flex; flex-direction: column; gap: 6px; min-width: 0; margin-bottom: 14px; }
.ct-form-card .form-row .form-group { margin-bottom: 0; }
.ct-form-card .form-group > label { font-weight: 600; font-size: 0.9rem; color: #07214f; display: flex; flex-direction: column; gap: 6px; }
.ct-form-card .form-group .req { color: #d94c1f; margin-left: 2px; }
.ct-form-card .form-group .wpcf7-form-control-wrap { display: block; }
.ct-form-card .form-submit-row { margin-top: 8px; }
.ct-form-card .form-submit-row .wpcf7-spinner { display: inline-block; vertical-align: middle; margin-left: 12px; }

.ct-form-body input[type="text"], .ct-form-body input[type="email"], .ct-form-body input[type="tel"], .ct-form-body select, .ct-form-body textarea { width: 100%; padding: 12px 14px; border: 1px solid rgba(0,173,238,0.18); border-radius: 10px; font-family: inherit; font-size: 0.95rem; color: var(--text); background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.ct-form-body input::placeholder, .ct-form-body textarea::placeholder { color: var(--grey); opacity: 1; }
.ct-form-body select { appearance: none; -webkit-appearance: none; padding-right: 36px; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%235B6B7A' d='M6 8 0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; }
.ct-form-body select:invalid, .ct-form-body select option[value=""] { color: var(--grey); }
.ct-form-body select option { color: var(--text); background: #fff; }
.ct-form-body input:focus, .ct-form-body select:focus, .ct-form-body textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,173,238,0.18); }
.ct-form-body textarea { min-height: 120px; resize: vertical; }
.ct-form-body p { margin: 0 0 14px; }
.ct-form-body .wpcf7-submit { width: 100%; padding: 13px 22px; background: var(--primary); color: #fff; border: 0; border-radius: 12px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.ct-form-body .wpcf7-submit:hover { transform: translateY(-1px); background: var(--primary-dark); box-shadow: 0 14px 28px rgba(0,173,238,0.35); }

.ct-office { padding: 32px 30px; background: var(--primary); border-radius: 22px; color: #fff; position: relative; overflow: hidden; isolation: isolate; }
.ct-office::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px); background-size: 32px 32px; mask-image: radial-gradient(ellipse at top right, #000 0%, transparent 70%); pointer-events: none; }
.ct-office-heading { position: relative; font-size: 1.4rem; font-weight: 800; margin: 0 0 22px; color: #fff; }
.ct-office-list { position: relative; list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 14px; }
.ct-office-list li { display: flex; gap: 14px; align-items: flex-start; padding-bottom: 14px; border-bottom: 1px dashed rgba(255,255,255,0.30); }
.ct-office-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.ct-office-icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; background: var(--white); color: var(--primary); font-size: 0.9rem; }
.ct-office-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ct-office-label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.92); }
.ct-office-value { color: #fff; font-weight: 600; line-height: 1.45; word-break: break-word; }
a.ct-office-value:hover { color: rgba(255,255,255,0.85); }
.ct-office-note { position: relative; display: flex; gap: 12px; padding: 16px 18px; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.30); border-radius: 12px; margin-bottom: 22px; }
.ct-office-note p { margin: 0; color: rgba(255,255,255,0.92); line-height: 1.55; font-size: 0.94rem; }
.ct-office-note-icon { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px; background: var(--white); color: var(--primary); }

.ct-steps { position: relative; }
.ct-steps-heading { font-size: 1.05rem; font-weight: 800; color: #fff; margin: 0 0 14px; }
.ct-steps-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; counter-reset: step; }
.ct-steps-list li { display: flex; gap: 14px; align-items: flex-start; color: rgba(255,255,255,0.88); line-height: 1.55; }
.ct-steps-list strong { color: #fff; font-weight: 800; }
.ct-step-num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%; background: linear-gradient(135deg, #00b3e0, #1a7bd4); color: #fff; font-weight: 800; font-size: 0.78rem; box-shadow: 0 6px 14px -4px rgba(0,179,224,0.55); }

/* Cities pin grid */
.ct-cities { background: linear-gradient(180deg, #f6f9fd 0%, #fff 100%); }
.ct-cities-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1024px) { .ct-cities-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .ct-cities-grid { grid-template-columns: repeat(2, 1fr); } }
.ct-city-card { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 20px 14px; background: #fff; border: 1px solid rgba(7,33,79,0.08); border-radius: 14px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.ct-city-card:hover { transform: translateY(-3px); border-color: rgba(0,179,224,0.4); box-shadow: 0 16px 32px -22px rgba(7,33,79,0.4); }
.ct-city-pin { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #00b3e0, #1a7bd4); color: #fff; font-size: 0.85rem; box-shadow: 0 8px 18px -8px rgba(0,179,224,0.55); }
.ct-city-name { font-weight: 800; font-size: 0.98rem; color: #07214f; }
.ct-city-state { font-size: 0.78rem; color: #4a5773; }

/* FAQ — re-uses sv-faq dark gradient; just centers heading */
.ct-faq-inner { display: block; }
.ct-faq-inner .sv-faq-list { max-width: 880px; margin: 0 auto; }

/* Mobile hero centering */
@media (max-width: 720px) {
	.ct-hero { padding: 56px 0 44px; }
	.ct-hero-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
	.ct-reach-card { padding: 26px 22px 22px; }
}

/* ============================ CLIENTS SECTION ============================ */
.clients-section {
	position: relative;
	padding: 80px 0;
	background: var(--primary);
	overflow: hidden;
}
.clients-section > .container { position: relative; z-index: 1; }
.clients-section .section-head { margin-bottom: 36px; }
.clients-section .section-head h2 { margin: 0 0 8px; color: #ffffff; }
.clients-section .section-sub { color: rgba(255, 255, 255, .92); max-width: 720px; margin: 0 auto; }

.clients-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 32px 56px;
}
.clients-grid-item,
.clients-slide {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(0, 52, 80, .18);
	transition: transform .25s ease, box-shadow .25s ease;
}
.clients-grid-item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 110px;
	min-width: 200px;
	padding: 18px 24px;
}
.clients-logo {
	max-width: 180px;
	max-height: 80px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(1) opacity(.75);
	transition: transform .25s ease, filter .35s ease;
}
.clients-grid-item:hover,
.clients-slide:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(0, 52, 80, .28);
}
.clients-grid-item:hover .clients-logo,
.clients-slide:hover .clients-logo {
	transform: scale(1.04);
	filter: grayscale(0) opacity(1);
}

.clients-slider {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: 0 96px;
	box-sizing: border-box;
}
@media (max-width: 720px) {
	.clients-slider { padding: 0 64px; }
}
.clients-viewport {
	overflow: hidden;
	width: 100%;
}
.clients-track {
	display: flex;
	align-items: center;
	gap: 24px;
	transition: transform .5s ease;
	will-change: transform;
}
.clients-slide {
	flex: 0 0 calc((100% - (24px * 5)) / 6);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 120px;
	padding: 18px 24px;
}
.clients-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid #ffffff;
	background: #ffffff;
	color: var(--primary);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(0, 52, 80, .25);
	transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
	z-index: 2;
}
.clients-nav:hover { background: #ffffff; color: var(--primary); border-color: #ffffff; transform: translateY(-50%) scale(1.05); }
.clients-prev { left: 24px; }
.clients-next { right: 24px; }
@media (max-width: 720px) {
	.clients-prev { left: 12px; }
	.clients-next { right: 12px; }
}
.clients-dots { display: none; }

.clients-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 22px;
}
.clients-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, .55);
	cursor: pointer;
	padding: 0;
	transition: background .2s ease, transform .2s ease;
}
.clients-dot.is-active { background: #ffffff; transform: scale(1.25); }

@media (max-width: 1024px) {
	.clients-slide { flex-basis: calc((100% - 24px * 2) / 3); }
}
@media (max-width: 720px) {
	.clients-section { padding: 56px 0; }
	.clients-slider { padding: 0 44px; }
	.clients-slide { flex-basis: calc((100% - 24px) / 2); min-height: 90px; }
	.clients-logo { max-width: 140px; max-height: 70px; }
	.clients-grid { gap: 24px 32px; }
}
@media (max-width: 480px) {
	.clients-slide { flex-basis: 100%; }
}

/* ==========================================================================
   Thank You page (page-thankyou.php)
   ========================================================================== */
.ty-hero {
	position: relative;
	overflow: hidden;
	color: #fff;
	background: var(--primary);
	padding: clamp(72px, 10vw, 140px) 0 clamp(56px, 7vw, 96px);
	isolation: isolate;
}
.ty-hero-bg {
	position: absolute; inset: 0; z-index: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000, transparent 75%);
	pointer-events: none;
}
.ty-hero-glow {
	position: absolute;
	top: -180px; left: 50%;
	transform: translateX(-50%);
	width: 520px; height: 520px;
	border-radius: 50%;
	background: rgba(255,255,255,.18);
	filter: blur(80px);
	pointer-events: none;
	z-index: 0;
}
.ty-hero-inner {
	position: relative; z-index: 1;
	max-width: 760px;
	text-align: center;
}
.ty-hero-check {
	display: inline-flex;
	align-items: center; justify-content: center;
	width: 96px; height: 96px;
	margin: 0 auto 24px;
	animation: tyCheckIn .7s cubic-bezier(.2,.9,.2,1.05) both;
}
.ty-hero-check svg { width: 100%; height: 100%; }
@keyframes tyCheckIn {
	0%   { transform: scale(.4) rotate(-12deg); opacity: 0; }
	60%  { transform: scale(1.08) rotate(2deg); opacity: 1; }
	100% { transform: scale(1) rotate(0); }
}
.ty-hero-title {
	margin: 0 0 16px;
	color: #fff;
	font-family: var(--font-head);
	font-weight: 900;
	font-size: clamp(1.8rem, 3.6vw, 2.8rem);
	line-height: 1.15;
	letter-spacing: -.01em;
}
.ty-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 28px;
}
.ty-actions .btn-outline-white {
	background: transparent;
	color: var(--white);
	border-color: var(--white);
}
.ty-actions .btn-outline-white:hover { background: var(--white); color: var(--primary); }
.ty-footnote {
	margin: 22px 0 0;
	color: rgba(255,255,255,.92);
	font-size: .92rem;
}
.ty-footnote a { color: #fff; text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }
.ty-footnote a:hover { color: rgba(255,255,255,.85); }

/* Thank You — white message card under the cyan hero */
.ty-message { background: var(--white); padding-top: clamp(48px, 6vw, 72px); padding-bottom: clamp(48px, 6vw, 72px); }
.ty-message-card {
	max-width: 720px;
	margin: 0 auto;
	padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px);
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: 0 22px 50px -28px rgba(0,52,80,.30);
	text-align: center;
}
.ty-message-text {
	margin: 0 0 28px;
	color: var(--text);
	font-size: clamp(1rem, 1.4vw, 1.1rem);
	line-height: 1.7;
}
.ty-message-cta { display: inline-flex; }

/* Gallery hero — same shape as the contact hero */
.ar-hero--gallery .ar-hero-overlay { display: block; }

/* ==========================================================================
   Gallery page (page-gallery.php) — full-bleed grid
   ========================================================================== */
.gal-section {
	background: var(--grey-light);
	padding-left: clamp(16px, 2.5vw, 36px);
	padding-right: clamp(16px, 2.5vw, 36px);
}
.gal-empty { text-align: center; color: var(--grey); padding: 40px 0; }

.gal-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 0 auto 36px;
	max-width: 1480px;
}
.gal-filter {
	padding: 9px 18px;
	background: var(--white);
	border: 2px solid var(--white);
	border-radius: 999px;
	color: var(--navy);
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .82rem;
	letter-spacing: .04em;
	cursor: pointer;
	transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
	box-shadow: 0 4px 14px -8px rgba(0,52,80,.25);
}
.gal-filter:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
.gal-filter.is-active {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
	box-shadow: 0 8px 20px -8px rgba(0,173,238,.45);
}

.gal-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	width: 100%;
}
@media (max-width: 1024px) { .gal-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 420px)  { .gal-grid { grid-template-columns: 1fr; } }

.gal-tile {
	position: relative;
	display: flex; flex-direction: column;
	gap: 10px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
	font: inherit;
	color: var(--navy);
	text-align: left;
	opacity: 0;
	transform: translateY(14px);
	animation: galTileRise .55s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 60ms);
	transition: opacity .35s ease, transform .35s ease;
}
@keyframes galTileRise { to { opacity: 1; transform: translateY(0); } }
.gal-tile.is-hidden { display: none; }
.gal-tile-frame {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--radius-md);
	aspect-ratio: 4/5;
	background: var(--white);
	box-shadow: 0 14px 30px -16px rgba(0,52,80,.30);
	transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
/* Elevator-door reveal — two cyan panels slide in from edges on hover */
.gal-tile-frame::before,
.gal-tile-frame::after {
	content: "";
	position: absolute;
	top: 0; bottom: 0;
	width: 50%;
	background: rgba(0,173,238,.65);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	pointer-events: none;
	z-index: 2;
	transition: transform .6s cubic-bezier(.5,.05,.15,1);
}
.gal-tile-frame::before {
	left: 0;
	transform: translateX(-101%);
	border-right: 2px solid var(--white);
}
.gal-tile-frame::after {
	right: 0;
	transform: translateX(101%);
	border-left: 2px solid var(--white);
}
.gal-tile:hover .gal-tile-frame::before,
.gal-tile:hover .gal-tile-frame::after { transform: translateX(0); }

.gal-tile:hover .gal-tile-frame {
	transform: translateY(-8px);
	box-shadow: 0 28px 50px -18px rgba(0,52,80,.45);
}
.gal-tile-img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .55s cubic-bezier(.2,.8,.2,1), filter .35s ease;
}
.gal-tile:hover .gal-tile-img { transform: scale(1.06); }
.gal-tile-cat {
	position: absolute;
	top: 12px; left: 12px;
	z-index: 5;
	padding: 5px 12px;
	background: var(--white);
	color: var(--primary);
	border-radius: 999px;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: .68rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	box-shadow: 0 6px 14px -6px rgba(0,52,80,.30);
}
.gal-tile-zoom {
	position: absolute;
	left: 50%; top: 50%;
	z-index: 5;
	display: inline-flex;
	align-items: center; justify-content: center;
	width: 56px; height: 56px;
	background: var(--white);
	color: var(--primary);
	border: 2px solid var(--white);
	border-radius: 50%;
	font-size: 1.15rem;
	opacity: 0;
	transform: translate(-50%, -50%) scale(.6);
	transition: opacity .35s cubic-bezier(.5,.05,.15,1) .25s, transform .45s cubic-bezier(.2,.9,.2,1.1) .25s;
	box-shadow: 0 12px 26px -6px rgba(0,52,80,.45);
}
.gal-tile:hover .gal-tile-zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.gal-tile-title {
	display: block;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .92rem;
	color: var(--navy);
	line-height: 1.35;
	padding: 0 4px;
}

/* ---- Lightbox slider --------------------------------------------------- */
.gal-lightbox {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	width: 100vw; height: 100vh;
	z-index: 9999;
	display: flex;
	align-items: center; justify-content: center;
	box-sizing: border-box;
	padding: 24px;
	animation: galFadeIn .25s ease both;
}
.gal-lightbox *,
.gal-lightbox *::before,
.gal-lightbox *::after { box-sizing: border-box; }
.gal-lightbox[hidden] { display: none; }
@keyframes galFadeIn { from { opacity: 0; } to { opacity: 1; } }
.gal-lightbox-backdrop {
	position: absolute; inset: 0;
	background: rgba(0,42,64,.92);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	cursor: pointer;
}
.gal-lightbox-stage {
	position: relative;
	z-index: 2;
	display: flex; flex-direction: column;
	align-items: center; justify-content: center;
	gap: 18px;
	max-width: 1100px;
	width: 100%;
	max-height: 100%;
	margin: 0;
}
.gal-lightbox-img {
	display: block;
	max-width: 100%;
	max-height: 75vh;
	object-fit: contain;
	border-radius: var(--radius-md);
	box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
	background: var(--white);
}
.gal-lightbox-meta {
	display: flex;
	gap: 14px;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 760px;
	color: #fff;
	text-align: left;
}
.gal-lightbox-cat {
	grid-column: 1;
	padding: 4px 12px;
	background: var(--primary);
	color: #fff;
	border-radius: 999px;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: .66rem;
	letter-spacing: .15em;
	text-transform: uppercase;
}
.gal-lightbox-cat:empty { display: none; }
.gal-lightbox-title {
	grid-column: 2;
	font-family: var(--font-head);
	font-weight: 800;
	font-size: 1.05rem;
	line-height: 1.3;
}
.gal-lightbox-caption {
	grid-column: 1 / -1;
	color: rgba(255,255,255,.85);
	font-size: .92rem;
	line-height: 1.55;
}
.gal-lightbox-caption:empty { display: none; }
.gal-lightbox-counter {
	grid-column: 3;
	color: rgba(255,255,255,.75);
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .82rem;
	letter-spacing: .04em;
}

.gal-lightbox-close {
	position: absolute;
	top: 18px; right: 18px;
	z-index: 3;
	width: 44px; height: 44px;
	border-radius: 50%;
	border: 0;
	background: var(--white);
	color: var(--primary);
	cursor: pointer;
	font-size: 1rem;
	display: inline-flex; align-items: center; justify-content: center;
	transition: transform .2s ease;
}
.gal-lightbox-close:hover { transform: scale(1.08); }

.gal-lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 52px; height: 52px;
	border-radius: 50%;
	border: 2px solid var(--white);
	background: rgba(0,42,64,.45);
	color: #fff;
	cursor: pointer;
	font-size: 1rem;
	display: inline-flex; align-items: center; justify-content: center;
	transition: background .25s ease, color .25s ease, transform .25s ease;
}
.gal-lightbox-nav:hover {
	background: var(--white);
	color: var(--primary);
	transform: translateY(-50%) scale(1.06);
}
.gal-lightbox-prev { left: 24px; }
.gal-lightbox-next { right: 24px; }

@media (max-width: 600px) {
	.gal-lightbox { padding: 14px; }
	.gal-lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; }
	.gal-lightbox-nav { width: 42px; height: 42px; }
	.gal-lightbox-prev { left: 8px; }
	.gal-lightbox-next { right: 8px; }
	.gal-lightbox-img { max-height: 65vh; }
	.gal-lightbox-meta { grid-template-columns: 1fr auto; }
	.gal-lightbox-cat { grid-column: 1; }
	.gal-lightbox-title { grid-column: 1; font-size: .95rem; }
	.gal-lightbox-counter { grid-column: 2; }
	.gal-lightbox-caption { grid-column: 1 / -1; font-size: .85rem; }
}
.ar-service ul {
	line-height: 1.6;
}

span.el-why-text {
    color: #3b4a68;
    line-height: 1.65;
}

/* =========================================================
   Home — Global Reach section
   Left: 2x2 country cards. Right: server-hosted video.
   ========================================================= */
.reach-section { position: relative; background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%); overflow: hidden; }
.reach-glow { position: absolute; width: 540px; height: 540px; border-radius: 50%; filter: blur(120px); opacity: 0.18; pointer-events: none; z-index: 0; }
.reach-glow--a { top: -200px; left: -180px; background: #1a7bd4; }
.reach-glow--b { bottom: -220px; right: -200px; background: #00b3e0; }
.reach-section > .container { position: relative; z-index: 1; }
.reach-head { margin-bottom: 48px; }

/* Split layout — equal halves with the cards on the left and the video on the right. */
.reach-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }

/* 2x2 card grid. */
.reach-cards { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 1fr; gap: 20px; }
.reach-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 26px 24px;
	background: #ffffff;
	border: 1px solid rgba(7,33,79,0.08);
	border-radius: 18px;
	box-shadow: 0 18px 40px -28px rgba(7,33,79,0.35);
	overflow: hidden;
	isolation: isolate;
	transform: translateY(18px);
	opacity: 0;
	animation: reachRise .6s cubic-bezier(.2,.8,.2,1) forwards;
	animation-delay: calc(var(--i, 0) * 90ms + 80ms);
	transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}
@keyframes reachRise { to { opacity: 1; transform: translateY(0); } }
.reach-card::before {
	content: '';
	position: absolute; top: 0; left: 0; right: 0; height: 4px;
	background: linear-gradient(90deg, #00b3e0, #1a7bd4);
	transform: scaleX(.18); transform-origin: left center;
	transition: transform .45s cubic-bezier(.2,.8,.2,1);
	z-index: 2;
}
.reach-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 26px 56px -28px rgba(0,179,224,0.45);
	border-color: rgba(0,179,224,0.25);
}
.reach-card:hover::before { transform: scaleX(1); }

.reach-card-shine {
	position: absolute; top: -120%; left: -40%;
	width: 60%; height: 250%;
	background: linear-gradient(120deg, transparent 0%, rgba(0,179,224,0.12) 50%, transparent 100%);
	transform: rotate(18deg);
	pointer-events: none; z-index: 1;
	transition: top .9s ease, left .9s ease;
}
.reach-card:hover .reach-card-shine { top: 60%; left: 120%; }

.reach-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px; height: 56px;
	border-radius: 16px;
	background: linear-gradient(135deg, #00b3e0, #1a7bd4);
	color: #ffffff;
	font-size: 1.4rem;
	box-shadow: 0 14px 30px -10px rgba(0,179,224,0.55);
	overflow: hidden;
}
.reach-card-icon .reach-card-flag { width: 100%; height: 100%; object-fit: cover; }
.reach-card-name  { margin: 0; font-size: 1.25rem; color: var(--primary, #07214f); line-height: 1.25; }
.reach-card-tag   { margin: 0; color: rgba(7,33,79,0.7); font-size: 0.92rem; line-height: 1.55; }

/* Right-side video panel. */
.reach-video {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: var(--primary, #07214f);
	box-shadow: 0 30px 70px -28px rgba(7,33,79,0.5);
	min-height: 100%;
	aspect-ratio: 16 / 11;
}
.reach-video-el {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.reach-video-frame {
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: 20px;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
	background: linear-gradient(180deg, rgba(7,33,79,0) 60%, rgba(7,33,79,0.35) 100%);
	transition: opacity .3s ease;
}

/* Centered play-button overlay shown over the poster. Hidden once the video is playing. */
.reach-video-play {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 96px; height: 96px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: linear-gradient(135deg, #00b3e0, #1a7bd4);
	color: #ffffff;
	font-size: 1.6rem;
	cursor: pointer;
	box-shadow: 0 22px 48px -12px rgba(0,179,224,0.65), 0 0 0 6px rgba(255,255,255,0.18);
	transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, opacity .3s ease;
}
.reach-video-play i { transform: translateX(3px); /* visually centre the play triangle */ }
.reach-video-play:hover { transform: translate(-50%, -50%) scale(1.06); box-shadow: 0 28px 60px -14px rgba(0,179,224,0.8), 0 0 0 8px rgba(255,255,255,0.22); }
.reach-video-play:focus-visible { outline: 3px solid #6cd4ff; outline-offset: 4px; }
.reach-video-play-ring {
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,0.45);
	animation: reachPulse 1.8s ease-out infinite;
	pointer-events: none;
}
@keyframes reachPulse {
	0%   { transform: scale(0.9); opacity: 0.8; }
	100% { transform: scale(1.4); opacity: 0; }
}

/* When the video is playing, hide the overlay button + gradient frame so the controls / video are unobstructed. */
.reach-video.is-playing .reach-video-play { opacity: 0; pointer-events: none; transform: translate(-50%, -50%) scale(0.7); }
.reach-video.is-playing .reach-video-frame { opacity: 0; }

/* Tablet: stack — video first, then cards. */
@media (max-width: 1024px) {
	.reach-split { grid-template-columns: 1fr; gap: 28px; }
	.reach-video { aspect-ratio: 16 / 9; }
}

/* Mobile: single-column cards. */
@media (max-width: 600px) {
	.reach-cards { grid-template-columns: 1fr; }
	.reach-card { padding: 22px 20px; }
	.reach-card-icon { width: 48px; height: 48px; font-size: 1.15rem; border-radius: 14px; }
	.reach-card-name { font-size: 1.1rem; }
}
