/* =========================================================
   Ival Puthiyaval BPO — stylesheet
   1. Tokens      5. Sections      9. Contact
   2. Base        6. Cards        10. Footer
   3. Buttons     7. Forms        11. Widget + modal
   4. Header      8. Hero         12. Responsive
   ========================================================= */

/* ---------- 1. Tokens ----------
   COLOURS ARE NOT DEFINED HERE.

   --brand, --brand-2, --accent, --ink, --dark, --grad and friends are emitted
   into a <style> block in the page head by app/Config/Theme.php. Change the
   six colours in that file and this whole stylesheet follows.

   What lives below is everything that is *not* a palette decision: radii,
   shadow geometry, spacing, type, easing — plus the two semantic states
   (error / warning) that must not shift when the brand colour does.
   ------------------------------------------------------------------------ */
:root {
	--r-sm: 10px;
	--r:    16px;
	--r-lg: 22px;
	--r-xl: 30px;

	--sh-sm: 0 1px 2px rgba(var(--dark-rgb), .05), 0 4px 12px rgba(var(--dark-rgb), .04);
	--sh:    0 4px 10px rgba(var(--dark-rgb), .05), 0 18px 40px rgba(var(--dark-rgb), .07);
	--sh-lg: 0 10px 24px rgba(var(--dark-rgb), .08), 0 40px 80px rgba(var(--dark-rgb), .12);
	--sh-brand: 0 8px 20px rgba(var(--brand-rgb), .28);

	/* Fixed, on purpose: a validation error should stay red however the brand
	   is themed. */
	--err:      #ef4444;
	--err-ink:  #b42318;
	--err-soft: #fdecec;
	--err-line: #f6cdcd;

	--wrap: 1180px;
	--nav-h: 76px;

	--font: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

	--ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }

body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.65;
	color: var(--body);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3 { color: var(--ink); line-height: 1.15; letter-spacing: -.022em; margin: 0; font-weight: 700; }
h1 { font-size: clamp(2.3rem, 1.4rem + 3.6vw, 4.15rem); letter-spacing: -.032em; }
h2 { font-size: clamp(1.7rem, 1.15rem + 1.9vw, 2.65rem); }
h3 { font-size: 1.12rem; }
p  { margin: 0; }

a { color: var(--brand); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-ink); }

img, svg, iframe { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }

.ico    { width: 22px; height: 22px; flex: none; }
.ico.xs { width: 16px; height: 16px; }

.grad {
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.skip-link {
	position: absolute; left: -9999px; top: 12px; z-index: 200;
	background: var(--dark); color: #fff; padding: 10px 18px; border-radius: var(--r-sm);
}
.skip-link:focus { left: 22px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

/* Pills */
.pill {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 7px 15px; border-radius: 100px;
	background: var(--brand-soft); color: var(--brand-ink);
	font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
	border: 1px solid rgba(var(--brand-rgb), .13);
}
.pill-light {
	background: rgba(255, 255, 255, .08); color: var(--on-dark);
	border-color: rgba(255, 255, 255, .16); backdrop-filter: blur(8px);
}

.ping { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(var(--accent-rgb), .6); animation: ping 2s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 7px rgba(var(--accent-rgb), 0); } 100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0); } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease) var(--d, 0s), transform .7s var(--ease) var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

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

/* ---------- 3. Buttons ---------- */
.btn {
	position: relative;
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	padding: 13px 24px; border-radius: 100px;
	font-size: .95rem; font-weight: 600; white-space: nowrap;
	transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s, color .22s, border-color .22s;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--sh-brand); background-size: 160% 100%; }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(var(--brand-rgb), .38); background-position: 100% 0; }

.btn-light { background: #fff; color: var(--ink); box-shadow: var(--sh-sm); }
.btn-light:hover { color: var(--brand-ink); transform: translateY(-2px); box-shadow: var(--sh); }

.btn-outline { border: 1px solid var(--line); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

.btn-outline-light { border: 1px solid rgba(255, 255, 255, .28); color: #fff; }
.btn-outline-light:hover { color: #fff; background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .5); }

.btn-glass {
	background: rgba(255, 255, 255, .08); color: #fff;
	border: 1px solid rgba(255, 255, 255, .18); backdrop-filter: blur(10px);
}
.btn-glass:hover { color: #fff; background: rgba(255, 255, 255, .15); transform: translateY(-2px); }

.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-sm { padding: 10px 18px; font-size: .87rem; }
.btn-block { width: 100%; }

.link-btn { color: var(--brand); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; padding: 0; }

/* Loading state */
.btn-label { display: inline-flex; align-items: center; gap: 9px; }
.btn-spinner { display: none; width: 17px; height: 17px; border: 2px solid rgba(255, 255, 255, .35); border-top-color: #fff; border-radius: 50%; animation: spin .65s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn.is-loading { pointer-events: none; opacity: .85; }
.btn.is-loading .btn-label { display: none; }
.btn.is-loading .btn-spinner { display: block; }

/* ---------- 4. Header ---------- */
.topbar { background: var(--dark); color: var(--on-dark); font-size: .82rem; }
.topbar-in { display: flex; align-items: center; gap: 18px; height: 42px; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; color: var(--on-dark); }
.topbar-item:hover { color: #fff; }
.topbar-sep { width: 1px; height: 15px; background: rgba(255, 255, 255, .14); }
.topbar-social { margin-left: auto; display: flex; gap: 6px; }
.topbar-social a { color: var(--on-dark); padding: 5px; border-radius: 7px; transition: .2s; }
.topbar-social a:hover { color: #fff; background: rgba(255, 255, 255, .09); }

.nav {
	position: sticky; top: 0; z-index: 60;
	background: rgba(255, 255, 255, .82);
	backdrop-filter: blur(18px) saturate(150%);
	border-bottom: 1px solid transparent;
	transition: box-shadow .3s, border-color .3s, background .3s;
}
.nav.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 26px rgba(var(--dark-rgb), .06); background: rgba(255, 255, 255, .93); }
.nav-in { display: flex; align-items: center; gap: 22px; height: var(--nav-h); }

/* The logo image already carries the company name — no text node beside it.
   Header uses the white-background file; the footer uses the transparent one. */
.brand { display: inline-flex; align-items: center; }
/* The render has generous padding baked in, so it needs more height than a
   tight lockup would to read at the same size. */
.brand-logo { height: 62px; width: auto; display: block; transition: transform .3s var(--ease); }
.brand:hover .brand-logo { transform: scale(1.03); }

.nav-links { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav-links > a {
	position: relative; padding: 10px 15px; border-radius: 10px;
	color: var(--ink); font-weight: 550; font-size: .95rem;
}
.nav-links > a::after {
	content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px;
	border-radius: 2px; background: var(--grad); transform: scaleX(0); transform-origin: left;
	transition: transform .28s var(--ease);
}
.nav-links > a:hover { color: var(--brand); }
.nav-links > a:hover::after, .nav-links > a.is-active::after { transform: scaleX(1); }
.nav-links > a.is-active { color: var(--brand); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.nav-phone-ico { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); transition: .25s; }
.nav-phone:hover .nav-phone-ico { background: var(--brand); color: #fff; transform: rotate(-8deg); }
.nav-phone-txt { display: grid; line-height: 1.25; }
.nav-phone-txt em { font-style: normal; font-size: .7rem; color: var(--muted); }
.nav-phone-txt strong { font-size: .92rem; font-weight: 700; }

.nav-burger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); color: var(--ink); place-items: center; }
.nav-cta-mobile { display: none; }

/* ---------- 5. Sections ---------- */
.section { padding: clamp(60px, 7vw, 108px) 0; }
.section-tight { padding: clamp(44px, 5vw, 70px) 0; }
.section-tint { background: var(--tint); }
.section-dark { background: var(--dark); position: relative; overflow: hidden; }
.section-dark::before {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(700px 340px at 15% 0%, rgba(var(--brand-rgb), .3), transparent 65%),
	            radial-gradient(600px 300px at 85% 100%, rgba(var(--brand-2-rgb), .22), transparent 65%);
}
.section-dark .wrap { position: relative; }

.sec-head { max-width: 660px; margin: 0 auto clamp(38px, 4vw, 60px); text-align: center; }
.sec-head h2 { margin: 16px 0 12px; }
.sec-head p { font-size: 1.05rem; }
.sec-head-light h2 { color: #fff; }
.sec-head-light p { color: var(--on-dark); }
.sec-foot { text-align: center; margin-top: 44px; }

/* ---------- 6. Hero ---------- */
.hero { position: relative; background: var(--dark); overflow: hidden; padding: clamp(64px, 7vw, 104px) 0 clamp(76px, 8vw, 124px); }
.hero-bg { position: absolute; inset: 0; }
.hero-grid {
	position: absolute; inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
	                  linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
	background-size: 62px 62px;
	mask-image: radial-gradient(ellipse 80% 65% at 50% 35%, #000 30%, transparent 78%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(85px); opacity: .5; }
.orb-1 { width: 480px; height: 480px; background: var(--brand); top: -140px; left: -100px; animation: drift 17s ease-in-out infinite; }
.orb-2 { width: 420px; height: 420px; background: var(--brand-2); top: 10%; right: -120px; animation: drift 21s ease-in-out infinite reverse; }
.orb-3 { width: 340px; height: 340px; background: var(--brand); bottom: -160px; left: 42%; opacity: .35; animation: drift 25s ease-in-out infinite; }
@keyframes drift { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(34px, -30px); } }

.hero-in { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.hero-copy h1 { color: #fff; margin: 20px 0 0; }
.hero-sub { color: var(--on-dark); font-size: clamp(1rem, .95rem + .3vw, 1.16rem); max-width: 560px; margin-top: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero-ticks { display: flex; flex-wrap: wrap; gap: 22px; list-style: none; padding: 0; margin: 30px 0 0; }
.hero-ticks li { display: flex; align-items: center; gap: 8px; color: var(--on-dark-dim); font-size: .9rem; }
.hero-ticks svg { color: var(--accent); }
.hero-ticks-dark li { color: var(--body); }
.hero-ticks-dark svg { color: var(--ok); }

/* Hero art */
.hero-art { position: relative; padding-bottom: 34px; }
.hcard { background: rgba(255, 255, 255, .96); border-radius: var(--r-lg); box-shadow: var(--sh-lg); }
.hcard-main { padding: 24px; }
.hcard-top { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; }
.hcard-avatar { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--grad); color: #fff; }
.hcard-top strong { display: block; color: var(--ink); font-size: .96rem; }
.hcard-top em { font-style: normal; font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.cw-live { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { opacity: .35; } }

.hcard-bars { display: flex; align-items: flex-end; gap: 9px; height: 118px; padding: 0 2px; }
.hcard-bars span {
	flex: 1; height: var(--h); border-radius: 6px 6px 3px 3px;
	background: linear-gradient(180deg, var(--brand), var(--brand));
	transform-origin: bottom; animation: grow 1s var(--ease) backwards;
}
.hcard-bars span:nth-child(6) { background: linear-gradient(180deg, var(--brand-2), var(--brand-2)); }
.hcard-bars span:nth-child(1) { animation-delay: .1s } .hcard-bars span:nth-child(2) { animation-delay: .18s }
.hcard-bars span:nth-child(3) { animation-delay: .26s } .hcard-bars span:nth-child(4) { animation-delay: .34s }
.hcard-bars span:nth-child(5) { animation-delay: .42s } .hcard-bars span:nth-child(6) { animation-delay: .5s }
.hcard-bars span:nth-child(7) { animation-delay: .58s }
@keyframes grow { from { transform: scaleY(0); } }

.hcard-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line-soft); font-size: .88rem; }
.hcard-foot strong { color: var(--ink); font-size: 1.15rem; }

.hcard-float { position: absolute; display: flex; align-items: center; gap: 11px; padding: 13px 17px; border-radius: var(--r); animation: bob 5s ease-in-out infinite; }
.hcard-float strong { display: block; color: var(--ink); font-size: .9rem; }
.hcard-float em { font-style: normal; font-size: .74rem; color: var(--muted); }
.hcard-ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); }
.hcard-ico.ok { background: var(--ok-soft); color: var(--ok); }
.hcard-a { top: -26px; right: -8px; }
/* Sits below the main card so it never covers the "Answer time" row. */
.hcard-b { bottom: -52px; left: -34px; animation-delay: 1.6s; }
@keyframes bob { 50% { transform: translateY(-11px); } }

/* new */
/* ---------- Hero photo variant ---------- */
.hero-photo-layout .hero-in { grid-template-columns: 1.05fr .95fr; gap: 0; }
.hero-photo-layout .hero-copy { padding-right: 30px; }

.hero-photo {
	position: relative;
	height: 100%;
	min-height: 420px;
	margin: -0 -22px -0 0;
}
.hero-photo img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	clip-path: ellipse(78% 60% at 100% 50%);
}
/* Soft purple blend where the photo curves into the dark hero background */
.hero-photo-curve {
	position: absolute; inset: 0;
	clip-path: ellipse(84% 66% at 100% 50%);
	background: radial-gradient(120% 100% at 0% 50%, rgba(var(--brand-rgb), .65), transparent 55%);
	z-index: 1;
	pointer-events: none;
}

.btn-outline-light { display: inline-flex; }

/* Ticks with a circular badge behind the check icon */
.hero-ticks-badge li { gap: 10px; font-weight: 600; color: #fff; }
.hero-ticks-badge svg {
	color: var(--accent);
	background: rgba(255, 255, 255, .12);
	border-radius: 50%;
	padding: 4px;
	width: 22px; height: 22px;
	flex: none;
}

@media (max-width: 1080px) {
	.hero-photo { display: none; }
	.hero-photo-layout .hero-in { grid-template-columns: 1fr; }
}

/* Keep hero buttons on a single line */
.hero-photo-layout .hero-actions {
	flex-wrap: nowrap;
}
.hero-photo-layout .hero-actions .btn {
	white-space: nowrap;
}

/* Keep tick badges on a single line */
.hero-photo-layout .hero-ticks-badge {
	flex-wrap: nowrap;
	gap: 26px;
}
.hero-photo-layout .hero-ticks-badge li {
	white-space: nowrap;
}

/* On narrower screens, let both rows scroll horizontally instead of wrapping,
   so the layout never breaks even if it doesn't all fit */
@media (max-width: 1080px) {
	.hero-photo-layout .hero-actions,
	.hero-photo-layout .hero-ticks-badge {
		flex-wrap: nowrap;
		overflow-x: auto;
		-ms-overflow-style: none;
		scrollbar-width: none;
		padding-bottom: 2px;
	}
	.hero-photo-layout .hero-actions::-webkit-scrollbar,
	.hero-photo-layout .hero-ticks-badge::-webkit-scrollbar {
		display: none;
	}
}

/* ---------- Client strip ---------- */
.strip { border-bottom: 1px solid var(--line); background: #fff; }
.strip-in { display: flex; align-items: center; gap: 32px; padding: 26px 22px; }
.strip-label { flex: none; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
/* min-width/max-width stop the max-content track from widening the page. */
.marquee { position: relative; overflow: hidden; flex: 1; min-width: 0; max-width: 100%; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: slide 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-size: 1.22rem; font-weight: 700; color: var(--line); letter-spacing: -.02em; transition: color .25s; white-space: nowrap; }
.marquee-item:hover { color: var(--ink); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats-sec { padding-block: clamp(48px, 5vw, 76px); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 26px 16px; border-radius: var(--r); border: 1px solid var(--line); background: #fff; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.stat:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: transparent; }
.stat strong { display: block; font-size: clamp(1.9rem, 1.3rem + 1.9vw, 2.9rem); font-weight: 800; letter-spacing: -.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { font-size: .9rem; color: var(--muted); }

/* ---------- 7. Cards ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.scard {
	position: relative; padding: 30px 26px 26px; border-radius: var(--r-lg);
	background: #fff; border: 1px solid var(--line); overflow: hidden;
	transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.scard::before {
	content: ""; position: absolute; inset: 0 0 auto; height: 3px;
	background: var(--grad); transform: scaleX(0); transform-origin: left;
	transition: transform .4s var(--ease);
}
.scard:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.scard:hover::before { transform: scaleX(1); }
.scard-ico {
	width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
	background: var(--grad-soft); color: var(--brand); margin-bottom: 20px;
	transition: transform .35s var(--ease), background .35s, color .35s;
}
.scard:hover .scard-ico { background: var(--grad); color: #fff; transform: rotate(-7deg) scale(1.06); }
.scard h3 { margin-bottom: 9px; font-size: 1.16rem; }
.scard p { font-size: .95rem; }
.scard-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-weight: 600; font-size: .9rem; }
.scard-link svg { transition: transform .25s var(--ease); }
.scard-link:hover svg { transform: translateX(4px); }

.scard-cta { background: var(--dark); border-color: transparent; }
.scard-cta::after {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(340px 200px at 80% 0%, rgba(var(--brand-rgb), .5), transparent 70%);
}
.scard-cta > * { position: relative; z-index: 1; }
.scard-cta h3 { color: #fff; }
.scard-cta p { color: var(--on-dark); }
.scard-cta .scard-ico { background: rgba(255, 255, 255, .1); color: #fff; }
.scard-cta:hover .scard-ico { background: #fff; color: var(--brand); }
.scard-cta .btn { margin-top: 20px; }

/* Why / values */
.why { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.why-copy h2 { margin: 16px 0 16px; }
.why-copy p { margin-bottom: 14px; }
.why-copy .btn { margin-top: 14px; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-grid-4 { grid-template-columns: repeat(4, 1fr); }
.vcard { padding: 26px 22px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s; }
.vcard:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.vcard-ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); margin-bottom: 16px; }
.vcard h3 { margin-bottom: 8px; font-size: 1.03rem; }
.vcard p { font-size: .9rem; }

/* Testimonials */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tcard {
	position: relative; padding: 32px 28px; border-radius: var(--r-lg);
	background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1);
	backdrop-filter: blur(12px); margin: 0; transition: transform .35s var(--ease), background .35s;
}
.tcard:hover { transform: translateY(-6px); background: rgba(255, 255, 255, .09); }
.tcard-q { display: block; color: var(--brand); opacity: .6; margin-bottom: 16px; }
.tcard blockquote { margin: 0 0 24px; color: var(--on-dark); font-size: 1rem; line-height: 1.7; }
.tcard figcaption { display: flex; align-items: center; gap: 13px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .1); }
.tcard-av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--grad); color: #fff; font-weight: 700; flex: none; }
.tcard figcaption strong { display: block; color: #fff; font-size: .93rem; }
.tcard figcaption em { font-style: normal; font-size: .8rem; color: var(--on-dark-dim); }

/* ---------- Page head ---------- */
.phead { position: relative; background: var(--dark); overflow: hidden; padding: clamp(58px, 6vw, 96px) 0 clamp(58px, 6vw, 88px); }
.phead-sm { padding-bottom: clamp(48px, 5vw, 72px); }
.phead-bg { position: absolute; inset: 0; }
/* Keep the wrap centred; cap the text width without centring the box. */
.phead-in { position: relative; }
.phead-in > * { max-width: 800px; }
.phead h1 { color: #fff; margin-bottom: 16px; }
.phead > .wrap > p { color: var(--on-dark); font-size: 1.08rem; max-width: 620px; }
.phead-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.crumbs { display: flex; align-items: center; gap: 9px; font-size: .85rem; color: var(--on-dark-dim); margin-bottom: 22px; }
.crumbs a { color: var(--on-dark); }
.crumbs a:hover { color: #fff; }
.crumbs b { color: #fff; font-weight: 600; }

/* ---------- About: story + commitment ---------- */
.story { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: start; }
.story-copy h2 { margin: 16px 0 18px; }
.story-copy p { margin-bottom: 15px; }
.story-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* Story cards — 2x2 grid, right side of story section */
.story-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.scard-story {
	background: #fff; border-radius: var(--r-lg); padding: 24px;
	border: 1px solid var(--line); box-shadow: var(--sh-sm);
	transition: transform .3s var(--ease), box-shadow .3s;
}
.scard-story:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.scard-story .scard-ico {
	width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px;
	display: grid; place-items: center; background: var(--brand-soft); color: var(--brand);
}
.scard-story h3 { font-size: .98rem; line-height: 1.3; margin-bottom: 8px; }
.scard-story p { font-size: .87rem; color: var(--muted); line-height: 1.55; }

/* Commitment bar — full width, below the story grid */
.commitment-bar {
	margin-top: 32px; background: var(--dark); border-radius: var(--r-lg);
	padding: 26px 32px; display: flex; align-items: center; gap: 20px;
	box-shadow: var(--sh);
}
.commitment-ico {
	width: 52px; height: 52px; border-radius: 14px; flex: none;
	display: grid; place-items: center; background: rgba(255,255,255,.1); color: #fff;
}
.commitment-body { flex: 1; min-width: 0; }
.commitment-body strong {
	display: block; color: #fff; font-size: 1.1rem; font-weight: 700;
	margin-bottom: 14px;
}

.commitment-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 28px;
	row-gap: 16px;
}

.commitment-item {
	display: flex; align-items: center; gap: 10px;
	position: relative;
}
/* Divider only between the two columns, aligned identically on every row */
.commitment-item:nth-child(2n)::before {
	content: ""; position: absolute; left: -14px; top: 50%; transform: translateY(-50%);
	width: 1px; height: 24px; background: rgba(255, 255, 255, .16);
}

/* Circular ring around the check icon */
.ci-tick {
	width: 28px; height: 28px; border-radius: 50%; flex: none;
	display: grid; place-items: center;
	border: 1.5px solid var(--accent);
	background: rgba(var(--accent-rgb), .12);
}
.ci-tick .ico { width: 14px; height: 14px; color: var(--accent); }

.ci-text {
	color: #fff; font-size: .87rem; font-weight: 600; line-height: 1.3;
	white-space: nowrap;
}

@media (max-width: 660px) {
	.commitment-bar { flex-direction: column; align-items: flex-start; padding: 22px; }
	.commitment-list { flex-direction: column; align-items: flex-start; gap: 14px; }
	.commitment-item { padding: 0; }
	.commitment-item:not(:first-child)::before { display: none; }
	.ci-text { white-space: normal; }
}


.timeline { list-style: none; margin: 0; padding: 0; position: relative; max-width: 780px; margin-inline: auto; }
.timeline::before { content: ""; position: absolute; left: 78px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--brand), var(--brand-2)); opacity: .25; }
.tl-item { position: relative; display: grid; grid-template-columns: 62px 1fr; gap: 40px; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-year { font-weight: 800; color: var(--ink); font-size: 1.02rem; text-align: right; padding-top: 2px; }
.tl-dot { position: absolute; left: 72px; top: 7px; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--brand); z-index: 1; }
.tl-body h3 { margin-bottom: 5px; }
.tl-body p { font-size: .94rem; }

/* ---------- Services detail ---------- */
.svc-list { display: grid; gap: 18px; }
.svc {
	display: grid; grid-template-columns: 96px 1fr; gap: 30px;
	padding: 34px 32px; border-radius: var(--r-lg);
	background: #fff; border: 1px solid var(--line);
	scroll-margin-top: calc(var(--nav-h) + 24px);
	transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: transparent; }
.svc-head { display: grid; gap: 14px; justify-items: center; }
.svc-num { font-size: 2.1rem; font-weight: 800; letter-spacing: -.04em; color: var(--line); transition: color .3s; }
.svc:hover .svc-num { color: var(--brand); }
.svc-ico { width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; background: var(--grad-soft); color: var(--brand); transition: .3s var(--ease); }
.svc:hover .svc-ico { background: var(--grad); color: #fff; transform: rotate(-6deg); }
.svc-body h2 { font-size: 1.42rem; margin-bottom: 8px; }
.svc-short { margin-bottom: 20px; }
.svc-points { list-style: none; margin: 0 0 22px; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; }
.svc-points li { display: flex; align-items: flex-start; gap: 9px; font-size: .92rem; }
.svc-points svg { color: var(--ok); margin-top: 4px; }
.svc-cta { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .93rem; color: var(--brand); }
.svc-cta svg { transition: transform .25s var(--ease); }
.svc-cta:hover svg { transform: translateX(4px); }

/* Steps */
/* Steps */
.steps { display: flex; align-items: center; gap: 0; }
.step {
	flex: 1; min-width: 0; position: relative; padding: 26px 22px; border-radius: var(--r-lg);
	background: #fff; border: 1px solid var(--line);
	transition: transform .3s var(--ease), box-shadow .3s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.step-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.step-num {
	display: inline-grid; place-items: center; width: 32px; height: 32px; flex: none;
	border-radius: 50%; background: var(--grad); color: #fff; font-weight: 800; font-size: .8rem;
	box-shadow: var(--sh-brand);
}
.step-ico {
	width: 40px; height: 40px; flex: none; border-radius: 12px;
	display: grid; place-items: center; background: var(--brand-soft); color: var(--brand);
}
.step h3 { margin-bottom: 8px; font-size: 1rem; }
.step p { font-size: .87rem; color: var(--muted); line-height: 1.55; }

.step-arrow {
	flex: none; color: var(--line); margin: 0 6px; display: flex; align-items: center;
}
.step-arrow .ico { width: 20px; height: 20px; }

@media (max-width: 960px) {
	.steps { flex-direction: column; align-items: stretch; }
	.step-arrow { transform: rotate(90deg); align-self: center; margin: 4px 0; }
}

/* ---------- 8. Forms ---------- */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.eform-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 20px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.req { color: var(--err); }

.field input, .field textarea, .field select {
	width: 100%; padding: 13px 15px; font: inherit; font-size: .94rem;
	color: var(--ink); background: #fff;
	border: 1px solid var(--line); border-radius: var(--r-sm);
	transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 108px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus {
	outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(var(--brand-rgb), .12);
}
.field.has-error input, .field.has-error textarea { border-color: var(--err); box-shadow: 0 0 0 4px rgba(239, 68, 68, .1); }

.select-wrap { position: relative; }
.select-wrap::after {
	content: ""; position: absolute; right: 16px; top: 50%; width: 8px; height: 8px;
	border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
	transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.field select { appearance: none; padding-right: 40px; cursor: pointer; }

.err { color: var(--err); font-size: .8rem; min-height: 0; display: none; }
.field.has-error .err { display: block; }

.eform-note { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: .82rem; color: var(--muted); }
.eform-note svg { color: var(--ok); flex: none; }

.eform-alert { display: none; margin-top: 16px; padding: 14px 16px; border-radius: var(--r-sm); font-size: .9rem; font-weight: 500; }
.eform-alert.is-ok   { display: block; background: var(--ok-soft); color: var(--accent); border: 1px solid var(--ok-soft); }
.eform-alert.is-bad  { display: block; background: var(--err-soft); color: var(--err-ink); border: 1px solid var(--err-line); }

.eform-note-list {
	list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 8px;
}
.eform-note-list li {
	display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted);
}
.eform-note-list svg { color: var(--ok); flex: none; }

/* Inline enquiry block */
.inline-enq {
	display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
	padding: clamp(32px, 4vw, 54px); border-radius: var(--r-xl);
	background: var(--grad-soft); border: 1px solid rgba(var(--brand-rgb), .1);
}
.inline-enq h2 { margin: 16px 0 14px; }
.inline-enq-form { background: #fff; padding: clamp(24px, 3vw, 34px); border-radius: var(--r-lg); box-shadow: var(--sh); }
.inline-enq-form .eform-grid { grid-template-columns: 1fr; }
.inline-enq-alt { display: grid; gap: 12px; margin-top: 28px; } 
/* Inline enquiry block v2 */
.inline-enq-v2 {
	display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; align-items: stretch;
}

.inline-enq-panel {
	position: relative; overflow: hidden; border-radius: var(--r-xl);
	background: var(--grad); color: #fff;
	padding: clamp(28px, 3.5vw, 38px); display: flex; flex-direction: column;
	justify-content: center;
}
.inline-enq-panel h2 { color: #fff; font-size: clamp(1.3rem, 1.05rem + .9vw, 1.7rem); margin-bottom: 8px; }
.inline-enq-panel > p { color: rgba(255,255,255,.85); font-size: .9rem; margin-bottom: 22px; }

.ieq-list {
	list-style: none; margin: 0; padding: 0; display: grid;
	grid-template-columns: repeat(2, 1fr); gap: 14px 18px; position: relative; z-index: 1;
}
.ieq-list li {
	display: flex; align-items: center; gap: 9px;
	color: #fff; font-size: .85rem; font-weight: 600; line-height: 1.3;
}
.ieq-list svg {
	flex: none; width: 18px; height: 18px; padding: 3px; border-radius: 50%;
	background: rgba(255,255,255,.18); color: #fff;
}

.ieq-art {
	position: absolute; right: 6px; bottom: 6px; width: 150px; height: 150px;
	opacity: .55; color: rgba(255,255,255,.35); pointer-events: none;
}
.ieq-art svg, .ieq-art .ico { width: 100%; height: 100%; }

.inline-enq-form { background: #fff; padding: clamp(24px, 3vw, 32px); border-radius: var(--r-xl); box-shadow: var(--sh); }
.inline-enq-form .eform-grid { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 1080px) {
	.inline-enq-v2 { grid-template-columns: 1fr; }
	.ieq-art { display: none; }
}
@media (max-width: 660px) {
	.ieq-list { grid-template-columns: 1fr; }
	.inline-enq-form .eform-grid { grid-template-columns: 1fr; }
}

.ie-link { display: flex; align-items: center; gap: 14px; color: var(--ink); }
.ie-ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: #fff; color: var(--brand); box-shadow: var(--sh-sm); transition: .25s; }
.ie-link:hover .ie-ico { background: var(--brand); color: #fff; }
.ie-link em { display: block; font-style: normal; font-size: .78rem; color: var(--muted); }
.ie-link strong { font-size: .96rem; }
/* ---------- 9. Contact ---------- */
.ccards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ccard {
	display: grid; gap: 5px; padding: 32px 28px; border-radius: var(--r-lg);
	background: #fff; border: 1px solid var(--line); color: var(--body);
	transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.ccard:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; color: var(--body); }
.ccard-ico { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: var(--grad-soft); color: var(--brand); margin-bottom: 14px; transition: .3s var(--ease); }
.ccard:hover .ccard-ico { background: var(--grad); color: #fff; transform: rotate(-7deg); }
.ccard h3 { font-size: 1.05rem; }
.ccard strong { color: var(--ink); font-size: 1rem; }
.ccard em { font-style: normal; font-size: .88rem; color: var(--muted); line-height: 1.6; }
.ccard-go { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-weight: 600; font-size: .87rem; color: var(--brand); }
.ccard-go-mute { color: var(--muted); font-weight: 500; }
.ccard:hover .ccard-go svg { transform: translateX(4px); }
.ccard-go svg { transition: transform .25s var(--ease); }

.contact-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
.contact-form-wrap { padding: clamp(26px, 3vw, 40px); border-radius: var(--r-xl); background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.contact-form-wrap h2 { margin: 16px 0 12px; }
.contact-lead { margin-bottom: 28px; }

.contact-side { display: grid; gap: 20px; }
.map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.map iframe { width: 100%; height: 260px; border: 0; filter: grayscale(.25); }
.side-box { padding: 26px; border-radius: var(--r-lg); background: var(--tint); border: 1px solid var(--line); }
.side-box h3 { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; font-size: 1rem; }
.side-box h3 svg { color: var(--brand); }
.side-box p { font-size: .9rem; margin-bottom: 12px; }
.side-box p .ico {
	display: inline-flex;
	vertical-align: -3px;
	margin-right: 6px;
}
.side-box p:last-child { margin-bottom: 0; }
.side-box strong { color: var(--ink); }
.side-box-dark { background: var(--dark); border-color: transparent; }
.side-box-dark h3 { color: #fff; }
.side-box-dark p { color: var(--on-dark); margin-bottom: 18px; }

/* FAQ */
.faq-wrap { max-width: 820px; }
.faq { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.faq-item[open] { border-color: rgba(var(--brand-rgb), .3); box-shadow: var(--sh-sm); }
.faq-item summary {
	display: flex; align-items: center; justify-content: space-between; gap: 20px;
	padding: 20px 24px; cursor: pointer; list-style: none;
	font-weight: 600; color: var(--ink); font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { width: 32px; height: 32px; flex: none; border-radius: 9px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); transition: transform .28s var(--ease), background .25s; }
.faq-item[open] .faq-plus { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq-item p { padding: 0 24px 22px; font-size: .95rem; }
.faq-more { text-align: center; margin-top: 30px; font-size: .95rem; }

/* ---------- 10. CTA + Footer ---------- */
.cta-band {
	position: relative; overflow: hidden; background: var(--dark); padding: clamp(48px, 5vw, 76px) 0;
	border-top: 1px solid rgba(255, 255, 255, .08);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.cta-band::before {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(620px 300px at 20% 0%, rgba(var(--brand-rgb), .45), transparent 68%),
	            radial-gradient(520px 260px at 82% 110%, rgba(var(--brand-2-rgb), .35), transparent 68%);
}
.cta-in { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: nowrap; }.cta-in h2 { color: #fff; margin-bottom: 10px; }
.cta-in p { color: var(--on-dark); }
.cta-in > div:first-child { flex: 1 1 auto; min-width: 0; }
.cta-actions { flex: none; flex-wrap: nowrap; }

.foot { background: var(--dark); color: var(--on-dark-dim); padding-top: clamp(50px, 5vw, 76px); }
.foot-in { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.foot-col { display: grid; align-content: start; gap: 11px; }
.foot-col h3 { color: #fff; font-size: .82rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 6px; }
.foot-col a { color: var(--on-dark-dim); font-size: .93rem; display: inline-flex; align-items: center; gap: 9px; }
.foot-col a:hover { color: #fff; }
.foot-brand .brand { margin-bottom: 6px; }
.foot-desc { font-size: .92rem; max-width: 330px; line-height: 1.7; }
.foot-social { display: flex; gap: 9px; margin-top: 10px; }
.foot-social a { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: rgba(255, 255, 255, .06); transition: .25s; }
.foot-social a:hover { background: var(--brand); color: #fff; transform: translateY(-3px); }
.foot-addr { display: flex; gap: 9px; font-size: .93rem; line-height: 1.7; }
.foot-addr svg { color: var(--brand); margin-top: 5px; flex: none; }

.foot-bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-block: 22px; border-top: 1px solid rgba(255, 255, 255, .07); font-size: .87rem; }
.foot-legal { display: flex; gap: 10px; align-items: center; }
.foot-legal a { color: var(--on-dark-dim); }
.foot-legal a:hover { color: #fff; }

/* ---------- 11. Call widget ---------- */
.cw { position: fixed; right: 24px; bottom: 24px; z-index: 90; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }

.cw-teaser {
	position: relative; max-width: 250px; padding: 15px 34px 15px 17px;
	background: #fff; border-radius: var(--r) var(--r) 4px var(--r);
	box-shadow: var(--sh-lg); font-size: .88rem; color: var(--body);
	animation: pop .45s var(--ease);
}
.cw-teaser strong { color: var(--ink); }
.cw-teaser-x { position: absolute; top: 8px; right: 8px; color: var(--muted); padding: 4px; border-radius: 6px; }
.cw-teaser-x:hover { background: var(--tint); color: var(--ink); }
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(.94); } }

.cw-panel {
	width: 340px; max-width: calc(100vw - 40px);
	background: #fff; border-radius: var(--r-lg); overflow: hidden;
	box-shadow: var(--sh-lg); transform-origin: bottom right;
	animation: pop .32s var(--ease);
}
.cw-head { position: relative; display: flex; align-items: center; gap: 12px; padding: 18px 20px; background: var(--grad); color: #fff; }
.cw-avatar { position: relative; width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: rgba(255, 255, 255, .18); flex: none; }
.cw-dot { position: absolute; right: -2px; bottom: -2px; width: 13px; height: 13px; border-radius: 50%; background: var(--accent); border: 2.5px solid var(--brand); }
.cw-head-txt strong { display: block; font-size: .97rem; }
.cw-head-txt em { font-style: normal; font-size: .77rem; color: var(--on-dark); display: flex; align-items: center; gap: 6px; }
.cw-x { margin-left: auto; color: #fff; opacity: .8; padding: 6px; border-radius: 8px; }
.cw-x:hover { opacity: 1; background: rgba(255, 255, 255, .15); }

.cw-body { padding: 18px; display: grid; gap: 10px; }
.cw-msg { background: var(--tint); border-radius: 4px 14px 14px 14px; padding: 14px 16px; font-size: .9rem; margin-bottom: 4px; }
.cw-msg p { margin-bottom: 6px; }
.cw-msg p:last-child { margin-bottom: 0; }

.cw-opt {
	display: flex; align-items: center; gap: 13px; width: 100%; text-align: left;
	padding: 13px 15px; border-radius: 14px; border: 1px solid var(--line);
	color: var(--body); transition: .25s var(--ease);
}
.cw-opt:hover { border-color: var(--brand); background: var(--brand-soft); color: var(--body); transform: translateX(3px); }
.cw-opt > svg:last-child { margin-left: auto; color: var(--muted); transition: transform .25s var(--ease); }
.cw-opt:hover > svg:last-child { transform: translateX(3px); color: var(--brand); }
.cw-opt-ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); flex: none; }
.cw-opt-txt strong { display: block; color: var(--ink); font-size: .92rem; }
.cw-opt-txt em { font-style: normal; font-size: .78rem; color: var(--muted); }
.cw-opt-primary { border-color: transparent; background: var(--grad); }
.cw-opt-primary:hover { background: var(--grad); border-color: transparent; transform: translateX(3px); }
.cw-opt-primary .cw-opt-ico { background: rgba(255, 255, 255, .2); color: #fff; }
.cw-opt-primary .cw-opt-txt strong { color: #fff; }
.cw-opt-primary .cw-opt-txt em { color: var(--on-dark); }
.cw-opt-primary > svg:last-child { color: #fff; }
.cw-opt-primary:hover > svg:last-child { color: #fff; }
.cw-wa { background: var(--ok-soft); color: var(--accent); }
.cw-mail { background: var(--brand-2-soft); color: var(--brand-2); }

.cw-foot { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 6px; font-size: .78rem; color: var(--muted); }

.cw-fab {
	position: relative; width: 62px; height: 62px; border-radius: 50%;
	display: grid; place-items: center; color: #fff; background: var(--grad);
	box-shadow: 0 10px 26px rgba(var(--brand-rgb), .42);
	transition: transform .3s var(--ease), box-shadow .3s;
}
.cw-fab:hover { transform: scale(1.07); box-shadow: 0 14px 32px rgba(var(--brand-rgb), .5); }
.cw-fab-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--brand); animation: ring 2.4s var(--ease) infinite; }
@keyframes ring { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.55); opacity: 0; } }
.cw-fab-ico { position: absolute; display: grid; place-items: center; transition: transform .3s var(--ease), opacity .25s; }
.cw-fab-close { transform: rotate(-90deg) scale(.5); opacity: 0; }
.cw.is-open .cw-fab-open { transform: rotate(90deg) scale(.5); opacity: 0; }
.cw.is-open .cw-fab-close { transform: none; opacity: 1; }
.cw.is-open .cw-fab-ring { display: none; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 22px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(var(--dark-rgb), .62); backdrop-filter: blur(5px); animation: fade .3s; }
@keyframes fade { from { opacity: 0; } }

.modal-card {
	position: relative; display: grid; grid-template-columns: .82fr 1.18fr;
	width: 100%; max-width: 900px; max-height: calc(100vh - 44px);
	overflow: auto; border-radius: var(--r-xl); background: #fff;
	box-shadow: var(--sh-lg); animation: rise .38s var(--ease);
}
@keyframes rise { from { opacity: 0; transform: translateY(26px) scale(.97); } }

.modal-x { position: absolute; top: 16px; right: 16px; z-index: 2; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: #fff; color: var(--ink); box-shadow: var(--sh-sm); transition: .25s; }
.modal-x:hover { background: var(--dark); color: #fff; transform: rotate(90deg); }

.modal-aside { position: relative; overflow: hidden; padding: 40px 34px; background: var(--dark); color: var(--on-dark); display: flex; flex-direction: column; }
.modal-aside::before {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(400px 260px at 10% 0%, rgba(var(--brand-rgb), .55), transparent 70%),
	            radial-gradient(320px 240px at 100% 100%, rgba(var(--brand-2-rgb), .4), transparent 70%);
}
.modal-aside > * { position: relative; }
.modal-aside h2 { color: #fff; font-size: 1.62rem; margin: 18px 0 12px; }
.modal-aside > p { font-size: .93rem; }
.modal-list { list-style: none; margin: 26px 0 auto; padding: 0; display: grid; gap: 12px; }
.modal-list li { display: flex; align-items: center; gap: 10px; font-size: .9rem; }
.modal-list svg { color: var(--accent); flex: none; }
.modal-call { display: flex; align-items: center; gap: 9px; margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .12); color: var(--on-dark); font-size: .88rem; }
.modal-call strong { color: #fff; }
.modal-call:hover { color: #fff; }

.modal-main { padding: 40px 36px; }

/* ---------- 12. Responsive ---------- */
@media (max-width: 1080px) {
	.hero-in, .why, .why2, .story { grid-template-columns: 1fr; gap: 48px; }
	.hero-art { display: none; }
	.foot-in { grid-template-columns: 1fr 1fr; gap: 36px; }
	.contact-split { grid-template-columns: 1fr; }
	.map iframe { height: 300px; }
}

@media (max-width: 960px) {
	:root { --nav-h: 68px; }
	.topbar { display: none; }

	.nav-links {
		position: fixed; inset: var(--nav-h) 0 auto; margin: 0;
		flex-direction: column; align-items: stretch; gap: 2px;
		padding: 18px 22px 26px; background: #fff;
		border-bottom: 1px solid var(--line); box-shadow: var(--sh);
		transform: translateY(-12px); opacity: 0; pointer-events: none;
		transition: opacity .25s, transform .25s var(--ease);
		max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
	}
	.nav-links.is-open { transform: none; opacity: 1; pointer-events: auto; }
	.nav-links > a { padding: 14px 12px; font-size: 1.02rem; border-radius: 10px; }
	.nav-links > a::after { display: none; }
	.nav-links > a.is-active { background: var(--brand-soft); }
	.nav-cta-mobile { display: grid; gap: 10px; margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--line); }
	.nav-cta-mobile .btn-ghost { border: 1px solid var(--line); color: var(--ink); }

	.nav-phone, .nav-actions .btn-primary { display: none; }
	.nav-burger { display: grid; }
	.nav-actions { margin-left: auto; }

	.bento, .tgrid, .ccards, .steps { grid-template-columns: repeat(2, 1fr); }
	.why-grid-4 { grid-template-columns: repeat(2, 1fr); }
	.stats { grid-template-columns: repeat(2, 1fr); }
	.inline-enq { grid-template-columns: 1fr; gap: 34px; }
	.svc { grid-template-columns: 1fr; gap: 22px; }
	.svc-head { grid-auto-flow: column; justify-items: start; justify-content: start; align-items: center; gap: 18px; }
	.modal-card { grid-template-columns: 1fr; }
	.modal-aside { display: none; }
	.modal-main { padding: 46px 26px 30px; }
}

@media (max-width: 660px) {
	.wrap { padding-inline: 18px; }
	.strip-in { flex-direction: column; align-items: stretch; gap: 16px; }
	.bento, .tgrid, .ccards, .steps, .why-grid, .why-grid-4, .stats, .story-stats { grid-template-columns: 1fr; }
	.eform-grid, .svc-points { grid-template-columns: 1fr; }
	.hero-actions .btn, .phead-actions .btn, .cta-actions .btn { width: 100%; }
	.foot-in { grid-template-columns: 1fr; }
	.foot-bar { justify-content: center; text-align: center; }
	.timeline::before { left: 7px; }
	.tl-item { grid-template-columns: 1fr; gap: 6px; padding-left: 34px; }
	.tl-dot { left: 0; }
	.tl-year { text-align: left; }
	.cw { right: 16px; bottom: 16px; }
	.cw-teaser { max-width: 220px; }
	.modal { padding: 12px; }

}
/* new */
/* ---------- Features bar ---------- */
.features-bar { background: var(--dark); padding: 22px 0; }
.features-bar-in { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; }
.ftick { display: inline-flex; align-items: center; gap: 8px; color: var(--on-dark); font-size: .92rem; font-weight: 600; }
.ftick svg { color: var(--accent); }

/* ---------- Feature cards ---------- */
.fgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: -1px; }
.fcard {
	display: flex; gap: 16px; align-items: flex-start;
	padding: 26px 22px; border-radius: var(--r); background: #fff;
	border: 1px solid var(--line); box-shadow: var(--sh-sm);
	transition: transform .3s var(--ease), box-shadow .3s;
}
.fcard:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.fcard-ico { width: 46px; height: 46px; border-radius: 13px; flex: none; display: grid; place-items: center; background: var(--grad-soft); color: var(--brand); }
.fcard h3 { font-size: .98rem; margin-bottom: 6px; }
.fcard p { font-size: .85rem; color: var(--muted); }

/* ---------- Dash title ---------- */
.dash-title {
	text-align: center; display: flex; align-items: center; gap: 18px;
	color: var(--brand); font-size: 1.4rem; margin-bottom: 40px;
}
.dash-title::before, .dash-title::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* ---------- Industries grid ---------- */
.igrid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 16px; }
.icard {
	display: flex; flex-direction: column; align-items: center; gap: 12px;
	padding: 22px 14px; border-radius: var(--r); background: #fff;
	border: 1px solid var(--line); text-align: center; font-size: .85rem; font-weight: 600; color: var(--ink);
	transition: transform .3s var(--ease), box-shadow .3s;
}
.icard:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.icard-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); }

@media (max-width: 960px) {
	.fgrid { grid-template-columns: repeat(2, 1fr); }
	.igrid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 660px) {
	.fgrid { grid-template-columns: 1fr; }
	.igrid { grid-template-columns: repeat(2, 1fr); }

	.cta-in { flex-wrap: wrap; }
	.cta-in > div:first-child { flex: 1 1 100%; }
}
/* ---------- Why us v2 ---------- */
.why2 { display: grid; grid-template-columns: .95fr 1.05fr; gap: 44px; align-items: center; }

.why-panel {
	position: relative; overflow: hidden; border-radius: var(--r-xl);
	background: var(--dark); color: var(--on-dark);
	padding: clamp(34px, 4vw, 48px); box-shadow: var(--sh-lg);
}
.why-panel::before {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(460px 280px at 0% 0%, rgba(var(--brand-rgb), .55), transparent 70%),
	            radial-gradient(380px 260px at 100% 100%, rgba(var(--brand-2-rgb), .4), transparent 70%);
}
.why-panel > * { position: relative; z-index: 1; }
.why-panel h2 { color: #fff; margin: 16px 0 14px; font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.05rem); }
.why-panel > p { font-size: .98rem; line-height: 1.7; margin-bottom: 24px; max-width: 440px; }

.why-check { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 14px; }
.why-check li { display: flex; align-items: center; gap: 12px; font-size: .95rem; font-weight: 600; color: #fff; }
.why-check svg {
	color: var(--accent); flex: none; width: 28px; height: 28px; padding: 6px;
	border-radius: 50%; background: rgba(255, 255, 255, .12);
}

.why-panel-cta { color: var(--ink); }

/* Right-side cards keep the existing .why-grid / .vcard styling */

/* new */
.fcard p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}