/* =============================================================
   MCTL BD — Modern Industrial Theme
   Palette: deep navy base, Mapei blue accent, safety orange CTA
   Type: San Francisco / system font stack (Apple-style)
   ============================================================= */

:root {
	--navy-950: #060d17;
	--navy-900: #0a1626;
	--navy-800: #102338;
	--navy-700: #1a3450;
	--blue-600: #1467c2;
	--blue-500: #1f7fe0;
	--blue-400: #4da3f0;
	--orange-500: #f97316;
	--orange-600: #ea620a;
	--slate-900: #0f172a;
	--slate-600: #475569;
	--slate-400: #94a3b8;
	--slate-200: #e2e8f0;
	--slate-100: #f1f5f9;
	--slate-50: #f8fafc;
	--white: #ffffff;
	--font-head: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	--font-body: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	--radius: 14px;
	--radius-lg: 22px;
	--shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
	--shadow-md: 0 8px 30px rgba(15, 23, 42, 0.10);
	--shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.16);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--z-header: 1000;
	--z-nav: 900;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--slate-900);
	background: var(--white);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--blue-500); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
ul { padding: 0; margin: 0; }
button { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }

.skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--orange-500); color: #fff; padding: 10px 18px; z-index: 100;
	border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

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

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 14px 28px; border-radius: 999px;
	font-family: var(--font-head); font-weight: 600; font-size: 15px;
	cursor: pointer; border: 2px solid transparent;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.25s ease, transform 0.25s var(--ease);
}
.btn .icon { transition: transform 0.25s var(--ease); }
.btn:hover .icon-arrow { transform: translateX(4px); }
.btn-cta { background: var(--orange-500); color: #fff; box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35); }
.btn-cta:hover { background: var(--orange-600); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(249, 115, 22, 0.45); }
.btn-primary { background: var(--blue-600); color: #fff; }
.btn-primary:hover { background: var(--blue-500); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, 0.08); }
.section-light .btn-ghost, .section-muted .btn-ghost { color: var(--navy-800); border-color: var(--slate-200); }

/* ---------- Header ---------- */
.site-header {
	position: fixed; inset: 16px 16px auto; z-index: var(--z-header);
	max-width: 1240px; margin: 0 auto;
	background: linear-gradient(180deg, rgba(18, 34, 56, 0.50), rgba(8, 18, 32, 0.42));
	backdrop-filter: blur(22px) saturate(180%); -webkit-backdrop-filter: blur(22px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	box-shadow:
		0 8px 32px rgba(3, 9, 18, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.16),
		inset 0 -1px 0 rgba(255, 255, 255, 0.04);
	transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.is-scrolled {
	background: linear-gradient(180deg, rgba(12, 26, 44, 0.72), rgba(6, 14, 26, 0.66));
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow:
		0 10px 40px rgba(3, 9, 18, 0.40),
		inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 10px 24px; }
.site-branding .custom-logo { max-height: 55px; width: auto; }
.site-logo-img { display: inline-flex; align-items: center; }
.site-logo-img img { height: 55px; width: auto; display: block; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; }
.nav-menu li { position: relative; }
.nav-menu a {
	display: block; padding: 10px 14px; border-radius: 8px;
	color: rgba(255, 255, 255, 0.85); font-family: var(--font-head); font-weight: 500; font-size: 15px;
	transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-menu a:hover, .nav-menu .current-menu-item > a { color: #fff; background: rgba(255, 255, 255, 0.08); }
.submenu-toggle { display: none; } /* mobile-only; shown in the ≤860px query */
/* dropdown */
.nav-menu .sub-menu {
	position: absolute; top: calc(100% + 10px); left: 0; min-width: 220px;
	background: linear-gradient(180deg, rgba(18, 34, 56, 0.85), rgba(10, 22, 38, 0.82));
	backdrop-filter: blur(22px) saturate(180%); -webkit-backdrop-filter: blur(22px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius); padding: 8px; list-style: none;
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity 0.22s ease, transform 0.22s var(--ease), visibility 0.22s;
	box-shadow: 0 16px 44px rgba(3, 9, 18, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.14);
	z-index: var(--z-nav);
}
.nav-menu li:hover > .sub-menu, .nav-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Nav search bar ---------- */
.nav-search-wrap {
	position: relative; display: flex; align-items: center;
	background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
	border-radius: 999px; transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	min-width: 200px;
}
.nav-search-wrap:focus-within {
	background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.35);
	box-shadow: 0 0 0 3px rgba(77,163,240,0.20);
}
.nav-search-icon { display: flex; align-items: center; padding: 0 0 0 12px; color: rgba(255,255,255,0.55); flex: 0 0 auto; }
.nav-search-input {
	flex: 1; border: 0; background: transparent; padding: 8px 10px;
	font-family: var(--font-body); font-size: 13.5px; color: #fff;
	outline: none; min-width: 0;
}
.nav-search-input::placeholder { color: rgba(255,255,255,0.45); }
.nav-search-input::-webkit-search-cancel-button { filter: invert(1); opacity: 0.5; cursor: pointer; }
.nav-search-spinner {
	display: none; width: 14px; height: 14px; margin-right: 12px; flex: 0 0 auto;
	border: 2px solid rgba(255,255,255,0.2); border-top-color: var(--blue-400);
	border-radius: 50%; animation: spin 0.7s linear infinite;
}
.nav-search-wrap.is-loading .nav-search-spinner { display: block; }

.nav-search-list {
	display: none; position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 500;
	background: var(--navy-900); border: 1px solid rgba(255,255,255,0.12);
	border-radius: var(--radius); box-shadow: var(--shadow-lg);
	list-style: none; padding: 6px; margin: 0; max-height: 320px; overflow-y: auto;
}
.nav-search-wrap.has-results .nav-search-list { display: block; }
.nav-search-item {
	display: flex; align-items: center; gap: 10px;
	padding: 8px 10px; border-radius: 8px; cursor: pointer;
	text-decoration: none; color: rgba(255,255,255,0.85);
	transition: background-color 0.15s ease;
}
.nav-search-item:hover, .nav-search-item.is-active { background: rgba(255,255,255,0.07); color: #fff; }
.nav-search-thumb {
	width: 36px; height: 36px; border-radius: 6px; object-fit: cover;
	background: var(--navy-800); flex: 0 0 auto;
}
.nav-search-thumb-placeholder {
	width: 36px; height: 36px; border-radius: 6px; flex: 0 0 auto;
	background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
	display: flex; align-items: center; justify-content: center; color: #fff;
}
.nav-search-name { font-family: var(--font-head); font-weight: 500; font-size: 13.5px; }
.nav-search-name mark { background: none; color: var(--orange-500); font-weight: 700; }
.nav-search-empty { padding: 12px 10px; text-align: center; color: var(--slate-400); font-size: 13px; }
.nav-cta { padding: 11px 22px; font-size: 14px; }

.nav-toggle {
	display: none;
	background: none;
	border: 0;
	color: #fff;
	cursor: pointer;
	padding: 10px;
	border-radius: 10px;
	transition: background 0.2s, transform 0.2s;
}
.nav-toggle:hover { background: rgba(255,255,255,0.12); transform: scale(1.14); }
.nav-toggle:active { transform: scale(0.91); }
.nav-toggle-close { display: none; }
.nav-open .nav-toggle-open { display: none; }
.nav-open .nav-toggle-close { display: inline-flex; }

@keyframes nav-toggle-pop {
	0%   { transform: scale(0.5) rotate(-30deg); opacity: 0; }
	60%  { transform: scale(1.25) rotate(6deg);  opacity: 1; }
	80%  { transform: scale(0.95) rotate(-2deg); }
	100% { transform: scale(1)   rotate(0deg);   opacity: 1; }
}
@keyframes nav-toggle-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(31,127,224,0); }
	50%       { box-shadow: 0 0 0 6px rgba(31,127,224,0.22); }
}

/* ---------- Hero ---------- */
.hero {
	position: relative; min-height: 100vh; display: flex; align-items: center;
	background:
		linear-gradient(160deg, rgba(6,13,23,0.88) 0%, rgba(10,22,38,0.80) 55%, rgba(16,35,56,0.75) 100%),
		url('../img/img-construction-site.jpg') center / cover no-repeat;
	color: #fff; overflow: hidden; padding: 120px 0 70px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-parallax { will-change: transform, translate; }

/* Aurora — slowly shifting colour wash */
.hero-aurora {
	position: absolute; inset: -20%;
	background:
		radial-gradient(40% 50% at 20% 30%, rgba(31,127,224,0.32), transparent 60%),
		radial-gradient(45% 55% at 80% 25%, rgba(249,115,22,0.20), transparent 60%),
		radial-gradient(50% 60% at 60% 80%, rgba(77,163,240,0.22), transparent 60%);
	filter: blur(40px); opacity: 0.9;
	animation: aurora-shift 18s ease-in-out infinite alternate;
}
@keyframes aurora-shift {
	0%   { transform: translate(0,0) scale(1); }
	50%  { transform: translate(2%, -2%) scale(1.06); }
	100% { transform: translate(-2%, 2%) scale(1.04); }
}

.hero-grid-pattern {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(77, 163, 240, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(77, 163, 240, 0.07) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 75%);
	animation: grid-pan 28s linear infinite;
}
@keyframes grid-pan { to { background-position: 56px 56px; } }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.hero-glow-1 { width: 520px; height: 520px; top: -120px; right: -80px; background: radial-gradient(circle, rgba(31, 127, 224, 0.55), transparent 70%); animation: drift 14s ease-in-out infinite alternate; }
.hero-glow-2 { width: 420px; height: 420px; bottom: -140px; left: -60px; background: radial-gradient(circle, rgba(249, 115, 22, 0.30), transparent 70%); animation: drift 18s ease-in-out infinite alternate-reverse; }
.hero-glow-3 { width: 360px; height: 360px; top: 30%; left: 45%; background: radial-gradient(circle, rgba(77, 163, 240, 0.28), transparent 70%); animation: drift 22s ease-in-out infinite alternate; }
@keyframes drift { from { transform: translate(0, 0) scale(1); } to { transform: translate(50px, 40px) scale(1.12); } }

/* Floating orbs */
.hero-orb {
	position: absolute; border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.5), rgba(77,163,240,0.18) 45%, transparent 70%);
	box-shadow: 0 0 40px rgba(77,163,240,0.25);
}
.hero-orb-1 { width: 14px; height: 14px; top: 24%; right: 18%; animation: float-y 7s ease-in-out infinite; }
.hero-orb-2 { width: 9px;  height: 9px;  top: 62%; right: 30%; animation: float-y 9s ease-in-out infinite 0.6s; }
.hero-orb-3 { width: 18px; height: 18px; top: 70%; left: 14%; background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.5), rgba(249,115,22,0.22) 45%, transparent 70%); animation: float-y 8s ease-in-out infinite 1.2s; }
@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* Floating feature chips */
.hero-floaters { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-chip {
	position: absolute; display: inline-flex; align-items: center; gap: 7px;
	padding: 9px 16px; border-radius: 999px;
	background: rgba(255,255,255,0.08);
	backdrop-filter: blur(12px) saturate(160%); -webkit-backdrop-filter: blur(12px) saturate(160%);
	border: 1px solid rgba(255,255,255,0.16);
	color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 13px;
	box-shadow: 0 8px 28px rgba(3,9,18,0.3);
	opacity: 0; animation: chip-in 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-chip .icon { color: var(--orange-400); }
.hero-chip-1 { top: 20%;  right: 8%;  animation-delay: 0.7s; }
.hero-chip-2 { top: 38%;  right: 16%; animation-delay: 0.9s; }
.hero-chip-3 { top: 56%;  right: 6%;  animation-delay: 1.1s; }
.hero-chip-3 .icon { color: #4da3f0; }
.hero-chip-4 { top: 74%;  right: 22%; animation-delay: 1.3s; }
.hero-chip-1, .hero-chip-3 { animation-name: chip-in, float-y; animation-duration: 0.9s, 6.5s; animation-timing-function: cubic-bezier(0.16,1,0.3,1), ease-in-out; animation-iteration-count: 1, infinite; animation-fill-mode: forwards, none; }
.hero-chip-2, .hero-chip-4 { animation-name: chip-in, float-y; animation-duration: 0.9s, 7.5s; animation-timing-function: cubic-bezier(0.16,1,0.3,1), ease-in-out; animation-iteration-count: 1, infinite; animation-fill-mode: forwards, none; }
@keyframes chip-in { from { opacity: 0; transform: translateY(20px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }

.hero-inner { position: relative; max-width: 880px; z-index: 2; }

/* Cinematic staggered entrance (Apple-style) */
.hero-fx { opacity: 0; will-change: transform, opacity, filter; animation: hero-rise 1.05s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero-fx[data-fx="0"] { animation-delay: 0.05s; }
.hero-fx[data-fx="1"] { animation-delay: 0.18s; }
.hero-fx[data-fx="2"] { animation-delay: 0.32s; }
.hero-fx[data-fx="3"] { animation-delay: 0.46s; }
.hero-fx[data-fx="4"] { animation-delay: 0.9s; }
@keyframes hero-rise {
	from { opacity: 0; transform: translateY(44px) scale(0.985); filter: blur(10px); }
	to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.hero-kicker {
	display: inline-flex; align-items: center; gap: 9px;
	padding: 8px 18px 8px 14px; border-radius: 999px; position: relative; overflow: hidden;
	background: rgba(31, 127, 224, 0.15); border: 1px solid rgba(77, 163, 240, 0.35);
	color: var(--blue-400); font-family: var(--font-head); font-weight: 500; font-size: 14px;
	margin-bottom: 26px;
}
.hero-kicker-dot {
	width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
	background: var(--orange-500); box-shadow: 0 0 0 0 rgba(249,115,22,0.5);
	animation: kicker-pulse 2.2s ease-out infinite;
}
@keyframes kicker-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(249,115,22,0.5); }
	70%  { box-shadow: 0 0 0 8px rgba(249,115,22,0); }
	100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}
/* shimmer sweep across the kicker */
.hero-kicker::after {
	content: ''; position: absolute; top: 0; left: -60%; width: 50%; height: 100%;
	background: linear-gradient(100deg, transparent, rgba(255,255,255,0.22), transparent);
	transform: skewX(-18deg); animation: kicker-shimmer 4.5s ease-in-out infinite;
}
@keyframes kicker-shimmer { 0%, 60% { left: -60%; } 100% { left: 130%; } }

.hero-title {
	font-size: clamp(32px, 5.4vw, 58px); font-weight: 800; letter-spacing: -0.025em;
	line-height: 1.06; margin-bottom: 20px;
	background: linear-gradient(180deg, #ffffff 0%, #cfe0f5 100%);
	-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle { font-size: clamp(17px, 2vw, 20px); color: var(--slate-400); max-width: 640px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 64px; }

/* Animated CTA shine */
.hero-cta { position: relative; overflow: hidden; }
.hero-cta::after {
	content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
	background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
	transform: skewX(-20deg); animation: cta-shine 4s ease-in-out infinite 1.5s;
}
@keyframes cta-shine { 0%, 55% { left: -120%; } 100% { left: 160%; } }

.hero-stats {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
	padding-top: 36px; border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-num, .stat-num-wrap { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 3.4vw, 42px); color: #fff; }
.stat-plus { font-family: var(--font-head); font-weight: 800; font-size: clamp(22px, 2.6vw, 32px); color: var(--orange-500); }
.stat-label { display: block; color: var(--slate-400); font-size: 14px; margin-top: 4px; }

.hero-scroll-hint {
	position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
	width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 14px;
	opacity: 0; animation: hint-in 0.8s ease forwards 1.1s; z-index: 2;
}
@keyframes hint-in {
	from { opacity: 0; transform: translateX(-50%) translateY(10px); }
	to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.hero-scroll-hint span {
	position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
	background: var(--orange-500); border-radius: 2px; animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-light { background: var(--white); }
.section-muted { background: var(--slate-50); }
.section-dark {
	background: linear-gradient(170deg, var(--navy-900), var(--navy-950)); color: #fff;
}
/* About/Mission section — photo background */
#about.section-dark {
	background:
		linear-gradient(170deg, rgba(10,22,38,0.92), rgba(6,13,23,0.88)),
		url('../img/img-workers-discuss.jpg') center / cover no-repeat;
}
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-kicker {
	font-family: var(--font-head); font-weight: 600; font-size: 14px; letter-spacing: 0.14em;
	text-transform: uppercase; color: var(--orange-500); margin-bottom: 12px;
}
.section-title { font-size: clamp(24px, 3.2vw, 36px); font-weight: 700; letter-spacing: -0.015em; }
.section-dark .section-title { color: #fff; }
.section-sub { color: var(--slate-600); font-size: 18px; }
.section-dark .section-sub, .section-dark p { color: var(--slate-400); }

/* ---------- Category grid ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-card {
	display: flex; align-items: center; gap: 14px;
	padding: 22px 24px; border-radius: var(--radius);
	background: var(--slate-50); border: 1px solid var(--slate-200);
	color: var(--slate-900); cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.25s var(--ease), background-color 0.2s ease;
}
.cat-card:hover { background: #fff; border-color: var(--blue-400); box-shadow: var(--shadow-md); transform: translateY(-4px); color: var(--slate-900); }
.cat-icon {
	display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
	width: 50px; height: 50px; border-radius: 12px;
	background: linear-gradient(135deg, var(--blue-600), var(--blue-400)); color: #fff;
	transition: transform 0.25s var(--ease);
}
.cat-card:hover .cat-icon { transform: rotate(-6deg); }
.cat-name { font-family: var(--font-head); font-weight: 600; font-size: 16px; flex: 1; }
.cat-arrow { color: var(--slate-400); opacity: 0; transform: translateX(-6px); transition: opacity 0.2s ease, transform 0.25s var(--ease), color 0.2s ease; }
.cat-card:hover .cat-arrow { opacity: 1; transform: translateX(0); color: var(--orange-500); }

/* ---------- Service grid ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
	padding: 24px 22px; border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.09);
	transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.service-card:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(77, 163, 240, 0.45); transform: translateY(-6px); box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35); }
.service-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; border-radius: 12px; margin-bottom: 14px;
	background: linear-gradient(135deg, rgba(31, 127, 224, 0.25), rgba(31, 127, 224, 0.08));
	border: 1px solid rgba(77, 163, 240, 0.35); color: var(--blue-400);
}
.service-card h3 { color: #fff; font-size: 17px; font-weight: 600; }
.service-card p { color: var(--slate-400); font-size: 14px; margin: 0; }

/* ---------- About split ---------- */
.about-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: center; }
.about-text .section-title { margin-bottom: 18px; }
.about-text > p { color: var(--slate-600); font-size: 17px; }
.check-list { list-style: none; margin: 26px 0 34px; display: grid; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; }
.check-list .icon { flex: 0 0 auto; margin-top: 2px; color: var(--orange-500); }

.about-card-stack { position: relative; display: grid; gap: 20px; }
.about-card {
	padding: 30px 32px; border-radius: var(--radius-lg); background: #fff;
	border: 1px solid var(--slate-200); box-shadow: var(--shadow-md);
	transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.about-card:hover { transform: translateY(-5px) scale(1.01); box-shadow: var(--shadow-lg); }
.about-card .ac-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 34px; color: var(--blue-600); }
.about-card .ac-label { color: var(--slate-600); font-size: 15px; }
.ac-2 { margin-left: 42px; border-left: 4px solid var(--orange-500); }
.ac-3 { margin-left: 12px; border-left: 4px solid var(--blue-400); }

/* ---------- Projects ---------- */
.project-grid, .product-grid, .post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.product-grid, .post-grid { grid-template-columns: repeat(4, 1fr); }
.product-grid { gap: 20px; }
.project-card, .product-card, .post-card {
	display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden;
	background: #fff; border: 1px solid var(--slate-200); color: var(--slate-900); cursor: pointer;
	transition: box-shadow 0.3s ease, transform 0.3s var(--ease), border-color 0.25s ease;
}
.project-card:hover, .product-card:hover, .post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-400); color: var(--slate-900); }

/* ---------- Product card — clean, modern, compact ---------- */
.product-card {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.07);
	border-radius: 16px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	position: relative;
	transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.25s ease;
}
/* gradient accent line that draws in on hover */
.product-card::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 3;
	background: linear-gradient(90deg, var(--blue-500), var(--orange-500));
	transform: scaleX(0); transform-origin: left;
	transition: transform 0.45s var(--ease);
}
.product-card:hover {
	transform: translateY(-8px);
	border-color: rgba(20, 103, 194, 0.22);
	box-shadow: 0 22px 46px rgba(20, 103, 194, 0.16);
}
.product-card:hover::before { transform: scaleX(1); }

.project-media, .post-card-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--slate-100); }
.product-media {
	aspect-ratio: 4 / 3; overflow: hidden; position: relative;
	background: linear-gradient(140deg, #eef5ff 0%, #f8fbff 55%, #fff 100%);
	border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}
/* soft corner glow inside the media */
.product-media::before {
	content: ''; position: absolute; top: -30%; right: -20%; width: 60%; height: 80%;
	background: radial-gradient(circle, rgba(20,103,194,0.10), transparent 70%);
	pointer-events: none; transition: opacity 0.4s ease; opacity: 0;
}
.product-card:hover .product-media::before { opacity: 1; }
.project-media img, .product-media img, .post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-media img { padding: 10px; object-fit: contain; }
.project-card:hover img, .product-card:hover img, .post-card:hover img { transform: scale(1.06); }
.project-placeholder {
	width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
	background: linear-gradient(140deg, var(--navy-800), var(--navy-700)); color: var(--blue-400);
}
.project-placeholder-tall { aspect-ratio: 4 / 3; border-radius: var(--radius-lg); }
.project-body, .product-body, .post-card-body { padding: 18px 22px 22px; }
.project-body h2, .project-body h3, .product-body h2, .post-card-body h2 { font-size: 17px; font-weight: 600; }
.post-card-body h2 a, .product-body h2 { color: var(--slate-900); }
.project-body p, .product-body p, .post-card-body p { color: var(--slate-600); font-size: 16px; margin-bottom: 0; }
.product-body p { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.project-link, .product-read-more {
	display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
	font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--orange-500);
}
.project-link .icon, .product-read-more .icon { transition: transform 0.25s var(--ease); }
.project-card:hover .project-link .icon, .product-card:hover .product-read-more .icon { transform: translateX(4px); }
.product-cat {
	display: inline-block; margin-bottom: 10px; padding: 4px 12px; border-radius: 999px;
	background: rgba(20, 103, 194, 0.10); color: var(--blue-600);
	font-family: var(--font-head); font-weight: 600; font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase;
}

/* Compact product body */
.product-body { padding: 15px 16px 17px; }
.product-body h2 { font-size: 15px; font-weight: 700; line-height: 1.35; color: var(--navy-900); margin-bottom: 6px; letter-spacing: -0.01em; }
.product-body p { font-size: 12.5px; line-height: 1.55; color: var(--slate-500); }
.product-cat { margin-bottom: 9px; padding: 3px 10px; font-size: 10.5px; }
.product-read-more { margin-top: 11px; font-size: 12px; }

/* ---------- Products archive — aesthetic section ---------- */
.products-section {
	position: relative; overflow: hidden;
	background:
		radial-gradient(55% 45% at 88% 2%, rgba(20,103,194,0.07), transparent 60%),
		radial-gradient(45% 45% at 4% 98%, rgba(249,115,22,0.05), transparent 60%),
		linear-gradient(180deg, #f7faff 0%, #eef4fc 100%);
}
.products-section::before {
	content: ''; position: absolute; inset: 0; pointer-events: none;
	background-image: radial-gradient(rgba(20,103,194,0.07) 1px, transparent 1px);
	background-size: 22px 22px;
	mask-image: radial-gradient(ellipse 78% 55% at 50% 28%, #000, transparent 78%);
	-webkit-mask-image: radial-gradient(ellipse 78% 55% at 50% 28%, #000, transparent 78%);
	opacity: 0.6;
}
.products-section > .container { position: relative; z-index: 1; }
.post-card-body time { color: var(--slate-400); font-size: 14px; }

/* ---------- Marquee ---------- */
.section-clients { padding-bottom: 90px; }
.marquee { overflow: hidden; position: relative; padding: 10px 0;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: inline-flex; align-items: center; gap: 64px; white-space: nowrap; animation: marquee 38s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; flex: 0 0 auto; }
.marquee-item img { max-height: 52px; width: auto; filter: grayscale(1); opacity: 0.65; transition: filter 0.25s ease, opacity 0.25s ease; }
.marquee-item:hover img { filter: grayscale(0); opacity: 1; }
.marquee-text {
	font-family: var(--font-head); font-weight: 700; font-size: 24px; color: var(--slate-400);
	letter-spacing: 0.01em; transition: color 0.25s ease;
}
.marquee-text:hover { color: var(--navy-800); }

/* ---------- Why grid ---------- */
.section-why {
	background:
		linear-gradient(170deg, rgba(6,13,23,0.93), rgba(10,22,38,0.90)),
		url('../img/img-aerial-site.jpg') center / cover no-repeat fixed;
}
.why-grid {
	display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
}
.why-card { grid-column: span 2; }
.why-card:nth-child(4) { grid-column: 2 / span 2; }
.why-card:nth-child(5) { grid-column: 4 / span 2; }
.why-card {
	position: relative; padding: 24px 22px; border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.09); overflow: hidden;
	transition: border-color 0.25s ease, transform 0.3s var(--ease), background-color 0.25s ease;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(249, 115, 22, 0.5); background: rgba(255, 255, 255, 0.06); }
.why-num {
	position: absolute; top: 14px; right: 18px;
	font-family: var(--font-head); font-weight: 800; font-size: 34px;
	color: rgba(255, 255, 255, 0.07);
}
.why-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 11px; margin-bottom: 14px;
	background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(249, 115, 22, 0.08));
	border: 1px solid rgba(249, 115, 22, 0.40); color: var(--orange-500);
}
.why-card h3 { color: #fff; font-size: 16px; font-weight: 600; }
.why-card p { color: var(--slate-400); font-size: 14px; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
	background:
		linear-gradient(120deg, rgba(20,103,194,0.92) 0%, rgba(16,35,56,0.90) 85%),
		url('../img/img-residential.jpg') center / cover no-repeat;
	color: #fff; padding: 64px 0; position: relative; overflow: hidden; isolation: isolate;
}
/* slim animated accent line at the top edge */
.cta-band::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 3;
	background: linear-gradient(90deg, transparent, var(--orange-500), var(--blue-400), transparent);
	background-size: 220% 100%;
	animation: cta-line-slide 6s linear infinite;
}
@keyframes cta-line-slide { to { background-position: 220% 0; } }

/* animated decorative layers */
.cta-aurora {
	position: absolute; inset: -25%; z-index: 0; pointer-events: none;
	background:
		radial-gradient(40% 50% at 18% 30%, rgba(31,127,224,0.42), transparent 60%),
		radial-gradient(45% 55% at 82% 25%, rgba(249,115,22,0.30), transparent 60%),
		radial-gradient(50% 60% at 60% 85%, rgba(77,163,240,0.28), transparent 60%);
	filter: blur(46px); opacity: 0.85;
	animation: aurora-shift 16s ease-in-out infinite alternate;
}
.cta-grid {
	position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background-image:
		linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 80% 90% at 35% 50%, #000 30%, transparent 78%);
	-webkit-mask-image: radial-gradient(ellipse 80% 90% at 35% 50%, #000 30%, transparent 78%);
	animation: grid-pan 26s linear infinite;
}
.cta-glow { position: absolute; z-index: 0; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.cta-glow-1 { width: 360px; height: 360px; top: -120px; right: -60px; background: radial-gradient(circle, rgba(249,115,22,0.40), transparent 70%); animation: drift 15s ease-in-out infinite alternate; }
.cta-glow-2 { width: 300px; height: 300px; bottom: -130px; left: -40px; background: radial-gradient(circle, rgba(31,127,224,0.42), transparent 70%); animation: drift 19s ease-in-out infinite alternate-reverse; }
.cta-orb { position: absolute; z-index: 1; border-radius: 50%; background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.65), rgba(77,163,240,0.25) 50%, transparent 72%); pointer-events: none; }
.cta-orb-1 { width: 12px; height: 12px; top: 26%; right: 32%; animation: float-y 7s ease-in-out infinite; }
.cta-orb-2 { width: 8px;  height: 8px;  top: 64%; right: 42%; animation: float-y 9s ease-in-out infinite 0.6s; }
.cta-orb-3 { width: 16px; height: 16px; bottom: 22%; right: 13%; background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.55), rgba(249,115,22,0.30) 48%, transparent 72%); animation: float-y 8s ease-in-out infinite 1.2s; }

.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-copy { max-width: 620px; }

/* kicker pill with pulsing dot */
.cta-kicker {
	display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px;
	font-family: var(--font-head); font-weight: 600; font-size: 12.5px;
	letter-spacing: 0.12em; text-transform: uppercase; color: #cfe0f5;
	padding: 6px 14px; border-radius: 999px;
	background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
	-webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.cta-kicker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange-500); animation: cta-dot-pulse 2.4s ease-out infinite; }
@keyframes cta-dot-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(249,115,22,0.55); }
	70%  { box-shadow: 0 0 0 9px rgba(249,115,22,0); }
	100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}

/* animated gradient heading */
.cta-inner h2 {
	font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 10px;
	background: linear-gradient(100deg, #ffffff 0%, #cfe0f5 35%, #ffd6ab 55%, #ffffff 78%);
	background-size: 220% auto;
	-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
	animation: cta-text-shimmer 8s ease-in-out infinite;
}
@keyframes cta-text-shimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.cta-inner p { color: rgba(255, 255, 255, 0.78); margin: 0; max-width: 480px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* call button: light sweep + ringing phone icon */
.cta-shine { position: relative; overflow: hidden; }
.cta-shine::after {
	content: ''; position: absolute; top: 0; left: -120%; width: 55%; height: 100%;
	background: linear-gradient(100deg, transparent, rgba(255,255,255,0.42), transparent);
	transform: skewX(-20deg); animation: cta-shine 4.5s ease-in-out infinite 1.2s;
}
.cta-shine .icon { transform-origin: center; animation: cta-phone-ring 5s ease-in-out infinite; }
@keyframes cta-phone-ring {
	0%, 86%, 100% { transform: rotate(0); }
	88% { transform: rotate(-13deg); }
	91% { transform: rotate(13deg); }
	94% { transform: rotate(-9deg); }
	97% { transform: rotate(6deg); }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
	background:
		linear-gradient(160deg, rgba(6,13,23,0.88), rgba(16,35,56,0.82)),
		url('../img/img-workers-concrete.jpg') center / cover no-repeat;
	color: #fff; padding: 190px 0 90px; position: relative; overflow: hidden;
}
.page-hero--about {
	background:
		linear-gradient(160deg, rgba(6,13,23,0.85), rgba(10,28,50,0.80)),
		url('../img/img-workers-discuss.jpg') center 30% / cover no-repeat;
}
.page-hero--products {
	background:
		linear-gradient(160deg, rgba(6,13,23,0.86), rgba(14,30,58,0.80)),
		url('../img/img-warehouse.jpg') center / cover no-repeat;
}
.page-hero--contact {
	background:
		linear-gradient(160deg, rgba(6,13,23,0.84), rgba(12,32,55,0.78)),
		url('../img/img-worker-hardhat.jpg') center 20% / cover no-repeat;
}
.page-hero::before {
	content: ''; position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(77, 163, 240, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(77, 163, 240, 0.06) 1px, transparent 1px);
	background-size: 52px 52px;
	mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, #000 20%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, #000 20%, transparent 80%);
	z-index: 0;
}
/* Page heroes — cinematic gradient title */
.page-hero .page-title {
	background: linear-gradient(180deg, #ffffff 0%, #cfe0f5 100%);
	-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero .container { position: relative; }
.page-title { font-size: clamp(34px, 5vw, 54px); font-weight: 800; letter-spacing: -0.02em; margin: 0; }
.page-sub { color: var(--slate-400); font-size: 18px; margin: 16px 0 0; max-width: 620px; }
.page-hero .section-kicker a { color: var(--orange-500); }

/* ---------- Product live search ---------- */
.product-search-wrap { position: relative; z-index: 100; margin: 0 0 32px; max-width: 560px; }
.product-search-box {
	position: relative; display: flex; align-items: center;
	background: #fff; border: 1.5px solid var(--slate-200);
	border-radius: 999px; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-search-box:focus-within {
	border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(31, 127, 224, 0.15);
}
.product-search-icon {
	display: flex; align-items: center; padding: 0 0 0 16px; color: var(--slate-400); flex: 0 0 auto;
}
.product-search-input {
	flex: 1; border: 0; background: transparent; padding: 12px 14px;
	font-family: var(--font-body); font-size: 15px; color: var(--slate-900);
	outline: none; min-width: 0;
}
.product-search-input::-webkit-search-cancel-button { cursor: pointer; }
.product-search-spinner {
	display: none; width: 16px; height: 16px; margin-right: 14px; flex: 0 0 auto;
	border: 2px solid var(--slate-200); border-top-color: var(--blue-500);
	border-radius: 50%; animation: spin 0.7s linear infinite;
}
.product-search-wrap.is-loading .product-search-spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.product-search-list {
	display: none; position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 500;
	background: #fff; border: 1.5px solid var(--slate-200); border-radius: var(--radius);
	box-shadow: var(--shadow-lg); list-style: none; padding: 6px; margin: 0; max-height: 360px; overflow-y: auto;
}
.product-search-wrap.has-results .product-search-list { display: block; }
.product-search-item {
	display: flex; align-items: center; gap: 12px;
	padding: 9px 10px; border-radius: 8px; cursor: pointer;
	transition: background-color 0.15s ease;
	text-decoration: none; color: var(--slate-900);
}
.product-search-item:hover, .product-search-item.is-active {
	background: var(--slate-50); color: var(--slate-900);
}
.product-search-thumb {
	width: 40px; height: 40px; border-radius: 8px; object-fit: cover;
	background: var(--slate-100); flex: 0 0 auto;
}
.product-search-thumb-placeholder {
	width: 40px; height: 40px; border-radius: 8px; flex: 0 0 auto;
	background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
	display: flex; align-items: center; justify-content: center; color: #fff;
}
.product-search-name { font-family: var(--font-head); font-weight: 500; font-size: 14.5px; }
.product-search-name mark { background: none; color: var(--orange-500); font-weight: 700; }
.product-search-empty {
	padding: 14px 10px; text-align: center; color: var(--slate-400); font-size: 14px;
}

/* ---------- Filter pills ---------- */
.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.pill {
	padding: 9px 20px; border-radius: 999px; border: 1px solid var(--slate-200);
	background: #fff; color: var(--slate-600); font-family: var(--font-head); font-weight: 500; font-size: 14px;
	cursor: pointer; transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pill:hover { border-color: var(--blue-400); color: var(--blue-600); }
.pill.is-active { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

/* ---------- Single (generic) ---------- */
.single-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.single-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.single-cta {
	margin-top: 36px; padding: 30px; border-radius: var(--radius-lg);
	background: var(--slate-50); border: 1px solid var(--slate-200);
}
.single-cta h3 { font-size: 20px; }
.single-feature img { border-radius: var(--radius-lg); margin-bottom: 36px; box-shadow: var(--shadow-md); }
.entry-content { font-size: 16px; color: var(--slate-900); line-height: 1.75; }
.entry-content h2 { font-size: 24px; margin-top: 1.4em; }
.entry-content h3 { font-size: 20px; margin-top: 1.3em; }
.entry-content img { border-radius: var(--radius); }
.entry-content ul, .entry-content ol { padding-left: 1.3em; margin-bottom: 1.2em; }

/* ---------- Product detail page ---------- */
.prd-hero {
	position: relative; overflow: hidden;
	background:
		linear-gradient(150deg, rgba(6,13,23,0.90) 0%, rgba(16,35,56,0.82) 60%, rgba(14,32,64,0.85) 100%),
		url('../img/img-building-exterior.jpg') center / cover no-repeat;
	color: #fff; padding: 160px 0 70px;
}
.prd-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.prd-hero-grid {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(77,163,240,0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(77,163,240,0.06) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, #000 20%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, #000 20%, transparent 75%);
}
.prd-hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); }
.prd-hero-glow-1 { width: 480px; height: 480px; top: -160px; right: -60px; background: radial-gradient(circle, rgba(31,127,224,0.45), transparent 70%); }
.prd-hero-glow-2 { width: 340px; height: 340px; bottom: -120px; left: -40px; background: radial-gradient(circle, rgba(249,115,22,0.22), transparent 70%); }
.prd-hero-inner { position: relative; z-index: 2; }
.prd-hero-bg { z-index: 0; }

.prd-breadcrumb {
	display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
	margin-bottom: 20px; font-size: 13.5px;
}
.prd-breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s ease; }
.prd-breadcrumb a:hover { color: #fff; }
.prd-breadcrumb .icon { color: rgba(255,255,255,0.30); }

.prd-badge {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 5px 14px; border-radius: 999px; margin-bottom: 16px;
	background: rgba(249,115,22,0.18); border: 1px solid rgba(249,115,22,0.40);
	color: var(--orange-500); font-family: var(--font-head); font-weight: 600; font-size: 12.5px;
	letter-spacing: 0.08em; text-transform: uppercase;
}
.prd-hero-title {
	font-size: clamp(28px, 4.5vw, 50px); font-weight: 800;
	letter-spacing: -0.02em; margin: 0; max-width: 740px; line-height: 1.15;
	background: linear-gradient(180deg, #ffffff 0%, #cfe0f5 100%);
	-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* Layout */
.prd-section { padding-top: 60px; }
.prd-layout {
	display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}

/* Image column */
.prd-image-wrap {
	position: sticky; top: 100px;
	border-radius: var(--radius-lg); overflow: visible;
}
.prd-image {
	width: 100%; border-radius: var(--radius-lg);
	box-shadow: 0 24px 64px rgba(10,22,38,0.18);
	display: block;
}
.prd-image-placeholder {
	aspect-ratio: 4/3; border-radius: var(--radius-lg);
	background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 14px; color: var(--blue-400);
	box-shadow: 0 24px 64px rgba(10,22,38,0.18);
}
.prd-image-placeholder span { color: var(--slate-400); font-size: 14px; }
.prd-image-badge {
	position: absolute; bottom: -14px; right: 20px;
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 16px; border-radius: 999px;
	background: var(--white); border: 1px solid var(--slate-200);
	box-shadow: var(--shadow-md);
	font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--navy-800);
}
.prd-image-badge .icon { color: var(--orange-500); }

/* Detail column */
.prd-excerpt {
	font-size: 17px; color: var(--slate-600); line-height: 1.7;
	padding-bottom: 24px; margin-bottom: 24px;
	border-bottom: 1px solid var(--slate-200);
}
.prd-content { margin-bottom: 32px; }
.prd-content .entry-content h2 { color: var(--navy-800); }
.prd-content .entry-content h3 { color: var(--navy-700); }
.prd-content .entry-content ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.prd-content .entry-content ul li {
	display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; color: var(--slate-700);
}
.prd-content .entry-content ul li::before {
	content: ''; flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%;
	background: var(--orange-500); margin-top: 7px;
}

/* CTA card */
.prd-cta-card {
	margin-top: 8px; padding: 26px 28px; border-radius: var(--radius-lg);
	background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 12px 40px rgba(10,22,38,0.20);
}
.prd-cta-top {
	display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px;
}
.prd-cta-icon {
	display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
	width: 46px; height: 46px; border-radius: 12px;
	background: rgba(249,115,22,0.18); border: 1px solid rgba(249,115,22,0.35); color: var(--orange-500);
}
.prd-cta-top h3 { color: #fff; font-size: 17px; margin-bottom: 4px; }
.prd-cta-top p { color: var(--slate-400); font-size: 14px; margin: 0; }
.prd-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-outline-nav {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 22px; border-radius: 999px;
	font-family: var(--font-head); font-weight: 600; font-size: 14px;
	background: transparent; border: 1.5px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.85);
	cursor: pointer; transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.btn-outline-nav:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }

/* Back link */
.prd-back {
	display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
	font-family: var(--font-head); font-weight: 500; font-size: 14px;
	color: var(--slate-400); transition: color 0.2s ease, gap 0.25s var(--ease);
}
.prd-back:hover { color: var(--blue-600); gap: 12px; }
.prd-back .icon { transition: transform 0.25s var(--ease); }
.prd-back:hover .icon { transform: translateX(-4px); }

/* Responsive */
@media (max-width: 860px) {
	.prd-layout { grid-template-columns: 1fr; gap: 40px; }
	.prd-image-wrap { position: static; }
	.prd-hero { padding: 130px 0 52px; }
}

/* ---------- Teams / Mapei stats — premium redesign ---------- */
.mapei-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mapei-stat {
	display: flex; flex-direction: column; align-items: center; text-align: center;
	padding: 32px 20px 28px; border-radius: 20px; position: relative; overflow: hidden;
	background: linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
	border: 1px solid rgba(255,255,255,0.09);
	transition: border-color 0.25s, transform 0.3s var(--ease), background 0.25s;
}
/* top accent line */
.mapei-stat::before {
	content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
	width: 72px; height: 2px;
	background: linear-gradient(90deg, transparent, rgba(249,115,22,0.7), transparent);
	border-radius: 0 0 2px 2px;
}
/* corner glow */
.mapei-stat::after {
	content: ''; position: absolute; top: -60px; right: -60px;
	width: 140px; height: 140px; border-radius: 50%;
	background: radial-gradient(circle, rgba(249,115,22,0.07), transparent 70%);
	pointer-events: none;
}
.mapei-stat:hover {
	background: linear-gradient(160deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 100%);
	border-color: rgba(249,115,22,0.28);
	transform: translateY(-6px);
}

/* icon badge */
.mst-icon {
	width: 64px; height: 64px; border-radius: 18px; flex-shrink: 0;
	background: linear-gradient(135deg, rgba(249,115,22,0.22) 0%, rgba(31,127,224,0.18) 100%);
	border: 1px solid rgba(249,115,22,0.22);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 20px;
	box-shadow: 0 4px 20px rgba(249,115,22,0.12);
}
.mst-icon svg { width: 36px; height: 36px; display: block; }

/* number */
.mapei-stat .stat-num {
	font-size: clamp(34px, 3.8vw, 52px); font-weight: 800; font-family: var(--font-head);
	background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent;
	display: block; line-height: 1; margin-bottom: 6px;
}

/* unit line */
.mst-unit {
	display: block; font-family: var(--font-head); font-size: 12px; font-weight: 700;
	letter-spacing: 0.1em; text-transform: uppercase;
	color: rgba(255,255,255,0.5); margin-bottom: 10px;
}

/* label */
.mapei-stat .stat-label {
	font-size: 13px; color: rgba(255,255,255,0.55);
	line-height: 1.55; margin: 0;
}

/* divider line between icon and text area */
.mapei-stat .mst-divider {
	width: 32px; height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	margin: 0 auto 16px;
}
/* ---------- Founders section — Apple-style ---------- */
.founders-section {
	background: #f5f5f7;
	padding: 110px 0 120px;
}
.founders-head {
	text-align: center; max-width: 720px; margin: 0 auto 64px;
}
.founders-eyebrow {
	font-family: var(--font-head); font-size: 14px; font-weight: 600;
	letter-spacing: 0.02em; color: var(--orange-500); margin: 0 0 14px;
}
.founders-headline {
	font-size: clamp(34px, 5vw, 56px); font-weight: 700; letter-spacing: -0.025em;
	color: #1d1d1f; line-height: 1.05; margin: 0 0 18px;
}
.founders-intro {
	font-size: clamp(18px, 2.2vw, 22px); font-weight: 400; line-height: 1.45;
	color: #6e6e73; margin: 0;
}

.founder-grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
	max-width: 720px; margin: 0 auto;
}
.founder-card {
	background: #fff; border-radius: 22px; overflow: hidden;
	margin: 0; display: flex; flex-direction: column;
	box-shadow: 0 4px 24px rgba(0,0,0,0.04);
	transition: transform 0.5s cubic-bezier(0.28, 0.11, 0.32, 1), box-shadow 0.5s ease;
}
.founder-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* Photo */
.founder-photo-wrap {
	position: relative; overflow: hidden; aspect-ratio: 4 / 3;
	background: linear-gradient(180deg, #1d1d1f, #3a3a3c);
}
.founder-photo {
	width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
	display: block; transition: transform 0.7s cubic-bezier(0.28, 0.11, 0.32, 1);
}
.founder-card:hover .founder-photo { transform: scale(1.05); }

/* Info */
.founder-info {
	padding: 22px 24px 24px; text-align: left;
}
.founder-name {
	font-size: 20px; font-weight: 600; color: #1d1d1f;
	margin: 0 0 3px; letter-spacing: -0.02em;
}
.founder-title {
	font-size: 13.5px; font-weight: 400; color: var(--orange-500);
	margin: 0 0 12px; letter-spacing: -0.01em;
}
.founder-bio {
	font-size: 13px; color: #6e6e73; line-height: 1.55; margin: 0 0 18px;
	letter-spacing: -0.01em;
}
.founder-links {
	display: flex; flex-direction: row; gap: 10px;
}
.founder-social-link {
	display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px; border-radius: 50%;
	background: #f5f5f7; color: #1d1d1f; text-decoration: none;
	transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
	flex-shrink: 0;
}
.founder-social-link:hover { transform: scale(1.08); }
.founder-social-link:has(.icon-linkedin):hover { background: #0a66c2; color: #fff; }
.founder-social-link:has(.icon-mail):hover { background: var(--orange-500); color: #fff; }

/* ---------- Contact ---------- */
/* ---------- Contact quick-info strip ---------- */
.contact-strip {
	background: var(--navy-950);
	border-top: 1px solid rgba(255,255,255,0.06);
	border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-strip-grid {
	display: grid; grid-template-columns: repeat(4, 1fr);
}
.contact-strip-item {
	display: flex; align-items: center; gap: 14px;
	padding: 22px 24px; color: #fff; text-decoration: none;
	border-right: 1px solid rgba(255,255,255,0.07);
	transition: background 0.2s;
}
.contact-strip-item:last-child { border-right: 0; }
.contact-strip-item:hover { background: rgba(255,255,255,0.04); }
.csi-icon {
	display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
	width: 40px; height: 40px; border-radius: 10px;
	background: rgba(20,103,194,0.25); color: var(--blue-400);
}
.csi-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.csi-body strong { font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange-400); }
.csi-body { font-size: 13.5px; color: var(--slate-300); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- Contact main layout ---------- */
.contact-section { background: #f8fafc; padding: 64px 0; }
.contact-main { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: stretch; }

/* Info panel — equal-height card */
.contact-panel-info {
	background: #fff; border-radius: 24px; padding: 30px 32px;
	border: 1px solid var(--slate-200);
	box-shadow: 0 4px 32px rgba(6,13,23,0.06), 0 1px 4px rgba(6,13,23,0.03);
	display: flex; flex-direction: column;
}
.contact-panel-title { font-size: clamp(20px, 2.6vw, 25px); font-weight: 700; margin: 8px 0 12px; line-height: 1.3; color: var(--navy-900); }
.contact-panel-sub { color: var(--slate-600); font-size: 14.5px; line-height: 1.6; margin-bottom: 20px; }
.contact-detail-list { list-style: none; display: grid; gap: 0; margin: 0 0 20px; }
.contact-detail-list li {
	display: flex; gap: 14px; align-items: flex-start;
	padding: 12px 0; border-bottom: 1px solid var(--slate-200);
	font-size: 14px; color: var(--slate-700); line-height: 1.55;
}
.contact-detail-list li:first-child { padding-top: 0; }
.contact-detail-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.cdl-icon {
	display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
	width: 36px; height: 36px; border-radius: 9px; margin-top: 2px;
	background: rgba(20,103,194,0.10); color: var(--blue-600);
}
.contact-detail-list strong { font-family: var(--font-head); font-weight: 600; color: var(--navy-800); display: block; margin-bottom: 2px; }
.contact-detail-list a { color: var(--blue-600); text-decoration: none; }
.contact-detail-list a:hover { text-decoration: underline; }
.contact-mapei-badge {
	display: inline-flex; align-items: center; gap: 8px; margin-top: auto;
	padding: 10px 18px; border-radius: 50px;
	background: linear-gradient(135deg, rgba(20,103,194,0.08), rgba(249,115,22,0.06));
	border: 1px solid rgba(20,103,194,0.18);
	font-size: 13px; font-weight: 600; font-family: var(--font-head); color: var(--navy-800);
}
.cmb-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange-500); flex-shrink: 0; }

/* Form panel — equal-height card */
.contact-panel-form { display: flex; }
.contact-form-card {
	width: 100%; display: flex; flex-direction: column;
	background: #fff; border-radius: 24px;
	border: 1px solid var(--slate-200);
	box-shadow: 0 4px 32px rgba(6,13,23,0.08), 0 1px 4px rgba(6,13,23,0.04);
	overflow: hidden;
}
.cfc-header {
	padding: 24px 34px 20px;
	border-bottom: 1px solid var(--slate-100);
	background: linear-gradient(135deg, #f8faff, #fff);
}
.cfc-header h2 { font-size: 20px; font-weight: 700; margin: 0 0 3px; color: var(--navy-900); }
.cfc-header p { font-size: 13.5px; color: var(--slate-500); margin: 0; }
.contact-form { padding: 24px 34px 28px; display: flex; flex-direction: column; flex: 1; }
/* Message field grows so both columns end at the same height */
.contact-form .form-field:has(textarea) { flex: 1; display: flex; flex-direction: column; min-height: 96px; }
.contact-form .form-field:has(textarea) textarea { flex: 1; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label {
	display: block; font-family: var(--font-head); font-weight: 600;
	font-size: 13px; margin-bottom: 6px; color: var(--navy-800);
	letter-spacing: 0.01em;
}
.form-field .req { color: var(--orange-500); margin-left: 2px; }
.form-field input, .form-field textarea {
	width: 100%; padding: 11px 15px; border-radius: 10px;
	border: 1.5px solid var(--slate-200);
	background: var(--slate-50); font-family: var(--font-body); font-size: 15px;
	color: var(--slate-900); transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
	box-sizing: border-box;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--slate-400); }
.form-field input:focus, .form-field textarea:focus {
	outline: none; background: #fff;
	border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(31,127,224,0.15);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-notice {
	display: flex; align-items: center; gap: 10px;
	padding: 14px 18px; border-radius: 10px; margin-bottom: 22px; font-weight: 500; font-size: 15px;
}
.form-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.btn-full { width: 100%; justify-content: center; font-size: 15.5px; padding: 13px 24px; margin-top: 4px; }

/* Honeypot */
.mctl-hp-wrap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Map */
/* ---------- Map section — Apple-style ---------- */
.map-section { background: #f5f5f7; padding: 100px 0 110px; }
.map-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.map-eyebrow {
	font-family: var(--font-head); font-size: 14px; font-weight: 600;
	color: var(--orange-500); margin: 0 0 12px;
}
.map-headline {
	font-size: clamp(30px, 4.5vw, 48px); font-weight: 700; letter-spacing: -0.025em;
	color: #1d1d1f; line-height: 1.08; margin: 0;
}
.map-card {
	position: relative; max-width: 1080px; margin: 0 auto;
	border-radius: 28px; overflow: hidden;
	box-shadow: 0 30px 70px rgba(0,0,0,0.14), 0 4px 16px rgba(0,0,0,0.05);
}
.map-frame { position: relative; height: 520px; }
.map-frame iframe {
	position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block;
	filter: grayscale(0.45) contrast(1.05);
	transition: filter 0.5s ease;
}
.map-card:hover .map-frame iframe { filter: grayscale(0) contrast(1); }

/* Floating glass info card */
.map-info-card {
	position: absolute; bottom: 28px; left: 28px;
	display: flex; align-items: center; gap: 18px;
	max-width: 540px; padding: 20px 24px;
	background: rgba(255,255,255,0.72);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(255,255,255,0.5);
	border-radius: 20px;
	box-shadow: 0 12px 40px rgba(0,0,0,0.16);
}
.map-info-icon {
	display: flex; align-items: center; justify-content: center; flex-shrink: 0;
	width: 48px; height: 48px; border-radius: 14px;
	background: var(--orange-500); color: #fff;
	box-shadow: 0 4px 14px rgba(249,115,22,0.4);
}
.map-info-body { flex: 1; min-width: 0; }
.map-info-body h3 {
	font-size: 17px; font-weight: 700; color: #1d1d1f; margin: 0 0 3px; letter-spacing: -0.01em;
}
.map-info-body p { font-size: 13.5px; color: #6e6e73; margin: 0; line-height: 1.5; }
.map-directions-btn {
	display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0;
	padding: 11px 20px; border-radius: 50px;
	background: #1d1d1f; color: #fff; text-decoration: none;
	font-family: var(--font-head); font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
	transition: background 0.25s ease, transform 0.25s ease;
}
.map-directions-btn:hover { background: var(--orange-500); transform: scale(1.04); }
.map-directions-btn .icon-arrow { transition: transform 0.25s ease; }
.map-directions-btn:hover .icon-arrow { transform: translateX(3px); }

/* ---------- Empty state / pagination ---------- */
.empty-state { text-align: center; padding: 60px 20px; color: var(--slate-600); }
.empty-state .icon { color: var(--slate-400); margin-bottom: 14px; }
.empty-state h2 { font-size: 24px; color: var(--slate-900); }
.pagination { margin-top: 56px; text-align: center; font-family: var(--font-head); }
.pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 42px; height: 42px; padding: 0 10px; margin: 0 3px; border-radius: 10px;
	border: 1px solid var(--slate-200); color: var(--slate-600); font-weight: 500;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.pagination .page-numbers.current { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.pagination .page-numbers:hover:not(.current) { border-color: var(--blue-400); color: var(--blue-600); }

/* ---------- Footer ---------- */
.site-footer {
	background:
		radial-gradient(120% 80% at 15% 0%, rgba(20,52,80,0.55), transparent 60%),
		radial-gradient(100% 90% at 90% 8%, rgba(20,103,194,0.16), transparent 55%),
		var(--navy-950);
	color: var(--slate-400);
	position: relative; overflow: hidden; isolation: isolate;
}
.footer-accent {
	position: relative; z-index: 2; height: 2px;
	background: linear-gradient(90deg, transparent, var(--blue-600) 25%, var(--orange-500) 55%, var(--blue-400) 80%, transparent);
	background-size: 220% 100%; opacity: 0.85;
	animation: cta-line-slide 7s linear infinite;
}

/* Animated backdrop */
.footer-aurora {
	position: absolute; inset: -30% -10% auto -10%; height: 75%; z-index: 0; pointer-events: none;
	background:
		radial-gradient(40% 60% at 20% 20%, rgba(31,127,224,0.26), transparent 60%),
		radial-gradient(45% 60% at 80% 10%, rgba(249,115,22,0.16), transparent 60%);
	filter: blur(50px); opacity: 0.8;
	animation: aurora-shift 20s ease-in-out infinite alternate;
}
.footer-grid {
	position: absolute; inset: 0; z-index: 0; pointer-events: none;
	background-image:
		linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
	background-size: 52px 52px;
	mask-image: radial-gradient(ellipse 75% 80% at 50% 0%, #000 18%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse 75% 80% at 50% 0%, #000 18%, transparent 70%);
	animation: grid-pan 32s linear infinite;
}
.footer-glow { position: absolute; z-index: 0; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.footer-glow-1 { width: 420px; height: 420px; top: -170px; left: -90px; background: radial-gradient(circle, rgba(31,127,224,0.30), transparent 70%); animation: drift 18s ease-in-out infinite alternate; }
.footer-glow-2 { width: 320px; height: 320px; top: -130px; right: -70px; background: radial-gradient(circle, rgba(249,115,22,0.20), transparent 70%); animation: drift 22s ease-in-out infinite alternate-reverse; }

.footer-main {
	position: relative; z-index: 1;
	display: grid; grid-template-columns: 1.6fr 1fr 1.3fr;
	gap: 48px; padding: 52px 0 40px; align-items: start;
}

/* Brand */
.ft-logo { display: inline-flex; margin-bottom: 14px; }
.ft-logo img { height: 56px; width: auto; display: block; transition: transform 0.3s var(--ease); }
.ft-logo:hover img { transform: translateY(-2px) scale(1.03); }
.ft-brand-headline {
	font-family: var(--font-head); font-weight: 600; font-size: 16.5px; margin: 0 0 8px; line-height: 1.4;
	background: linear-gradient(100deg, #ffffff 0%, #cfe0f5 40%, #ffd6ab 60%, #ffffff 80%);
	background-size: 220% auto;
	-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
	animation: cta-text-shimmer 9s ease-in-out infinite;
}
.ft-tagline { font-size: 14px; line-height: 1.65; color: var(--slate-400); max-width: 300px; margin: 0 0 16px; }
.ft-social { display: flex; gap: 9px; }
.ft-social a {
	position: relative; isolation: isolate; overflow: hidden;
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px; border-radius: 11px;
	background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--slate-400);
	transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.ft-social a::before {
	content: ''; position: absolute; inset: 0; z-index: 0; opacity: 0;
	background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
	transition: opacity 0.25s ease;
}
.ft-social a .icon { position: relative; z-index: 1; transition: transform 0.25s var(--ease); }
.ft-social a:hover { color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: 0 10px 22px rgba(20,103,194,0.45); }
.ft-social a:hover::before { opacity: 1; }
.ft-social a:hover .icon { transform: scale(1.12); }

/* Columns */
.ft-heading {
	position: relative; color: #fff; font-family: var(--font-head); font-size: 14px; font-weight: 600;
	letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 10px;
}
.ft-heading::after {
	content: ''; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; border-radius: 2px;
	background: linear-gradient(90deg, var(--orange-500), transparent);
}
.ft-menu { list-style: none; display: grid; gap: 9px; }
.ft-menu a {
	color: var(--slate-400); font-size: 14px;
	display: inline-flex; align-items: center; gap: 6px;
	transition: color 0.2s ease, transform 0.2s ease;
}
.ft-menu a::before {
	content: ''; width: 5px; height: 5px; border-radius: 50%;
	background: var(--orange-500); opacity: 0; transform: scale(0.5); flex: 0 0 auto;
	transition: opacity 0.2s ease, transform 0.2s ease;
}
.ft-menu a:hover { color: #fff; transform: translateX(5px); }
.ft-menu a:hover::before { opacity: 1; transform: scale(1); }
.ft-menu .sub-menu { display: none; }

/* Contact list */
.ft-contact-list { list-style: none; display: grid; gap: 13px; }
.ft-contact-list li { display: flex; gap: 11px; align-items: flex-start; }
.ft-contact-icon {
	display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
	width: 30px; height: 30px; border-radius: 9px; color: var(--orange-500);
	background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.18);
	transition: background-color 0.25s ease, transform 0.25s var(--ease);
}
.ft-contact-list li:hover .ft-contact-icon { background: rgba(249,115,22,0.2); transform: translateY(-2px); }
.ft-contact-list span { font-size: 14px; line-height: 1.55; }
.ft-contact-list a { color: var(--slate-400); transition: color 0.2s ease; }
.ft-contact-list a:hover { color: #fff; }

/* Bottom bar */
.footer-bar {
	position: relative; z-index: 1;
	border-top: 1px solid rgba(255,255,255,0.07);
	padding: 16px 0;
}
.footer-bar-inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px; flex-wrap: wrap;
}
.footer-bar-inner p { font-size: 12.5px; margin: 0; color: var(--slate-400); }
.footer-bar-badge {
	display: inline-flex; align-items: center; gap: 7px;
	font-family: var(--font-head); font-size: 12px; font-weight: 500;
	color: var(--slate-400); letter-spacing: 0.02em;
	padding: 5px 12px; border-radius: 999px;
	background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
}
.footer-bar-badge .icon { color: var(--orange-500); animation: float-y 4s ease-in-out infinite; }

/* ---------- Light variant of service cards ---------- */
/* ---------- Illustration cards (About site-types) ---------- */
.illus-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}
.illus-card {
	background: #fff;
	border: 1.5px solid #d4e2f4;
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color 0.25s, box-shadow 0.3s, transform 0.3s var(--ease);
}
.illus-card:hover {
	border-color: var(--blue-400);
	box-shadow: 0 12px 36px rgba(20,103,194,0.14);
	transform: translateY(-5px);
}
.illus-art {
	background: #eef4ff;
	border-bottom: 1px solid #d4e2f4;
	padding: 18px 12px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.illus-art svg { width: 100%; height: auto; display: block; }
.illus-body { padding: 14px 14px 18px; }
.illus-body h3 {
	font-size: 11.5px; font-weight: 700; letter-spacing: 0.07em;
	text-transform: uppercase; color: var(--navy-900);
	margin: 0 0 7px; font-family: var(--font-head);
}
.illus-body p {
	font-size: 12.5px; color: var(--slate-600);
	margin: 0; line-height: 1.6;
}

.service-grid-light .service-card {
	background: var(--white); border: 1px solid var(--slate-200); box-shadow: var(--shadow-sm);
	position: relative; overflow: hidden;
}
.service-grid-light .service-card::before {
	content: ''; position: absolute; inset: 0;
	background-size: cover; background-position: center;
	opacity: 0; transition: opacity 0.4s ease;
	z-index: 0;
}
.service-grid-light .service-card:hover::before { opacity: 0.07; }
.service-grid-light .service-card > * { position: relative; z-index: 1; }

.service-grid-light .service-card:nth-child(1)::before { background-image: url('../img/img-workers-concrete.jpg'); }
.service-grid-light .service-card:nth-child(2)::before { background-image: url('../img/img-tiling.jpg'); }
.service-grid-light .service-card:nth-child(3)::before { background-image: url('../img/img-workers-discuss.jpg'); }
.service-grid-light .service-card:nth-child(4)::before { background-image: url('../img/img-flooring.jpg'); }
.service-grid-light .service-card:nth-child(5)::before { background-image: url('../img/img-warehouse.jpg'); }
.service-grid-light .service-card:nth-child(6)::before { background-image: url('../img/img-worker-hardhat.jpg'); }

.service-grid-light .service-card:hover { background: var(--white); border-color: var(--blue-400); box-shadow: var(--shadow-lg); }
.service-grid-light .service-card h3 { color: var(--slate-900); }
.service-grid-light .service-card p { color: var(--slate-600); }
.service-grid-light .service-icon {
	background: linear-gradient(135deg, rgba(20, 103, 194, 0.12), rgba(20, 103, 194, 0.04));
	border-color: rgba(20, 103, 194, 0.25); color: var(--blue-600);
}

/* ---------- Video cards ---------- */
.video-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.video-card { display: flex; flex-direction: column; }
.video-thumb {
	position: relative; display: block; width: 100%; padding: 0; border: 0;
	border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
	background: var(--navy-900); aspect-ratio: 16 / 9;
	box-shadow: var(--shadow-sm); transition: box-shadow 0.3s ease, transform 0.3s var(--ease);
}
.video-thumb:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease), opacity 0.3s ease; }
.video-thumb:hover img { transform: scale(1.05); opacity: 0.85; }
.video-play {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	display: flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border-radius: 50%;
	background: rgba(249, 115, 22, 0.92); color: #fff;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
	transition: transform 0.25s var(--ease), background-color 0.2s ease;
}
.video-play svg { margin-left: 3px; }
.video-thumb:hover .video-play { transform: translate(-50%, -50%) scale(1.12); background: var(--orange-500); }
.video-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-title {
	margin: 10px 4px 0; font-family: var(--font-head); font-weight: 600; font-size: 14px;
	color: var(--slate-900);
}
.video-card-wide { max-width: 820px; margin: 0 auto; }

/* ---------- Product Videos — coverflow deck (home, all sizes) ---------- */
.section-videos { overflow-x: hidden; } /* keep the fanned side cards from scrolling the page */
.section-videos .video-grid {
	display: block; grid-template-columns: none; overflow: visible;
	position: relative; width: 34%; max-width: 440px; margin: 0 auto;
	height: 300px; padding-top: 16px;
}
.section-videos .video-card {
	position: absolute; top: 0; left: 0; right: 0; margin: 0;
	transition: transform 0.55s var(--ease), opacity 0.45s ease;
	will-change: transform, opacity; transform-origin: center center;
}
.section-videos .video-thumb { box-shadow: 0 20px 50px rgba(6, 13, 23, 0.30); }
.section-videos .video-title { text-align: center; margin-top: 12px; }
.video-dots { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.video-dot {
	width: 8px; height: 8px; border-radius: 999px; padding: 0; border: 0; cursor: pointer;
	background: rgba(20, 103, 194, 0.25); transition: width 0.3s ease, background 0.3s ease;
}
.video-dot.is-active { width: 24px; background: var(--orange-500); }

/* ---------- Story video — modern two-column ---------- */
.section-story-v2 {
	background: linear-gradient(135deg, var(--navy-950) 0%, #0f2244 100%);
	padding: 72px 0;
	position: relative; overflow: hidden;
}
.section-story-v2::before {
	content: ''; position: absolute; inset: 0; pointer-events: none;
	background-image:
		linear-gradient(rgba(77,163,240,0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(77,163,240,0.05) 1px, transparent 1px);
	background-size: 44px 44px;
}
.section-story-v2::after {
	content: ''; position: absolute; top: -120px; left: -120px;
	width: 400px; height: 400px; border-radius: 50%;
	background: radial-gradient(circle, rgba(31,127,224,0.12), transparent 70%);
	pointer-events: none;
}
.story-split {
	display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center;
	position: relative;
}

/* Left text */
.story-text .section-kicker { color: var(--orange-400); }
.story-title {
	font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: #fff;
	line-height: 1.25; margin: 12px 0 16px; letter-spacing: -0.02em;
}
.story-sub {
	font-size: 15px; color: rgba(255,255,255,0.6);
	line-height: 1.75; margin: 0 0 28px;
}
.story-badges { display: flex; flex-direction: column; gap: 10px; }
.story-badge {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-head); font-size: 13px; font-weight: 600;
	color: rgba(255,255,255,0.8);
}
.story-badge .icon-check {
	color: var(--orange-400);
	background: rgba(249,115,22,0.15);
	border-radius: 50%; padding: 2px; flex-shrink: 0;
}

/* Right video */
.story-video-wrap { position: relative; }
.story-video-frame {
	position: relative; border-radius: 18px; overflow: hidden;
	box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}
.story-video-frame .video-thumb {
	border-radius: 0; box-shadow: none; aspect-ratio: 16/9;
}
.story-video-frame .video-thumb:hover { transform: none; box-shadow: none; }
.story-video-frame .video-thumb:hover img { transform: scale(1.04); opacity: 0.9; }
.video-play-lg {
	width: 64px; height: 64px;
	background: rgba(249,115,22,0.95);
	box-shadow: 0 8px 32px rgba(249,115,22,0.45);
}
.story-video-frame .video-thumb:hover .video-play-lg {
	transform: translate(-50%,-50%) scale(1.1);
	background: var(--orange-500);
}
.story-video-label {
	position: absolute; bottom: 0; left: 0; right: 0;
	display: flex; align-items: center; gap: 8px;
	padding: 10px 16px;
	background: linear-gradient(to top, rgba(6,13,23,0.85), transparent);
	color: rgba(255,255,255,0.8); font-size: 12.5px; font-family: var(--font-head); font-weight: 600;
	letter-spacing: 0.04em; pointer-events: none;
}
.story-video-label .icon-youtube { color: #ff0000; }

/* ---------- Value cards — weaving thread (About) ---------- */
.vtw-section { padding-bottom: 80px; }

.vtw-thread-wrap {
	position: relative; width: 100%; height: 80px; margin-bottom: -20px; z-index: 1;
}
.vtw-svg { width: 100%; height: 100%; display: block; }

.vtw-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
	position: relative; z-index: 2;
}

.vtw-card {
	background: #fff; border-radius: var(--radius-lg);
	border: 1px solid var(--slate-200);
	padding: 28px 24px 26px;
	box-shadow: 0 2px 12px rgba(15,23,42,0.06);
	transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.25s ease;
	position: relative; overflow: hidden;
}
.vtw-card::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.vtw-card--orange::before { background: linear-gradient(90deg, var(--orange-500), #fbbf24); }
.vtw-card--blue::before   { background: linear-gradient(90deg, var(--blue-500), var(--blue-400)); }
.vtw-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(15,23,42,0.13); }
.vtw-card--orange:hover { border-color: var(--orange-500); }
.vtw-card--blue:hover   { border-color: var(--blue-400); }

.vtw-card-top {
	display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px;
}
.vtw-num {
	font-family: var(--font-head); font-weight: 800; font-size: 28px; line-height: 1;
	background: linear-gradient(135deg, var(--slate-200), var(--slate-100));
	-webkit-background-clip: text; -webkit-text-fill-color: transparent;
	background-clip: text;
}
.vtw-card--orange .vtw-num { background: linear-gradient(135deg, var(--orange-500), #fbbf24); -webkit-background-clip: text; background-clip: text; }
.vtw-card--blue .vtw-num   { background: linear-gradient(135deg, var(--blue-500), var(--blue-400)); -webkit-background-clip: text; background-clip: text; }

.vtw-icon-wrap {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 12px; flex: 0 0 auto;
}
.vtw-card--orange .vtw-icon-wrap {
	background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(249,115,22,0.04));
	border: 1px solid rgba(249,115,22,0.25); color: var(--orange-500);
}
.vtw-card--blue .vtw-icon-wrap {
	background: linear-gradient(135deg, rgba(31,127,224,0.12), rgba(31,127,224,0.04));
	border: 1px solid rgba(77,163,240,0.30); color: var(--blue-500);
}

.vtw-title {
	font-size: 15.5px; font-weight: 700; color: var(--navy-800);
	margin-bottom: 10px; line-height: 1.35;
}
.vtw-desc {
	font-size: 13.5px; color: var(--slate-500); line-height: 1.65; margin: 0;
}

/* ---------- Contact (legacy selectors kept for safety) ---------- */
.contact-icon {
	display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
	width: 44px; height: 44px; border-radius: 12px;
	background: rgba(20,103,194,0.10); color: var(--blue-600);
}

/* ---------- Project datasheet ---------- */
.detail-list { display: grid; gap: 0; border: 1px solid var(--slate-200); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 28px; }
.detail-row { display: flex; gap: 12px; padding: 16px 22px; font-size: 16px; }
.detail-row:nth-child(odd) { background: var(--slate-50); }
.detail-label { font-family: var(--font-head); font-weight: 600; color: var(--navy-800); flex: 0 0 auto; }
.detail-value { color: var(--slate-600); }
.scope-card {
	margin-top: 28px; padding: 28px 30px; border-radius: var(--radius-lg);
	background: var(--slate-50); border: 1px solid var(--slate-200);
}
.scope-card h3 { font-size: 19px; margin-bottom: 16px; }
.scope-card .check-list { margin: 0; }
.stat-kicker {
	display: block; font-family: var(--font-head); font-weight: 600; font-size: 13px;
	letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-500); margin-bottom: 10px;
}
.project-stats { grid-template-columns: repeat(3, 1fr); }
.used-products { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pill-product {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 24px; font-size: 15px;
}
a.pill-product:hover { border-color: var(--orange-500); color: var(--orange-600); }

/* =============================================================
   ANIMATIONS — scroll reveal & entrance
   ============================================================= */
.anim-up { opacity: 0; transform: translateY(28px); animation: rise 0.8s var(--ease) forwards; }
.anim-up[data-delay="1"] { animation-delay: 0.12s; }
.anim-up[data-delay="2"] { animation-delay: 0.24s; }
.anim-up[data-delay="3"] { animation-delay: 0.36s; }
.anim-up[data-delay="4"] { animation-delay: 0.50s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.reveal, .reveal-stagger > * { opacity: 0; transform: translateY(34px); transition: opacity 0.7s ease, transform 0.7s var(--ease); }
.reveal.is-visible, .reveal-stagger > .is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* Dynamic scroll-scrubbed motion (About page) — JS-driven, always visible */
.about-apple .reveal,
.about-apple .reveal-stagger > * {
	opacity: 1;            /* never hidden — only moves */
	transform-origin: center center;
	backface-visibility: hidden;
	will-change: transform;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.anim-up { animation: none; opacity: 1; transform: none; }
	.hero-fx { animation: none; opacity: 1; transform: none; filter: none; }
	.hero-chip { animation: none; opacity: 1; transform: none; }
	.reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
	.marquee-track, .hero-grid-pattern, .hero-glow, .hero-aurora, .hero-orb, .hero-scroll-hint span, .hero-kicker-dot, .hero-kicker::after, .hero-cta::after { animation: none; }
	.cta-aurora, .cta-grid, .cta-glow, .cta-orb, .cta-kicker-dot, .cta-shine .icon, .cta-shine::after, .cta-band::before { animation: none; }
	.cta-inner h2 { animation: none; -webkit-text-fill-color: #fff; background: none; }
	.footer-aurora, .footer-grid, .footer-glow, .footer-accent, .footer-bar-badge .icon { animation: none; }
	.ft-brand-headline { animation: none; -webkit-text-fill-color: #fff; background: none; }
	*, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
	.cat-grid { grid-template-columns: repeat(3, 1fr); }
	.illus-grid { grid-template-columns: repeat(3, 1fr); }
	.service-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
	.why-grid { grid-template-columns: repeat(4, 1fr); }
	.why-card { grid-column: span 2; }
	.why-card:nth-child(4) { grid-column: 1 / span 2; }
	.why-card:nth-child(5) { grid-column: 3 / span 2; }
	.mapei-stats { grid-template-columns: repeat(2, 1fr); }
	.vtw-grid { grid-template-columns: repeat(2, 1fr); }
	.vtw-thread-wrap { display: none; }
	.product-grid { grid-template-columns: repeat(2, 1fr); }
	.video-grid { grid-template-columns: repeat(3, 1fr); }
	.contact-strip-grid { grid-template-columns: repeat(2, 1fr); }
	.about-split { gap: 48px; }
}

@media (max-width: 860px) {
	.section { padding: 80px 0; }
	.hero-floaters { display: none; } /* avoid chips overlapping full-width hero text on tablet */
	.about-split, .single-split, .contact-split { grid-template-columns: 1fr; }
	.story-split { grid-template-columns: 1fr; gap: 36px; }
	.section-story-v2 { padding: 56px 0; }
	.founder-grid { grid-template-columns: 1fr; gap: 28px; }
	.contact-main { grid-template-columns: 1fr; gap: 40px; }
	.contact-strip-grid { grid-template-columns: repeat(2, 1fr); }
	.contact-strip-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
	.contact-strip-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
	.contact-strip-item:nth-last-child(-n+2) { border-bottom: 0; }
	.footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
	.product-grid { grid-template-columns: repeat(2, 1fr); }
	.nav-cta { display: none; }
	.nav-toggle {
		display: inline-flex;
		padding: 10px;
		border-radius: 10px;
		animation: nav-toggle-pop 0.55s cubic-bezier(.34,1.56,.64,1) both,
		           nav-toggle-pulse 2s ease-in-out 0.6s 3;
	}
	.site-nav {
		position: fixed; inset: 90px 16px auto; z-index: var(--z-nav);
		background: linear-gradient(180deg, rgba(10, 20, 36, 0.95), rgba(4, 10, 20, 0.93));
		backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: var(--radius-lg); padding: 18px;
		box-shadow: 0 20px 50px rgba(3, 9, 18, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.14);
		flex-direction: column; align-items: stretch;
		opacity: 0; visibility: hidden; transform: translateY(-12px);
		transition: opacity 0.25s ease, transform 0.3s var(--ease), visibility 0.3s;
		max-height: calc(100vh - 120px); overflow-y: auto;
	}
	.nav-open .site-nav { opacity: 1; visibility: visible; transform: translateY(0); }
	.nav-menu { flex-direction: column; align-items: stretch; gap: 2px; }
	.nav-menu a { padding: 13px 16px; }

	/* Collapsible submenu (accordion) — link navigates, chevron toggles */
	.nav-menu .menu-item-has-children { position: relative; }
	.nav-menu .menu-item-has-children > a { padding-right: 56px; }
	.submenu-toggle {
		display: flex; align-items: center; justify-content: center;
		position: absolute; top: 0; right: 0; width: 52px; height: 48px;
		background: none; border: 0; padding: 0; cursor: pointer;
		border-radius: 8px;
	}
	.submenu-toggle:active { background: rgba(255, 255, 255, 0.06); }
	.submenu-toggle-icon {
		width: 9px; height: 9px;
		border-right: 2px solid rgba(255, 255, 255, 0.6);
		border-bottom: 2px solid rgba(255, 255, 255, 0.6);
		transform: rotate(45deg) translate(-2px, -2px);
		transition: transform 0.28s var(--ease);
	}
	.menu-item-has-children.submenu-open .submenu-toggle-icon {
		transform: rotate(-135deg) translate(-2px, -2px);
	}
	.nav-menu .sub-menu {
		position: static; transform: none; min-width: 0;
		background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
		box-shadow: none; border: 0; border-radius: 0;
		opacity: 1; visibility: visible;
		max-height: 0; overflow: hidden; padding: 0 0 0 16px;
		transition: max-height 0.32s var(--ease), padding 0.32s var(--ease);
	}
	.nav-menu .menu-item-has-children.submenu-open > .sub-menu {
		max-height: 520px; padding: 2px 0 6px 16px;
	}
	.nav-search-wrap { min-width: 0; width: 100%; border-radius: var(--radius); margin-top: 8px; }
	.nav-search-list { position: fixed; left: 16px; right: 16px; top: auto; }
}

@media (max-width: 640px) {
	body { font-size: 16px; }
	.hero { padding: 140px 0 70px; }
	.hero-stats { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
	.cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
	.cat-card { padding: 16px; flex-direction: column; align-items: flex-start; gap: 12px; }
	.cat-arrow { display: none; }
	.illus-grid { grid-template-columns: repeat(2, 1fr); }
	.founders-section { padding: 72px 0 80px; }
	.founder-info { padding: 22px 22px 24px; }
	.founder-name { font-size: 20px; }
	.map-section { padding: 64px 0 72px; }
	.map-frame { height: 360px; }
	.map-info-card {
		position: static; left: auto; bottom: auto; max-width: none;
		flex-direction: column; align-items: flex-start; gap: 14px;
		border-radius: 0; background: #fff; backdrop-filter: none;
		-webkit-backdrop-filter: none; border: 0; box-shadow: none;
		padding: 24px 22px;
	}
	.map-directions-btn { width: 100%; justify-content: center; }
	.service-grid, .why-grid, .project-grid, .post-grid, .mapei-stats, .team-grid, .video-grid, .value-grid, .project-stats, .vtw-grid { grid-template-columns: 1fr; }
	/* Products stay a 2-up grid on phones */
	.product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.detail-row { flex-direction: column; gap: 2px; }
	/* ---- Modern mobile footer ---- */
	.footer-main { grid-template-columns: 1fr; gap: 0; padding: 36px 0 6px; text-align: center; }

	/* Brand — centered */
	.ft-brand { display: flex; flex-direction: column; align-items: center; padding-bottom: 28px; }
	.ft-logo { margin: 0 auto 14px; }
	.ft-logo img { height: 60px; }
	.ft-brand-headline { font-size: 17px; margin-bottom: 10px; }
	.ft-tagline { max-width: 360px; margin: 0 auto 20px; font-size: 14px; }
	.ft-social { justify-content: center; gap: 12px; }
	.ft-social a { width: 46px; height: 46px; border-radius: 14px; }
	.ft-social a .icon { width: 20px; height: 20px; }

	/* Sections separated by hairline dividers */
	.ft-col { border-top: 1px solid rgba(255,255,255,0.09); padding: 26px 0; }
	.ft-heading { margin-bottom: 18px; font-size: 13px; }

	/* Quick links as centered chips */
	.ft-menu { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
	.ft-menu a {
		justify-content: center; font-size: 13.5px;
		padding: 9px 18px; border-radius: 999px;
		background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
		transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	}
	.ft-menu a::before { display: none; }
	.ft-menu a:hover { gap: 6px; background: var(--blue-600); border-color: var(--blue-600); color: #fff; transform: none; }

	/* Contact list — centered with stacked icon chips */
	.ft-contact-list { gap: 18px; justify-items: center; }
	.ft-contact-list li { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
	.ft-contact-icon {
		width: 38px; height: 38px; border-radius: 50%; margin: 0;
		display: inline-flex; align-items: center; justify-content: center;
		background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.22);
	}
	.ft-contact-list span { font-size: 14px; }

	/* Bottom bar */
	.footer-bar { padding: 18px 0; }
	.footer-bar-inner { flex-direction: column; text-align: center; gap: 12px; }
	.footer-bar-badge {
		padding: 7px 16px; border-radius: 999px;
		background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
	}
	.contact-strip-grid { grid-template-columns: 1fr; }
	.contact-strip-item { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,0.07); }
	.contact-strip-item:last-child { border-bottom: 0; }
	.cfc-header, .contact-form { padding: 24px 20px; }
	.form-row { grid-template-columns: 1fr; }
	.page-hero { padding: 150px 0 64px; }
}

/* =============================================================
   ABOUT PAGE — mobile-only modern optimisations (≤640px)
   Scoped to .about-apple / about-only classes so desktop &
   tablet are completely untouched.
   ============================================================= */
@media (max-width: 640px) {

	/* Tighter, app-like section rhythm */
	.about-apple .section { padding: 48px 0; }
	.about-apple .section-head { margin-bottom: 26px; }
	.about-apple .container-narrow { padding-left: 20px; padding-right: 20px; }

	/* ---- Hero ---- */
	.page-hero--about { padding: 124px 0 48px; }
	.page-hero--about .page-title { font-size: 30px; line-height: 1.15; }
	.page-hero--about .page-sub { font-size: 15.5px; }

	/* ---- Story video ---- */
	.section-story-v2 { padding: 44px 0; }
	.story-split { gap: 26px; }
	.story-text { text-align: center; }
	.story-title { font-size: 25px; margin: 10px 0 14px; }
	.story-sub { font-size: 14.5px; margin-bottom: 22px; }
	.story-badges { align-items: center; gap: 12px; }
	.story-video-frame { border-radius: 16px; }

	/* ---- Site types: compact 2-col illustrated grid ---- */
	.illus-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
	.illus-art { padding: 14px 10px 8px; }
	.illus-body { padding: 12px 12px 14px; }
	.illus-body h3 { font-size: 11px; margin-bottom: 6px; }
	.illus-body p { font-size: 11.5px; line-height: 1.5; }

	/* ---- Facts & figures: compact 2-col stat grid ---- */
	.about-apple .mapei-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
	.mapei-stat { padding: 22px 12px 18px; border-radius: 18px; }
	.mapei-stat::before { width: 56px; }
	.mst-icon { width: 50px; height: 50px; border-radius: 14px; margin-bottom: 14px; }
	.mst-icon svg { width: 28px; height: 28px; }
	.mapei-stat .stat-num { font-size: 30px; }
	.mst-unit { font-size: 10px; letter-spacing: 0.08em; margin-bottom: 6px; }
	.mapei-stat .stat-label { font-size: 11.5px; line-height: 1.45; }

	/* ---- Values: comfortable single column, slimmer cards ---- */
	.vtw-grid { gap: 14px; }
	.vtw-card { padding: 22px 20px 20px; }
	.vtw-card-top { margin-bottom: 14px; }
	.vtw-num { font-size: 24px; }
	.vtw-title { font-size: 17px; }
	.vtw-desc { font-size: 14px; }

	/* ---- Founders: a touch tighter ---- */
	.founders-head { margin-bottom: 36px; }
	.founders-headline { font-size: 30px; }
	.founders-intro { font-size: 16px; }
}

/* =============================================================
   HOME / PRODUCTS / SINGLE PRODUCT — mobile-only modern polish (≤640px)
   Desktop & tablet untouched.
   ============================================================= */
@media (max-width: 640px) {

	/* Tighter universal section rhythm on phones */
	.section { padding: 52px 0; }
	.section-head { margin-bottom: 30px; }

	/* ---------- HOME: hero ---------- */
	.hero { padding: 132px 0 56px; }
	.hero-subtitle { font-size: 15.5px; }
	.hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 40px; }
	.hero-actions .btn { width: 100%; justify-content: center; }
	.hero-floaters { display: none; } /* chips would crowd small screens */
	.hero-orb-1, .hero-orb-2 { display: none; }

	/* HOME: why-choose-us as a compact 2-up grid */
	.why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
	.why-card { padding: 20px 16px; grid-column: auto; }
	.why-card:nth-child(4), .why-card:nth-child(5) { grid-column: auto; }
	.why-num { font-size: 24px; }
	.why-card h3 { font-size: 15px; }
	.why-card p { font-size: 12.5px; line-height: 1.5; }

	/* HOME: service cards slightly tighter */
	.service-card { padding: 24px 22px; }

	/* HOME: Product Videos — coverflow tighter on mobile (1 card each side) */
	.section-videos .video-grid {
		width: 74%; max-width: 270px; height: 208px; padding-top: 12px; touch-action: pan-y;
	}
	.section-videos .video-thumb { box-shadow: 0 16px 38px rgba(6, 13, 23, 0.30); }
	.video-dots { margin-top: 20px; }
	.video-dot.is-active { width: 22px; }

	/* HOME: CTA band — full-width stacked actions */
	.cta-band { padding: 48px 0; }
	.cta-inner { gap: 22px; }
	.cta-orb, .cta-glow-1 { display: none; }
	.cta-actions { width: 100%; flex-direction: column; gap: 12px; }
	.cta-actions .btn { width: 100%; justify-content: center; }

	/* ---------- PRODUCTS archive ---------- */
	/* Swipeable category chips (no wrap, hidden scrollbar) */
	.filter-pills {
		flex-wrap: nowrap; overflow-x: auto; gap: 8px;
		margin-bottom: 22px; padding-bottom: 4px;
		scrollbar-width: none; -ms-overflow-style: none;
	}
	.filter-pills::-webkit-scrollbar { display: none; }
	.filter-pills .pill { flex: 0 0 auto; white-space: nowrap; }
	.product-search-wrap { margin-bottom: 24px; }
	.product-body { padding: 13px 13px 15px; }
	.product-body h2 { font-size: 13.5px; }
	.product-media img { padding: 8px; } /* tighter image inset for narrow 2-up cards */

	/* ---------- SINGLE product ---------- */
	.prd-hero { padding: 118px 0 46px; }
	.prd-section { padding-top: 38px; }
	.prd-layout { gap: 28px; }
	.prd-cta-card { padding: 22px 20px; }
	.prd-cta-top { gap: 12px; margin-bottom: 16px; }
	.prd-cta-actions { flex-direction: column; gap: 10px; }
	.prd-cta-actions .btn, .prd-cta-actions .btn-outline-nav { width: 100%; justify-content: center; }

	/* ---------- CONTACT polish ---------- */
	.contact-section { padding: 48px 0; }
}
