/* ============================================================
   AMALGAMATE THEME  — WelkinWits-exact layout
   ============================================================ */

:root {
	--cyan:        #00c3d4;
	--cyan-dark:   #009fb0;
	--navy:        #0a0e1a;
	--navy-2:      #111827;
	--navy-3:      #1a2234;
	--dark-text:   #1a1a2e;
	--mid-text:    #6b7280;
	--light-bg:    #f5f5f5;
	--white:       #ffffff;
	--border:      #e5e7eb;
	--white-08:    rgba(255,255,255,0.08);
	--white-15:    rgba(255,255,255,0.15);
	--white-40:    rgba(255,255,255,0.40);
	--white-65:    rgba(255,255,255,0.65);
	--cyan-glow:   rgba(0,195,212,0.18);
	--radius-lg:   1.5rem;
	--radius-md:   0.875rem;
	--radius-pill: 999px;
	--ease:        0.22s ease;
	--header-h:    78px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }

body {
	font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background: var(--white);          /* WHITE — so dark card corners show */
	color: var(--dark-text);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

/* ============================================================
   HEADER  ─  Pure white, exactly like WelkinWits
   ============================================================ */
.site-header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	background: var(--white);
	border-bottom: 1px solid var(--border);
	height: var(--header-h);
}

.header-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2.5rem;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

/* ── Logo: two-line, colored brand name (WelkinWits pattern) ── */
.site-branding { flex-shrink: 0; display: flex; align-items: center; }

/* Uploaded logo image (header) */
.site-logo-img,
.site-branding .custom-logo {
	height: auto;
	max-height: 48px;
	width: auto;
	display: block;
}

.brand-link {
	display: flex;
	flex-direction: column;        /* stacked: name above tagline */
	line-height: 1.2;
	gap: 0.1rem;
}

.brand-name {
	font-size: 1.35rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--cyan);            /* Cyan brand colour on white */
}

.brand-tagline {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--mid-text);
}

/* ── Nav  ─  dark text, centered ── */
.site-nav { flex: 1; display: flex; justify-content: center; }

.nav-menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0;
}

.nav-menu li a {
	display: block;
	padding: 0.5rem 1.1rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--dark-text);
	white-space: nowrap;
	transition: color var(--ease);
}

.nav-menu li a:hover                  { color: var(--cyan); }
.nav-menu .current-menu-item   > a,
.nav-menu .current_page_item   > a    { color: var(--cyan); font-weight: 700; }

/* ── Dropdown submenu (Company) ── */
.nav-menu .menu-item-has-children {
	position: relative;
	display: flex;
	align-items: center;
}
.nav-menu .menu-item-has-children > a { padding-right: 0.3rem; }

.nav-menu .dropdown-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem 0.4rem;
	color: var(--dark-text);
	vertical-align: middle;
}
.nav-menu .dropdown-toggle svg { width: 13px; height: 13px; transition: transform var(--ease); }
.nav-menu .menu-item-has-children:hover > .dropdown-toggle svg { transform: rotate(180deg); }

.nav-menu .sub-menu {
	list-style: none;
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	min-width: 215px;
	padding: 0.5rem;
	background: #ffffff;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: 0 18px 44px rgba(10, 14, 26, 0.16);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
	z-index: 250;
}
/* little arrow on the panel */
.nav-menu .sub-menu::before {
	content: "";
	position: absolute;
	top: -6px;
	left: 50%;
	width: 12px;
	height: 12px;
	transform: translateX(-50%) rotate(45deg);
	background: #ffffff;
	border-left: 1px solid var(--border);
	border-top: 1px solid var(--border);
}
.nav-menu .menu-item-has-children:hover > .sub-menu,
.nav-menu .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}
.nav-menu .sub-menu li { width: 100%; }
.nav-menu .sub-menu li a,
body:has(.hero-section) .nav-menu .sub-menu li a {
	display: block;
	padding: 0.62rem 0.9rem;
	border-radius: 0.5rem;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--dark-text);
	white-space: nowrap;
}
.nav-menu .sub-menu li a:hover,
body:has(.hero-section) .nav-menu .sub-menu li a:hover {
	background: #f0fdfe;
	color: var(--cyan-dark);
}

/* ── GET A QUOTE button  ─  plain text + arrow (right side) ── */
.header-cta {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
}

.btn-get-quote {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #ffffff;
	white-space: nowrap;
	border: none;
	background: var(--cyan);
	padding: 0.7rem 1.45rem;
	border-radius: var(--radius-pill);
	box-shadow: 0 6px 18px var(--cyan-glow);
	transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

.btn-get-quote:hover {
	color: #ffffff;
	background: var(--cyan-dark);
	transform: translateY(-2px);
	box-shadow: 0 10px 26px var(--cyan-glow);
}
.btn-get-quote svg { transition: transform var(--ease); }
.btn-get-quote:hover svg { transform: translateX(3px); }

/* CTA that lives inside the nav — only revealed in the open mobile menu */
.nav-cta-mobile { display: none; }

/* ── Mobile toggle ── */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}
.mobile-menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--dark-text);
	border-radius: 2px;
	transition: transform var(--ease), opacity var(--ease);
}

/* ============================================================
   HOME HEADER  ─  merged into the dark hero (WelkinWits style)
   Scoped to the front page only (it is the page with .hero-section),
   so inner pages keep their solid white header.
   ============================================================ */

/* Transparent navbar sitting over the dark hero — no white bar */
body:has(.hero-section) .site-header {
	background: transparent;
	border-bottom-color: transparent;
	transition: background 0.35s var(--ease),
	            backdrop-filter 0.35s var(--ease),
	            border-color 0.35s var(--ease);
}

/* Glass / dark overlay once the user scrolls (keeps menu readable) */
body:has(.hero-section) .site-header.scrolled {
	background: rgba(13, 16, 23, 0.72);
	backdrop-filter: blur(14px) saturate(140%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* Light text so the menu reads on the dark hero */
body:has(.hero-section) .nav-menu li a               { color: rgba(255,255,255,0.86); }
body:has(.hero-section) .nav-menu li a:hover,
body:has(.hero-section) .nav-menu .current-menu-item > a,
body:has(.hero-section) .nav-menu .current_page_item > a { color: var(--cyan); }

body:has(.hero-section) .btn-get-quote       { color: #ffffff; }
body:has(.hero-section) .btn-get-quote:hover { color: #ffffff; }

body:has(.hero-section) .nav-menu .dropdown-toggle { color: rgba(255,255,255,0.86); }

body:has(.hero-section) .brand-tagline        { color: rgba(255,255,255,0.62); }
body:has(.hero-section) .mobile-menu-toggle span { background: #ffffff; }

/* ── White logo "tab" (WelkinWits style) ──────────────────────
   The uploaded logo is a JPEG with a baked-in white background.
   On the dark hero header that white box looks out of place, so
   we sit the logo on a deliberate white panel hanging from the
   top edge — the logo's white background now blends into it. */
body:has(.hero-section) .site-branding {
	align-self: stretch;                       /* fill full header height  */
	display: flex;
	align-items: center;
	margin-left: -2.5rem;                      /* hug the container's left */
	padding: 0 1.6rem 0 2.5rem;                /* keep logo position, fill */
	
	                /* curve bottom-right into bar */
	box-shadow: 6px 8px 22px rgba(0,0,0,0.28);
}
body:has(.hero-section) .site-logo-img,
body:has(.hero-section) .site-branding .custom-logo {
	max-height: 54px;                          /* a touch larger in the tab */
}

/* Mobile drop panel: dark glass to match the merged header */
body:has(.hero-section) .site-nav.nav-open {
	background: rgba(13, 16, 23, 0.96);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom-color: rgba(255,255,255,0.08);
	box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}
body:has(.hero-section) .site-nav.nav-open .nav-menu li a       { color: rgba(255,255,255,0.86); }
body:has(.hero-section) .site-nav.nav-open .nav-menu li a:hover { background: rgba(0,195,212,0.12); color: var(--cyan); }

/* ============================================================
   HERO  ─  dark card with negative top-margin (WelkinWits exact)
   ============================================================ */

/* The section itself is transparent — just provides flow context */
.hero-section {
	position: relative;
	background: transparent;
}

/* ── Dark card slides UP behind the sticky white header ── */
.hero-card {
	position: relative;
	margin: calc(-1 * var(--header-h)) 0 0;      /* -78px top, full-bleed sides */
	border-radius: 0;                            /* edge-to-edge full screen   */
	overflow: hidden;
	min-height: 100vh;                           /* fill the viewport       */
	min-height: 100svh;                          /* avoids mobile chrome    */
	background: #111318;
	display: flex;
	align-items: stretch;
}

/* ── Circuit board pattern ── */
.hero-circuit {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

/* Fine grid lines */
.circuit-lines {
	position: absolute;
	inset: 0;
	background-image:
		repeating-linear-gradient(
			0deg,
			transparent 0px, transparent 49px,
			rgba(0,195,212,0.09) 49px, rgba(0,195,212,0.09) 50px
		),
		repeating-linear-gradient(
			90deg,
			transparent 0px, transparent 49px,
			rgba(0,195,212,0.09) 50px, rgba(0,195,212,0.09) 51px
		);
	background-size: 100px 100px;
}

/* Circuit node dots at grid intersections */
.hero-circuit::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle 2.5px at 50px  50px,  rgba(0,195,212,0.55) 0%, transparent 100%),
		radial-gradient(circle 2.5px at 150px 50px,  rgba(0,195,212,0.55) 0%, transparent 100%),
		radial-gradient(circle 2.5px at 50px  150px, rgba(0,195,212,0.55) 0%, transparent 100%),
		radial-gradient(circle 2.5px at 250px 50px,  rgba(0,195,212,0.55) 0%, transparent 100%),
		radial-gradient(circle 2.5px at 150px 150px, rgba(0,195,212,0.55) 0%, transparent 100%),
		radial-gradient(circle 2.5px at 350px 100px, rgba(0,195,212,0.55) 0%, transparent 100%),
		radial-gradient(circle 2.5px at 50px  250px, rgba(0,195,212,0.55) 0%, transparent 100%),
		radial-gradient(circle 2.5px at 250px 200px, rgba(0,195,212,0.55) 0%, transparent 100%),
		radial-gradient(circle 2.5px at 450px 50px,  rgba(0,195,212,0.55) 0%, transparent 100%),
		radial-gradient(circle 2.5px at 100px 350px, rgba(0,195,212,0.55) 0%, transparent 100%);
	background-size: 500px 400px;
	background-repeat: repeat;
}

/* Radial glow on right side (behind the image) */
.hero-circuit::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 55% 65% at 78% 55%,
		rgba(0,195,212,0.07) 0%,
		transparent 80%
	);
}

/* ── Social sidebar ── */
.hero-social {
	position: absolute;
	left: 2rem;
	top: 50%;
	transform: translateY(-30%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	z-index: 10;
}

.hero-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	color: rgba(255,255,255,0.45);
	transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.hero-social-link:hover {
	background: var(--cyan-glow);
	border-color: var(--cyan);
	color: var(--cyan);
	transform: translateY(-2px);
}

.hero-social-line {
	width: 1px;
	height: 48px;
	background: linear-gradient(to bottom, rgba(255,255,255,0.28), transparent);
}

/* ── Hero inner content grid ── */
.hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 2rem;
	/* top padding compensates for the negative-margin overlap with the header */
	padding: calc(var(--header-h) + 4rem) 3rem 4rem 7rem;
}

/* ── Left: text ── */
.hero-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.75rem;
}

/* Badge pill — WelkinWits style: dash + uppercase label */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: var(--radius-pill);
	padding: 0.5rem 1.25rem 0.5rem 0.85rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	color: rgba(255,255,255,0.82);
	text-transform: uppercase;
}

.hero-badge-dash {
	display: inline-block;
	width: 20px;
	height: 3px;
	background: var(--cyan);
	border-radius: 2px;
	flex-shrink: 0;
}

/* Heading — two rows: "Ideas From" / "Ignited Minds" pattern */
.hero-heading {
	display: flex;
	flex-direction: column;
	gap: 0.05em;
}

.heading-line-1 {
	display: block;
	font-size: clamp(2.5rem, 4.2vw, 3.8rem);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: #ffffff;
}

.heading-line-2 {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0;
	line-height: 1.08;
}

.hero-highlight {
	font-size: clamp(2.5rem, 4.2vw, 3.8rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.08;
	color: var(--cyan);
}

.heading-white {
	font-size: clamp(2.5rem, 4.2vw, 3.8rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.08;
	color: #ffffff;
}

.hero-subtext {
	font-size: 0.97rem;
	line-height: 1.8;
	color: rgba(255,255,255,0.62);
	max-width: 420px;
}

/* CTA button — solid, chunky, rounded rect (EXPLORE MORE style) */
.btn-explore {
	display: inline-block;
	padding: 0.95rem 2.4rem;
	background: var(--cyan);
	color: var(--navy);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: 0.5rem;
	box-shadow: 0 6px 26px rgba(0,195,212,0.32);
	transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-explore:hover {
	background: #00e0f3;
	color: var(--navy);
	transform: translateY(-2px);
	box-shadow: 0 12px 36px rgba(0,195,212,0.45);
}

/* ── Right: image visual ── */
.hero-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 480px;
}

.hero-visual-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 520px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-person-img {
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: bottom;
	filter: drop-shadow(0 16px 50px rgba(0,195,212,0.20));
}

/* ════════════════════════════════════════════════════════════
   HERO — Services CYCLONE (replaces the hero image)
   Two counter-rotating orbits of service chips around a glowing core.
   ════════════════════════════════════════════════════════════ */
.hero-cyclone {
	position: relative;
	width: 100%;
	max-width: 520px;
	aspect-ratio: 1 / 1;
	margin: 0 auto;
}

/* Central radial glow */
.cy-glow {
	position: absolute;
	inset: 18%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0,195,212,0.35) 0%, rgba(0,195,212,0.10) 45%, transparent 72%);
	filter: blur(2px);
	animation: cy-pulse 4s ease-in-out infinite;
}

/* Dashed orbital paths */
.cy-ring {
	position: absolute;
	border-radius: 50%;
	border: 1px dashed rgba(0,195,212,0.30);
	pointer-events: none;
}
.cy-ring--outer { inset: 4%; }

/* Spinning orbit containers */
.cy-orbit {
	position: absolute;
	inset: 0;
	transform-origin: center center;
}
.cy-orbit--outer { animation: cy-spin     30s linear infinite; }
.cy-orbit--inner { animation: cy-spin-rev 22s linear infinite; }

/* Each chip sits at its angular position on the orbit's circle.
   --r must be an absolute length (px) — % in translate() refers to
   the element's own size, not the orbit, so chips would stack at center. */
.cy-slot {
	position: absolute;
	top: 50%;
	left: 50%;
	transform:
		rotate(calc(360deg * var(--i) / var(--n)))
		translateY(calc(-1 * var(--r, 220px)))
		rotate(calc(-360deg * var(--i) / var(--n)));
}
.cy-orbit--outer .cy-slot { --r: 220px; }
.cy-orbit--inner .cy-slot { --r: 95px; }

/* Chip text — counter-rotates so it stays upright while the orbit spins */
.cy-chip {
	display: inline-block;
	white-space: nowrap;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #ffffff;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(0,195,212,0.55);
	padding: 0.55rem 0.95rem;
	border-radius: 999px;
	box-shadow: 0 0 22px rgba(0,195,212,0.18);
	-webkit-backdrop-filter: blur(6px);
	        backdrop-filter: blur(6px);
	transform: translate(-50%, -50%);
	animation: cy-unspin 30s linear infinite;
}
.cy-orbit--inner .cy-chip { animation: cy-unspin-rev 22s linear infinite; }

.cy-chip--sm {
	font-size: 0.7rem;
	padding: 0.42rem 0.75rem;
	color: var(--cyan);
	border-color: rgba(0,195,212,0.35);
	background: rgba(0,195,212,0.06);
}

/* Central glowing core */
.cy-core {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	display: grid;
	place-items: center;
	background:
		radial-gradient(circle at 50% 45%, rgba(0,195,212,0.18) 0%, rgba(8,20,28,0.55) 60%),
		rgba(8,18,26,0.45);
	border: 1px solid rgba(0,195,212,0.45);
	-webkit-backdrop-filter: blur(6px);
	        backdrop-filter: blur(6px);
	box-shadow:
		0 0 0 1px rgba(0,195,212,0.18),
		0 0 55px rgba(0,195,212,0.40),
		inset 0 0 28px rgba(0,195,212,0.20);
	animation: cy-core-pulse 3.6s ease-in-out infinite;
}
.cy-core-mark {
	font-family: Inter, "Segoe UI", sans-serif;
	font-size: 2.6rem;
	font-weight: 900;
	color: #ffffff;
	letter-spacing: -0.02em;
	text-shadow: 0 2px 6px rgba(0,0,0,0.22);
}
.cy-core-logo {
	width: 64%;
	height: 64%;
	object-fit: contain;
	filter: drop-shadow(0 0 10px rgba(0,195,212,0.45));
}

/* ── Cyclone animations ── */
@keyframes cy-spin       { from { transform: rotate(0deg);   } to { transform: rotate(360deg);  } }
@keyframes cy-spin-rev   { from { transform: rotate(0deg);   } to { transform: rotate(-360deg); } }
@keyframes cy-unspin     { from { transform: translate(-50%, -50%) rotate(0deg);   }
                           to   { transform: translate(-50%, -50%) rotate(-360deg); } }
@keyframes cy-unspin-rev { from { transform: translate(-50%, -50%) rotate(0deg);   }
                           to   { transform: translate(-50%, -50%) rotate(360deg);  } }

@keyframes cy-pulse {
	0%, 100% { opacity: 0.85; transform: scale(1);    }
	50%      { opacity: 1;    transform: scale(1.06); }
}
@keyframes cy-core-pulse {
	0%, 100% { box-shadow: 0 0 0 1px rgba(0,195,212,0.18), 0 0 55px rgba(0,195,212,0.40), inset 0 0 28px rgba(0,195,212,0.20); }
	50%      { box-shadow: 0 0 0 1px rgba(0,195,212,0.30), 0 0 85px rgba(0,195,212,0.70), inset 0 0 28px rgba(0,195,212,0.28); }
}

@media (prefers-reduced-motion: reduce) {
	.cy-orbit, .cy-chip, .cy-glow, .cy-core { animation: none; }
}

@media (max-width: 900px) {
	.hero-cyclone        { max-width: 380px; }
	.cy-orbit--outer .cy-slot { --r: 160px; }
	.cy-orbit--inner .cy-slot { --r: 70px;  }
	.cy-chip             { font-size: 0.7rem; padding: 0.45rem 0.8rem; }
	.cy-chip--sm         { font-size: 0.62rem; padding: 0.32rem 0.6rem; }
	.cy-core             { width: 124px; height: 124px; }
	.cy-core-mark        { font-size: 2rem; }
}
@media (max-width: 600px) {
	.hero-cyclone        { max-width: 300px; }
	.cy-orbit--outer .cy-slot { --r: 126px; }
	.cy-orbit--inner .cy-slot { --r: 55px;  }
	.cy-core             { width: 100px; height: 100px; }
}

/* Small decorative circle (WelkinWits orange dot equivalent) */
.hero-deco-dot {
	position: absolute;
	bottom: 80px;
	left: 10px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 3px solid var(--cyan);
	background: rgba(0,195,212,0.12);
}

/* Pagination dots */
.hero-dots {
	position: absolute;
	bottom: 1.25rem;
	right: 0;
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.hero-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255,255,255,0.28);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background var(--ease), transform var(--ease);
}
.hero-dot.active,
.hero-dot:hover { background: var(--cyan); transform: scale(1.4); }

/* ============================================================
   ABOUT SECTION  
   ============================================================ */

.about-block-web {
	position: relative;
	padding: 5vh 0 2vh;
	margin: 0;
	background: var(--white);
	overflow: hidden;
}

.about-block-parent {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 4rem;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 4rem;
}

/* ── Left: text ── */
.about-text-col { position: relative; z-index: 2; }

.about-block-child-container { max-width: 560px; }

/* Eyebrow label above heading */
.about-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 1.1rem;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--cyan);
}
.about-eyebrow-dash {
	width: 28px;
	height: 2px;
	border-radius: 2px;
	background: var(--cyan);
}

/* Large h2 —  */
.about-main-heading {
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	font-weight: 900;
	line-height: 1.15;
	color: var(--dark-text);
	margin: 0 0 1.75rem;
	letter-spacing: -0.02em;
}

.about-heading-line { display: block; }
.about-heading-accent { color: var(--cyan); }

.about-para {
	font-size: 1rem;
	line-height: 1.78;
	color: var(--mid-text);
	margin-bottom: 1.1rem;
}

/* Button —  */
.btn-about-us {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin-top: 0.75rem;
	padding: 0.9rem 2.2rem;
	background: var(--cyan);
	color: var(--navy);
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	border-radius: var(--radius-pill);
	box-shadow: 0 8px 28px rgba(0,195,212,0.30);
	transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-about-arrow {
	transition: transform var(--ease);
}
.btn-about-us:hover {
	background: #00e0f3;
	color: var(--navy);
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(0,195,212,0.44);
}
.btn-about-us:hover .btn-about-arrow {
	transform: translateX(4px);
}

/* ── Right: visual stage ── */
.about-visual-col { position: relative; z-index: 2; }

.about-visual-stage {
	position: relative;
	min-height: 620px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Background glow blob */
.about-deco-blob {
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0,195,212,0.12) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 0;
}

/* Large decorative ring (Saihasoft purple ring equivalent) */
.about-deco-ring {
	position: absolute;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	border: 18px solid var(--cyan);
	opacity: 0.18;
	top: 0;
	right: -20px;
	z-index: 0;
	pointer-events: none;
	animation: about-ring-float 6s ease-in-out infinite;
}

@keyframes about-ring-float {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(-16px); }
}

/* Main image / CSS illustration */
.about-main-img-wrap {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 620px;
	animation: about-float 7s ease-in-out infinite;
}

@keyframes about-float {
	0%, 100% { transform: translateY(0px); }
	50%       { transform: translateY(-12px); }
}

.about-main-img {
	width: 100%;
	height: auto;
	min-height: 420px;
	object-fit: cover;
	border-radius: 1.5rem;
	filter: drop-shadow(0 24px 60px rgba(0,195,212,0.20));
}

/* CSS-only illustration (shown when no image uploaded) */
.about-illustration {
	position: relative;
	width: 380px;
	height: 380px;
}

.illus-screen {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 220px;
	height: 160px;
	background: var(--navy);
	border-radius: 1rem;
	border: 3px solid var(--cyan);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	padding: 1.2rem 1.5rem;
	box-shadow: 0 16px 48px rgba(0,195,212,0.20);
}

.illus-bar {
	height: 10px;
	border-radius: 5px;
	background: var(--cyan);
	opacity: 0.7;
}
.illus-bar-1 { width: 80%; }
.illus-bar-2 { width: 60%; opacity: 0.45; }
.illus-bar-3 { width: 70%; opacity: 0.3; }

.illus-circle {
	position: absolute;
	border-radius: 50%;
	border: 8px solid var(--cyan);
}
.illus-circle-lg {
	width: 200px;
	height: 200px;
	top: -20px;
	right: -10px;
	opacity: 0.15;
}
.illus-circle-sm {
	width: 80px;
	height: 80px;
	bottom: 20px;
	left: 10px;
	opacity: 0.25;
	border-width: 5px;
}

.illus-diamond {
	position: absolute;
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, rgba(0,195,212,0.6), rgba(0,159,176,0.3));
	border-radius: 0.5rem;
	transform: rotate(45deg);
	bottom: 40px;
	right: 30px;
	box-shadow: 0 8px 24px rgba(0,195,212,0.25);
}

/* ── Floating stat cards (Saihasoft TV-card equivalent) ── */
.about-stat-card {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 1rem;
	padding: 0.9rem 1.1rem;
	box-shadow: 0 12px 40px rgba(0,0,0,0.10);
	z-index: 4;
	white-space: nowrap;
}

/* Top-left card */
.about-stat-card-1 {
	top: 10%;
	left: -30px;
	animation: card-float-1 5s ease-in-out infinite;
}

/* Bottom-right card */
.about-stat-card-2 {
	bottom: 10%;
	right: -20px;
	animation: card-float-2 6s ease-in-out infinite;
}

/* Middle-right card */
.about-stat-card-3 {
	top: 50%;
	right: -40px;
	transform: translateY(-50%);
	animation: card-float-3 7s ease-in-out infinite;
}

@keyframes card-float-1 {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(-8px); }
}
@keyframes card-float-2 {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(8px); }
}
@keyframes card-float-3 {
	0%, 100% { transform: translateY(-50%); }
	50%       { transform: translateY(calc(-50% - 8px)); }
}

.stat-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 0.6rem;
	flex-shrink: 0;
}
.stat-icon-cyan { background: rgba(0,195,212,0.12); color: var(--cyan); }
.stat-icon-dark { background: var(--navy);           color: var(--cyan); }

.stat-body {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}
.stat-num {
	font-size: 1.3rem;
	font-weight: 900;
	color: var(--dark-text);
	line-height: 1;
}
.stat-lbl {
	font-size: 0.72rem;
	font-weight: 600;
	color: var(--mid-text);
	letter-spacing: 0.02em;
}

/* ── Responsive about ── */
@media (max-width: 960px) {
	.about-block-parent {
		grid-template-columns: 1fr;
		gap: 3rem;
		padding: 0 2rem;
	}
	/* Mobile: show the image/visual first, then the text content */
	.about-visual-col { order: -1; }
	.about-text-col   { order: 0; }
	.about-block-child-container { max-width: 100%; }
	.about-visual-stage { min-height: 380px; }
	.about-stat-card-1 { left: 0; }
	.about-stat-card-2 { right: 0; }
	.about-stat-card-3 { right: 0; }
}

@media (max-width: 600px) {
	.about-block-web { padding: 6vh 0 5vh; }
	.about-block-parent { padding: 0 1.25rem; gap: 2.5rem; }
	.about-main-heading { font-size: 2rem; }
	.about-stat-card-3 { display: none; }
	.about-stat-card-1 { left: 0; top: 0; }
	.about-stat-card-2 { right: 0; bottom: 0; }
}

/* ============================================================
   WHY WE ARE BEST SECTION  —  Dark panel with animated list
   ============================================================ */

.why-best-section {
	position: relative;
	background: #171717;
	color: #ffffff;
	padding: 5.5rem 0;
	overflow: hidden;
}

/* Large concentric arc rings — top-left corner */
.why-best-section::before {
	content: "";
	position: absolute;
	top: -60px;
	left: -60px;
	width: 520px;
	height: 520px;
	background-image:
		radial-gradient(circle at 0% 0%, transparent 99px,  rgba(160,160,160,0.14) 100px, rgba(160,160,160,0.14) 102px, transparent 103px),
		radial-gradient(circle at 0% 0%, transparent 169px, rgba(160,160,160,0.10) 170px, rgba(160,160,160,0.10) 172px, transparent 173px),
		radial-gradient(circle at 0% 0%, transparent 239px, rgba(160,160,160,0.07) 240px, rgba(160,160,160,0.07) 242px, transparent 243px),
		radial-gradient(circle at 0% 0%, transparent 309px, rgba(160,160,160,0.05) 310px, rgba(160,160,160,0.05) 312px, transparent 313px),
		radial-gradient(circle at 0% 0%, transparent 379px, rgba(160,160,160,0.03) 380px, rgba(160,160,160,0.03) 382px, transparent 383px),
		radial-gradient(circle at 0% 0%, transparent 449px, rgba(160,160,160,0.02) 450px, rgba(160,160,160,0.02) 452px, transparent 453px);
	background-size: 100% 100%;
	pointer-events: none;
	z-index: 0;
}

/* Large concentric arc rings — bottom-right corner */
.why-best-section::after {
	content: "";
	position: absolute;
	bottom: -60px;
	right: -60px;
	width: 520px;
	height: 520px;
	background-image:
		radial-gradient(circle at 100% 100%, transparent 99px,  rgba(160,160,160,0.14) 100px, rgba(160,160,160,0.14) 102px, transparent 103px),
		radial-gradient(circle at 100% 100%, transparent 169px, rgba(160,160,160,0.10) 170px, rgba(160,160,160,0.10) 172px, transparent 173px),
		radial-gradient(circle at 100% 100%, transparent 239px, rgba(160,160,160,0.07) 240px, rgba(160,160,160,0.07) 242px, transparent 243px),
		radial-gradient(circle at 100% 100%, transparent 309px, rgba(160,160,160,0.05) 310px, rgba(160,160,160,0.05) 312px, transparent 313px),
		radial-gradient(circle at 100% 100%, transparent 379px, rgba(160,160,160,0.03) 380px, rgba(160,160,160,0.03) 382px, transparent 383px),
		radial-gradient(circle at 100% 100%, transparent 449px, rgba(160,160,160,0.02) 450px, rgba(160,160,160,0.02) 452px, transparent 453px);
	background-size: 100% 100%;
	pointer-events: none;
	z-index: 0;
}

/* Decorative blobs (hidden — corner rings handle decoration) */
.why-best-deco { display: none; }

/* Two-column grid */
.why-best-inner {
	position: relative;
	z-index: 2;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 4rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 4rem;
}

/* ── Left column ── */
.why-best-left { position: relative; }

.why-best-heading {
	font-size: clamp(2rem, 3.4vw, 3rem);
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: #4dabf7;
	margin: 0 0 1.75rem;
}

.why-best-heading-line2 { display: block; }

.why-best-paras p {
	font-size: 0.96rem;
	line-height: 1.82;
	color: rgba(255,255,255,0.58);
	margin-bottom: 1rem;
}
.why-best-paras p:last-child { margin-bottom: 0; }

/* ── Right column ── */
.why-best-right { position: relative; }

.why-best-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 2.25rem;
}

/* Each item starts invisible and offset to the right */
.why-best-item {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	opacity: 0;
	transform: translateX(60px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

/* Staggered delays */
.why-best-item:nth-child(1) { transition-delay: 0.10s; }
.why-best-item:nth-child(2) { transition-delay: 0.35s; }
.why-best-item:nth-child(3) { transition-delay: 0.60s; }

/* Class added by JS when section enters viewport */
.why-best-item.anim-in {
	opacity: 1;
	transform: translateX(0);
}

/* Icon box */
.why-best-icon-wrap {
	flex-shrink: 0;
	width: 58px;
	height: 58px;
	background: rgba(77,171,247,0.10);
	border: 1px solid rgba(77,171,247,0.22);
	border-radius: 0.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 11px;
	transition: background 0.22s ease, border-color 0.22s ease;
}
.why-best-item:hover .why-best-icon-wrap {
	background: rgba(77,171,247,0.18);
	border-color: rgba(77,171,247,0.45);
}

.why-best-icon-wrap svg {
	width: 36px;
	height: 36px;
	display: block;
}

/* Force all SVG paths inside icon boxes to use light blue */
.why-best-icon-wrap svg path,
.why-best-icon-wrap svg .why-svc-icon,
.why-best-icon-wrap .st0 {
	fill: #4dabf7 !important;
}

/* Item text */
.why-best-item-text { padding-top: 0.15rem; }

.why-best-item-text h4 {
	font-size: 1.05rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 0.45rem;
	line-height: 1.3;
}

.why-best-item-text p {
	font-size: 0.875rem;
	line-height: 1.76;
	color: rgba(255,255,255,0.52);
	margin: 0;
}

/* ── Responsive ── */
@media (max-width: 960px) {
	.why-best-inner {
		grid-template-columns: 1fr;
		gap: 3rem;
		padding: 0 2rem;
	}
}

@media (max-width: 600px) {
	.why-best-section { padding: 3.5rem 0; }
	.why-best-inner   { padding: 0 1.25rem; }
	.why-best-heading { font-size: 1.9rem; }
}

/* ── Shared helpers (used outside about too) ── */
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.75rem 1.6rem;
	background: var(--cyan);
	color: var(--navy);
	font-size: 0.88rem;
	font-weight: 800;
	border-radius: var(--radius-pill);
	margin-top: 0.5rem;
	transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
	box-shadow: 0 6px 22px rgba(0,195,212,0.25);
}
.btn-primary:hover {
	background: #00e0f3;
	color: var(--navy);
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(0,195,212,0.38);
}

.section-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section {
	background: #f4f5f7;
	overflow: hidden;
}

.testi-inner {
	max-width: 1280px;
	margin: 0 auto;
}

/* Section heading */
.testi-header {
	text-align: center;
	padding: 4.5rem 2rem 2.5rem;
}

.testi-header h2 {
	font-size: clamp(2.8rem, 5vw, 4.5rem);
	font-weight: 900;
	color: #111318;
	margin: 0;
	letter-spacing: -0.02em;
}

/* Swiper — equal-height slides */
.testi-swiper {
	padding: 0.5rem 2rem 3rem !important;
}

.testi-swiper .swiper-wrapper {
	align-items: stretch;
}

.testi-swiper .swiper-slide {
	height: auto;
}

/* Card */
.testi-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	transition: background 0.35s ease;
}

/* Content area (text) */
.testi-content {
	padding: 2rem 2rem 2rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	transition: background 0.35s ease;
}

.testi-text {
	flex: 1;
}

/* Name block */
.testi-name-block {
	display: flex;
	align-items: baseline;
	gap: 0.55rem;
	flex-wrap: wrap;
	margin-bottom: 0.45rem;
}

.testi-fn {
	font-size: clamp(2rem, 3.2vw, 2.8rem);
	font-weight: 900;
	color: #111318;
	line-height: 1;
	letter-spacing: -0.01em;
	transition: color 0.35s ease;
}

.testi-ln {
	font-size: clamp(0.75rem, 1.1vw, 0.95rem);
	font-weight: 400;
	color: #111318;
	letter-spacing: 0.06em;
	transition: color 0.35s ease;
}

/* Role */
.testi-role {
	display: block;
	font-size: 0.82rem;
	color: #555;
	margin-bottom: 1.1rem;
	transition: color 0.35s ease;
}

/* Paragraph */
.testi-text p {
	font-size: 0.9rem;
	line-height: 1.78;
	color: #333;
	margin: 0;
	transition: color 0.35s ease;
}

/* Photo at bottom — padding creates the gap; card bg shows through */
.testi-photo {
	padding: 1rem;
	background: #f4f5f7;
	border-top: 1px solid #e2e5ea;
	flex-shrink: 0;
	transition: background 0.35s ease, border-top-color 0.35s ease;
}

.testi-photo-frame {
	width: 100%;
	height: 220px;
	border-radius: 8px;
	overflow: hidden;
	background: #e2e5ea;
}

.testi-photo-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}

.testi-photo-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.testi-photo-placeholder::after {
	content: "";
	display: block;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 2px dashed #bdc3cc;
	background:
		radial-gradient(circle at 50% 38%, #bdc3cc 18%, transparent 19%),
		radial-gradient(ellipse 60% 40% at 50% 72%, #bdc3cc 42%, transparent 43%);
}

/* Hover — whole card turns pink */
.testi-card:hover {
	background: #FEB9C6;
}

.testi-card:hover .testi-fn,
.testi-card:hover .testi-ln    { color: #111318; }
.testi-card:hover .testi-role  { color: rgba(0,0,0,0.6); }
.testi-card:hover .testi-text p { color: #111318; }
.testi-card:hover .testi-photo { background: transparent; border-top-color: rgba(0,0,0,0.1); }

/* Pagination dots */
.testi-pagination {
	bottom: 0.5rem !important;
}

.testi-pagination .swiper-pagination-bullet {
	background: rgba(0,0,0,0.2);
	opacity: 1;
	width: 8px;
	height: 8px;
	transition: background 0.3s ease, width 0.3s ease;
	border-radius: 4px;
}

.testi-pagination .swiper-pagination-bullet-active {
	background: #111318;
	width: 24px;
}

/* Responsive */
@media (max-width: 900px) {
	.testi-content      { padding: 1.5rem; }
	.testi-photo-frame  { height: 180px; }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
	background: #ffffff;
	padding: 6rem 0 0;
	overflow: hidden;
	position: relative;
}

.contact-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: start;
	gap: 3rem;
}

/* Left — big typography */
.contact-left {
	position: relative;
}

.contact-kicker {
	display: flex;
	flex-direction: column;
	gap: 0;
	line-height: 1.3;
	margin-bottom: 0.2rem;
}

.contact-kicker span {
	font-size: 1rem;
	font-weight: 600;
	color: var(--cyan);
	letter-spacing: 0.02em;
}

.contact-h1 {
	font-size: clamp(4.5rem, 9vw, 9rem);
	font-weight: 900;
	color: #636363;
	line-height: 0.95;
	letter-spacing: -0.03em;
}

.contact-h2 {
	font-size: clamp(4.5rem, 9vw, 9rem);
	font-weight: 900;
	color: #444444;
	line-height: 0.95;
	letter-spacing: -0.03em;
	margin-bottom: 2rem;
}

.contact-feature-img {
	margin-top: 2rem;
}

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

/* Right — form */
.contact-right {
	padding-top: 3rem;
	padding-bottom: 4rem;
}

.contact-form .cf-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1rem;
}

.contact-form .cf-field {
	width: 100%;
}

.contact-form .cf-field + .cf-field {
	margin-top: 0;
}

.contact-form .cf-row + .cf-field,
.contact-form .cf-field {
	margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 1rem 1.3rem;
	border: 1.5px solid #e0e3ea;
	border-radius: 12px;
	background: #f7f8fb;
	font-size: 0.92rem;
	font-family: inherit;
	color: #222;
	outline: none;
	transition: border-color 0.25s ease, background 0.25s ease;
	box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #9aa0ae;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--cyan);
	background: #ffffff;
}

.contact-form textarea {
	resize: vertical;
	min-height: 140px;
}

.cf-submit {
	margin-top: 0.5rem;
	text-align: right;
}

.btn-contact-send {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--cyan);
	color: #ffffff;
	border: none;
	padding: 0.9rem 3.5rem;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	letter-spacing: 0.02em;
	transition: background 0.25s ease, transform 0.25s ease;
}

.btn-contact-send:hover { background: #00a8b8; transform: translateY(-2px); }
.btn-contact-send:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* Spinner */
.btn-spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255,255,255,0.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
}

.btn-contact-send.loading .btn-spinner { display: block; }
.btn-contact-send.loading .btn-label   { opacity: 0.7; }

@keyframes spin { to { transform: rotate(360deg); } }

/* Feedback message */
.cf-feedback {
	margin-top: 1rem;
	font-size: 0.9rem;
	font-weight: 500;
	min-height: 1.4em;
}

.cf-feedback.success { color: #2a9d4e; }
.cf-feedback.error   { color: #d94040; }

/* Responsive */
@media (max-width: 900px) {
	.contact-inner { grid-template-columns: 1fr; gap: 2rem; }
	.contact-right { padding-top: 0; }
	.contact-form .cf-row { grid-template-columns: 1fr; }
	.cf-submit { text-align: center; }
}

/* ============================================================
   CONTACT PAGE (page-contact.php)
   ── Two-shade cyan palette ──
   Light:  #00c3d4  (brand cyan — headings, icons, btn hover ring)
   Deep:   #006b78  (contrasting dark cyan — second heading line, btn bg)
   ============================================================ */
:root {
	--cp-cyan:      #00c3d4;
	--cp-cyan-deep: #006b78;
}

/* ── Map + Form ── */
.cp-map-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 620px;
}

.cp-map-wrap {
	position: relative;
	min-height: 500px;
}
.cp-map-iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	min-height: 500px;
}
.cp-side-img {
	width: 100%;
	height:80%;
	min-height: 500px;
	object-fit: cover;
	display: block;
}
.cp-map-placeholder {
	width: 100%;
	height: 100%;
	min-height: 500px;
	background: #eef6f7;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	color: #9aa0ae;
	padding: 2rem;
	text-align: center;
	box-sizing: border-box;
}
.cp-map-placeholder svg { color: var(--cp-cyan); opacity: .5; }
.cp-map-placeholder p   { font-size: 0.88rem; line-height: 1.6; margin: 0; }
.cp-map-placeholder strong { color: #555; }

.cp-form-wrap {
	background: #ffffff;
	display: flex;
	align-items: flex-start;
	padding: 3.5rem 3rem 3.5rem 2.5rem;
}
.cp-form-inner {
	width: 100%;
	max-width: 520px;
}

/* ── Heading — two-shade cyan ── */
.cp-form-heading {
	margin: 0 0 0.9rem;
	line-height: 1.15;
	font-weight: 800;
}
.cp-form-heading__line1 {
	display: block;
	font-size: clamp(1.9rem, 3.5vw, 2.7rem);
	color: var(--cp-cyan);          /* light shade */
}
.cp-form-heading__line2 {
	display: block;
	font-size: clamp(1.9rem, 3.5vw, 2.7rem);
	color: var(--cp-cyan-deep);     /* deep contrasting shade */
}

.cp-form-desc {
	font-size: 0.92rem;
	color: #6b7280;
	line-height: 1.65;
	margin: 0 0 1.6rem;
}

/* ── CF7 form overrides ── */
.cp-cf7-wrap .wpcf7,
.cp-cf7-wrap form {
	width: 100%;
}

/* Strip CF7 default paragraph/br noise */
.cp-cf7-wrap .wpcf7 p { margin: 0; padding: 0; }
.cp-cf7-wrap .wpcf7 br { display: none; }
.cp-cf7-wrap .wpcf7 .wpcf7-form-control-wrap { display: block; }

/* ── CF7 two-column grid layout ── */
.cp-cf7-wrap .cf7-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.cp-cf7-wrap .cf7-full,
.cp-cf7-wrap .cf7-submit { grid-column: 1 / -1; }
.cp-cf7-wrap .cf7-submit { margin-top: 0.25rem; }

/* ── Fallback form layout ── */
.cp-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 0;
}
.cp-field { width: 100%; }

/* ── Shared input / textarea base ── */
.cp-cf7-wrap input[type="text"],
.cp-cf7-wrap input[type="email"],
.cp-cf7-wrap input[type="tel"],
.cp-cf7-wrap input[type="url"],
.cp-cf7-wrap input[type="number"],
.cp-cf7-wrap textarea,
.cp-fallback-form input[type="text"],
.cp-fallback-form input[type="email"],
.cp-fallback-form input[type="tel"],
.cp-fallback-form textarea,
.cp-field input,
.cp-field textarea {
	width: 100%;
	height: 54px;
	padding: 0 1.3rem;
	border: 1.5px solid #e2e8f0;
	border-radius: 10px;
	background: #f8fafc;
	font-size: 0.95rem;
	font-family: inherit;
	font-weight: 400;
	color: #111827;
	outline: none;
	box-sizing: border-box;
	margin: 0;
	transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
	-webkit-appearance: none;
	appearance: none;
}

/* Textarea overrides */
.cp-cf7-wrap textarea,
.cp-field textarea {
	height: 120px;
	min-height: 90px;
	padding: 0.85rem 1.3rem;
	resize: vertical;
}

/* Hover */
.cp-cf7-wrap input[type="text"]:hover:not(:focus),
.cp-cf7-wrap input[type="email"]:hover:not(:focus),
.cp-cf7-wrap input[type="tel"]:hover:not(:focus),
.cp-cf7-wrap input[type="url"]:hover:not(:focus),
.cp-cf7-wrap textarea:hover:not(:focus),
.cp-field input:hover:not(:focus),
.cp-field textarea:hover:not(:focus) {
	border-color: #b8c5d3;
	background: #ffffff;
}

/* Focus — brand cyan glow */
.cp-cf7-wrap input[type="text"]:focus,
.cp-cf7-wrap input[type="email"]:focus,
.cp-cf7-wrap input[type="tel"]:focus,
.cp-cf7-wrap input[type="url"]:focus,
.cp-cf7-wrap input[type="number"]:focus,
.cp-cf7-wrap textarea:focus,
.cp-field input:focus,
.cp-field textarea:focus {
	border-color: var(--cp-cyan);
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(0,195,212,.13), 0 2px 8px rgba(0,0,0,.05);
}

/* Placeholders */
.cp-cf7-wrap input::placeholder,
.cp-cf7-wrap textarea::placeholder,
.cp-field input::placeholder,
.cp-field textarea::placeholder {
	color: #a0aec0;
	font-weight: 400;
	font-style: normal;
}

/* Invalid field highlight */
.cp-cf7-wrap input.wpcf7-not-valid,
.cp-cf7-wrap textarea.wpcf7-not-valid {
	border-color: #f87171;
	background: #fff8f8;
	box-shadow: 0 0 0 3px rgba(248,113,113,.12);
}

/* ── Submit button ── */
.cp-cf7-wrap input[type="submit"],
.cp-btn-send {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, var(--cp-cyan-deep) 0%, #009eb0 100%) !important;
	color: #ffffff !important;
	border: none;
	height: 52px;
	padding: 0 2.8rem;
	border-radius: 999px;
	font-size: 0.93rem;
	font-weight: 700;
	font-family: inherit;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 4px 18px rgba(0,107,120,.30);
	transition: background .25s ease, box-shadow .28s ease, transform .22s ease;
}
.cp-cf7-wrap input[type="submit"]:hover,
.cp-btn-send:hover {
	background: linear-gradient(135deg, #008fa0 0%, var(--cp-cyan) 100%) !important;
	box-shadow: 0 8px 28px rgba(0,195,212,.35);
	transform: translateY(-2px);
}
.cp-cf7-wrap input[type="submit"]:active,
.cp-btn-send:active {
	transform: translateY(0);
	box-shadow: 0 3px 10px rgba(0,107,120,.22);
}

/* ── Spinner (fallback form) ── */
.cp-btn-spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255,255,255,.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
}
.cp-btn-send.loading .cp-btn-spinner { display: inline-block; }
.cp-btn-send.loading .cp-btn-label   { opacity: .8; }
.cp-btn-send:disabled { opacity: .6; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ── Fallback feedback message ── */
.cp-feedback {
	margin-top: 1rem;
	font-size: 0.88rem;
	font-weight: 500;
	min-height: 1.2em;
}
.cp-feedback.success { color: #065f46; }
.cp-feedback.error   { color: #dc2626; }

/* ── CF7 validation tips ── */
.cp-cf7-wrap .wpcf7-not-valid-tip {
	color: #dc2626;
	font-size: 0.76rem;
	font-weight: 500;
	margin-top: 0.3rem;
	margin-bottom: 0;
	display: block;
}

/* ── CF7 response output ── */
.cp-cf7-wrap .wpcf7-response-output {
	margin-top: 1.1rem;
	padding: 0.85rem 1.15rem;
	border-radius: 8px;
	font-size: 0.88rem;
	font-weight: 500;
	border: none !important;
}
.cp-cf7-wrap .wpcf7-mail-sent-ok {
	background: #ecfdf5;
	color: #065f46;
	border-left: 3px solid #10b981 !important;
}
.cp-cf7-wrap .wpcf7-validation-errors,
.cp-cf7-wrap .wpcf7-spam-blocked {
	background: #fef2f2;
	color: #991b1b;
	border-left: 3px solid #ef4444 !important;
}

/* ── Admin helper note ── */
.cp-admin-note {
	margin-top: 1rem;
	padding: 0.7rem 1rem;
	background: #fffbeb;
	border-left: 3px solid #f59e0b;
	border-radius: 4px;
	font-size: 0.8rem;
	color: #92400e;
	line-height: 1.5;
}
.cp-admin-note a { color: #b45309; }

/* Submit row — centered button (CF7 + fallback) */
.cp-submit,
.cp-cf7-wrap .cf7-submit { text-align: center; margin-top: 0.5rem; }

/* Fallback for default CF7 markup where the submit sits in its own <p> */
.cp-cf7-wrap .wpcf7 p:has(input[type="submit"]) { text-align: center; }

/* ── Quick Support ── */
.cp-quick-support {
	background: linear-gradient(180deg, #ffffff 0%, #f3fafb 100%);
	padding: 5rem 2rem 6rem;
	border-top: 1px solid #e5e7eb;
}
.cp-qs-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.cp-qs-title {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 800;
	color: #111827;
	text-align: center;
	margin: 0 0 0.5rem;
}
.cp-qs-title::after {
	content: "";
	display: block;
	width: 64px;
	height: 3px;
	margin: 0.9rem auto 0;
	border-radius: 2px;
	background: var(--cp-cyan);
}
.cp-qs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem;
	margin-top: 3rem;
}
.cp-qs-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.35rem;
	padding: 2.6rem 1.75rem;
	background: #ffffff;
	border: 1px solid #e8ecf1;
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(17, 24, 39, 0.04);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.cp-qs-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(0, 195, 212, 0.16);
	border-color: rgba(0, 195, 212, 0.45);
}
.cp-qs-icon {
	width: 66px;
	height: 66px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.1rem;
	border-radius: 50%;
	color: var(--cp-cyan-deep);
	background: rgba(0, 195, 212, 0.12);
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.cp-qs-item:hover .cp-qs-icon {
	background: linear-gradient(135deg, var(--cp-cyan), #0098a8);
	color: #ffffff;
	transform: scale(1.06);
}
.cp-qs-icon svg { width: 30px; height: 30px; }
.cp-qs-label {
	font-size: 1.15rem;
	font-weight: 700;
	color: #111827;
	margin: 0 0 0.15rem;
}
.cp-qs-value {
	font-size: 0.95rem;
	color: #4b5563;
	line-height: 1.65;
	margin: 0;
}
.cp-qs-value a { color: #4b5563; text-decoration: none; transition: color 0.2s ease; }
.cp-qs-value a:hover { color: var(--cp-cyan-deep); }
.cp-qs-empty { color: #bbb; font-style: italic; font-size: 0.82rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
	.cp-form-wrap { padding: 2.5rem 2rem; }
}
@media (max-width: 820px) {
	.cp-map-form                      { grid-template-columns: 1fr; }
	.cp-map-wrap                      { min-height: 300px; }
	.cp-map-iframe                    { min-height: 300px; }
	.cp-side-img                      { min-height: 300px; }
	.cp-map-placeholder               { min-height: 300px; }
	.cp-form-wrap                     { padding: 2.5rem 1.5rem; }
	.cp-qs-grid                       { grid-template-columns: 1fr; gap: 2rem; }
	.cp-qs-title                      { margin-bottom: 2rem; }
	.cp-field-row                     { grid-template-columns: 1fr; }
	.cp-cf7-wrap .cf7-grid            { grid-template-columns: 1fr; }
	.cp-cf7-wrap .cf7-full,
	.cp-cf7-wrap .cf7-submit          { grid-column: auto; }
}
@media (max-width: 600px) {
	.cp-quick-support                 { padding: 3rem 1.25rem 4rem; }
	.cp-cf7-wrap input[type="submit"],
	.cp-btn-send                      { width: 100%; }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
	background: linear-gradient(94deg, #6cbdc0 0%, #b2dedf 100%);
	padding: 5rem 0;
	text-align: center;
}

.stats-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
}

.stat-number {
	font-size: clamp(2.8rem, 5vw, 4rem);
	font-weight: 900;
	color: #ffffff;
	line-height: 1;
	letter-spacing: -0.02em;
}

.stat-label {
	font-size: 0.95rem;
	font-weight: 500;
	color: rgba(255,255,255,0.92);
	letter-spacing: 0.01em;
}

@media (max-width: 700px) {
	.stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
}



/* ============================================================
   INDUSTRIES WE SERVE  —  colourful solid-circle icons
   ============================================================ */
.industries-section {
	background: #ffffff;
	padding: 5.5rem 0 6rem;
}

.industries-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 2rem;
}

.industries-header {
	text-align: center;
	max-width: 560px;
	margin: 0 auto 3.5rem;
}

.industries-heading {
	font-size: clamp(1.9rem, 3.4vw, 2.7rem);
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--dark-text);
	margin: 0 0 0.9rem;
}

.industries-desc {
	font-size: 0.98rem;
	line-height: 1.7;
	color: var(--mid-text);
	margin: 0;
}

/* Centered, balanced wrap → 4 + 3 on desktop */
.industries-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2.75rem 3rem;
	max-width: 800px;
	margin: 0 auto;
}

.industry-item {
	flex: 0 0 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.95rem;
	text-align: center;
}

/* Solid contrasting circle (colour comes from --c on the element) */
.industry-icon {
	width: 92px;
	height: 92px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #ffffff;
	background: var(--c, var(--cyan));
	box-shadow: 0 10px 22px -6px var(--c, var(--cyan));
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.industry-icon svg { width: 38px; height: 38px; }

.industry-item:hover .industry-icon {
	transform: translateY(-6px) scale(1.05);
	box-shadow: 0 16px 30px -6px var(--c, var(--cyan));
}

.industry-name {
	font-size: 1rem;
	font-weight: 700;
	color: var(--dark-text);
	letter-spacing: -0.01em;
	transition: color 0.3s ease;
}
.industry-item:hover .industry-name { color: var(--c, var(--cyan)); }

/* ── Scroll-reveal: fade-up, staggered (triggered via .in-view) ── */
.industries-header,
.industry-item {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.industries-section.in-view .industries-header,
.industries-section.in-view .industry-item {
	opacity: 1;
	transform: none;
}
.industries-section.in-view .industries-header { transition-delay: 0s; }
.industries-section.in-view .industry-item:nth-child(1) { transition-delay: 0.10s; }
.industries-section.in-view .industry-item:nth-child(2) { transition-delay: 0.18s; }
.industries-section.in-view .industry-item:nth-child(3) { transition-delay: 0.26s; }
.industries-section.in-view .industry-item:nth-child(4) { transition-delay: 0.34s; }
.industries-section.in-view .industry-item:nth-child(5) { transition-delay: 0.42s; }
.industries-section.in-view .industry-item:nth-child(6) { transition-delay: 0.50s; }
.industries-section.in-view .industry-item:nth-child(7) { transition-delay: 0.58s; }

@media (prefers-reduced-motion: reduce) {
	.industries-header,
	.industry-item { opacity: 1; transform: none; transition: none; }
}

/* ── Responsive ── */
@media (max-width: 760px) {
	.industries-section { padding: 4rem 0 4.5rem; }
	.industries-grid    { gap: 2.25rem 2.25rem; max-width: 520px; }
	.industry-item      { flex-basis: 120px; }
	.industry-icon      { width: 78px; height: 78px; }
	.industry-icon svg  { width: 32px; height: 32px; }
}
@media (max-width: 420px) {
	.industries-grid { gap: 2rem 1.5rem; }
	.industry-item   { flex-basis: 40%; }
}



/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
	background: #efefef;
	color: #4d4d4d;
	font-size: 1rem;
	font-weight: 400;
	padding: 60px 0 0;
	position: relative;
}

.footer-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px 3rem;
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr 2fr;
	gap: 3rem;
	align-items: start;
}

/* Brand column */
.footer-logo-link { display: inline-block; margin-bottom: 0.75rem; }
.footer-logo      { width: 100%; max-width: 240px; height: auto; display: block; }

.footer-logo-text {
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--cyan);
	text-decoration: none;
	margin-bottom: 0.5rem;
	letter-spacing: -0.02em;
}


.footer-tagline {
	font-size: 0.82rem;
	color: #888;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

/* Column headings */
.footer-col-heading {
	font-size: 1.25rem;
	font-weight: 650;
	color: #4d4d4d;
	margin: 0 0 1.4rem;
	letter-spacing: -0.01em;
}

/* Links list */
.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.footer-links a {
	color: #4d4d4d;
	text-decoration: none;
	font-size: 1rem;
	transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--cyan); }

/* Locate Us */
.footer-address {
	font-size: 0.98rem;
	line-height: 1.75;
	color: #555;
	margin: 0 0 0.6rem;
}

.footer-contact-line {
	margin: 0 0 0.4rem;
	font-size: 0.9rem;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.footer-contact-line a {
	color: #4d4d4d;
	text-decoration: none;
	transition: color 0.2s;
	overflow-wrap: anywhere;
}

.footer-contact-line a:hover { color: var(--cyan); }

/* Social */
.footer-social-heading {
	font-size: 1.1rem;
	font-weight: 700;
	color: #111;
	margin: 1.4rem 0 0.9rem;
}

.footer-social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 0.8rem;
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1.5px solid #bbb;
	color: #555;
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-social a svg { width: 18px; height: 18px; }

.footer-social a:hover {
	border-color: var(--cyan);
	color: var(--cyan);
	background: rgba(0,195,212,0.07);
}

/* Copyright bar */
.footer-copyright {
	border-top: 1px solid #ddd;
	text-align: center;
	padding: 1.1rem 2rem;
}

.footer-copyright p {
	margin: 0;
	font-size: 0.95rem;
	color: #888;
}

/* Responsive */
@media (max-width: 1024px) {
	.footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem; }
}

@media (max-width: 600px) {
	.footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   INNER PAGES
   ============================================================ */
.site-main { padding-top: var(--header-h); min-height: 60vh; background: #f8fafc; }
.page-wrap, .entry-wrap { max-width: 900px; margin: 4rem auto; padding: 0 2rem; }
.page-card, .entry-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	margin-bottom: 2rem;
	box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
.page-title, .entry-title { font-size: 2rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--dark-text); }
.entry-content p, .entry-content li { color: var(--mid-text); line-height: 1.78; }

/* ============================================================
   DOCUMENT / LEGAL PAGES  —  Privacy Policy, Terms & Conditions
   Centered reading column, clean editorial typography
   ============================================================ */
.doc-page {
	background: var(--white);
	padding: clamp(3rem, 6vw, 5.5rem) 1.5rem clamp(4rem, 8vw, 6rem);
}
.doc-container {
	max-width: 820px;
	margin: 0 auto;
}

/* — Header (centered) — */
.doc-header {
	text-align: center;
	margin-bottom: 3.25rem;
}
.doc-breadcrumb {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--mid-text);
	margin-bottom: 1.1rem;
}
.doc-breadcrumb a { color: var(--mid-text); text-decoration: none; transition: color 0.2s var(--ease, ease); }
.doc-breadcrumb a:hover { color: var(--dark-text); }
.doc-breadcrumb__sep { color: #c4c8d0; }
.doc-breadcrumb__current { color: var(--dark-text); font-weight: 600; }
.doc-title {
	font-size: clamp(2rem, 4vw, 2.85rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
	color: var(--dark-text);
	margin: 0;
}

/* — Body content (left-aligned for readability) — */
.doc-content { color: var(--mid-text); font-size: 1.0625rem; }
.doc-content > p:first-child {           /* "Last Updated" line */
	text-align: center;
	color: #9aa0aa;
	font-size: 0.95rem;
	margin: 0 0 2.75rem;
}
.doc-content > p:first-child em { font-style: normal; }
.doc-content h2 {
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--dark-text);
	margin: 2.75rem 0 1rem;
}
.doc-content h3 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--dark-text);
	margin: 1.85rem 0 0.75rem;
}
.doc-content p { line-height: 1.8; margin: 0 0 1.15rem; }
.doc-content ul { margin: 0 0 1.5rem; padding-left: 1.35rem; }
.doc-content li { line-height: 1.8; margin-bottom: 0.5rem; }
.doc-content strong { color: var(--dark-text); font-weight: 600; }
.doc-content a {
	color: var(--dark-text);
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: opacity 0.2s var(--ease, ease);
}
.doc-content a:hover { opacity: 0.7; }

@media (max-width: 600px) {
	.doc-content { font-size: 1rem; }
	.doc-content h2 { font-size: 1.25rem; }
}

/* ============================================================
   ERP CALL-TO-ACTION BAND  —  red → pink gradient
   ============================================================ */
.erp-cta-section {
	position: relative;
	background: var(--white);
	padding: 0;
}

.erp-cta-card {
	position: relative;
	width: 100%;
	margin: 0;
	border-radius: 0;                /* full-bleed band, edge to edge */
	background: linear-gradient(125deg, #d6263a 0%, #dc3545 36%, #e83e8c 100%);
	overflow: hidden;
	color: #ffffff;
	isolation: isolate;
}

/* faint dotted tech texture */
.erp-cta-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image: radial-gradient(rgba(255,255,255,0.10) 1.5px, transparent 1.6px);
	background-size: 26px 26px;
	-webkit-mask-image: linear-gradient(105deg, #000 35%, transparent 80%);
	        mask-image: linear-gradient(105deg, #000 35%, transparent 80%);
	opacity: 0.6;
}

/* soft decorative glows */
.erp-cta-glow,
.erp-cta-glow-2 {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}
.erp-cta-glow {
	width: 520px; height: 400px;
	top: -200px; right: -120px;
	background: radial-gradient(circle, rgba(255,255,255,0.26), transparent 70%);
}
.erp-cta-glow-2 {
	width: 360px; height: 360px;
	bottom: -160px; left: -90px;
	background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%);
}

.erp-cta-inner {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 3.5rem;
	padding: 1.75rem 2.5rem;
}

.erp-cta-body { flex: 1; max-width: 720px; }

.erp-cta-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.25);
	padding: 0.42rem 1rem;
	border-radius: var(--radius-pill);
	margin-bottom: 1.2rem;
}

.erp-cta-body h2 {
	font-size: 2.45rem;
	font-weight: 800;
	line-height: 1.14;
	letter-spacing: -0.015em;
	margin-bottom: 0.95rem;
}

.erp-cta-desc {
	font-size: 1.04rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.94);
	margin-bottom: 1.7rem;
	max-width: 620px;
}

.erp-cta-features {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, max-content);
	gap: 0.7rem 1rem;
	margin-bottom: 2rem;
}
.erp-cta-features li {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.92rem;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.13);
	border: 1px solid rgba(255, 255, 255, 0.22);
	padding: 0.5rem 1.05rem 0.5rem 0.6rem;
	border-radius: var(--radius-pill);
}
.erp-cta-features svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	padding: 3px;
}

.erp-cta-action { margin-top: 0.25rem; }

.erp-cta-btn {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: #ffffff;
	color: #dc3545;
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	white-space: nowrap;
	padding: 1.1rem 2.4rem;
	border-radius: var(--radius-pill);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
	transition: transform var(--ease), box-shadow var(--ease), color var(--ease);
}
.erp-cta-btn::before {                       /* shine sweep on hover */
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 55%;
	height: 100%;
	background: linear-gradient(110deg, transparent, rgba(232,62,140,0.22), transparent);
	transform: skewX(-18deg);
	transition: left 0.6s ease;
}
.erp-cta-btn svg { width: 18px; height: 18px; transition: transform var(--ease); }
.erp-cta-btn:hover {
	color: #e83e8c;
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}
.erp-cta-btn:hover::before { left: 140%; }
.erp-cta-btn:hover svg { transform: translateX(3px); }

/* ── Loudspeaker visual (left side of the band) ── */
.erp-cta-visual {
	position: relative;
	flex: 0 0 320px;
	width: 320px;
	height: 300px;
	display: grid;
	place-items: center;
	pointer-events: none;
}

.erp-visual-halo {
	position: absolute;
	width: 290px;
	height: 290px;
	border-radius: 50%;
	z-index: 0;
	background: radial-gradient(circle, rgba(255,255,255,0.38), rgba(255,255,255,0.07) 55%, transparent 72%);
	animation: erp-halo 4s ease-in-out infinite;
}

.erp-speaker-img {
	position: relative;
	z-index: 3;
	width: 290px;
	height: auto;
	transform-origin: center bottom;
	filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.34));
	animation: erp-speaker-float 4s ease-in-out infinite;
}

/* concentric sound waves pulsing outward */
.erp-speaker-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 155px;
	height: 155px;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	opacity: 0;
	z-index: 1;
	transform: translate(-50%, -50%) scale(0.4);
	animation: erp-speaker-pulse 2.8s ease-out infinite;
}
.erp-speaker-ring:nth-child(3) { animation-delay: 0.9s; }
.erp-speaker-ring:nth-child(4) { animation-delay: 1.8s; }

@keyframes erp-speaker-pulse {
	0%   { transform: translate(-50%, -50%) scale(0.4); opacity: 0; }
	18%  { opacity: 0.65; }
	100% { transform: translate(-50%, -50%) scale(1.85); opacity: 0; }
}
@keyframes erp-speaker-float {
	0%, 100% { transform: translateY(0)     rotate(-4deg); }
	50%      { transform: translateY(-12px) rotate(2deg);  }
}
@keyframes erp-halo {
	0%, 100% { transform: scale(1);    opacity: 0.85; }
	50%      { transform: scale(1.08); opacity: 1;    }
}

/* ── Scroll-reveal entrance (added by JS via .in-view) ── */
@keyframes erp-rise {
	from { opacity: 0; transform: translateY(22px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes erp-pop {
	from { opacity: 0; transform: scale(0.82); }
	to   { opacity: 1; transform: scale(1); }
}
.erp-cta-section.in-view .erp-cta-visual      { animation: erp-pop  0.8s 0.05s both; }
.erp-cta-section.in-view .erp-cta-kicker      { animation: erp-rise 0.6s 0.10s both; }
.erp-cta-section.in-view .erp-cta-body h2     { animation: erp-rise 0.6s 0.18s both; }
.erp-cta-section.in-view .erp-cta-desc        { animation: erp-rise 0.6s 0.26s both; }
.erp-cta-section.in-view .erp-cta-features li { animation: erp-rise 0.5s both; }
.erp-cta-section.in-view .erp-cta-features li:nth-child(1) { animation-delay: 0.32s; }
.erp-cta-section.in-view .erp-cta-features li:nth-child(2) { animation-delay: 0.39s; }
.erp-cta-section.in-view .erp-cta-features li:nth-child(3) { animation-delay: 0.46s; }
.erp-cta-section.in-view .erp-cta-features li:nth-child(4) { animation-delay: 0.53s; }
.erp-cta-section.in-view .erp-cta-action      { animation: erp-rise 0.6s 0.6s both; }

@media (prefers-reduced-motion: reduce) {
	.erp-speaker-img,
	.erp-visual-halo,
	.erp-speaker-ring,
	.erp-cta-section.in-view .erp-cta-visual,
	.erp-cta-section.in-view .erp-cta-kicker,
	.erp-cta-section.in-view .erp-cta-body h2,
	.erp-cta-section.in-view .erp-cta-desc,
	.erp-cta-section.in-view .erp-cta-features li,
	.erp-cta-section.in-view .erp-cta-action { animation: none; }
	.erp-speaker-ring { opacity: 0; }
}

@media (max-width: 900px) {
	.erp-cta-inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 2.5rem 2rem;
		gap: 1.75rem;
	}
	.erp-cta-body h2 { font-size: 1.85rem; }
	.erp-cta-visual  { flex: none; width: 220px; height: 220px; }
	.erp-visual-halo { width: 210px; height: 210px; }
	.erp-speaker-img { width: 210px; }
	.erp-speaker-ring { width: 120px; height: 120px; }
}
@media (max-width: 600px) {
	.erp-cta-inner { padding: 2.25rem 1.25rem; }
	.erp-cta-body h2 { font-size: 1.6rem; }
	.erp-cta-features { grid-template-columns: 1fr; }
	.erp-cta-action { width: 100%; }
	.erp-cta-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   PROJECTS SECTION  —  Horizontal Swiper gallery
   ============================================================ */

.projects-section {
	position: relative;
	background: #ffffff;
	overflow: hidden;
	height: 600px;
	margin-top: 3rem;
}

/* ── Swiper fills the section ── */
.projects-swiper {
	width: 100%;
	height: 100%;
	cursor: ew-resize;
}

.proj-slide {
	height: 100%;
	width: 100%;
}

/* ══════════════════════════════════════
   SLIDE 1 — Intro layout
   ══════════════════════════════════════ */
.proj-intro-slide {
	display: grid;
	grid-template-columns: 40% 60%;
	height: 100%;
}

.proj-intro-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
	padding: 3.5rem 3.5rem 3.5rem 6rem;
	background: #ffffff;
	gap: 1.1rem;
}

.proj-kicker {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cyan);
}

.proj-intro-text h2 {
	font-size: clamp(2rem, 3.2vw, 2.8rem);
	font-weight: 900;
	color: var(--dark-text);
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0;
}

.proj-intro-text p {
	font-size: 0.93rem;
	line-height: 1.78;
	color: var(--mid-text);
	margin: 0;
	max-width: 400px;
	text-align: justify;
}

/* Arrow button in intro — outlined circle, dark on white */
.proj-arrow-btn {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: transparent;
	border: 2px solid var(--dark-text);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dark-text);
	margin-top: 0.5rem;
	transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
	flex-shrink: 0;
	align-self: flex-start;
}
.proj-arrow-btn svg { width: 22px; height: 22px; }
.proj-arrow-btn:hover {
	background: var(--dark-text);
	color: #fff;
	transform: translateX(5px);
}

.proj-intro-visual {
	height: 100%;
	overflow: hidden;
}

/* ══════════════════════════════════════
   SLIDE 2 & 3 — Asymmetric grid
   ══════════════════════════════════════ */
.proj-grid-slide {
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: 100%;
	gap: 16px;
	padding: 16px;
	background: #ffffff;
}

.proj-col-left {
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 100%;
}

.proj-left-top {
	flex: 1 1 55%;
	overflow: hidden;
}

.proj-left-bottom {
	flex: 0 0 42%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	overflow: hidden;
}

.proj-col-right {
	height: 100%;
	overflow: hidden;
}

/* ══════════════════════════════════════
   PROJECT CARD
   ══════════════════════════════════════ */
.proj-card {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #1a1c26;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.proj-card-fill { width: 100%; height: 100%; }

/* Placeholder tint when no image */
.proj-card-placeholder {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #d0d5e0 0%, #bcc1cf 100%);
}

/* Dark gradient overlay — hidden until hover */
.proj-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0,0,0,0.78) 0%,
		rgba(0,0,0,0.30) 55%,
		rgba(0,0,0,0.05) 100%
	);
	opacity: 0;
	transition: opacity 0.35s ease;
}
.proj-card:hover .proj-card-overlay { opacity: 1; }

/* Image — zooms in on hover */
.proj-card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.6s ease;
	z-index: 0;
}
.proj-card:hover .proj-card-img { transform: scale(1.10); }

/* Card text — hidden until hover */
.proj-card-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.1rem 1.25rem;
	z-index: 2;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.35s ease, transform 0.35s ease;
}
.proj-card:hover .proj-card-info {
	opacity: 1;
	transform: translateY(0);
}

.proj-card-info h3 {
	font-size: 1rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 0.2rem;
	line-height: 1.25;
}

.proj-card-info p {
	font-size: 0.75rem;
	font-weight: 500;
	color: rgba(255,255,255,0.60);
	margin: 0;
	letter-spacing: 0.04em;
}

/* ── "VIEW PROJECTS" circular badge ── */
.proj-view-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.85);
	opacity: 0;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: var(--cyan);
	color: #111318;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 0.65rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.3;
	z-index: 3;
	transition: opacity 0.3s ease, transform 0.3s ease, left 0.15s ease, top 0.15s ease, background 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 8px 28px rgba(0,195,212,0.45);
}
.proj-card:hover .proj-view-btn {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}
.proj-view-btn:hover {
	background: #00e0f3;
	transform: translate(-50%, -50%) scale(1.10);
	box-shadow: 0 14px 40px rgba(0,195,212,0.60);
	color: #111318;
}

/* ── Prev / Next nav buttons ── */
.proj-nav {
	position: absolute;
	bottom: 1.5rem;
	right: 1.5rem;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(0,0,0,0.06);
	border: 1px solid rgba(0,0,0,0.15);
	color: var(--dark-text);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.proj-nav svg { width: 18px; height: 18px; }
.proj-nav:hover {
	background: var(--dark-text);
	border-color: var(--dark-text);
	color: #fff;
	transform: scale(1.1);
}

.proj-nav-prev { right: 5.5rem; }

/* ── Slide counter ── */
.proj-counter {
	position: absolute;
	bottom: 1.75rem;
	left: 4rem;
	display: flex;
	align-items: baseline;
	gap: 0.3rem;
	z-index: 10;
	font-weight: 700;
	color: var(--mid-text);
	font-size: 0.85rem;
}
.proj-counter-current { color: var(--dark-text); font-size: 1.6rem; font-weight: 900; line-height: 1; }
.proj-counter-sep     { color: var(--border); }

/* ── Responsive ── */
@media (max-width: 900px) {
	.projects-section { height: auto; }
	.proj-intro-slide,
	.proj-grid-slide  { grid-template-columns: 1fr; height: auto; }
	.proj-intro-text  { padding: 2.5rem 1.5rem; }
	.proj-intro-visual,
	.proj-col-left,
	.proj-col-right   { height: 260px; }
	.proj-left-top    { flex: 1; }
	.proj-left-bottom { flex: 0 0 130px; }
	.proj-counter     { left: 1.5rem; }
}

@media (max-width: 600px) {
	.proj-intro-text  { padding: 2rem 1.25rem; }
	.proj-nav         { bottom: 1rem; right: 1rem; }
	.proj-nav-prev    { right: 4rem; }
}

/* Projects — roomier, non-cramped image proportions on mobile.
   Stacks the asymmetric grid into: big top card, a 2-up row, and a
   tall card, each at a comfortable height instead of tiny 130px boxes. */
@media (max-width: 900px) {
	.proj-intro-visual { height: 300px; }
	.proj-col-left     { height: auto; }
	.proj-col-right    { height: 320px; }
	.proj-left-top     { flex: none; height: 200px; }
	.proj-left-bottom  { flex: none; height: 150px; }
}
@media (max-width: 600px) {
	.proj-intro-visual { height: 230px; }
	.proj-col-right    { height: 240px; }
	.proj-left-top     { height: 165px; }
	.proj-left-bottom  { height: 125px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
	.hero-inner { padding-left: 6rem; padding-right: 2.5rem; }
}

@media (max-width: 900px) {
	.hero-inner {
		grid-template-columns: 1fr;
		padding: calc(var(--header-h) + 3rem) 2.5rem 3.5rem 5.5rem;
		text-align: center;
	}
	.hero-content  { align-items: center; }
	.hero-subtext  { max-width: 100%; text-align: center; }
	.heading-line-2 { justify-content: center; }
	.hero-visual   { min-height: 280px; }
	.hero-visual-inner { max-width: 300px; }
	.section-container { grid-template-columns: 1fr; gap: 2.5rem; }
	.cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
	:root { --header-h: 68px; }
	.header-inner { padding: 0 1.25rem; }
	.site-nav { display: none; }
	.mobile-menu-toggle { display: flex; }
	/* Move the CTA into the hamburger menu on mobile */
	.header-cta .btn-get-quote { display: none; }
	.hero-card { margin: calc(-1 * var(--header-h)) 0 0; }
	.hero-inner { padding-left: 5rem; }
	.hero-social { left: 0.75rem; }
	.heading-line-1, .hero-highlight, .heading-white { font-size: 2rem; }
	.section-about, .section-cards-grid { padding: 3.5rem 1.25rem; }
	.about-img { height: 260px; }
	/* keep the white logo tab flush with the smaller mobile header padding */
	body:has(.hero-section) .site-branding {
		margin-left: -1.25rem;
		padding: 0 1rem 0 1.25rem;
		border-radius: 0 0 16px 0;
	}
}

@media (max-width: 480px) {
	.hero-social { display: none; }
	.hero-card { margin: calc(-1 * var(--header-h)) 0 0; border-radius: 0; }
	.hero-inner { padding: calc(var(--header-h) + 2.5rem) 1.25rem 2.5rem; }
	.heading-line-1, .hero-highlight, .heading-white { font-size: 1.75rem; }
	.btn-explore { font-size: 0.76rem; padding: 0.85rem 1.75rem; }
}

/* ── Mobile nav ── */
.site-nav.nav-open {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: fixed;
	top: var(--header-h);
	left: 0;
	right: 0;
	background: var(--white);
	border-bottom: 1px solid var(--border);
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	padding: 1.25rem;
	z-index: 199;
}
.site-nav.nav-open .nav-menu {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.15rem;
	width: 100%;
}
.site-nav.nav-open .nav-menu li a {
	font-size: 1rem;
	padding: 0.65rem 1rem;
	width: 100%;
	border-radius: 0.5rem;
}
.site-nav.nav-open .nav-menu li a:hover { background: #f0fdfe; color: var(--cyan-dark); }

/* CTA revealed under the last menu item, left-aligned with the links */
.site-nav.nav-open .nav-cta-mobile {
	display: inline-flex;
	width: auto;
	align-self: flex-start;
	margin: 0.85rem 0 0 1rem;
}

/* ── Mobile dropdown (Company) ── */
.site-nav.nav-open .menu-item-has-children {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
}
.site-nav.nav-open .menu-item-has-children > a { flex: 1; width: auto; }
.site-nav.nav-open .dropdown-toggle {
	color: var(--dark-text);
	padding: 0.65rem 0.85rem;
}
.site-nav.nav-open .dropdown-toggle svg { width: 16px; height: 16px; }
.site-nav.nav-open .menu-item-has-children.is-open > .dropdown-toggle svg { transform: rotate(180deg); }

.site-nav.nav-open .sub-menu {
	position: static;
	transform: none;
	opacity: 1;
	visibility: visible;
	display: none;
	flex-basis: 100%;
	min-width: 0;
	padding: 0.15rem 0 0.35rem 0.85rem;
	margin: 0;
	background: transparent;
	border: none;
	box-shadow: none;
}
.site-nav.nav-open .sub-menu::before { display: none; }
.site-nav.nav-open .menu-item-has-children.is-open > .sub-menu { display: block; }
.site-nav.nav-open .sub-menu li a { font-size: 0.95rem; }

/* ── Mobile nav / Company submenu — visibility & access fixes ── */
@media (max-width: 768px) {
	/* Open panel scrolls if it's taller than the viewport (short phones) */
	.site-nav.nav-open {
		max-height: calc(100vh - var(--header-h));
		max-height: calc(100dvh - var(--header-h));
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	/* Reveal the submenu cleanly when its parent is expanded */
	.site-nav.nav-open .menu-item-has-children.is-open > .sub-menu { display: block; }
	.site-nav.nav-open .sub-menu {
		width: 100%;
		flex-basis: 100%;
		padding: 0.2rem 0 0.4rem 0.65rem;
		margin: 0.1rem 0 0.4rem;
		border-left: 2px solid rgba(0, 195, 212, 0.45);
	}
	.site-nav.nav-open .sub-menu li { width: 100%; }
	.site-nav.nav-open .sub-menu li a {
		display: block;
		width: 100%;
		white-space: normal;        /* wrap instead of clipping on narrow screens */
		font-size: 0.95rem;
		padding: 0.6rem 0.9rem;
	}
	/* Larger, finger-friendly chevron tap target */
	.site-nav.nav-open .dropdown-toggle {
		min-width: 46px;
		min-height: 46px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	/* Guarantee submenu text contrast in BOTH menu themes
	   (white-on-dark on the homepage hero header, dark-on-white elsewhere) */
	.site-nav.nav-open .sub-menu li a { color: var(--dark-text) !important; }
	.site-nav.nav-open .sub-menu li a:hover { background: #f0fdfe; color: var(--cyan-dark) !important; }
	/* Only the dark homepage hero menu flips submenu text to light */
	body:has(.hero-section) .site-nav.nav-open .sub-menu li a { color: rgba(255, 255, 255, 0.9) !important; }
	body:has(.hero-section) .site-nav.nav-open .sub-menu li a:hover { background: rgba(0, 195, 212, 0.14); color: var(--cyan) !important; }

	/* Chrome paint bug fix: the fixed menu's backdrop-filter doesn't repaint
	   the accordion submenu until a reflow (hover/inspect), so the items look
	   blank until you interact. Drop the filter + use a solid dark background
	   on mobile, and promote the open submenu to its own layer so it paints
	   immediately. */
	body:has(.hero-section) .site-nav.nav-open {
		background: #0d1119;
		-webkit-backdrop-filter: none;
		        backdrop-filter: none;
	}
	.site-nav.nav-open .menu-item-has-children.is-open > .sub-menu {
		transform: translateZ(0);
	}
}

/* ============================================================
   SERVICES SECTION  —  "What we do?" Swiper gallery
   ============================================================ */

/* Service brand colours */
:root {
	--svc-blue:        #2563eb;
	--svc-orange:      #ea580c;
	--svc-skyblue:     #0891b2;
	--svc-brandblue:   #4f46e5;
	--svc-green:       #059669;
	--svc-lightorange: #f97316;
	--svc-seoblue:     #1d4ed8;
}

/* reference: .services-block { padding: 0 125px 60px } */
.services-section {
	padding: 0 125px 60px;
	background: var(--white);
}

/* transparent — section handles all spacing directly, no inner wrap */
.services-wrap { width: 100%; }

/* reference: h2 { text-align:center; font-size:3.5rem; font-weight:bold;
                   margin-top:0; overflow:hidden } */
.services-main-heading {
	font-family: "Poppins", Inter, sans-serif;
	text-align: center;
	font-size: 3.5rem;
	font-weight: bold;
	color: var(--dark-text);
	margin-top: 0;
	margin-bottom: 0.5rem;
	overflow: hidden;
}

/* reference: .cards { border-radius:15px; padding:90px 0 80px;
                        background-color:#fff;
                        box-shadow:2px 8px 16px 4px rgba(0,0,0,.08) }
              .gallery-container { display:flex;
                                   justify-content:space-between } */
.services-gallery {
	display: flex;
	justify-content: space-between;
	align-items: stretch;     /* both columns share the full panel height */
	padding: 50px 0 80px;
	border-radius: 15px;
	overflow: hidden;         /* clips images to the gallery card boundary */
	background: #ffffff;
	color: #0a0606;
	box-shadow: 2px 8px 16px 4px rgba(0,0,0,0.08);
}

/* reference: gallery-thumbs width = 25% */
.svc-thumbs-outer {
	flex: 0 0 25%;
	position: relative;
	background: var(--white);
}

/* Pinned to the panel height (520px) so both columns match and clip cleanly.
   overflow:hidden keeps tabs inside the card; extra tabs scroll via the chevrons.
   44px top/bottom padding leaves room for the up/down chevrons. */
.svc-thumbs {
	width: 100%;
	height: 400px;
	padding-top: 44px;
	padding-bottom: 44px;
	overflow: hidden;
	position: relative;
}

.svc-thumbs .swiper-wrapper {
	flex-direction: column;
}

.svc-thumb {
	display: flex !important;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 80px !important;   /* 432px visible area ÷ 4 = exactly 4 tabs shown */
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--dark-text);
	background: var(--white);
	cursor: pointer;
	transition: background 0.25s, color 0.25s;
	padding: 0 1rem;
	user-select: none;
	line-height: 1.3;
}

.svc-thumb:hover { background: #f0f4ff; }

/* Active tab — rounded left corners + same gradient as the panel; the right edge
   overlaps the panel (margin-right:-1px, z-index) so there is no white seam. */
.svc-thumb.swiper-slide-thumb-active {
	color: #fff;
	border-radius: 1rem 0 0 1rem;
	margin-right: -1px;
	position: relative;
	z-index: 2;
}

.svc-blue-tab.swiper-slide-thumb-active        { background: linear-gradient(135deg, #1e40af 0%, #2563eb 52%, #4f8ef5 100%); }
.svc-orange-tab.swiper-slide-thumb-active      { background: linear-gradient(135deg, #9a2d0b 0%, #ea580c 52%, #f78b4a 100%); }
.svc-skyblue-tab.swiper-slide-thumb-active     { background: linear-gradient(135deg, #0369a1 0%, #0891b2 50%, #22c2e0 100%); }
.svc-brandblue-tab.swiper-slide-thumb-active   { background: linear-gradient(135deg, #312e81 0%, #4f46e5 52%, #7c74f0 100%); }
.svc-green-tab.swiper-slide-thumb-active       { background: linear-gradient(135deg, #064e3b 0%, #059669 52%, #2ddda8 100%); }
.svc-lightorange-tab.swiper-slide-thumb-active { background: linear-gradient(135deg, #c2410c 0%, #f97316 52%, #fbac6e 100%); }
.svc-seoblue-tab.swiper-slide-thumb-active     { background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 52%, #4a7fe8 100%); }

/* ── Up / Down navigation arrows ── */
.svc-thumbs-outer .swiper-button-prev,
.svc-thumbs-outer .swiper-button-next {
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 44px;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--mid-text);
	z-index: 10;
	transition: color 0.2s, opacity 0.2s;
}
.svc-thumbs-outer .swiper-button-prev {
	top: 0;
	background: linear-gradient(to bottom, #fff 40%, rgba(255,255,255,0));
}
.svc-thumbs-outer .swiper-button-next {
	bottom: 0;
	top: auto;
	background: linear-gradient(to top, #fff 40%, rgba(255,255,255,0));
}

.svc-thumbs-outer .swiper-button-prev:hover,
.svc-thumbs-outer .swiper-button-next:hover { color: var(--dark-text); }

/* ↑ Up triangle */
.svc-thumbs-outer .swiper-button-prev::after {
	content: '' !important;
	display: inline-block;
	width: 0; height: 0;
	border-left:  8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 9px solid currentColor;
}

/* ↓ Down triangle */
.svc-thumbs-outer .swiper-button-next::after {
	content: '' !important;
	display: inline-block;
	width: 0; height: 0;
	border-left:  8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 9px solid currentColor;
}

/* Keep arrows visible at the ends (faded) so the up chevron always shows */
.svc-thumbs-outer .swiper-button-disabled { opacity: 0.3; pointer-events: none; }

/* ── Main content panel (right column) ── */
.svc-main-outer {
	flex: 1;
	min-width: 0;
	position: relative;
	overflow: visible;      /* let images float into the 80px white space above */
}

/* Override Swiper's default overflow:hidden so images can project upward */
.svc-main.swiper {
	width: 100%;
	height: 450px;
	overflow: visible !important;
}

.svc-main .swiper-slide {
	width: 100% !important;
	height: 100%;
}

/* Panel: CSS clips gradient background to border-radius even with overflow:visible —
   so the right corners are visually rounded, and images (children) can still project
   above/below the panel into the gallery's white padding zone. */
.svc-panel {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: visible;
	border-radius: 1rem 1rem 1rem 1rem;
}

/* Panel colour backgrounds — gradients matching the reference */
.svc-blue-panel        { background: linear-gradient(135deg, #1e40af 0%, #2563eb 52%, #4f8ef5 100%); }
.svc-orange-panel      { background: linear-gradient(135deg, #9a2d0b 0%, #ea580c 52%, #f78b4a 100%); }
.svc-skyblue-panel     { background: linear-gradient(135deg, #0369a1 0%, #0891b2 50%, #22c2e0 100%); }
.svc-brandblue-panel   { background: linear-gradient(135deg, #312e81 0%, #4f46e5 52%, #7c74f0 100%); }
.svc-green-panel       { background: linear-gradient(135deg, #064e3b 0%, #059669 52%, #2ddda8 100%); }
.svc-lightorange-panel { background: linear-gradient(135deg, #c2410c 0%, #f97316 52%, #fbac6e 100%); }
.svc-seoblue-panel     { background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 52%, #4a7fe8 100%); }

/* Decorative soft circle bottom-right corner inside the panel */
.svc-panel::before {
	content: '';
	position: absolute;
	bottom: -80px;
	right:  -80px;
	width:  320px;
	height: 320px;
	border-radius: 50%;
	background: rgba(255,255,255,0.07);
	pointer-events: none;
	z-index: 0;
}

.svc-panel-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	height: 100%;
	padding: 2.5rem 2rem 2.5rem 2.5rem;
	gap: 1.5rem;
}

/* ── Left: text content (≈46%, vertically centered) ── */
.svc-content {
	flex: 0 0 46%;
	color: #fff;
}

.svc-content h3 {
	font-size: 1.2rem;
	font-weight: 800;
	margin-bottom: 0.75rem;
	line-height: 1.3;
	color: #fff;
}

.svc-content p {
	font-size: 0.86rem;
	line-height: 1.75;
	color: rgba(255,255,255,0.85);
	margin-bottom: 0.9rem;
}

.svc-client-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.svc-client-list li {
	font-size: 0.84rem;
	font-weight: 600;
	color: rgba(255,255,255,0.92);
	padding-left: 1.4rem;
	position: relative;
}

.svc-client-list li::before {
	content: '»';
	position: absolute;
	left: 0;
	color: rgba(255,255,255,0.65);
	font-size: 0.8rem;
}

/* ── Right: image column — flex item, images positioned absolute within it.
   Images use negative top/bottom to project into the gallery's 90px/80px
   white padding zone. Gallery overflow:hidden keeps them inside the card. */
.svc-images {
	flex: 1;
	position: relative;
	align-self: stretch;
	overflow: visible;
	min-height: 380px;
}

.svc-img {
	position: absolute;
	border-radius: 15px;
	overflow: hidden;
	background: rgba(255,255,255,0.18);
	box-shadow: 2px 8px 16px 4px rgba(0,0,0,0.14);
}

.svc-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ── Pattern A (.pat-a — services 1,3,5,7) — like the SEO panel ──
   PYRAMID: one large image on TOP projecting above the panel,
   two smaller images side-by-side at the BOTTOM, inside the panel. */
.svc-images.pat-a .svc-img-1 {   /* large, top-centre, projects above panel */
	top: -90px;
	left: 24%;
	width: 270px;
	height: 200px;
	z-index: 3;
}
.svc-images.pat-a .svc-img-2 {   /* small, bottom-left, inside */
	bottom: 22px;
	left: 0;
	width: 210px;
	height: 195px;
	z-index: 2;
}
.svc-images.pat-a .svc-img-3 {   /* small, bottom-right, inside, slightly higher */
	bottom: 46px;
	right: 0;
	width: 210px;
	height: 195px;
	z-index: 1;
}

/* ── Pattern B (.pat-b — services 2,4,6) — like the SMO panel ──
   INVERTED PYRAMID: two smaller images side-by-side on TOP projecting
   above the panel, one large image centred at the BOTTOM, inside. */
.svc-images.pat-b .svc-img-2 {   /* small, top-left, projects above */
	top: -72px;
	left: 0;
	width: 210px;
	height: 195px;
	z-index: 2;
}
.svc-images.pat-b .svc-img-3 {   /* small, top-right, projects above, higher */
	top: -96px;
	right: -50px;
	width: 210px;
	height: 200px;
	z-index: 1;
}
.svc-images.pat-b .svc-img-1 {   /* large, bottom-centre, inside */
	bottom: 22px;
	left: 24%;
	width: 270px;
	height: 220px;
	z-index: 3;
}

/* ── Entry animations ── */
/* All content starts invisible; JS adds .svc-anim class on slide activate */
.svc-content h3,
.svc-content p,
.svc-client-list,
.svc-img-1,
.svc-img-2,
.svc-img-3 { opacity: 0; }

.svc-anim .svc-content h3  { animation: svcTextIn  0.45s 0s     ease both; }
.svc-anim .svc-content p   { animation: svcTextIn  0.45s 0.10s  ease both; }
.svc-anim .svc-client-list { animation: svcTextIn  0.45s 0.18s  ease both; }
.svc-anim .svc-img-1       { animation: svcImgDrop 0.55s 0.10s  ease both; }  /* top-left drops in  */
.svc-anim .svc-img-2       { animation: svcImgDrop 0.55s 0.22s  ease both; }  /* top-right drops in */
.svc-anim .svc-img-3       { animation: svcImgRise 0.55s 0.38s  ease both; }  /* bottom rises up    */

@keyframes svcTextIn {
	from { opacity: 0; transform: translateX(-28px); }
	to   { opacity: 1; transform: translateX(0); }
}
@keyframes svcImgDrop {
	from { opacity: 0; transform: translateY(-22px) scale(0.95); }
	to   { opacity: 1; transform: translateY(0)     scale(1); }
}
@keyframes svcImgRise {
	from { opacity: 0; transform: translateY(22px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
	.services-section { padding: 0 2.5rem 3.75rem; }
}

@media (max-width: 900px) {
	.services-section    { padding: 2rem 1.5rem 3rem; }
	.services-gallery    { flex-direction: column; padding: 0; border-radius: 12px; }
	.svc-thumbs-outer    { flex: 0 0 auto; width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
	.svc-thumbs          { height: auto; padding: 0 44px; }   /* horizontal: pad sides for the L/R arrows */
	.svc-thumbs .swiper-wrapper { flex-direction: row; }
	.svc-thumb           { height: 52px !important; min-width: 120px; white-space: nowrap; font-size: 1rem; }
	.svc-thumbs-outer .swiper-button-prev { top: 0; bottom: 0; right: auto; left: 0; width: 36px; height: 100%; border-bottom: none; border-right: 1px solid var(--border); background: linear-gradient(to right, #fff 40%, transparent); }
	.svc-thumbs-outer .swiper-button-next { top: 0; bottom: 0; left: auto; right: 0;  width: 36px; height: 100%; border-top: none;    border-left: 1px solid var(--border); background: linear-gradient(to left, #fff 40%, transparent); }
	.svc-thumbs-outer .swiper-button-prev::after { border: none; border-right: 9px solid currentColor; border-top: 8px solid transparent; border-bottom: 8px solid transparent; }
	.svc-thumbs-outer .swiper-button-next::after { border: none; border-left:  9px solid currentColor; border-top: 8px solid transparent; border-bottom: 8px solid transparent; }
	.svc-main.swiper     { height: 440px; overflow: hidden !important; }
	.svc-panel           { border-radius: 0; overflow: hidden; }
	.svc-panel-inner     { flex-direction: column; padding: 1.75rem; gap: 1.25rem; }
	.svc-content         { flex: 0 0 auto; }
	.svc-images          { position: static; flex: 0 0 auto; min-height: 0; overflow: visible; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.55rem; align-items: end; margin-top: auto; }
	/* reset projecting positions — stack 3 images within the slide */
	.svc-images.pat-a .svc-img-1,
	.svc-images.pat-b .svc-img-1 { top: 0; left: 0;   right: auto; bottom: auto; width: 47%; height: 155px; z-index: 3; }
	.svc-images.pat-a .svc-img-2,
	.svc-images.pat-b .svc-img-2 { top: 0; right: 0;  left: auto;  bottom: auto; width: 47%; height: 155px; z-index: 2; }
	.svc-images.pat-a .svc-img-3,
	.svc-images.pat-b .svc-img-3 { bottom: 0; left: 5%; top: auto; right: auto; width: 66%; height: 115px; z-index: 1; }
	.svc-images.pat-a .svc-img, .svc-images.pat-b .svc-img {
			position: static; inset: auto; width: auto; height: auto; z-index: auto;
		}
		.svc-images.pat-a .svc-img-1,
		.svc-images.pat-b .svc-img-1 { grid-column: 1 / -1; }   /* large image full width */
		.svc-images.pat-b .svc-img-1 { order: 3; }              /* B: large below the smalls */
		.svc-images.pat-b .svc-img-2 { order: 1; }
		.svc-images.pat-b .svc-img-3 { order: 2; }
		/* Single row: all 3 images equal-sized square cards, evenly spaced */
		.svc-images.pat-a .svc-img,   .svc-images.pat-b .svc-img,
		.svc-images.pat-a .svc-img-1, .svc-images.pat-b .svc-img-1,
		.svc-images.pat-a .svc-img-2, .svc-images.pat-b .svc-img-2,
		.svc-images.pat-a .svc-img-3, .svc-images.pat-b .svc-img-3 {
			position: static; inset: auto; z-index: auto; order: 0;
			grid-column: auto;
			width: 100%; height: auto;
			aspect-ratio: 1 / 1;
		}
		.svc-bg-img { width: 100%; height: 100%; border-radius: 0; opacity: 0.25; }
}

/* ── "What we do" — mobile card carousel ──
   Replaces the tab-driven gallery with a finger-swipeable, snapping
   row of cards. Tab nav + arrows are hidden; slim dots are the only cue. */
@media (max-width: 900px) {
	.svc-thumbs-outer { display: none; }

	/* One narrow, ELONGATED card per view (no peek): the slide spans the full
	   width but the card itself is centered and narrower → taller look. */
	.svc-main .swiper-slide {
		width: 100% !important;
		height: 100%;
	}
	.svc-panel {
		max-width: 290px;
		margin: 0 auto;
		border-radius: 18px;
		overflow: hidden;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
		height: 100%;
	}
	.svc-panel-inner { height: 100%; }

	/* Per-card entrance animation is re-enabled (the desktop keyframes apply):
	   as you swipe to each card, its text and images animate in — JS adds
	   .svc-anim to the active slide. With one card per view there are no
	   blank peeking neighbours, so we no longer force content visible. */

	/* Slim dot indicator below the carousel (no arrows) */
	.svc-main-outer .svc-pagination {
		position: static;
		display: flex;
		justify-content: center;
		gap: 0.4rem;
		margin-top: 0.9rem;
	}
	.svc-main-outer .svc-pagination .swiper-pagination-bullet {
		width: 7px; height: 7px; margin: 0 !important;
		background: var(--mid-text); opacity: 0.4; border-radius: 4px;
		transition: opacity 0.25s ease, width 0.25s ease, background 0.25s ease;
	}
	.svc-main-outer .svc-pagination .swiper-pagination-bullet-active {
		opacity: 1; width: 20px; background: var(--cyan);
	}
}

@media (min-width: 901px) {
	.svc-pagination { display: none; }     /* dots never show on desktop */
}

@media (max-width: 600px) {
	.services-section       { padding: 1.5rem 1rem 2rem; }
	.services-main-heading  { font-size: 2rem; margin-bottom: 1rem; }
	.svc-thumb              { height: 46px !important; min-width: 105px; font-size: 0.88rem; padding: 0 0.85rem; }
	.svc-main.swiper        { height: 440px; }
	.svc-panel-inner        { padding: 1.5rem 1.25rem 1.25rem; }
	.svc-content h3         { font-size: 1.05rem; margin-bottom: 0.5rem; }
	.svc-content p          { font-size: 0.82rem; line-height: 1.7; margin-bottom: 0.65rem; }
	.svc-client-list li     { font-size: 0.82rem; }
}

@media (max-width: 480px) {
	.services-section       { padding: 1.25rem 0.875rem 1.75rem; }
	.services-main-heading  { font-size: 1.75rem; margin-bottom: 0.75rem; }
	.svc-thumbs-outer .swiper-button-prev,
	.svc-thumbs-outer .swiper-button-next { width: 30px; }
	.svc-thumb              { height: 42px !important; min-width: 92px; font-size: 0.82rem; padding: 0 0.7rem; }
	.svc-main.swiper        { height: 420px; }
	.svc-panel-inner        { padding: 1.25rem 1rem; }
	.svc-content h3         { font-size: 1rem; margin-bottom: 0.4rem; }
	.svc-content p          { font-size: 0.8rem; line-height: 1.65; margin-bottom: 0.55rem; }
	.svc-client-list        { gap: 0.2rem; }
	.svc-client-list li     { font-size: 0.78rem; padding-left: 1.2rem; }
}

@media (max-width: 375px) {
	.services-section       { padding: 1rem 0.75rem 1.5rem; }
	.services-main-heading  { font-size: 1.55rem; }
	.svc-thumb              { height: 40px !important; min-width: 82px; font-size: 0.78rem; padding: 0 0.6rem; }
	.svc-main.swiper        { height: 400px; }
	.svc-panel-inner        { padding: 1rem 0.875rem; }
}


/* ══════════════════════════════════════════════════════════
   ABOUT US PAGE  (page-about.php  |  prefix: aup-)
   ══════════════════════════════════════════════════════════ */

/* ── Layout base ── */
.aup-page { overflow-x: hidden; }

.aup-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.aup-section { padding: 6rem 0; }

.aup-section--dark {
	background: #111;
	color: #fff;
}

/* ── Shared: section header ── */
.aup-section-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.aup-eyebrow {
	display: inline-block;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--cyan, #00c3d4);
	margin-bottom: .6rem;
}

.aup-section-title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 800;
	color: #111;
	line-height: 1.2;
	margin: .25rem 0 0;
	letter-spacing: -.02em;
}

.aup-section-title--light { color: #fff; }

.aup-line--plain { display: block; }
.aup-line--accent { display: block; color: var(--cyan, #00c3d4); }

/* ── Shared: CTA button ── */
.aup-btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .85rem 2rem;
	background: var(--cyan, #00c3d4);
	color: #fff;
	font-weight: 600;
	font-size: .95rem;
	border-radius: 4px;
	text-decoration: none;
	transition: background .25s, transform .2s, box-shadow .2s;
	letter-spacing: .01em;
}

.aup-btn:hover {
	background: #009fb0;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0,195,212,.35);
}

.aup-btn--light {
	background: #fff;
	color: #111;
}

.aup-btn--light:hover {
	background: #f0f0f0;
	color: #111;
	box-shadow: 0 8px 24px rgba(255,255,255,.2);
}

/* ── Scroll reveal ── */
.aup-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .65s ease, transform .65s ease;
	transition-delay: var(--reveal-delay, 0s);
}

.aup-reveal--left  { transform: translateX(-30px); }
.aup-reveal--right { transform: translateX(30px); }

.aup-reveal.aup-visible {
	opacity: 1;
	transform: none;
}

/* ═══════════════════════════════
   HERO
   ═══════════════════════════════ */
.aup-hero {
	position: relative;
	min-height: 82vh;
	display: flex;
	align-items: center;
	background: #0d0d0d;
	overflow: hidden;
	color: #fff;
}

.aup-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.aup-hero__dots {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
	background-size: 28px 28px;
}

.aup-hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	pointer-events: none;
}

.aup-hero__glow--1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(0,195,212,.22) 0%, transparent 70%);
	top: -150px;
	right: -150px;
	animation: aupGlowPulse 7s ease-in-out infinite;
}

.aup-hero__glow--2 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(20,50,110,.6) 0%, transparent 70%);
	bottom: -80px;
	left: -80px;
	animation: aupGlowPulse 9s 3s ease-in-out infinite;
}

@keyframes aupGlowPulse {
	0%, 100% { transform: scale(1);   opacity: .7; }
	50%       { transform: scale(1.1); opacity: 1;  }
}

/* Decorative concentric arc rings in hero background */
.aup-hero__arc {
	position: absolute;
	width: 680px;
	height: 680px;
	border-radius: 50%;
	border: 1px solid rgba(0,195,212,.07);
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	pointer-events: none;
}

.aup-hero__arc::after {
	content: '';
	position: absolute;
	inset: 70px;
	border-radius: 50%;
	border: 1px solid rgba(0,195,212,.05);
}

/* Hero inner — centered, narrower */
.aup-hero__inner {
	position: relative;
	z-index: 1;
	padding: 8rem 0 6rem;
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

/* Pill chip */
.aup-hero__chip {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	padding: .38rem 1rem .38rem .7rem;
	border: 1px solid rgba(0,195,212,.32);
	border-radius: 50px;
	font-size: .73rem;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--cyan, #00c3d4);
	background: rgba(0,195,212,.07);
	margin-bottom: 1.4rem;
	position: relative;
	overflow: hidden;
	opacity: 0;
	animation: aupFadeUp .5s .05s ease both;
}

.aup-hero__chip::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(0,195,212,.14) 50%, transparent 100%);
	animation: aupChipShimmer 2.8s 1.5s ease-in-out infinite;
}

@keyframes aupChipShimmer {
	0%        { transform: translateX(-110%); }
	60%, 100% { transform: translateX(110%); }
}

.aup-hero__chip-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--cyan, #00c3d4);
	box-shadow: 0 0 6px var(--cyan, #00c3d4);
	flex-shrink: 0;
	animation: aupDotPulse 1.6s ease-in-out infinite;
}

@keyframes aupDotPulse {
	0%, 100% { opacity: 1;  box-shadow: 0 0 6px  var(--cyan, #00c3d4); }
	50%       { opacity: .3; box-shadow: 0 0 12px var(--cyan, #00c3d4); }
}

/* Breadcrumb — centered */
.aup-hero__crumb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .45rem;
	font-size: .82rem;
	color: rgba(255,255,255,.45);
	margin-bottom: 2rem;
	opacity: 0;
	animation: aupFadeUp .5s .2s ease both;
}

.aup-hero__crumb a {
	color: rgba(255,255,255,.45);
	text-decoration: none;
	transition: color .2s;
}

.aup-hero__crumb a:hover { color: var(--cyan, #00c3d4); }
.aup-hero__crumb svg     { color: rgba(255,255,255,.25); flex-shrink: 0; }

.aup-hero__title {
	font-size: clamp(2.8rem, 6.5vw, 5.5rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -.025em;
	margin: 0 0 1.5rem;
	color: #fff;
}

.aup-hero__word {
	display: inline-block;
	margin-right: .22em;
	opacity: 0;
	transform: translateY(40px);
	animation: aupWordIn .7s cubic-bezier(.22,1,.36,1) both;
	animation-delay: var(--word-delay, 0s);
}

@keyframes aupWordIn {
	to { opacity: 1; transform: none; }
}

/* Cyan gradient on the last hero word */
.aup-hero__word--accent {
	background: linear-gradient(135deg, #00c3d4 0%, #00e5ff 55%, #00c3d4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Horizontal glow divider below title */
.aup-hero__divider {
	width: 56px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--cyan,#00c3d4), transparent);
	margin: 0 auto 1.75rem;
	border-radius: 2px;
	opacity: 0;
	animation: aupFadeUp .5s .65s ease both;
}

.aup-hero__subtitle {
	font-size: clamp(1rem, 2vw, 1.15rem);
	color: rgba(255,255,255,.58);
	max-width: 520px;
	line-height: 1.8;
	margin: 0 auto 2.5rem;
	opacity: 0;
	animation: aupFadeUp .6s .75s ease both;
}

@keyframes aupFadeUp {
	from { opacity: 0; transform: translateY(18px); }
	to   { opacity: 1; transform: none; }
}

.aup-hero__scroll-btn {
	display: block;
	width: 38px;
	height: 60px;
	border: 1.5px solid rgba(255,255,255,.2);
	border-radius: 20px;
	position: relative;
	text-decoration: none;
	margin: 0 auto;
	opacity: 0;
	animation: aupFadeUp .5s 1s ease both;
	transition: border-color .2s;
}

.aup-hero__scroll-btn:hover { border-color: var(--cyan, #00c3d4); }

.aup-hero__scroll-dot {
	position: absolute;
	left: 50%;
	top: 8px;
	transform: translateX(-50%);
	width: 6px;
	height: 6px;
	background: var(--cyan, #00c3d4);
	border-radius: 50%;
	animation: aupScrollBounce 1.5s ease-in-out infinite;
}

@keyframes aupScrollBounce {
	0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
	75%  { opacity: 0; transform: translateX(-50%) translateY(26px); }
	100% { opacity: 0; transform: translateX(-50%) translateY(26px); }
}

/* Hero floating badges */
.aup-hero__badge {
	position: absolute;
	z-index: 2;
	opacity: 0;
	animation: aupFadeUp .6s ease both;
}

.aup-hero__badge--a { top: 24%;    right: 7%;  animation-delay: 1.2s; }
.aup-hero__badge--b { bottom: 26%; left: 7%;  animation-delay: 1.7s; }
.aup-hero__badge--c { top: 55%;    right: 5%; animation-delay: 2.1s; }

.aup-hero__badge-float {
	display: flex;
	align-items: center;
	gap: .6rem;
	padding: .65rem 1.1rem;
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.14);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-radius: 50px;
	color: rgba(255,255,255,.9);
	font-size: .82rem;
	font-weight: 500;
	white-space: nowrap;
	animation: aupBadgeFloat 3.5s ease-in-out infinite;
}

.aup-hero__badge--b .aup-hero__badge-float {
	animation-delay: 1.75s;
}

@keyframes aupBadgeFloat {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(-10px); }
}

/* ═══════════════════════════════
   WHO WE ARE (INTRO)
   ═══════════════════════════════ */
.aup-intro { background: #fff; }

.aup-intro__wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.aup-intro__heading {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -.025em;
	margin: .75rem 0 1.75rem;
	color: #111;
}

.aup-intro__para {
	font-size: 1.05rem;
	color: #555;
	line-height: 1.8;
	margin: 0 0 1.2rem;
}

.aup-intro__para:last-of-type { margin-bottom: 2rem; }

.aup-intro__visual { position: relative; }

.aup-intro__img-wrap {
	position: relative;
	aspect-ratio: 3/4;
	max-width: 420px;
	margin-left: auto;
}

.aup-intro__blob {
	position: absolute;
	inset: -20%;
	background: radial-gradient(ellipse at 60% 40%, rgba(0,195,212,.18) 0%, transparent 65%);
	border-radius: 50%;
	pointer-events: none;
	animation: aupBlobPulse 6s ease-in-out infinite;
}

@keyframes aupBlobPulse {
	0%, 100% { transform: scale(1) rotate(0deg); }
	50%       { transform: scale(1.06) rotate(4deg); }
}

.aup-intro__ring {
	position: absolute;
	width: 88%;
	aspect-ratio: 1;
	border: 1px solid rgba(0,195,212,.22);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	pointer-events: none;
	animation: aupRingSpin 22s linear infinite;
}

@keyframes aupRingSpin {
	to { transform: translate(-50%,-50%) rotate(360deg); }
}

.aup-intro__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
	position: relative;
	z-index: 1;
	box-shadow: 0 24px 60px rgba(0,0,0,.12);
}

.aup-intro__img-placeholder {
	width: 100%;
	height: 100%;
	border-radius: 16px;
	background: linear-gradient(135deg, #f0f8ff, #e0f7fa);
	border: 2px dashed rgba(0,195,212,.35);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	color: rgba(0,195,212,.7);
	font-size: .82rem;
	text-align: center;
	padding: 2rem;
	position: relative;
	z-index: 1;
}

.aup-intro__img-badge {
	position: absolute;
	bottom: -16px;
	left: -20px;
	z-index: 2;
	background: var(--cyan, #00c3d4);
	color: #fff;
	border-radius: 12px;
	padding: 1rem 1.25rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 12px 30px rgba(0,195,212,.4);
	animation: aupBadgeFloat 4s ease-in-out infinite;
}

.aup-intro__img-badge-num {
	font-size: 1.9rem;
	font-weight: 800;
	line-height: 1;
}

.aup-intro__img-badge-lbl {
	font-size: .72rem;
	opacity: .85;
	text-align: center;
	line-height: 1.3;
}

/* ═══════════════════════════════
   MISSION & VISION
   ═══════════════════════════════ */
.aup-mv { position: relative; overflow: hidden; }

.aup-mv__bg-ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(0,195,212,.07);
	pointer-events: none;
}

.aup-mv__bg-ring--1 { width: 500px; height: 500px; top: -250px; right: -80px; }
.aup-mv__bg-ring--2 { width: 320px; height: 320px; bottom: -120px; left: 4%; }

.aup-mv__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.aup-mv__card {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 16px;
	padding: 2.5rem;
	transition: border-color .3s, box-shadow .3s, transform .3s;
}

.aup-mv__card:hover {
	border-color: rgba(0,195,212,.4);
	box-shadow: 0 0 40px rgba(0,195,212,.1), inset 0 0 24px rgba(0,195,212,.04);
	transform: translateY(-4px);
}

.aup-mv__icon {
	width: 68px;
	height: 68px;
	border-radius: 14px;
	background: rgba(0,195,212,.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition: background .3s;
}

.aup-mv__card:hover .aup-mv__icon { background: rgba(0,195,212,.18); }

.aup-mv__title {
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 .85rem;
}

.aup-mv__text {
	font-size: 1rem;
	color: rgba(255,255,255,.58);
	line-height: 1.75;
	margin: 0;
}

/* ═══════════════════════════════
   TIMELINE
   ═══════════════════════════════ */
.aup-timeline { background: #f8f9fb; }

.aup-timeline__track {
	position: relative;
	max-width: 840px;
	margin: 0 auto;
	padding-bottom: 2rem;
}

.aup-timeline__line {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, var(--cyan,#00c3d4), rgba(0,195,212,.1));
	transform: translateX(-50%);
}

.aup-timeline__item {
	position: relative;
	margin-bottom: 3.5rem;
}

.aup-timeline__item--left  { padding-right: calc(50% + 2.5rem); }
.aup-timeline__item--right { padding-left:  calc(50% + 2.5rem); }

.aup-timeline__dot {
	position: absolute;
	left: 50%;
	top: 1.8rem;
	transform: translate(-50%, -50%);
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--cyan, #00c3d4);
	border: 3px solid #f8f9fb;
	box-shadow: 0 0 0 2px var(--cyan, #00c3d4);
	z-index: 1;
}

.aup-timeline__card {
	background: #fff;
	border-radius: 12px;
	padding: 1.75rem 2rem;
	box-shadow: 0 4px 24px rgba(0,0,0,.07);
	border: 1px solid rgba(0,195,212,.1);
	transition: box-shadow .3s, transform .3s;
}

.aup-timeline__card:hover {
	box-shadow: 0 8px 32px rgba(0,195,212,.15);
	transform: translateY(-3px);
}

.aup-timeline__year {
	display: inline-block;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .1em;
	color: var(--cyan, #00c3d4);
	background: rgba(0,195,212,.08);
	padding: .3rem .75rem;
	border-radius: 4px;
	margin-bottom: .7rem;
}

.aup-timeline__title {
	font-size: 1.12rem;
	font-weight: 700;
	color: #111;
	margin: 0 0 .45rem;
}

.aup-timeline__text {
	font-size: .95rem;
	color: #666;
	line-height: 1.7;
	margin: 0;
}

/* ═══════════════════════════════
   CORE VALUES
   ═══════════════════════════════ */
.aup-values { background: #0d0d0d; }

.aup-values__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.aup-values__card {
	background: rgba(255,255,255,.03);
	border: 1px solid rgba(255,255,255,.07);
	border-radius: 16px;
	padding: 2.5rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: border-color .3s, transform .3s, box-shadow .3s;
}

.aup-values__card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 50% 0%, rgba(0,195,212,.09), transparent 60%);
	opacity: 0;
	transition: opacity .3s;
}

.aup-values__card:hover {
	border-color: rgba(0,195,212,.35);
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 30px rgba(0,195,212,.07);
}

.aup-values__card:hover::before { opacity: 1; }

.aup-values__icon {
	width: 82px;
	height: 82px;
	background: rgba(0,195,212,.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	position: relative;
	z-index: 1;
	transition: background .3s;
}

.aup-values__card:hover .aup-values__icon { background: rgba(0,195,212,.16); }

.aup-values__title {
	font-size: 1.3rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 .7rem;
	position: relative;
	z-index: 1;
}

.aup-values__text {
	font-size: .94rem;
	color: rgba(255,255,255,.52);
	line-height: 1.72;
	margin: 0;
	position: relative;
	z-index: 1;
}

/* ═══════════════════════════════
   TEAM
   ═══════════════════════════════ */
.aup-team { background: #fff; }

.aup-team__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.aup-team__card {
	border-radius: 16px;
	overflow: hidden;
	background: #f8f9fb;
	border: 1px solid #eee;
	transition: transform .3s, box-shadow .3s;
}

.aup-team__card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

.aup-team__photo-wrap {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: #e8f7f9;
}

.aup-team__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s;
}

.aup-team__card:hover .aup-team__photo { transform: scale(1.06); }

.aup-team__initials {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 800;
	color: #fff;
	background: var(--ic-bg, var(--cyan, #00c3d4));
	letter-spacing: -.02em;
}

.aup-team__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,195,212,.88);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .3s;
}

.aup-team__card:hover .aup-team__overlay { opacity: 1; }

.aup-team__li {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: rgba(255,255,255,.2);
	border: 1px solid rgba(255,255,255,.45);
	border-radius: 50%;
	color: #fff;
	text-decoration: none;
	transition: background .2s;
}

.aup-team__li:hover { background: rgba(255,255,255,.35); }

.aup-team__info { padding: 1.25rem 1.25rem 1.5rem; }

.aup-team__name {
	font-size: 1.04rem;
	font-weight: 700;
	color: #111;
	margin: 0 0 .2rem;
}

.aup-team__role {
	display: block;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--cyan, #00c3d4);
	margin-bottom: .65rem;
}

.aup-team__bio {
	font-size: .87rem;
	color: #666;
	line-height: 1.65;
	margin: 0;
}

/* ═══════════════════════════════
   STATS / NUMBERS
   ═══════════════════════════════ */
.aup-numbers {
	background: linear-gradient(135deg, #0a1628 0%, #111 50%, #061020 100%);
	color: #fff;
	padding: 3rem 0;
}

.aup-numbers__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	text-align: center;
}

.aup-numbers__item {
	padding: 2rem 1.5rem;
	border-right: 1px solid rgba(255,255,255,.08);
	position: relative;
}

.aup-numbers__item:last-child { border-right: none; }

.aup-numbers__item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2.5rem;
	height: 2px;
	background: var(--cyan, #00c3d4);
	border-radius: 2px;
}

.aup-numbers__num {
	display: block;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	color: var(--cyan, #00c3d4);
	line-height: 1;
	margin-bottom: .5rem;
	letter-spacing: -.03em;
}

.aup-numbers__lbl {
	display: block;
	font-size: .88rem;
	color: rgba(255,255,255,.5);
	font-weight: 500;
	letter-spacing: .02em;
}

/* ═══════════════════════════════
   CTA
   ═══════════════════════════════ */
.aup-cta {
	position: relative;
	background: #111;
	color: #fff;
	overflow: hidden;
	padding: 4rem 0;
	text-align: center;
}

.aup-cta__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.aup-cta__glow {
	position: absolute;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(0,195,212,.18) 0%, transparent 60%);
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	filter: blur(60px);
	animation: aupGlowPulse 7s ease-in-out infinite;
}

.aup-cta__inner {
	position: relative;
	z-index: 1;
}

.aup-cta__heading {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	color: #fff;
	letter-spacing: -.025em;
	line-height: 1.15;
	margin: 0 auto 1rem;
	max-width: 700px;
}

.aup-cta__sub {
	font-size: 1.1rem;
	color: rgba(255,255,255,.52);
	margin: 0 0 2.5rem;
}

/* ═══════════════════════════════
   RESPONSIVE — ABOUT PAGE
   ═══════════════════════════════ */
@media (max-width: 1024px) {
	.aup-team__grid    { grid-template-columns: repeat(2, 1fr); }
	.aup-numbers__grid { grid-template-columns: repeat(2, 1fr); }
	.aup-numbers__item:nth-child(2n)           { border-right: none; }
	.aup-numbers__item:not(:last-child)        { border-bottom: 1px solid rgba(255,255,255,.08); }
	.aup-numbers__item:nth-last-child(-n+2)    { border-bottom: none; }
}

@media (max-width: 768px) {
	.aup-section    { padding: 4rem 0; }
	.aup-container  { padding: 0 1.25rem; }

	.aup-hero__inner { padding: 7rem 0 5rem; }
	.aup-hero__badge { display: none; }
	.aup-hero__arc   { display: none; }

	.aup-intro__wrap    { grid-template-columns: 1fr; gap: 2.5rem; }
	.aup-intro__img-wrap { aspect-ratio: 4/3; max-width: 380px; margin: 0 auto; }
	.aup-intro__visual  { width: 100%; }

	.aup-mv__grid     { grid-template-columns: 1fr; }
	.aup-values__grid { grid-template-columns: 1fr; }
	.aup-team__grid   { grid-template-columns: repeat(2, 1fr); }

	/* Timeline: single column, line on left */
	.aup-timeline__line { left: 20px; transform: none; }
	.aup-timeline__item--left,
	.aup-timeline__item--right {
		padding-left: 52px;
		padding-right: 0;
	}
	.aup-timeline__dot { left: 20px; }

	.aup-numbers__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
	.aup-team__grid   { grid-template-columns: 1fr; max-width: 300px; margin-inline: auto; }
	.aup-hero__title  { font-size: 2.3rem; }
	.aup-numbers__grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════
   SERVICES PAGE  (page-services.php  |  prefix: sp-)
   Inspired by the SaihaSoft alternating-blocks layout.
   ══════════════════════════════════════════════════════════ */

.sp-page { overflow-x: hidden; }

#sp-main {
	position: relative;
}

/* ── Shared container ── */
.sp-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* ═══════════════════════════
   WINDING ZIG-ZAG PATH
   Sits inside #sp-services — JS builds the S-curve and drives the marker
   ═══════════════════════════ */
#sp-winding {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	overflow: visible;
}

#sp-winding-path {
	transition: none;
}

#sp-winding-marker {
	transition: opacity 0.35s ease;
}

@media (max-width: 900px) {
	#sp-winding { display: none; }
}

/* ═══════════════════════════
   HERO
   ═══════════════════════════ */
.sp-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(145deg, #ffffff 0%, #f4fdfe 55%, #e9f9fb 100%);
	padding-top: 2rem;
	padding-bottom: 0;
}

/* Bottom gradient dissolve into service blocks */
.sp-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(to bottom, transparent, rgba(248,250,252,0.7));
	pointer-events: none;
	z-index: 1;
}

/* ── Background layers ── */
.sp-hero__dots {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(0,0,0,0.055) 1.5px, transparent 1.5px);
	background-size: 28px 28px;
	-webkit-mask-image: radial-gradient(ellipse 70% 80% at 30% 40%, black 20%, transparent 80%);
	mask-image: radial-gradient(ellipse 70% 80% at 30% 40%, black 20%, transparent 80%);
	pointer-events: none;
}

.sp-hero__bg-glow {
	position: absolute;
	top: -80px;
	right: -80px;
	width: 640px;
	height: 640px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0,195,212,0.1) 0%, rgba(0,195,212,0.03) 50%, transparent 70%);
	pointer-events: none;
}

/* ── Two-column layout ── */
.sp-hero__layout {
	display: grid;
	grid-template-columns: 1fr 480px;
	gap: 3rem;
	align-items: center;
	padding-top: 2rem;
	padding-bottom: 1.5rem;
}

.sp-hero__text {
	position: relative;
	z-index: 2;
}

/* ── Breadcrumb ── */
.sp-hero__crumb {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.8rem;
	color: var(--mid-text);
	margin-bottom: 1.5rem;
	opacity: 0;
	animation: spFadeUp 0.5s 0.05s ease both;
}

.sp-hero__crumb a { color: var(--cyan); text-decoration: none; transition: opacity 0.2s; }
.sp-hero__crumb a:hover { opacity: 0.75; }
.sp-hero__crumb svg { color: var(--mid-text); flex-shrink: 0; }

/* ── Badge / eyebrow label ── */
.sp-hero__badge {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: #7a8694;
	font-size: 0.73rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
	opacity: 0;
	animation: spFadeUp 0.5s 0.15s ease both;
}

.sp-hero__badge-dot {
	width: 1.8rem;
	height: 2px;
	border-radius: 2px;
	background: #b0bec5;
	flex-shrink: 0;
}

/* ── Headline ── */
.sp-hero__title {
	font-size: 5.5rem;
	font-weight: 800;
	margin: 0 0 1.5rem;
	line-height: 1.06;
	overflow: hidden;
}

.sp-hero__tl {
	display: block;
	position: relative;
	background: linear-gradient(135deg, var(--cyan) 0%, #006f80 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	opacity: 0;
	transform: translateY(100%);
	animation: spLineIn 0.75s var(--ld, 0.1s) cubic-bezier(0.22, 1, 0.36, 1) both;
}

.sp-hero__tl--2 { padding-left: 0.6em; --ld: 0.25s; }

@keyframes spLineIn {
	to { opacity: 1; transform: translateY(0); }
}

/* ── Subtitle ── */
.sp-hero__sub {
	font-size: 1rem;
	color: #5a6778;
	line-height: 1.8;
	max-width: 46ch;
	margin: 0 0 0;
	opacity: 0;
	animation: spFadeUp 0.6s 0.45s ease both;
}

@keyframes spFadeUp {
	from { opacity: 0; transform: translateY(14px); }
	to   { opacity: 1; transform: none; }
}

/* ── CTA buttons ── */
.sp-hero__actions {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-top: 2rem;
	opacity: 0;
	animation: spFadeUp 0.5s 0.55s ease both;
}

.sp-hero__btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--cyan);
	color: #ffffff;
	padding: 0.82rem 1.75rem;
	border-radius: 8px;
	font-weight: 700;
	font-size: 0.88rem;
	letter-spacing: 0.01em;
	text-decoration: none;
	box-shadow: 0 6px 22px rgba(0,195,212,0.38);
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.sp-hero__btn-primary:hover {
	background: #00a8b8;
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(0,195,212,0.45);
}

.sp-hero__btn-ghost {
	position: relative;
	color: #333;
	font-weight: 600;
	font-size: 0.88rem;
	text-decoration: none;
	padding-bottom: 3px;
	transition: color 0.25s;
}

.sp-hero__btn-ghost::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1.5px;
	background: var(--cyan);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.sp-hero__btn-ghost:hover { color: var(--cyan); }
.sp-hero__btn-ghost:hover::after { transform: scaleX(1); }

/* ── Stats strip ── */
.sp-hero__stats {
	display: flex;
	gap: 2rem;
	margin-top: 2.25rem;
	padding-top: 1.75rem;
	border-top: 1px solid rgba(0,0,0,0.07);
	opacity: 0;
	animation: spFadeUp 0.5s 0.7s ease both;
}

.sp-hero__stat strong {
	display: block;
	font-size: 1.9rem;
	font-weight: 800;
	color: var(--cyan);
	line-height: 1;
	margin-bottom: 0.2rem;
}

.sp-hero__stat strong sup {
	font-size: 1rem;
	font-weight: 700;
	vertical-align: super;
	line-height: 0;
}

.sp-hero__stat > span {
	font-size: 0.73rem;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	font-weight: 500;
}

/* ════════════════════════════════════════════════════════════
   Visual column — premium SaaS orbit system
   Central glass orb · multi-speed orbit rings · glassmorphic
   service cards · floating particles · layered depth
   ════════════════════════════════════════════════════════════ */
.sp-hero__visual {
	position: relative;
	width: 480px;
	height: 480px;
	flex-shrink: 0;
	opacity: 0;
	animation: spVisualIn 1s 0.2s cubic-bezier(0.22,1,0.36,1) both;
	transform-style: preserve-3d;
}

@keyframes spVisualIn {
	from { opacity: 0; transform: scale(0.9) translateY(24px); }
	to   { opacity: 1; transform: none; }
}

/* Ambient backdrop glow / depth haze behind everything */
.sp-hero__aura {
	position: absolute;
	inset: 4%;
	border-radius: 50%;
	background:
		radial-gradient(circle at 38% 36%, rgba(0,195,212,0.20) 0%, rgba(0,195,212,0.07) 34%, transparent 62%),
		radial-gradient(circle at 70% 74%, rgba(70,120,255,0.10) 0%, transparent 58%);
	filter: blur(26px);
	animation: spAuraBreathe 9s ease-in-out infinite;
}

@keyframes spAuraBreathe {
	0%, 100% { transform: scale(1);    opacity: 0.9; }
	50%      { transform: scale(1.08); opacity: 1;   }
}

/* ── Orbit rings — gradient stroke, glowing, multi-speed ── */
.sp-hero__orbit {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

/* gradient ring built from a conic fill masked to a thin band */
.sp-hero__orbit--1,
.sp-hero__orbit--2 {
	-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
	        mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
}

.sp-hero__orbit--1 {
	width: 300px;
	height: 300px;
	background: conic-gradient(from 0deg,
		transparent 0deg, var(--cyan) 70deg, transparent 150deg,
		transparent 200deg, var(--cyan-dark) 280deg, transparent 350deg);
	opacity: 0.9;
	filter: drop-shadow(0 0 6px rgba(0,195,212,0.45));
	animation: spOrbitSpin 18s linear infinite;
}

.sp-hero__orbit--2 {
	width: 392px;
	height: 392px;
	background: conic-gradient(from 120deg,
		transparent 0deg, rgba(0,195,212,0.55) 60deg, transparent 130deg,
		transparent 250deg, rgba(0,195,212,0.4) 300deg, transparent 350deg);
	opacity: 0.7;
	filter: drop-shadow(0 0 5px rgba(0,195,212,0.3));
	animation: spOrbitSpin 30s linear infinite reverse;
}

/* faint dashed outermost ring */
.sp-hero__orbit--3 {
	width: 472px;
	height: 472px;
	border: 1.5px dashed rgba(0,195,212,0.20);
	animation: spOrbitSpin 46s linear infinite;
}

@keyframes spOrbitSpin {
	to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ── Central glassmorphic orb ── */
.sp-hero__orb {
	position: absolute;
	width: 244px;
	height: 244px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background:
		radial-gradient(circle at 34% 30%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.18) 22%, transparent 46%),
		radial-gradient(circle at 50% 50%, rgba(0,195,212,0.28) 0%, rgba(0,195,212,0.12) 52%, rgba(0,159,176,0.18) 100%);
	border: 1px solid rgba(255,255,255,0.6);
	-webkit-backdrop-filter: blur(8px);
	        backdrop-filter: blur(8px);
	box-shadow:
		0 30px 70px -20px rgba(0,159,176,0.55),
		0 10px 30px rgba(0,195,212,0.25),
		inset 0 2px 12px rgba(255,255,255,0.7),
		inset 0 -22px 50px rgba(0,159,176,0.30);
	animation: spOrbBob 7s ease-in-out infinite;
}

/* outer pulsing glow halo */
.sp-hero__orb-glow {
	position: absolute;
	inset: -26%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0,195,212,0.32) 0%, rgba(0,195,212,0.10) 42%, transparent 68%);
	z-index: -1;
	animation: spOrbPulse 3.4s ease-in-out infinite;
}

/* slow rotating specular sweep across the glass */
.sp-hero__orb-sweep {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: conic-gradient(from 210deg, transparent 0deg, rgba(255,255,255,0.55) 26deg, transparent 70deg);
	mix-blend-mode: screen;
	opacity: 0.7;
	animation: spOrbitSpin 12s linear infinite;
}

/* inner core disc */
.sp-hero__orb-core {
	position: absolute;
	inset: 24%;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background:
		radial-gradient(circle at 38% 32%, rgba(255,255,255,0.55) 0%, transparent 50%),
		linear-gradient(150deg, var(--cyan) 0%, var(--cyan-dark) 100%);
	box-shadow:
		0 10px 26px rgba(0,159,176,0.45),
		inset 0 2px 6px rgba(255,255,255,0.6),
		inset 0 -8px 18px rgba(0,120,135,0.4);
	color: #fff;
}

.sp-hero__orb-core .sp-hero__orb-mark {
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.18));
	animation: spOrbPulse 3.4s ease-in-out infinite;
}

/* glossy top highlight on the core */
.sp-hero__orb-shine {
	position: absolute;
	top: 8%;
	left: 16%;
	width: 56%;
	height: 38%;
	border-radius: 50%;
	background: radial-gradient(ellipse at center, rgba(255,255,255,0.7) 0%, transparent 70%);
	pointer-events: none;
}

@keyframes spOrbBob {
	0%, 100% { transform: translate(-50%, -50%); }
	50%      { transform: translate(-50%, calc(-50% - 10px)); }
}

@keyframes spOrbPulse {
	0%, 100% { transform: scale(1);    opacity: 0.95; }
	50%      { transform: scale(1.08); opacity: 0.65; }
}

/* ── Floating service cards (orbiting positions) ── */
.sp-hero__tag {
	position: absolute;
	z-index: 3;
	animation: spTagFloat 5s ease-in-out infinite;
	will-change: transform;
}

/* inner = the actual glass card (so float + hover-lift don't clash) */
.sp-hero__tag-inner {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 9px 15px 9px 9px;
	border-radius: 16px;
	background: linear-gradient(150deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.62) 100%);
	border: 1px solid rgba(255,255,255,0.9);
	-webkit-backdrop-filter: blur(14px) saturate(160%);
	        backdrop-filter: blur(14px) saturate(160%);
	box-shadow:
		0 12px 32px -8px rgba(10,40,70,0.18),
		0 3px 10px rgba(0,195,212,0.10),
		inset 0 1px 0 rgba(255,255,255,0.9);
	white-space: nowrap;
	transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
}

.sp-hero__tag-inner:hover {
	transform: translateY(-6px) scale(1.04);
	box-shadow:
		0 22px 46px -10px rgba(10,40,70,0.26),
		0 6px 16px rgba(0,195,212,0.22),
		inset 0 1px 0 rgba(255,255,255,0.95);
}

/* gradient icon chip */
.sp-hero__tag-ic {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	border-radius: 10px;
	background: linear-gradient(140deg, var(--cyan) 0%, var(--cyan-dark) 100%);
	box-shadow:
		0 5px 14px rgba(0,195,212,0.4),
		inset 0 1px 0 rgba(255,255,255,0.45);
	color: #fff;
}

.sp-hero__tag-ic svg { color: #fff; display: block; }

.sp-hero__tag-tx {
	font-size: 12.5px;
	font-weight: 650;
	letter-spacing: -0.01em;
	color: #1d2b3a;
}

/* orbit placements — even spread, varied radii, no overlap */
.sp-hero__tag--1 { top:  4%;  left: -6%;  animation-duration: 4.6s; animation-delay: 0s;    }
.sp-hero__tag--2 { top: 13%;  right: -8%; animation-duration: 5.4s; animation-delay: 0.7s;  }
.sp-hero__tag--3 { top: 49%;  right: -12%;animation-duration: 6.0s; animation-delay: 0.3s;  }
.sp-hero__tag--4 { bottom: 9%; left: -3%; animation-duration: 5.0s; animation-delay: 1.1s;  }
.sp-hero__tag--5 { bottom: 3%; right: 2%; animation-duration: 5.6s; animation-delay: 0.55s; }

@keyframes spTagFloat {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-12px); }
}

/* ── Floating accent particles ── */
.sp-hero__dot {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, #5fe3ee, var(--cyan));
	box-shadow: 0 0 10px rgba(0,195,212,0.6);
	z-index: 2;
}

.sp-hero__dot--1 { width: 9px;  height: 9px;  top: 44%; left: 2%;    opacity: 0.55; animation: spDotFloat 3.4s ease-in-out infinite 0s;   }
.sp-hero__dot--2 { width: 6px;  height: 6px;  top: 20%; left: 40%;   opacity: 0.40; animation: spDotFloat 4.8s ease-in-out infinite 1s;   }
.sp-hero__dot--3 { width: 12px; height: 12px; bottom: 26%; right: 1%;opacity: 0.32; animation: spDotFloat 5.3s ease-in-out infinite 0.5s; }
.sp-hero__dot--4 { width: 7px;  height: 7px;  bottom: 8%; right: 26%; opacity: 0.48; animation: spDotFloat 3.9s ease-in-out infinite 1.4s; }
.sp-hero__dot--5 { width: 5px;  height: 5px;  top: 34%; right: 22%;  opacity: 0.45; animation: spDotFloat 4.2s ease-in-out infinite 0.9s; }
.sp-hero__dot--6 { width: 8px;  height: 8px;  bottom: 40%; left: 16%; opacity: 0.35; animation: spDotFloat 5.0s ease-in-out infinite 1.8s; }

@keyframes spDotFloat {
	0%, 100% { transform: translateY(0) translateX(0); }
	50%      { transform: translateY(-14px) translateX(4px); }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
	.sp-hero__visual *,
	.sp-hero__visual { animation: none !important; }
}

/* ── Scroll cue ── */
.sp-hero__scroll-wrap {
	display: flex;
	justify-content: center;
	padding-bottom: 2rem;
}

.sp-hero__scroll {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 62px;
	border: 2px dotted rgba(0,0,0,0.25);
	border-radius: 28px;
	cursor: pointer;
	text-decoration: none;
	color: rgba(0,0,0,0.4);
	transition: border-color 0.2s, color 0.2s;
	opacity: 0;
	animation: spFadeUp 0.5s 1.1s ease both;
}

.sp-hero__scroll:hover { border-color: var(--cyan); color: var(--cyan); }

.sp-hero__scroll-arrow { animation: spArrowBounce 1.5s ease-in-out infinite; }

@keyframes spArrowBounce {
	0%, 100% { transform: translateY(-4px); opacity: 0.35; }
	50%       { transform: translateY(5px);  opacity: 1; }
}

/* ═══════════════════════════
   SERVICE BLOCKS
   ═══════════════════════════ */

/* Section wrapper — single continuous background, no hard breaks */
.sp-services {
	position: relative;
	background: linear-gradient(180deg,
		#f8fafc 0%,
		#ffffff 18%,
		#f8fafc 50%,
		#ffffff 82%,
		#f8fafc 100%
	);
}

.sp-block {
	position: relative;
	z-index: 1;           /* sits above the absolute #sp-winding SVG */
	padding: 90px 80px;
	overflow: hidden;
	background: transparent;
}

/* No more alternating solid backgrounds — gradient handles it on .sp-services */
.sp-block:nth-child(even) { background: transparent; }

/* Two-column grid — image col + text col, equal halves */
.sp-block__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
	max-width: 1320px;
	margin: 0 auto;
}

/* Zigzag: image-left layout */
.sp-block--left .sp-block__media { order: 1; }
.sp-block--left .sp-block__text  { order: 2; }

/* Zigzag: image-right layout */
.sp-block--right .sp-block__media { order: 2; }
.sp-block--right .sp-block__text  { order: 1; }

/* ── Dual-image area — SaihaSoft's .service-pics with two overlapping images ── */
.sp-block__pics {
	position: relative;
	height: 380px;
}

/* Primary image — top-left, larger */
.sp-block__pic {
	position: absolute;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 20px 55px rgba(0, 0, 0, 0.15);
	transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.sp-block__pic--1 {
	width: 68%;
	height: 240px;
	top: 0;
	left: 0;
	z-index: 2;
}

/* Secondary image — bottom-right, offset lower */
.sp-block__pic--2 {
	width: 62%;
	height: 210px;
	bottom: 0;
	right: 0;
	z-index: 1;
}

.sp-block:hover .sp-block__pic--1 { transform: translateY(-6px); box-shadow: 0 28px 70px rgba(0,0,0,0.18); }
.sp-block:hover .sp-block__pic--2 { transform: translateY(4px);  box-shadow: 0 24px 60px rgba(0,0,0,0.14); }

/* Decorative cyan accent shown when no second image is uploaded */
.sp-block__pic-accent {
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 55%;
	height: 200px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(0,195,212,0.12) 0%, rgba(0,195,212,0.04) 100%);
	border: 1.5px dashed rgba(0,195,212,0.25);
	z-index: 1;
}

/* Placeholder when no primary image is uploaded — subtle, not dominant */
.sp-block__img-ph {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	border-radius: 12px;
	background: #f3f4f6;   /* plain light gray — no dashed border */
	text-align: center;
	color: #aaa;
	font-size: 0.78rem;
	line-height: 1.5;
	padding: 2rem;
}

.sp-block__img-ph svg   { opacity: 0.25; color: #bbb; }
.sp-block__img-ph span  { font-weight: 600; color: #999; }
.sp-block__img-ph small { font-size: 0.7rem; color: #bbb; }

/* ── Text column ── */

/* SaihaSoft: .service-contents h2 { color:#444; font-weight:bold; font-size:3rem } */
.sp-block__heading {
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.15;
	text-transform: uppercase;
	color: #444444;
	margin: 0 0 0.5rem;
}

/* Short gray rule under heading */
.sp-block__rule {
	width: 3.5rem;
	height: 3px;
	background: #ccc;
	border-radius: 2px;
	margin-bottom: 1.25rem;
}

/* SaihaSoft: p { font-size: 14px } */
.sp-block__desc {
	font-size: 14px;
	color: #555;
	line-height: 1.78;
	margin-bottom: 1.5rem;
}

/* ── Bottom row: client list (2/3) + button (1/3) side by side ── */
.sp-block__bottom {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

/* Project list — 2-column grid matching SaihaSoft */
.sp-block__clients {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.85rem 1.25rem;
	flex: 1 1 0;
	margin: 0;
}

.sp-block__clients li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

/* SaihaSoft play-icon: outline/stroke style, dark gray */
.sp-block__clients li svg {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	fill: #555;        /* matches SaihaSoft's gray icon color */
	transition: fill 0.2s, transform 0.2s;
}

.sp-block__clients li:hover svg {
	fill: var(--cyan);
	transform: scale(1.12);
}

.sp-block__clients li h6 {
	margin: 0;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--dark-text);
	line-height: 1.3;
}

/* Button wrapper — 1/3 of the bottom row, center-aligned */
.sp-block__btn-wrap {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Enquire Us button — pill shape, double-shaded gradient */
.sp-enquire-btn {
	display: inline-block;
	padding: 0.75rem 2rem;
	background: linear-gradient(135deg, #00d4e8 0%, #00c3d4 45%, #0099aa 100%);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 4px 14px rgba(0,195,212,0.32);
	color: var(--white);
	border-radius: var(--radius-pill);
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	white-space: nowrap;
	transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

.sp-enquire-btn:hover {
	background: linear-gradient(135deg, #00bfd2 0%, #00aabb 45%, #007f8f 100%);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 10px 28px rgba(0,195,212,0.42);
	transform: translateY(-2px);
}

/* ─── Scroll-reveal animations — gentle, premium feel ─── */
.sp-reveal {
	opacity: 0;
	transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
	            transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--bd, 0s);
}

/* Soft slide from right for image-left blocks */
.sp-block--left.sp-reveal  { transform: translateX(40px); }
/* Soft slide from left for image-right blocks */
.sp-block--right.sp-reveal { transform: translateX(-40px); }
/* Upward fade for CTA and non-block elements */
.sp-reveal:not(.sp-block) { transform: translateY(30px); }

.sp-reveal.sp-visible {
	opacity: 1;
	transform: none;
}

/* ═══════════════════════════
   CTA SECTION
   ═══════════════════════════ */
.sp-cta {
	position: relative;
	background: var(--navy);
	padding: 7rem 0 6rem;
	text-align: center;
	overflow: hidden;
}

/* Gradient bridge at top of CTA so dark doesn't crash into light sections */
.sp-cta::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 90px;
	background: linear-gradient(to bottom, rgba(255,255,255,0.06), transparent);
	pointer-events: none;
	z-index: 0;
}

.sp-cta__glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 700px;
	height: 700px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 195, 212, 0.18) 0%, transparent 70%);
	filter: blur(60px);
	pointer-events: none;
	animation: aupGlowPulse 7s ease-in-out infinite;
}

.sp-cta__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
}

.sp-cta__heading {
	font-size: clamp(1.8rem, 4.5vw, 3rem);
	font-weight: 800;
	color: var(--white);
	line-height: 1.15;
	letter-spacing: -0.02em;
	max-width: 22ch;
	margin: 0;
}

.sp-cta__sub {
	font-size: 1rem;
	color: var(--white-65);
	max-width: 44ch;
	line-height: 1.7;
	margin: 0;
}

.sp-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.95rem 2.4rem;
	background: var(--cyan);
	color: var(--white);
	border-radius: var(--radius-pill);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-decoration: none;
	margin-top: 0.5rem;
	transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

.sp-cta__btn:hover {
	background: var(--cyan-dark);
	transform: translateY(-2px);
	box-shadow: 0 12px 36px rgba(0, 195, 212, 0.45);
}

/* ═══════════════════════════
   RESPONSIVE — SERVICES PAGE
   ═══════════════════════════ */
@media (max-width: 1280px) {
	.sp-hero__layout { grid-template-columns: 1fr 420px; gap: 2.5rem; }
	.sp-hero__visual  { width: 420px; height: 420px; }
	.sp-hero__orbit--1 { width: 262px; height: 262px; }
	.sp-hero__orbit--2 { width: 343px; height: 343px; }
	.sp-hero__orbit--3 { width: 413px; height: 413px; }
	.sp-hero__orb { width: 214px; height: 214px; }
	.sp-block { padding: 80px 60px; }
	.sp-block__inner { gap: 4rem; }
}

@media (max-width: 1100px) {
	.sp-hero__layout  { grid-template-columns: 1fr 360px; gap: 2rem; }
	.sp-hero__visual  { width: 360px; height: 360px; }
	.sp-hero__orbit--1 { width: 224px; height: 224px; }
	.sp-hero__orbit--2 { width: 294px; height: 294px; }
	.sp-hero__orbit--3 { width: 354px; height: 354px; }
	.sp-hero__orb { width: 184px; height: 184px; }
	.sp-hero__orb-core .sp-hero__orb-mark { width: 38px; height: 38px; }
	.sp-hero__tag-tx { font-size: 11.5px; }
	.sp-hero__tag-ic { width: 28px; height: 28px; }
	.sp-hero__title { font-size: 4.5rem; }
	.sp-block { padding: 70px 48px; }
	.sp-block__heading { font-size: 2.4rem; }
}

@media (max-width: 900px) {
	.sp-hero__layout  { grid-template-columns: 1fr; }
	.sp-hero__visual  { display: none; }
	.sp-hero__title   { font-size: 3.8rem; }
	.sp-hero__tl--2   { padding-left: 0.4em; }
	.sp-hero__stats   { gap: 1.5rem; justify-content: center; flex-wrap: wrap; text-align: center; }
	.sp-hero::after   { height: 70px; }

	.sp-block { padding: 60px 32px; }
	.sp-block__inner { grid-template-columns: 1fr; gap: 2.5rem; }
	.sp-block__heading { font-size: 2rem; }
	.sp-block__pics { height: 300px; }

	.sp-block--left .sp-block__media,
	.sp-block--right .sp-block__media { order: 1; }
	.sp-block--left .sp-block__text,
	.sp-block--right .sp-block__text  { order: 2; }
	.sp-block--left.sp-reveal,
	.sp-block--right.sp-reveal { transform: translateY(40px); }

	/* Breathing room so the last service's "Enquire Us" button isn't flush
	   against the dark CTA band on mobile */
	.sp-services { padding-bottom: 3rem; }
	.sp-cta { padding: 5rem 0; }
}

@media (max-width: 640px) {
	.sp-hero__title  { font-size: 2.9rem; }
	.sp-hero__tl--2  { padding-left: 0.3em; }
	.sp-hero__actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
	.sp-hero__stats   { gap: 1.25rem; }
	.sp-hero__stat strong { font-size: 1.6rem; }

	.sp-block { padding: 48px 20px; }
	.sp-block__inner { gap: 2rem; }
	.sp-block__heading { font-size: 1.75rem; }
	.sp-block__pics { height: 250px; }
	.sp-block__pic--1 { width: 75%; height: 185px; }
	.sp-block__pic--2 { width: 65%; height: 165px; }
	.sp-block__pic-accent { width: 60%; height: 155px; }
	.sp-block__bottom { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
	.sp-block__clients { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
	.sp-hero { padding-top: 1.25rem; }
	.sp-hero__layout { padding-top: 0.75rem; padding-bottom: 0; }
	.sp-container    { padding: 0 1.25rem; }
	.sp-hero__title  { font-size: 2.4rem; }
	.sp-block        { padding: 40px 16px; }
	.sp-block__heading { font-size: 1.5rem; }
}

@media (max-width: 380px) {
	.sp-hero__title { font-size: 2rem; }
}


/* ============================================================
   PRODUCTS PAGE  (page-products.php)
   ============================================================ */

.pp-page {
	--pp-orange:      #f76c1b;
	--pp-orange-dark: #e05a0a;
}

/* ── Per-product accent colours ── */
.pp-block--cyan {
	--pp-accent:     #00c3d4;
	--pp-accent-rgb: 0, 195, 212;
}
.pp-block--lime {
	--pp-accent:     #84cc16;
	--pp-accent-rgb: 132, 204, 22;
}
.pp-block--orange {
	--pp-accent:     #f76c1b;
	--pp-accent-rgb: 247, 108, 27;
}

/* ── Hero ── */
.pp-hero {
	padding: 5.5rem 2rem 4.5rem;
	text-align: center;
	background: var(--white);
}

.pp-hero__eyebrow {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--mid-text);
	letter-spacing: 0.04em;
	margin-bottom: 0.75rem;
}

.pp-hero__title {
	font-size: clamp(2.4rem, 5vw, 3.75rem);
	font-weight: 700;
	color: var(--dark-text);
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-bottom: 1.5rem;
}

.pp-hero__divider {
	width: 90px;
	height: 3px;
	background: var(--dark-text);
	margin: 0 auto;
	border-radius: 2px;
}

/* ── Products wrapper ── */
.pp-products {
	position: relative;
	padding-left: 4rem;
}

/* ── Sticky vertical sidebar ── */
.pp-sidebar {
	position: fixed;
	left: 1.1rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 50;
	display: flex;
	align-items: center;
	gap: 0.55rem;
	pointer-events: none;
}

.pp-sidebar__bar {
	width: 2px;
	height: 72px;
	background: var(--dark-text);
	border-radius: 1px;
	flex-shrink: 0;
}

.pp-sidebar__label {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--dark-text);
	text-transform: uppercase;
	white-space: nowrap;
}

/* ── Product block ── */
.pp-reveal {
	opacity: 0;
	transform: translateY(44px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

.pp-reveal.pp-visible {
	opacity: 1;
	transform: translateY(0);
}

.pp-block {
	position: relative;
	overflow: hidden;
	padding: 5rem 3rem 0 2rem;
}

/* Topographic contour background */
.pp-topo {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		repeating-radial-gradient(
			ellipse at 22% 58%,
			transparent 0, transparent 28px,
			rgba(var(--pp-accent-rgb, 247, 108, 27), 0.07) 28px,
			rgba(var(--pp-accent-rgb, 247, 108, 27), 0.07) 29.5px
		),
		repeating-radial-gradient(
			ellipse at 76% 32%,
			transparent 0, transparent 36px,
			rgba(var(--pp-accent-rgb, 247, 108, 27), 0.07) 36px,
			rgba(var(--pp-accent-rgb, 247, 108, 27), 0.07) 37.5px
		),
		repeating-radial-gradient(
			ellipse at 50% 85%,
			transparent 0, transparent 22px,
			rgba(var(--pp-accent-rgb, 247, 108, 27), 0.04) 22px,
			rgba(var(--pp-accent-rgb, 247, 108, 27), 0.04) 23.5px
		);
}

/* ── Section transition footer: bar LEFT · text RIGHT ── */
.pp-section-footer {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 2.5rem;
	/* cancel block's left padding so bar touches section edge */
	margin-left: -2rem;
	margin-right: -3rem;
	padding: 3rem 3rem 3.5rem 0;
}

.pp-divider {
	flex: 0 0 65%;
	order: -1;          /* bar renders first = left side */
	height: 12px;
	background: var(--pp-accent, var(--pp-orange));
	border-radius: 0;   /* sharp rectangle */
	opacity: 0.9;
}

.pp-transition-text {
	flex: 1;
	font-size: 0.97rem;
	font-weight: 500;
	font-style: normal;
	color: var(--dark-text, #1a1a2e);
	line-height: 1.7;
	text-align: right;
	margin: 0;
	letter-spacing: 0.01em;
}

/* Alt blocks (text on right): flip bar to right edge */
.pp-block--alt .pp-section-footer {
	flex-direction: row-reverse;
	margin-left: 0;
	margin-right: -3rem;
	padding: 3rem 0 3.5rem 3rem;
}
.pp-block--alt .pp-transition-text {
	text-align: left;
}

.pp-block__inner {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 4.5rem;
}

/* ── Text column ── */
.pp-block__text {
	flex: 0 0 37%;
	min-width: 0;
}

.pp-block__name {
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 600;
	color: var(--dark-text);
	line-height: 1.15;
	letter-spacing: -0.01em;
	margin-bottom: 1.25rem;
}

.pp-block__desc {
	font-size: 1rem;
	color: #444;
	line-height: 1.75;
	margin-bottom: 1rem;
}

.pp-block__desc--2 { margin-bottom: 2rem; }

.pp-inline-link {
	color: var(--pp-accent, var(--pp-orange));
	font-weight: 500;
	transition: color 0.2s;
}
.pp-inline-link:hover { filter: brightness(0.82); }

/* ── View Details button ── */
.pp-btn {
	display: inline-block;
	padding: 0.85rem 2.25rem;
	background: var(--pp-accent, var(--pp-orange));
	color: #fff;
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: 999px;
	text-decoration: none;
	box-shadow: 0 4px 18px rgba(var(--pp-accent-rgb, 247, 108, 27), 0.35);
	transition: filter 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.pp-btn:hover {
	filter: brightness(0.88);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(var(--pp-accent-rgb, 247, 108, 27), 0.45);
}

/* ── Media column ── */
.pp-block__media {
	flex: 1;
	position: relative;
	min-height: 400px;
}

/* ── Zig-zag: alt block flips image left, text right ── */
.pp-block--alt .pp-block__inner {
	flex-direction: row-reverse;
}

/* ── Blob base (shared properties) ── */
.pp-blob {
	position: absolute;
	background: var(--pp-accent, var(--pp-orange));
	z-index: 0;
	pointer-events: none;
}

/* Shape modifier: organic blob — sections 1, 4 (text left / image right) */
.pp-blob--blob {
	width: 70%;
	height: 88%;
	border-radius: 55% 45% 60% 40% / 48% 52% 48% 52%;
	right: -4%;
	top: -2%;
}

/* Blob on flipped (alt) section: mirror to left side */
.pp-block--alt .pp-blob--blob {
	right: auto;
	left: -4%;
}

/* Shape modifier: U — section 2 (flat top, curved bowl bottom) */
.pp-blob--u {
	width: 64%;
	height: 92%;
	border-radius: 0 0 50% 50% / 0 0 60% 60%;
	left: -2%;
	right: auto;
	top: 3%;
}

/* Shape modifier: V — section 3 (downward triangle / chevron) */
.pp-blob--v {
	width: 74%;
	height: 86%;
	clip-path: polygon(5% 0%, 95% 0%, 50% 100%);
	border-radius: 0;
	right: 0%;
	top: 2%;
}

/* ── Single product image ── */
.pp-imgs {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem 0;
}

.pp-img {
	display: block;
	width: 100%;
	max-width: 520px;
	height: auto;
	border-radius: 14px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	object-fit: cover;
}

/* Placeholder frame */
.pp-img-ph {
	width: 100%;
	max-width: 520px;
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 16px 52px rgba(0, 0, 0, 0.12);
}

.pp-img-ph svg { display: block; width: 100%; }

/* ── Responsive: tablet ── */
@media (max-width: 1024px) {
	.pp-products { padding-left: 3.5rem; }

	.pp-block        { padding: 4rem 2rem 0 1.5rem; }
	.pp-block__inner { gap: 3rem; }
	.pp-block__text  { flex: 0 0 42%; }

	.pp-block__media { min-height: 300px; }

	.pp-divider { flex-basis: 58%; border-radius: 0; }
}

@media (max-width: 768px) {
	.pp-products { padding-left: 0; }
	.pp-sidebar   { display: none; }

	.pp-hero        { padding: 3.5rem 1.5rem 3rem; }
	.pp-hero__title { font-size: 2.1rem; }

	.pp-block       { padding: 3.5rem 1.5rem 0; }
	.pp-block__inner,
	.pp-block--alt .pp-block__inner {
		flex-direction: column;
		gap: 2.5rem;
	}

	.pp-section-footer,
	.pp-block--alt .pp-section-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
		margin-left: -1.5rem;
		margin-right: -1.5rem;
		padding: 2rem 1.5rem 2.5rem 0;
	}
	.pp-divider         { flex-basis: auto; width: 70%; order: 0; height: 10px; border-radius: 0; }
	.pp-transition-text,
	.pp-block--alt .pp-transition-text { flex: none; text-align: left; font-size: 0.92rem; order: -1; }
	.pp-block__text  { flex: none; width: 100%; }
	.pp-block__media { width: 100%; min-height: 300px; }

	/* Reset all blobs to right-anchored on mobile */
	.pp-blob--blob,
	.pp-block--alt .pp-blob--blob { right: -5%; left: auto; top: -2%; width: 75%; height: 85%; }
	.pp-blob--u  { left: auto; right: -5%; width: 75%; height: 85%; border-radius: 55% 45% 60% 40% / 48% 52% 48% 52%; }
	.pp-blob--v  { right: -5%; width: 75%; height: 82%; }
}

@media (max-width: 480px) {
	.pp-hero        { padding: 2.5rem 1.25rem; }
	.pp-hero__title { font-size: 1.8rem; }

	.pp-block        { padding: 2.5rem 1.25rem 0; }
	.pp-block__name  { font-size: 1.75rem; }

	.pp-divider { width: 80%; height: 9px; flex-basis: auto; border-radius: 0; }

	.pp-blob { width: 78%; height: 80%; }
}


/* ============================================================
   SECOND SECTION  (services page bridge between hero + blocks)
   ============================================================ */

.second_section {
	padding: 3.5rem 2rem;
	background: var(--white);
	border-bottom: 1px solid var(--border);
}

.second_section__inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 3rem;
}

/* ── Left column: bold statement ── */
.second_section__left { flex: 1; }

.second_section__heading {
	font-size: clamp(1.4rem, 2.8vw, 2.1rem);
	font-weight: 700;
	color: var(--dark-text);
	line-height: 1.3;
	margin-bottom: 0.75rem;
	letter-spacing: -0.01em;
}

.second_section__sub {
	font-size: 0.97rem;
	color: var(--mid-text);
	line-height: 1.75;
	max-width: 480px;
}

/* ── Right column: orange-line (user's existing rule + extensions) ── */
.second_section .orange-line {
	display: flex;
	flex-direction: column;
	width: 40%;
	text-align: end;
	flex-shrink: 0;
	gap: 0.55rem;
}

.orange-line__eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--mid-text);
}

/* The actual orange line */
.orange-line__bar {
	width: 100%;
	height: 4px;
	background: #f76c1b;
	border-radius: 2px;
}

.orange-line__stat {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark-text);
	line-height: 1.2;
}

.orange-line__stat sup {
	font-size: 0.65em;
	color: #f76c1b;
	font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 768px) {
	.second_section__inner  { flex-direction: column; gap: 2rem; }
	.second_section .orange-line { width: 100%; text-align: start; }
	.second_section__sub    { max-width: none; }
}

@media (max-width: 480px) {
	.second_section { padding: 2.5rem 1.25rem; }
}


/* ============================================================
   SERVICE SECTION DIVIDER  (between sp-block rows)
   ============================================================ */

.sp-section-divider {
	padding: 2.75rem 0 3.5rem;
}

.sp-section-divider__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 3rem;
}

/* Short supporting paragraph — left-aligned, limited width */
.sp-divider-text {
	font-size: 0.95rem;
	font-style: italic;
	font-weight: 400;
	color: var(--mid-text);
	line-height: 1.85;
	max-width: 480px;
	margin-bottom: 1.5rem;
	letter-spacing: 0.01em;
}

/* Thick left-anchored brand line — 35% of container width */
.sp-divider-line {
	width: 35%;
	height: 5px;
	background: var(--cyan);
	border-radius: 999px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.sp-section-divider__inner { padding: 0 2rem; }
	.sp-divider-line { width: 42%; }
}

@media (max-width: 768px) {
	.sp-section-divider        { padding: 2rem 0 2.75rem; }
	.sp-section-divider__inner { padding: 0 1.5rem; }
	.sp-divider-text           { font-size: 0.9rem; max-width: 100%; }
	.sp-divider-line           { width: 52%; height: 4px; }
}

@media (max-width: 480px) {
	.sp-section-divider { padding: 1.75rem 0 2.25rem; }
	.sp-divider-line    { width: 65%; height: 4px; }
}

/* ============================================================
   GALLERY PAGE  —  filterable grid + lightbox
   ============================================================ */
.gal-page { background: var(--white); }

/* ── Hero — light, matches Services / Products pages ── */
.gal-hero {
	position: relative;
	overflow: hidden;
	text-align: center;
	padding: 1.5rem 2rem 2rem;
	background: linear-gradient(145deg, #ffffff 0%, #f4fdfe 55%, #e9f9fb 100%);
}
.gal-hero__eyebrow {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cyan);
	margin-bottom: 0.85rem;
}
.gal-hero__title {
	font-size: clamp(2.4rem, 5vw, 3.75rem);
	font-weight: 800;
	color: var(--dark-text);
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin-bottom: 1rem;
}
.gal-hero__sub {
	max-width: 620px;
	margin: 0 auto 1.5rem;
	color: var(--mid-text);
	font-size: 1.05rem;
	line-height: 1.7;
}
.gal-hero__divider {
	width: 90px;
	height: 3px;
	margin: 0 auto;
	border-radius: 2px;
	background: var(--cyan);
}

/* ── Filter bar ── */
.gal-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
	max-width: 1200px;
	margin: 0 auto 2.5rem;
	padding: 1rem 2rem;
}
.gal-filter {
	border: 1px solid var(--border);
	background: var(--white);
	color: var(--mid-text);
	font: inherit;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	padding: 0.55rem 1.3rem;
	border-radius: var(--radius-pill);
	cursor: pointer;
	transition: color var(--ease), border-color var(--ease), background var(--ease), box-shadow var(--ease);
}
.gal-filter:hover { color: var(--dark-text); border-color: var(--cyan); }
.gal-filter.is-active {
	background: var(--cyan);
	border-color: var(--cyan);
	color: #fff;
	box-shadow: 0 8px 20px var(--cyan-glow);
}

/* ── Grid ── */
.gal-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-auto-rows: 140px;
	grid-auto-flow: dense;       /* pack cards to fill gaps left by spans */
	gap: 0.9rem;
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 2rem 5rem;
}

/* ── Bold editorial mosaic ──
   6-column module. Column spans are always 2 or 4 so every row tiles
   cleanly; row spans (2 vs 3) vary the height for a staggered, magazine
   feel. A 6-card rhythm leads each block with a big landscape feature
   and a tall portrait; the rest are squares. dense flow packs the gaps. */
.gal-card                   { grid-column: span 2; grid-row: span 2; } /* square  */
.gal-card:nth-child(6n + 1) { grid-column: span 4; grid-row: span 3; } /* feature */
.gal-card:nth-child(6n + 4) { grid-column: span 2; grid-row: span 3; } /* tall    */

/* ── Empty state ── */
.gal-empty {
	max-width: 560px;
	margin: 3.5rem auto 5rem;
	padding: 3.5rem 2.5rem;
	text-align: center;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: 0 14px 44px rgba(10, 14, 26, 0.06);
}
.gal-empty__icon {
	display: inline-grid;
	place-items: center;
	width: 88px;
	height: 88px;
	margin-bottom: 1.5rem;
	border-radius: 50%;
	color: var(--cyan);
	background: rgba(0, 195, 212, 0.12);
}
.gal-empty__icon svg { width: 40px; height: 40px; }
.gal-empty__title {
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--dark-text);
	margin-bottom: 0.75rem;
}
.gal-empty__text {
	color: var(--mid-text);
	font-size: 1rem;
	line-height: 1.7;
}
.gal-empty__text strong { color: var(--dark-text); font-weight: 600; }

/* ── Card ── */
.gal-card {
	position: relative;
	margin: 0;
	height: 100%;          /* fill the (variable-size) mosaic cell */
	overflow: hidden;
	border-radius: var(--radius-md);
	background: var(--navy-3);
	cursor: pointer;
	opacity: 0;
	transform: translateY(24px) scale(0.98);
	filter: blur(8px);     /* blurs in as the card reveals */
	transition: opacity 0.6s ease,
	            transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
	            filter 0.6s ease,
	            box-shadow var(--ease);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
	transform-style: preserve-3d;
	will-change: transform;
}
/* At rest the tilt vars resolve to 0deg; JS updates --tx / --ty on mousemove */
.gal-card.gal-visible {
	opacity: 1;
	filter: blur(0);
	transform: perspective(900px) rotateX(var(--ty, 0deg)) rotateY(var(--tx, 0deg)) translateZ(0);
}
.gal-card.is-hidden   { display: none; }
.gal-card:hover {
	box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 195, 212, 0.08);
}
.gal-card:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

/* Animated gradient frame — masked to a 2px border, flows on hover */
.gal-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 3;
	border-radius: inherit;
	padding: 2px;
	background: linear-gradient(135deg, var(--cyan), #7b61ff, #ff5d8f, var(--cyan));
	background-size: 300% 300%;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	        mask-composite: exclude;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--ease);
}
.gal-card:hover::after {
	opacity: 1;
	animation: gal-border-flow 4s linear infinite;
}
@keyframes gal-border-flow {
	0%   { background-position:   0% 50%; }
	100% { background-position: 300% 50%; }
}

.gal-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: grayscale(0.6) contrast(1.03);   /* editorial mute → blooms to colour on hover */
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}
.gal-card:hover .gal-card__img {
	transform: scale(1.08);
	filter: grayscale(0) saturate(1.12);
}

.gal-card__overlay {
	position: absolute;
	inset: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.3rem;
	background: linear-gradient(to top, rgba(8,12,24,0.88) 0%, rgba(8,12,24,0.30) 45%, transparent 72%);
	opacity: 0.9;
	transition: opacity var(--ease);
}
.gal-card:hover .gal-card__overlay { opacity: 1; }

.gal-card__cat {
	align-self: flex-start;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	background: var(--cyan);
	padding: 0.25rem 0.7rem;
	border-radius: var(--radius-pill);
	margin-bottom: 0.6rem;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity var(--ease), transform var(--ease);
}
.gal-card:hover .gal-card__cat { opacity: 1; transform: none; }

.gal-card__title {
	color: #fff;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.3;
	transform: translateY(6px);
	transition: transform var(--ease);
}
.gal-card:hover .gal-card__title { transform: none; }

.gal-card__zoom {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	-webkit-backdrop-filter: blur(6px);
	        backdrop-filter: blur(6px);
	color: #fff;
	opacity: 0;
	transform: scale(0.8);
	transition: opacity var(--ease), transform var(--ease);
}
.gal-card:hover .gal-card__zoom { opacity: 1; transform: none; }
.gal-card__zoom svg { width: 20px; height: 20px; }

/* ── Lightbox ── */
.gal-lb-open { overflow: hidden; }
.gal-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	background: rgba(6, 9, 18, 0.92);
	-webkit-backdrop-filter: blur(8px);
	        backdrop-filter: blur(8px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.gal-lightbox.is-open { opacity: 1; visibility: visible; }

.gal-lb__stage {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	max-width: 100%;
	margin: 0;
}
.gal-lb__img {
	max-width: min(1000px, 92vw);
	max-height: 78vh;
	display: block;
	border-radius: 12px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.gal-lb__img--in { animation: gal-lb-zoom 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes gal-lb-zoom {
	from { opacity: 0; transform: scale(0.9) translateY(12px); filter: blur(8px); }
	to   { opacity: 1; transform: scale(1)   translateY(0);    filter: blur(0); }
}
.gal-lb__caption {
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.98rem;
	font-weight: 500;
	text-align: center;
}

.gal-lb__close,
.gal-lb__nav {
	position: absolute;
	display: grid;
	place-items: center;
	border: none;
	cursor: pointer;
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	transition: background var(--ease), transform var(--ease);
}
.gal-lb__close:hover,
.gal-lb__nav:hover { background: rgba(255, 255, 255, 0.25); }
.gal-lb__close { top: 1.5rem; right: 1.5rem; width: 48px; height: 48px; }
.gal-lb__nav   { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.gal-lb__nav:hover { transform: translateY(-50%) scale(1.08); }
.gal-lb__prev { left: 1.5rem; }
.gal-lb__next { right: 1.5rem; }
.gal-lb__close svg,
.gal-lb__nav svg { width: 24px; height: 24px; }
.gal-lb__counter {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	letter-spacing: 0.05em;
}

@media (prefers-reduced-motion: reduce) {
	.gal-card { transition: opacity 0.3s ease; transform: none; filter: none; }
	.gal-card.gal-visible { transform: none; filter: none; }
	.gal-card:hover::after { animation: none; }
	.gal-card__img { filter: grayscale(0.6) contrast(1.03); transition: none; }
	.gal-card:hover .gal-card__img { transform: none; filter: grayscale(0) saturate(1.12); }
	.gal-lb__img--in { animation: none; }
}

/* Tablet: drop to a 4-col module; feature goes full-width and shorter */
@media (max-width: 1024px) {
	.gal-grid {
		grid-template-columns: repeat(4, 1fr);
		grid-auto-rows: 150px;
		gap: 0.8rem;
	}
	.gal-card:nth-child(6n + 1) { grid-column: span 4; grid-row: span 2; }
	.gal-card:nth-child(6n + 4) { grid-column: span 2; grid-row: span 3; }
}
@media (max-width: 768px) {
	.gal-hero { padding: 3.5rem 1.5rem 2.25rem; }
	.gal-grid {
		grid-auto-rows: 130px;
		gap: 0.7rem;
		padding: 0 1.25rem 3.5rem;
	}
	.gal-lb__nav  { width: 44px; height: 44px; }
	.gal-lb__prev { left: 0.5rem; }
	.gal-lb__next { right: 0.5rem; }
}
@media (max-width: 480px) {
	.gal-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 150px;
		gap: 0.6rem;
	}
	/* Keep every tile within the 2-col grid; feature spans the full width */
	.gal-card                   { grid-column: span 1; grid-row: span 2; }
	.gal-card:nth-child(6n + 1) { grid-column: span 2; grid-row: span 2; }
	.gal-card:nth-child(6n + 4) { grid-column: span 1; grid-row: span 2; }
	.gal-card__title { font-size: 0.9rem; }
	.gal-card__zoom  { display: none; }
}

/* ============================================================
   OUR CLIENTS PAGE  —  logo wall
   ============================================================ */
.cl-page { background: var(--white); }

/* ── Hero (minimal) ── */
.cl-hero {
	text-align: center;
	background: var(--white);
	padding: 4rem 2rem 1.5rem;
}
.cl-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--cyan);
	margin-bottom: 0.9rem;
}
.cl-hero__eyebrow::before,
.cl-hero__eyebrow::after {
	content: "";
	width: 42px;
	height: 2px;
	background: currentColor;
	opacity: 0.6;
}
.cl-hero__title {
	font-size: clamp(2rem, 4.2vw, 3rem);
	font-weight: 700;
	color: var(--dark-text);
	line-height: 1;
	letter-spacing: -0.015em;
	margin: 0;
}

/* ── Logo wall (clean, full colour) ── */
.cl-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3.25rem 2rem;
	max-width: 1140px;
	margin: 0 auto;
	padding: 3.5rem 2rem 4rem;
	align-items: center;
}
.cl-card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 120px;
	padding: 1rem;
	/* reveal */
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}
.cl-card.cl-visible { opacity: 1; transform: translateY(0); }
.cl-card__logo {
	max-width: 82%;
	max-height: 92px;
	width: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
}
.cl-card:hover .cl-card__logo { transform: scale(1.07); }
.cl-card__name { display: none; }

/* ── CTA strip ── */
.cl-cta {
	max-width: 1180px;
	margin: 3rem auto 5.5rem;
	padding: 0 2rem;
}
.cl-cta__inner {
	position: relative;
	overflow: hidden;
	text-align: center;
	padding: 3.25rem 2rem;
	border-radius: var(--radius-lg);
	color: #ffffff;
	background:
		radial-gradient(120% 160% at 85% -20%, rgba(255,255,255,0.18), transparent 55%),
		linear-gradient(120deg, var(--cyan) 0%, var(--cyan-dark) 100%);
	box-shadow: 0 24px 56px rgba(0, 195, 212, 0.28);
}
.cl-cta__title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 0.5rem; }
.cl-cta__text  { color: rgba(255,255,255,0.92); margin-bottom: 1.6rem; }
.cl-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	background: #ffffff;
	color: var(--cyan-dark);
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 1rem 2.1rem;
	border-radius: var(--radius-pill);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
	transition: transform var(--ease), box-shadow var(--ease);
}
.cl-cta__btn svg { width: 18px; height: 18px; transition: transform var(--ease); }
.cl-cta__btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0,0,0,0.24); }
.cl-cta__btn:hover svg { transform: translateX(3px); }

/* ── Empty state ── */
.cl-empty {
	max-width: 560px;
	margin: 3.5rem auto 5rem;
	padding: 3.5rem 2.5rem;
	text-align: center;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: 0 14px 44px rgba(10, 14, 26, 0.06);
}
.cl-empty__icon {
	display: inline-grid;
	place-items: center;
	width: 88px;
	height: 88px;
	margin-bottom: 1.5rem;
	border-radius: 50%;
	color: var(--cyan);
	background: rgba(0, 195, 212, 0.12);
}
.cl-empty__icon svg { width: 40px; height: 40px; }
.cl-empty__title { font-size: 1.6rem; font-weight: 800; color: var(--dark-text); margin-bottom: 0.75rem; }
.cl-empty__text  { color: var(--mid-text); font-size: 1rem; line-height: 1.7; }
.cl-empty__text strong { color: var(--dark-text); font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
	.cl-card { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 900px) {
	.cl-grid { grid-template-columns: repeat(3, 1fr); gap: 2.75rem 1.5rem; }
}
@media (max-width: 640px) {
	.cl-hero { padding: 3rem 1.5rem 1rem; }
	.cl-grid { grid-template-columns: repeat(2, 1fr); gap: 2.25rem 1rem; padding: 2.5rem 1.25rem 3rem; }
	.cl-card { min-height: 96px; padding: 0.75rem; }
	.cl-card__logo { max-height: 64px; max-width: 90%; }
	.cl-cta { margin: 2.5rem auto 4rem; padding: 0 1.25rem; }
}

/* ============================================================
   FLOATING CONTACT  —  WhatsApp + Call buttons, fixed bottom-right
   ============================================================ */
.floating-contact {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 900;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.fc-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	color: #fff;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
	transition: transform var(--ease), box-shadow var(--ease);
}
.fc-btn svg { width: 28px; height: 28px; }
.fc-btn:hover {
	color: #fff;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}
.fc-whatsapp { background: #25d366; }
.fc-call     { background: #ff3b30; }

/* Attention-pulse ring on both buttons */
.fc-btn::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	pointer-events: none;
	animation: fc-pulse-green 2.2s ease-out infinite;
}
.fc-call::after { animation-name: fc-pulse-red; }
@keyframes fc-pulse-green {
	0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
	70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes fc-pulse-red {
	0%   { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.45); }
	70%  { box-shadow: 0 0 0 16px rgba(255, 59, 48, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

@media (max-width: 640px) {
	.floating-contact { right: 0.9rem; bottom: 0.9rem; gap: 1rem; }
	.fc-btn { width: 50px; height: 50px; }
	.fc-btn svg { width: 25px; height: 25px; }
}
@media (prefers-reduced-motion: reduce) {
	.fc-btn::after { animation: none; }
	.fc-btn:hover { transform: none; }
}
/* demo-form styles */
/* ── Contact modal ── */
body.modal-open {
	overflow: hidden;
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
}

.contact-modal {
	--modal-blue: #2563eb;
	--modal-blue-2: #1d4ed8;
	position: fixed;
	inset: 0;
	z-index: 999;
	display: grid;
	place-items: center;
	padding: 1.25rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.28s ease, visibility 0.28s ease;
}

.contact-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.contact-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(5, 12, 28, 0.72);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.contact-modal__dialog {
	position: relative;
	width: min(100%, 880px);
	max-height: 88vh;
	overflow: hidden;
	border-radius: 20px;
	background: #ffffff;
	border: 1px solid rgba(37, 99, 235, 0.14);
	box-shadow: 0 30px 90px rgba(15, 23, 42, 0.38);
	transform: translateY(18px) scale(0.96);
	transition: transform 0.28s ease, box-shadow 0.28s ease;
	overscroll-behavior: contain;
}

.contact-modal.is-open .contact-modal__dialog {
	transform: translateY(0) scale(1);
}

.contact-modal__close {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	color: #0f172a;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.14);
	transition: background .2s ease, transform .2s ease, color .2s ease;
	z-index: 2;
}

.contact-modal__close:hover {
	background: #ffffff;
	transform: rotate(90deg);
	color: var(--modal-blue);
}

.contact-modal__close svg {
	width: 16px;
	height: 16px;
}

.contact-modal__brand-wrap {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.1rem;
}

.contact-modal__logo {
	max-width: 140px;
	max-height: 42px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.contact-modal__logo-fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0.7rem 0.95rem;
	border-radius: 14px;
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.16);
	font-weight: 800;
	letter-spacing: 0.04em;
	color: #ffffff;
}

.contact-modal__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.4rem, 2.6vw, 1.9rem);
	line-height: 1.12;
	font-weight: 900;
	letter-spacing: -0.03em;
	color: inherit;
}

.contact-modal__lead {
	max-width: 28rem;
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
}

.contact-modal__shell {
	display: grid;
	grid-template-columns: minmax(0, 40%) minmax(0, 60%);
	min-height: 0;
	height: 100%;
}

.contact-modal__aside {
	position: relative;
	padding: clamp(1.25rem, 2vw, 1.75rem);
	background: #0b191f;
	color: #ffffff;
	overflow: hidden;
}

.contact-modal__aside::before,
.contact-modal__aside::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	filter: blur(2px);
	pointer-events: none;
}

.contact-modal__aside::before {
	width: 240px;
	height: 240px;
	top: -110px;
	right: -70px;
}

.contact-modal__aside::after {
	width: 180px;
	height: 180px;
	bottom: -70px;
	right: 20px;
}

.contact-modal__aside-inner,
.contact-modal__panel-inner {
	position: relative;
	z-index: 1;
	min-height: 0;
}

.contact-modal__aside-inner {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	height: 100%;
	gap: 1.25rem;
}

.contact-modal__aside-body {
	display: flex;
	flex-direction: column;
}

.contact-modal__info {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.05rem;
}

.contact-modal__info-item {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.contact-modal__info-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(37, 99, 235, 0.16);
	border: 1px solid rgba(37, 99, 235, 0.4);
	color: #3b82f6;
}

.contact-modal__info-icon svg {
	width: 17px;
	height: 17px;
}

.contact-modal__info-item a,
.contact-modal__info-text {
	color: #ffffff;
	font-weight: 600;
	font-size: 0.92rem;
	line-height: 1.45;
	word-break: break-word;
}

.contact-modal__info-item a:hover {
	text-decoration: underline;
}

.contact-modal__follow {
	margin-top: auto;
	padding-top: 1.1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.7rem;
}

.contact-modal__follow-label {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.contact-modal__socials {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
}

.contact-modal__socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.16);
	color: #ffffff;
	transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-modal__socials a:hover {
	transform: translateY(-2px);
	background: var(--modal-blue);
	border-color: var(--modal-blue);
	box-shadow: 0 10px 20px rgba(37, 99, 235, 0.35);
}

.contact-modal__socials svg {
	width: 16px;
	height: 16px;
}

.contact-modal__panel {
	background: #ffffff;
	min-height: 0;
	overflow: hidden;
}

.contact-modal__panel-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 0;
	padding: clamp(1.2rem, 2.2vw, 1.75rem);
}

.contact-modal__panel-head {
	margin-bottom: 0.85rem;
}

.contact-modal__panel-kicker {
	display: inline-flex;
	margin-bottom: 0.45rem;
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.08);
	color: var(--modal-blue-2);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.contact-modal__panel-title {
	margin: 0 0 0.3rem;
	font-size: clamp(1.25rem, 1.8vw, 1.6rem);
	line-height: 1.15;
	font-weight: 900;
	letter-spacing: -0.03em;
	color: #0f172a;
}

.contact-modal__panel-copy {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.5;
	color: #64748b;
}

.contact-modal__form {
	flex: 1;
	min-height: 0;
	overflow: auto;
	padding-right: 0.35rem;
	padding-bottom: 0.5rem;
	scrollbar-gutter: stable;
}

.contact-modal .wpcf7,
.contact-modal .wpcf7 form {
	width: 100%;
}

.contact-modal .wpcf7 form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.7rem 0.8rem;
	align-items: start;
}

.contact-modal .wpcf7 form > p,
.contact-modal .wpcf7 form > div,
.contact-modal .wpcf7 form .wpcf7-response-output {
	grid-column: 1 / -1;
}

.contact-modal .wpcf7 p {
	margin: 0;
	padding: 0;
}

.contact-modal .wpcf7 br {
	display: none;
}

.contact-modal .wpcf7 .wpcf7-form-control-wrap {
	display: block;
}

.contact-modal .wpcf7 label {
	display: block;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #475569;
}

.contact-modal .wpcf7 input[type="text"],
.contact-modal .wpcf7 input[type="email"],
.contact-modal .wpcf7 input[type="tel"],
.contact-modal .wpcf7 input[type="url"],
.contact-modal .wpcf7 input[type="number"],
.contact-modal .wpcf7 textarea,
.contact-modal .wpcf7 select {
	width: 100%;
	margin-top: 0.3rem;
	font: inherit;
	font-size: 0.9rem;
	color: #0f172a;
	transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
	appearance: none;
}

/* Underline-style text fields */
.contact-modal .wpcf7 input[type="text"],
.contact-modal .wpcf7 input[type="email"],
.contact-modal .wpcf7 input[type="tel"],
.contact-modal .wpcf7 input[type="url"],
.contact-modal .wpcf7 input[type="number"] {
	height: 42px;
	padding: 0 0.15rem;
	border: none;
	border-bottom: 1.5px solid #d8e0ec;
	border-radius: 0;
	background: transparent;
}

/* Boxed select + textarea */
.contact-modal .wpcf7 select {
	height: 46px;
	padding: 0 0.9rem;
	border: 1.5px solid #dbe5f5;
	border-radius: 11px;
	background: #f8fbff;
}

.contact-modal .wpcf7 textarea {
	height: 90px;
	min-height: 80px;
	padding: 0.7rem 0.9rem;
	border: 1.5px solid #dbe5f5;
	border-radius: 11px;
	background: #f8fbff;
	resize: vertical;
}

.contact-modal .wpcf7 input[type="text"]:focus,
.contact-modal .wpcf7 input[type="email"]:focus,
.contact-modal .wpcf7 input[type="tel"]:focus,
.contact-modal .wpcf7 input[type="url"]:focus,
.contact-modal .wpcf7 input[type="number"]:focus {
	border-bottom-color: var(--modal-blue);
	box-shadow: 0 1.5px 0 0 var(--modal-blue);
	outline: none;
}

.contact-modal .wpcf7 textarea:focus,
.contact-modal .wpcf7 select:focus {
	border-color: var(--modal-blue);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
	background: #ffffff;
	outline: none;
}

.contact-modal .wpcf7 input::placeholder,
.contact-modal .wpcf7 textarea::placeholder {
	color: #94a3b8;
	font-weight: 400;
	font-size: 0.82rem;
}

.contact-modal .wpcf7 input.wpcf7-not-valid {
	border-bottom-color: #ef4444;
	box-shadow: 0 1.5px 0 0 #ef4444;
}

.contact-modal .wpcf7 textarea.wpcf7-not-valid,
.contact-modal .wpcf7 select.wpcf7-not-valid {
	border-color: #ef4444;
	background: #fffafa;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.contact-modal .wpcf7-not-valid-tip {
	margin-top: 0.35rem;
	font-size: 0.78rem;
	font-weight: 600;
	color: #dc2626;
}

.contact-modal .wpcf7-response-output {
	margin: 0.1rem 0 0;
	border: none !important;
	border-radius: 11px;
	padding: 0.75rem 0.9rem;
	font-size: 0.84rem;
	font-weight: 600;
	line-height: 1.45;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.07);
}

.contact-modal .wpcf7-mail-sent-ok,
.contact-modal .wpcf7 form.sent .wpcf7-response-output {
	background: #eff6ff;
	color: #1d4ed8;
	border-left: 4px solid var(--modal-blue) !important;
}

.contact-modal .wpcf7-validation-errors,
.contact-modal .wpcf7-spam-blocked {
	background: #fff7ed;
	color: #c2410c;
	border-left: 4px solid #f97316 !important;
}

/* Simple inline service checkboxes (ioss-style) */
.contact-modal .wpcf7-radio,
.contact-modal .wpcf7-checkbox {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.55rem 1rem;
	margin-top: 0.4rem;
}

.contact-modal .wpcf7-radio .wpcf7-list-item,
.contact-modal .wpcf7-checkbox .wpcf7-list-item {
	display: block;
	margin: 0;
}

.contact-modal .wpcf7-radio .wpcf7-list-item label,
.contact-modal .wpcf7-checkbox .wpcf7-list-item label {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.2rem 0;
	cursor: pointer;
}

.contact-modal .wpcf7-radio input[type="radio"],
.contact-modal .wpcf7-checkbox input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.contact-modal .wpcf7-radio .wpcf7-list-item-label,
.contact-modal .wpcf7-checkbox .wpcf7-list-item-label {
	font-size: 0.88rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	color: #334155;
	line-height: 1.3;
	transition: color .2s ease;
}

/* Custom checkbox / radio box */
.contact-modal .wpcf7-radio .wpcf7-list-item label::before,
.contact-modal .wpcf7-checkbox .wpcf7-list-item label::before {
	content: "";
	flex: 0 0 auto;
	width: 19px;
	height: 19px;
	border-radius: 5px;
	border: 1.5px solid #cbd5e1;
	background: #ffffff;
	transition: border-color .2s ease, background .2s ease;
}

.contact-modal .wpcf7-radio .wpcf7-list-item label::before {
	border-radius: 999px;
}

.contact-modal .wpcf7-radio .wpcf7-list-item label:hover::before,
.contact-modal .wpcf7-checkbox .wpcf7-list-item label:hover::before {
	border-color: var(--modal-blue);
}

.contact-modal .wpcf7-radio .wpcf7-list-item label:has(input:checked)::before,
.contact-modal .wpcf7-checkbox .wpcf7-list-item label:has(input:checked)::before {
	border-color: var(--modal-blue);
	background: var(--modal-blue) url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='white'%20stroke-width='3.5'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M20%206%209%2017l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.contact-modal .wpcf7-radio .wpcf7-list-item label:has(input:checked) .wpcf7-list-item-label,
.contact-modal .wpcf7-checkbox .wpcf7-list-item label:has(input:checked) .wpcf7-list-item-label {
	color: var(--modal-blue-2);
	font-weight: 600;
}

.contact-modal .wpcf7 input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 48px;
	min-width: 200px;
	padding: 0 1.75rem;
	border: none;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--modal-blue) 0%, var(--modal-blue-2) 100%) !important;
	color: #ffffff !important;
	font: inherit;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 12px 26px rgba(37, 99, 235, 0.28);
	transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.contact-modal .wpcf7 input[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 42px rgba(37, 99, 235, 0.36);
	filter: brightness(1.03);
}

.contact-modal .wpcf7 input[type="submit"]:active {
	transform: translateY(0);
}

.contact-modal .wpcf7 p:has(input[type="submit"]) {
	text-align: center;
	grid-column: 1 / -1;
	padding-top: 0.1rem;
}

.contact-modal .wpcf7 p:has(input[type="submit"]) input[type="submit"] {
	width: 100%;
	max-width: 260px;
}

/* ── ERP demo modal ── */
.erp-demo-modal {
	position: fixed;
	inset: 0;
	z-index: 998;
	display: grid;
	place-items: center;
	padding: 1.25rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.28s ease, visibility 0.28s ease;
}

.erp-demo-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.erp-demo-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(6, 11, 24, 0.72);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.erp-demo-modal__dialog {
	position: relative;
	width: min(100%, 900px);
	max-height: 90vh;
	overflow: auto;
	border-radius: 14px;
	box-shadow: 0 4px 32px rgba(0,0,0,0.10);
	transform: translateY(16px) scale(0.96);
	transition: transform 0.28s ease;
	background: #ffffff;
}

.erp-demo-modal.is-open .erp-demo-modal__dialog {
	transform: translateY(0) scale(1);
}

.erp-demo-modal__close {
	position: absolute;
	top: 0.9rem;
	right: 0.9rem;
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 999px;
	background: rgba(0,0,0,0.04);
	color: #666;
	cursor: pointer;
	z-index: 2;
}

.erp-demo-modal__close svg { width: 18px; height: 18px; }

.erp-demo-modal__card {
	display: flex;
	background: #ffffff;
	overflow: hidden;
	border-radius: 14px;
}

.erp-demo-modal .info-panel {
	width: 38%;
	background: #f9f9f9;
	padding: 2.5rem 2rem;
	border-right: 1px solid #ebebeb;
	display: flex;
	flex-direction: column;
	color: #1a1a1a;
}

.erp-demo-modal .info-eyebrow {
	color: #D85A30;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	margin-bottom: 6px;
}

.erp-demo-modal .info-panel h2 {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.15;
	color: #1a1a1a;
	margin-bottom: 2rem;
}

.erp-demo-modal .info-items {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.erp-demo-modal .info-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.erp-demo-modal .info-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #FAECE7;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.erp-demo-modal .info-icon svg {
	width: 18px;
	height: 18px;
	stroke: #D85A30;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.erp-demo-modal .info-text p:first-child {
	font-size: 13px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 3px;
}

.erp-demo-modal .info-text p:last-child {
	font-size: 12px;
	color: #888;
	line-height: 1.6;
}

.erp-demo-modal .form-panel {
	flex: 1;
	padding: 2.5rem 2rem;
	background: #ffffff;
}

/* ── ERP Demo Modal CF7 styles ── */
.erp-demo-modal .wpcf7,
.erp-demo-modal .wpcf7 form {
	width: 100%;
	margin: 0;
	padding: 0;
}

.erp-demo-modal .wpcf7 br {
	display: none;
}

.erp-demo-modal .wpcf7 p {
	margin: 0;
	padding: 0;
}

.erp-demo-modal .wpcf7 .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.erp-demo-modal .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 14px;
}

.erp-demo-modal .form-group {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.erp-demo-modal .form-group.full {
	grid-column: 1 / -1;
}

.erp-demo-modal .wpcf7 label {
	font-size: 12px;
	color: #666;
	font-weight: 500;
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 100%;
}

.erp-demo-modal .wpcf7 label .req { color: #D85A30; }
.erp-demo-modal .wpcf7 label .opt { font-size: 11px; color: #aaa; font-weight: 400; }

.erp-demo-modal .wpcf7 input[type="text"],
.erp-demo-modal .wpcf7 input[type="email"],
.erp-demo-modal .wpcf7 input[type="tel"],
.erp-demo-modal .wpcf7 input[type="date"],
.erp-demo-modal .wpcf7 input[type="number"],
.erp-demo-modal .wpcf7 select,
.erp-demo-modal .wpcf7 textarea {
	width: 100%;
	padding: 9px 12px;
	font-size: 13px;
	border: 1px solid #e4e4e4;
	border-radius: 7px;
	background: #fff;
	color: #1a1a1a;
	outline: none;
	font-family: inherit;
	transition: border-color 0.15s, box-shadow 0.15s;
	appearance: none;
	-webkit-appearance: none;
	box-sizing: border-box;
}

.erp-demo-modal .wpcf7 input[type="text"]:focus,
.erp-demo-modal .wpcf7 input[type="email"]:focus,
.erp-demo-modal .wpcf7 input[type="tel"]:focus,
.erp-demo-modal .wpcf7 input[type="date"]:focus,
.erp-demo-modal .wpcf7 input[type="number"]:focus,
.erp-demo-modal .wpcf7 select:focus,
.erp-demo-modal .wpcf7 textarea:focus {
	border-color: #D85A30;
	box-shadow: 0 0 0 3px rgba(216, 90, 48, 0.10);
}

.erp-demo-modal .wpcf7 select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 14px;
	padding-right: 32px;
	cursor: pointer;
}

.erp-demo-modal .wpcf7 textarea {
	resize: vertical;
	min-height: 80px;
	padding-top: 9px;
}

.erp-demo-modal .wpcf7 input[type="submit"] {
	background: #D85A30;
	color: #fff;
	border: none;
	padding: 11px 32px;
	font-size: 13px;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	font-family: inherit;
	letter-spacing: 0.02em;
	transition: background 0.15s, transform 0.1s;
	margin-top: 4px;
	width: 100%;
}

.erp-demo-modal .wpcf7 input[type="submit"]:hover {
	background: #c04e26;
}

.erp-demo-modal .wpcf7 input[type="submit"]:active {
	transform: scale(0.98);
}

.erp-demo-modal .wpcf7 input.wpcf7-not-valid,
.erp-demo-modal .wpcf7 select.wpcf7-not-valid,
.erp-demo-modal .wpcf7 textarea.wpcf7-not-valid {
	border-color: #ef4444;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.erp-demo-modal .wpcf7 .wpcf7-not-valid-tip {
	color: #dc2626;
	font-size: 11px;
	font-weight: 500;
	margin-top: 3px;
	display: block;
}

.erp-demo-modal .wpcf7 .wpcf7-response-output {
	margin: 10px 0 0;
	padding: 14px 16px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.5;
	border: none !important;
}

.erp-demo-modal .wpcf7 form.sent .wpcf7-response-output,
.erp-demo-modal .wpcf7 .wpcf7-mail-sent-ok {
	background: #EAF3DE;
	color: #27500A;
	border: 1px solid #97C459 !important;
}

.erp-demo-modal .wpcf7 .wpcf7-validation-errors,
.erp-demo-modal .wpcf7 .wpcf7-spam-blocked,
.erp-demo-modal .wpcf7 .wpcf7-acceptance-missing {
	background: #fff7ed;
	color: #c2410c;
	border: 1px solid #f97316 !important;
}

.erp-demo-modal .wpcf7 .wpcf7-spinner {
	margin-left: 8px;
	vertical-align: middle;
}

/* ── Responsive ── */
@media (max-width: 760px) {
	.erp-demo-modal { padding: 0.75rem; }
	.erp-demo-modal__dialog { max-height: 92vh; border-radius: 14px; }
	.erp-demo-modal__card { flex-direction: column; }
	.erp-demo-modal .info-panel { width: 100%; border-right: none; border-bottom: 1px solid #ebebeb; }
	.erp-demo-modal .form-row { grid-template-columns: 1fr; }
	.erp-demo-modal .form-group.full { grid-column: 1; }
	.erp-demo-modal .wpcf7 input[type="submit"] { width: 100%; }
}

@media (max-width: 480px) {
	.erp-demo-modal .info-panel,
	.erp-demo-modal .form-panel { padding: 1.25rem; }
	.erp-demo-modal .info-panel h2 { font-size: 26px; }
}

@media (max-width: 768px) {
	.contact-modal { padding: 0.75rem; }
	.contact-modal__dialog { max-height: 92vh; border-radius: 16px; }
	.contact-modal__shell { grid-template-columns: 1fr; }
	.contact-modal__aside { padding-bottom: 1.25rem; }
	.contact-modal__aside-inner { gap: 1.25rem; }
	.contact-modal__info { margin-top: 1.1rem; gap: 0.85rem; }
	.contact-modal__panel-inner { padding-top: 1.1rem; }
	.contact-modal .wpcf7 form { grid-template-columns: 1fr; }
	.contact-modal .wpcf7-radio,
	.contact-modal .wpcf7-checkbox { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.contact-modal .wpcf7 p:has(input[type="submit"]) input[type="submit"] { max-width: 100%; }
}

@media (max-width: 480px) {
	.contact-modal { padding: 0.5rem; }
	.contact-modal__dialog { border-radius: 14px; }
	.contact-modal__close { top: 0.65rem; right: 0.65rem; width: 34px; height: 34px; }
	.contact-modal__aside,
	.contact-modal__panel-inner { padding: 1rem; }
	.contact-modal__title { font-size: 1.45rem; }
	.contact-modal__lead { font-size: 0.86rem; }
	.contact-modal__socials { flex-wrap: wrap; }
	.contact-modal .wpcf7-radio,
	.contact-modal .wpcf7-checkbox { grid-template-columns: 1fr; }
	.contact-modal .wpcf7 input[type="submit"] { width: 100%; }
}
/* consultation-form */

/* ════════════════════════════════════════════════════════════════════
   CAREERS · POLAROID PHOTO GALLERY  (.cg-*)
   Dark-luxury collage · warm spotlight · glassmorphism recruitment card
   ════════════════════════════════════════════════════════════════════ */
.cg-section {
	position: relative;
	overflow: hidden;
	background: #0a0a0a;
	padding: 110px clamp(20px, 5vw, 80px) 120px;
	isolation: isolate;
	/* Fixed design canvas — the collage is authored at this size, then
	   uniformly scaled to fit any viewport (JS refines --cg-scale; the
	   media-query fallbacks below cover the no-JS case). */
	--cg-design-w: 1180;
	--cg-design-h: 660;
	--cg-scale: 1;
}

/* Warm golden spotlight + soft radial lighting */
.cg-glow {
	position: absolute;
	top: 42%;
	left: 50%;
	width: min(1100px, 120%);
	height: 780px;
	transform: translate(-50%, -50%);
	background:
		radial-gradient(ellipse 46% 52% at 50% 46%, rgba(0,195,212,0.32) 0%, rgba(0,195,212,0.16) 34%, transparent 66%),
		radial-gradient(ellipse 70% 70% at 50% 48%, rgba(0,159,176,0.12) 0%, transparent 70%);
	filter: blur(36px);
	pointer-events: none;
	z-index: 0;
	animation: cgGlowPulse 9s ease-in-out infinite;
}

@keyframes cgGlowPulse {
	0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1);    }
	50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.05); }
}

/* Edge vignette deepens the cinematic feel */
.cg-vignette {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 75% 70% at 50% 50%, transparent 40%, rgba(0,0,0,0.55) 100%);
	pointer-events: none;
	z-index: 0;
}

/* Section heading */
.cg-head {
	position: relative;
	z-index: 5;
	text-align: center;
	margin-bottom: 2.6rem;
}

.cg-head__eyebrow {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #2fd9e8;
	margin-bottom: 0.75rem;
}

.cg-head__title {
	font-size: clamp(1.9rem, 4vw, 3rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #fff;
	background: linear-gradient(180deg, #ffffff 0%, #cfc4b4 100%);
	-webkit-background-clip: text;
	        background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ── Collage stage ──
   The stage keeps its full authored pixel size at every breakpoint; only the
   wrapper scales it down. This guarantees the mobile view is a true miniature
   of the desktop collage (identical positions / rotations / overlap / depth),
   never a re-flowed grid or stack. */
.cg-stage-viewport {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	justify-content: center;
	/* collapse the box to the post-scale height so nothing floats in dead space */
	height: calc(var(--cg-design-h) * 1px * var(--cg-scale));
}

.cg-stage {
	position: relative;
	flex: 0 0 auto;
	width:  calc(var(--cg-design-w) * 1px);
	height: calc(var(--cg-design-h) * 1px);
	transform-origin: top center;
	transform: scale(var(--cg-scale));
	perspective: 1400px;
}

/* Outer figure — owns position + parallax (JS sets --px / --py) */
.cg-polaroid {
	position: absolute;
	width: 250px;
	margin: 0;
	transform: translate3d(var(--px, 0px), var(--py, 0px), 0);
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	opacity: 0;
	animation: cgFadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Middle — owns the gentle float loop */
.cg-polaroid__float {
	animation: cgFloat 7s ease-in-out infinite;
}

/* Inner — owns base rotation + hover lift (the visible polaroid) */
.cg-polaroid__frame {
	--rot: 0deg;
	transform: rotate(var(--rot));
	background: #f7f5f0;
	padding: 12px 12px 38px;
	border-radius: 4px;
	box-shadow:
		0 22px 50px -12px rgba(0,0,0,0.7),
		0 6px 16px rgba(0,0,0,0.5);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
	            box-shadow 0.45s ease;
	cursor: pointer;
}

.cg-polaroid__img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3.4;
	object-fit: cover;
	border-radius: 2px;
	background: #1a1a1a;
}

/* Hover — straighten, lift, scale, deepen shadow */
.cg-polaroid:hover { z-index: 30 !important; }
.cg-polaroid:hover .cg-polaroid__frame {
	transform: rotate(0deg) translateY(-16px) scale(1.06);
	box-shadow:
		0 40px 80px -16px rgba(0,0,0,0.8),
		0 12px 30px rgba(0,195,212,0.22);
}

/* Scatter: position · rotation · depth · float timing */
.cg-polaroid--1 { top:  3%; left:  3%;  z-index: 3; width: 258px; animation-delay: 0.05s; }
.cg-polaroid--1 .cg-polaroid__frame { --rot: -8deg; }
.cg-polaroid--1 .cg-polaroid__float { animation-duration: 6.5s; }

.cg-polaroid--2 { top:  0%; left: 26%; z-index: 5; width: 286px; animation-delay: 0.13s; }
.cg-polaroid--2 .cg-polaroid__frame { --rot: -2deg; }
.cg-polaroid--2 .cg-polaroid__float { animation-duration: 7.6s; animation-delay: 0.4s; }

.cg-polaroid--3 { top:  2%; right: 17%; z-index: 4; width: 252px; animation-delay: 0.21s; }
.cg-polaroid--3 .cg-polaroid__frame { --rot: 6deg; }
.cg-polaroid--3 .cg-polaroid__float { animation-duration: 6.9s; animation-delay: 0.8s; }

.cg-polaroid--4 { top:  7%; right: 0%;  z-index: 2; width: 238px; animation-delay: 0.29s; }
.cg-polaroid--4 .cg-polaroid__frame { --rot: 9deg; }
.cg-polaroid--4 .cg-polaroid__float { animation-duration: 8.1s; animation-delay: 0.2s; }

.cg-polaroid--5 { bottom: 6%; left: 1%; z-index: 4; width: 252px; animation-delay: 0.37s; }
.cg-polaroid--5 .cg-polaroid__frame { --rot: -10deg; }
.cg-polaroid--5 .cg-polaroid__float { animation-duration: 7.2s; animation-delay: 1s; }

.cg-polaroid--6 { bottom: 1%; left: 27%; z-index: 4; width: 272px; animation-delay: 0.45s; }
.cg-polaroid--6 .cg-polaroid__frame { --rot: 3deg; }
.cg-polaroid--6 .cg-polaroid__float { animation-duration: 6.7s; animation-delay: 0.6s; }

.cg-polaroid--7 { bottom: 3%; right: 13%; z-index: 5; width: 250px; animation-delay: 0.53s; }
.cg-polaroid--7 .cg-polaroid__frame { --rot: -5deg; }
.cg-polaroid--7 .cg-polaroid__float { animation-duration: 7.9s; animation-delay: 0.3s; }

.cg-polaroid--8 { bottom: 13%; right: 1%; z-index: 3; width: 230px; animation-delay: 0.61s; }
.cg-polaroid--8 .cg-polaroid__frame { --rot: 7deg; }
.cg-polaroid--8 .cg-polaroid__float { animation-duration: 8.3s; animation-delay: 0.9s; }

@keyframes cgFloat {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-14px); }
}

/* Opacity-only entrance so transform stays free for parallax + hover */
@keyframes cgFadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* ── Center glassmorphism recruitment card ── */
.cg-card {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 20;
	width: min(372px, 82%);
	transform: translate(calc(-50% + var(--px, 0px)), calc(-50% + var(--py, 0px)));
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	padding: 38px 34px 34px;
	text-align: center;
	border-radius: 24px;
	background: linear-gradient(160deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.06) 100%);
	border: 1px solid rgba(255,255,255,0.22);
	-webkit-backdrop-filter: blur(20px) saturate(150%);
	        backdrop-filter: blur(20px) saturate(150%);
	box-shadow:
		0 40px 90px -20px rgba(0,0,0,0.75),
		inset 0 1px 0 rgba(255,255,255,0.35);
	opacity: 0;
	animation: cgFadeIn 1s 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cg-card__title {
	font-size: clamp(2.1rem, 2.7vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.08;
	color: #fff;
	margin-bottom: 0.7rem;
}

.cg-card__sub {
	font-size: 1.04rem;
	line-height: 1.55;
	color: rgba(255,255,255,0.85);
	margin-bottom: 1.6rem;
}

/* Avatar stack */
.cg-card__avatars {
	display: flex;
	justify-content: center;
	margin-bottom: 1.8rem;
}

.cg-avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	overflow: hidden;
	border: 2.5px solid rgba(20,18,16,0.9);
	box-shadow: 0 6px 16px rgba(0,0,0,0.5);
	margin-left: -16px;
	background: #2a2a2a;
}
.cg-card__avatars .cg-avatar:first-child { margin-left: 0; }

.cg-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cg-avatar--plus {
	display: grid;
	place-items: center;
	color: #04222a;
	background: linear-gradient(140deg, #2fd9e8 0%, #009fb0 100%);
}

/* CTA button */
.cg-card__btn {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	padding: 15px 30px;
	border-radius: 100px;
	font-size: 1.05rem;
	font-weight: 700;
	color: #04222a;
	background: linear-gradient(135deg, #2fd9e8 0%, #009fb0 100%);
	box-shadow: 0 12px 30px -6px rgba(0,195,212,0.6), inset 0 1px 0 rgba(255,255,255,0.4);
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.cg-card__btn svg { transition: transform 0.3s ease; }

.cg-card__btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px -8px rgba(0,195,212,0.75), inset 0 1px 0 rgba(255,255,255,0.5);
}
.cg-card__btn:hover svg { transform: translateX(4px); }

/* ── Responsive ──
   The collage is NEVER re-flowed. We only shrink the whole composition with
   --cg-scale so phones get a faithful miniature of the desktop collage.
   JS sets the exact value (viewport ÷ design width); these breakpoints are a
   safe, slightly-conservative fallback for when JS hasn't run yet. */
@media (max-width: 1240px) { .cg-section { --cg-scale: 0.90; } }
@media (max-width: 1100px) { .cg-section { --cg-scale: 0.80; } }
@media (max-width:  960px) { .cg-section { --cg-scale: 0.68; } }
@media (max-width:  820px) { .cg-section { --cg-scale: 0.58; } }

/* Tablet & down: trim section padding so the collage can scale up larger */
@media (max-width: 820px) {
	.cg-section { padding: 84px clamp(12px, 3vw, 32px) 90px; }
}

@media (max-width:  720px) { .cg-section { --cg-scale: 0.50; } }
@media (max-width:  620px) { .cg-section { --cg-scale: 0.43; } }
@media (max-width:  520px) { .cg-section { --cg-scale: 0.37; } }
@media (max-width:  430px) { .cg-section { --cg-scale: 0.31; } }
@media (max-width:  380px) { .cg-section { --cg-scale: 0.27; } }

@media (max-width: 720px) {
	.cg-section { padding: 64px 10px 70px; }
	.cg-head { margin-bottom: 1.4rem; }
	.cg-glow { height: 620px; }
}

/* Motion-safe: kill ambient animation for users who opt out */
@media (prefers-reduced-motion: reduce) {
	.cg-section [class*="cg-"] { animation: none !important; }
	.cg-polaroid { opacity: 1; }
	.cg-card { opacity: 1; }
}
