/* ===== Lingang Signal - design tokens ===== */
:root {
	--bg: #0B1220;
	--surface: #101B2E;
	--ink: #E9F3F2;
	--accent: #2FC7CC;
	--line: #1E2C40;
	--font-display: 'Archivo Narrow', sans-serif;
	--font-body: 'Archivo', sans-serif;
	--radius-sm: 4px;
	--radius-md: 8px;
	--space-sm: 8px;
	--space-md: 20px;
	--space-lg: 40px;
	--space-xl: 80px;
	--container-w: 1200px;
}

@font-face {
	font-family: 'Archivo Narrow';
	src: url('fonts/archivo-narrow-latin.woff2') format('woff2');
	font-weight: 600 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Archivo';
	src: url('fonts/archivo-latin.woff2') format('woff2');
	font-weight: 400 600;
	font-style: normal;
	font-display: swap;
}

/* ===== Reset ===== */
:where(*, *::before, *::after) { box-sizing: border-box; }
:where(body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol) { margin: 0; padding: 0; }
:where(ul, ol) { list-style: none; }
:where(img, svg) { display: block; max-width: 100%; }
:where(a) { color: inherit; text-decoration: none; }
:where(button) { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

html { color-scheme: dark; }
body.zw {
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.zw-aura {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.zw-aura__blob {
	position: absolute;
	top: 0;
	left: 0;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(47, 199, 204, 0.30), rgba(47, 199, 204, 0) 70%);
	transform: translate3d(-50%, -50%, 0);
	will-change: transform;
}
.zw-header, main, .zw-footer { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
	.zw-aura { display: none; }
}
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.08;
	color: var(--ink);
}

.zw-container {
	max-width: var(--container-w);
	margin-inline: auto;
	padding-inline: var(--space-md);
}
@media (min-width: 768px) {
	.zw-container { padding-inline: var(--space-lg); }
}

/* ===== Buttons ===== */
.zw-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 999px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	white-space: nowrap;
	overflow: hidden;
	transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.zw-btn::after {
	content: '\2192';
	display: inline-block;
	transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.zw-btn:hover::after { transform: translateX(5px); }
.zw-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.4) 48%, transparent 66%);
	transform: translateX(-100%);
	transition: transform 0.65s ease;
	pointer-events: none;
}
.zw-btn:hover::before { transform: translateX(100%); }
.zw-btn--primary { background: var(--accent); color: var(--bg); }
.zw-btn--primary:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 8px 28px -6px rgba(47, 199, 204, 0.55);
}
.zw-btn--ghost { border: 1px solid var(--accent); color: var(--ink); }
.zw-btn--ghost:hover {
	background: rgba(47, 199, 204, 0.1);
	transform: translateY(-2px) scale(1.02);
	border-color: var(--ink);
}
.zw-btn--sm { padding: 10px 20px; font-size: 14px; }
.zw-btn:active { transform: scale(0.96) !important; transition-duration: 0.08s; }
@media (prefers-reduced-motion: reduce) {
	.zw-btn, .zw-btn::before, .zw-btn::after { transition: none !important; }
}

/* ===== Header ===== */
.zw-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(11, 18, 32, 0.85);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}
.zw-header__inner {
	display: flex;
	align-items: center;
	gap: var(--space-lg);
	padding-block: 16px;
}
.zw-header__logo img {
	filter: brightness(0) invert(1);
	height: 32px;
	width: auto;
}
.zw-nav { flex: 1; }
.zw-nav__list {
	display: none;
	gap: var(--space-lg);
	font-size: 15px;
	font-weight: 500;
}
.zw-nav__list a:hover { color: var(--accent); }
.zw-header__cta { display: none; }
.zw-nav__toggle {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
	margin-left: auto;
}
.zw-nav__toggle span {
	width: 22px;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
}
@media (min-width: 900px) {
	.zw-nav__list { display: flex; }
	.zw-header__cta { display: inline-flex; margin-left: auto; }
	.zw-nav__toggle { display: none; }
}
@media (max-width: 899px) {
	.zw-nav__list.is-open {
		display: flex;
		flex-direction: column;
		gap: var(--space-md);
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--bg);
		border-bottom: 1px solid var(--line);
		padding: var(--space-lg) var(--space-md);
	}
}

/* ===== Hero ===== */
.zw-hero {
	position: relative;
	overflow: hidden;
	min-height: 60vh;
	display: flex;
	align-items: center;
	padding-block: 72px 56px;
}
.zw-hero__inner { position: relative; z-index: 2; width: 100%; }
.zw-hero__content { max-width: 660px; }
.zw-hero__content--center {
	max-width: 740px;
	margin-inline: auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.zw-hero__locator {
	font-size: 13px;
	color: var(--accent);
	font-weight: 500;
	margin-bottom: var(--space-md);
	letter-spacing: 0.02em;
}
.zw-badge {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 6px 16px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(47, 199, 204, 0.06);
}
.zw-badge::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
	height: 100%;
	background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
	transform: translateX(-250%) skewX(-20deg);
}
@media (prefers-reduced-motion: no-preference) {
	.zw-badge::after { animation: zw-badge-shine 4.5s ease-in-out infinite; }
}
@keyframes zw-badge-shine {
	0%, 25% { transform: translateX(-250%) skewX(-20deg); }
	65%, 100% { transform: translateX(350%) skewX(-20deg); }
}
.zw-hero__title {
	font-size: clamp(28px, 3.8vw, 44px);
	margin-bottom: var(--space-md);
}
.zw-hero__sub {
	font-size: 17px;
	color: rgba(233, 243, 242, 0.75);
	max-width: 54ch;
	margin-inline: auto;
	margin-bottom: var(--space-lg);
}
.zw-hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; }
.zw-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}
.zw-rotator-wrap {
	position: relative;
	display: inline-block;
	padding-bottom: 10px;
	vertical-align: top;
	text-align: left;
}
.zw-rotator {
	position: relative;
	display: inline-block;
	height: 1.3em;
	overflow: hidden;
	vertical-align: top;
}
.zw-rotator__word {
	position: absolute;
	left: 0;
	top: 0;
	white-space: nowrap;
	color: var(--accent);
	transform: translateY(115%);
	opacity: 0;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}
.zw-rotator__word.is-active { transform: translateY(0); opacity: 1; }
.zw-rotator__word.is-prev { transform: translateY(-115%); opacity: 0; }
.zw-rotator__bar {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 1px;
	background: var(--accent);
	border-radius: 2px;
	transform-origin: left center;
	transform: scaleX(0);
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
	.zw-rotator__word { transition: none; }
	.zw-rotator__bar { transition: none; }
}

/* ---- signal visual (breaks the container edge) ---- */
.zw-hero__signal {
	position: absolute;
	top: 0;
	right: 0;
	width: 58%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

.zw-hero__bg {
	position: absolute;
	inset: 0;
	opacity: 0.22;
}
.zw-growth { width: 100%; height: 100%; }
.zw-growth__area { opacity: 0; transition: opacity 1s ease 1.6s; }
.zw-growth__line {
	fill: none;
	stroke: var(--accent);
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
	filter: drop-shadow(0 0 6px rgba(47, 199, 204, 0.6));
}
.zw-growth__dot { fill: var(--accent); opacity: 0; }
.zw-growth__dot--3 { filter: drop-shadow(0 0 10px rgba(47, 199, 204, 0.8)); }

@media (prefers-reduced-motion: no-preference) {
	.zw-growth__line {
		stroke-dasharray: 900;
		stroke-dashoffset: 900;
		animation: zw-draw 2s cubic-bezier(0.65, 0, 0.35, 1) forwards 0.2s;
	}
	.zw-growth__area { animation: zw-fade-in 1s ease forwards 1.8s; }
	.zw-growth__dot--1 { animation: zw-dot-in 0.4s ease forwards 0.9s; }
	.zw-growth__dot--2 { animation: zw-dot-in 0.4s ease forwards 1.5s; }
	.zw-growth__dot--3 { animation: zw-dot-in 0.4s ease forwards 2.1s, zw-pulse 2.4s ease-in-out infinite 2.5s; }
}
@media (prefers-reduced-motion: reduce) {
	.zw-growth__line { stroke-dashoffset: 0; }
	.zw-growth__area { opacity: 1; }
	.zw-growth__dot { opacity: 1; }
}
@keyframes zw-draw { to { stroke-dashoffset: 0; } }
@keyframes zw-fade-in { to { opacity: 1; } }
@keyframes zw-dot-in { to { opacity: 1; } }
/* ===== Footer ===== */
.zw-footer { border-top: 1px solid var(--line); padding-block: var(--space-xl) var(--space-md); margin-top: var(--space-xl); }
.zw-footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(28px, 5vw, 56px); padding-bottom: var(--space-lg); border-bottom: 1px solid var(--line); }
.zw-footer__brand img { filter: brightness(0) invert(1); height: 28px; margin-bottom: var(--space-md); opacity: 0.92; }
.zw-footer__pitch { font-size: 14px; line-height: 1.6; color: rgba(233, 243, 242, 0.55); max-width: 32ch; margin-bottom: var(--space-md); }
.zw-footer__h { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(233, 243, 242, 0.5); margin-bottom: var(--space-md); }
.zw-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.zw-footer__col a { font-size: 14px; color: rgba(233, 243, 242, 0.6); text-decoration: none; transition: color 0.18s ease; }
.zw-footer__col a:hover { color: var(--ink); }
.zw-footer__muted { font-size: 14px; color: rgba(233, 243, 242, 0.5); }
.zw-footer__bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: var(--space-md); font-size: 13px; color: rgba(233, 243, 242, 0.45); }
.zw-footer__rated { display: inline-flex; align-items: center; gap: 8px; }
.zw-stars { color: var(--accent); letter-spacing: 0.06em; font-size: 13px; }
@media (max-width: 900px) { .zw-footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .zw-footer__top { grid-template-columns: 1fr; } }

/* ===== Section heading ===== */
.zw-h2 {
	font-size: clamp(28px, 3.4vw, 38px);
	margin-bottom: var(--space-lg);
}

/* ===== Stats section ===== */
.zw-stats { padding-block: var(--space-xl); border-top: 1px solid var(--line); text-align: center; }
.zw-stats__inner { max-width: 900px; margin-inline: auto; }
.zw-stats__statement {
	font-size: clamp(17px, 2vw, 20px);
	color: rgba(233, 243, 242, 0.75);
	max-width: 62ch;
	margin-inline: auto;
	margin-bottom: var(--space-xl);
}
.zw-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-lg);
}
.zw-stat { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.zw-stat__num {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(40px, 5.5vw, 64px);
	color: var(--accent);
	line-height: 1;
}
.zw-stat__label {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(233, 243, 242, 0.55);
}
@media (max-width: 767px) {
	.zw-stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: var(--space-xl); }
}

/* ===== Services section ===== */
.zw-services { padding-block: var(--space-xl); border-top: 1px solid var(--line); }
.zw-services__featured { border-top: 1px solid var(--line); margin-bottom: var(--space-lg); }
.zw-svc-row {
	position: relative;
	display: flex;
	align-items: center;
	gap: var(--space-lg);
	padding-block: 22px;
	border-bottom: 1px solid var(--line);
	transition: padding-left 0.3s ease;
}
.zw-svc-row::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(47, 199, 204, 0.08), transparent);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.4s ease;
}
.zw-svc-row:hover::before { transform: scaleX(1); }
.zw-svc-row:hover { padding-left: 12px; }
.zw-svc-row__name {
	position: relative;
	font-family: var(--font-display);
	font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 700;
	min-width: 220px;
	transition: color 0.3s ease;
}
.zw-svc-row:hover .zw-svc-row__name { color: var(--accent); }
.zw-svc-row__desc { position: relative; color: rgba(233, 243, 242, 0.65); max-width: 46ch; }
.zw-svc-row__arrow {
	position: relative;
	margin-left: auto;
	color: var(--accent);
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.zw-svc-row:hover .zw-svc-row__arrow { opacity: 1; transform: translateX(0); }
.zw-services__and-others {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(233, 243, 242, 0.45);
	margin-bottom: var(--space-md);
}
.zw-services__secondary {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}
.zw-svc-tile {
	display: block;
	padding: var(--space-md) var(--space-md);
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	transition: background 0.3s ease;
}
.zw-svc-tile:hover { background: rgba(47, 199, 204, 0.05); }
.zw-svc-tile__name { display: block; font-weight: 600; margin-bottom: 4px; }
.zw-svc-tile:hover .zw-svc-tile__name { color: var(--accent); }
.zw-svc-tile__desc { display: block; font-size: 14px; color: rgba(233, 243, 242, 0.55); }
@media (max-width: 767px) {
	.zw-svc-row { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
	.zw-svc-row__name { min-width: 0; }
	.zw-svc-row__arrow { display: none; }
	.zw-services__secondary { grid-template-columns: 1fr; }
}

/* ===== Close CTA ===== */
.zw-close { padding-block: var(--space-xl); border-top: 1px solid var(--line); text-align: center; }
.zw-close__inner { max-width: 640px; margin-inline: auto; }
.zw-close__sub { color: rgba(233, 243, 242, 0.7); margin-bottom: var(--space-lg); }
.zw-close__ctas { display: flex; justify-content: center; }
/* ===== Marquee ===== */
.zw-marquee-section { padding-block: var(--space-xl); border-top: 1px solid var(--line); }
.zw-marquee-section .zw-microlabel { text-align: center; margin-bottom: 30px; }
.zw-microlabel { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(233, 243, 242, 0.5); }
.zw-marquee-viewport { overflow: hidden; }
.zw-marquee { display: flex; width: max-content; will-change: transform; }
@media (prefers-reduced-motion: no-preference) {
	.zw-marquee { animation: zw-scroll 46s linear infinite; }
	.zw-marquee:hover, .zw-marquee:focus-within { animation-play-state: paused; }
}
@keyframes zw-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.zw-marquee__track { display: flex; align-items: center; gap: 18px; margin-right: 18px; padding: 0; margin-block: 0; margin-left: 0; list-style: none; }
.zw-marquee__item { flex: 0 0 auto; width: 168px; height: 74px; background: #FFFFFF; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; padding: 14px 22px; overflow: hidden; }
.zw-marquee__item img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.zw-proof__note { text-align: center; font-size: 14px; color: rgba(233, 243, 242, 0.5); margin-top: 28px; }

/* ===== Agency + metrics (asymmetric, matches bappy.org) ===== */
.zw-agency { padding-block: var(--space-xl); border-top: 1px solid var(--line); }
.zw-agency__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.zw-agency__body { font-size: 17px; line-height: 1.65; color: rgba(233, 243, 242, 0.7); max-width: 54ch; margin: 20px 0 30px; }
.zw-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 28px; }
.zw-metric__n { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 5vw, 60px); line-height: 1; color: var(--accent); }
.zw-metric__l { display: block; font-size: 13px; color: rgba(233, 243, 242, 0.55); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
@media (max-width: 767px) { .zw-agency__grid { grid-template-columns: 1fr; } }

/* ===== Work gallery ===== */
.zw-gallery-section { padding-block: var(--space-xl); border-top: 1px solid var(--line); }
.zw-gallery-section .zw-h2 { margin-bottom: 12px; }
.zw-gallery__lede { font-size: 16px; color: rgba(233, 243, 242, 0.6); max-width: 56ch; margin-bottom: var(--space-lg); }
.zw-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: var(--space-lg); }
.zw-filter { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; padding: 12px 18px; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: rgba(233, 243, 242, 0.6); cursor: pointer; transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease; }
.zw-filter:hover { color: var(--ink); border-color: rgba(233, 243, 242, 0.4); }
.zw-filter.is-on { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.zw-filter__n { font-size: 12px; }
.zw-gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-flow: row dense; gap: var(--space-md); }
.zw-tile { display: flex; flex-direction: column; min-width: 0; }
.zw-tile--wide { grid-column: span 6; }
.zw-tile--square { grid-column: span 3; }
.zw-tile--tall { grid-column: span 3; }
.zw-tile[hidden] { display: none; }
.zw-tile__trigger { position: relative; display: block; width: 100%; padding: 0; border: 0; border-radius: var(--radius-sm); background: var(--surface); cursor: pointer; overflow: hidden; }
.zw-tile--wide .zw-tile__trigger { aspect-ratio: 16 / 9; }
.zw-tile--square .zw-tile__trigger { aspect-ratio: 1 / 1; }
.zw-tile--tall .zw-tile__trigger { aspect-ratio: 3 / 4; }
.zw-tile__img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.zw-tile__trigger:hover .zw-tile__img { transform: scale(1.04); }
.zw-tile__img[src*="google-ads"], .zw-tile__img[src*="meta-ads"] { object-fit: contain; background: #FFFFFF; }
.zw-tile__play, .zw-tile__zoom { position: absolute; left: 14px; bottom: 14px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: var(--bg); transition: transform 0.2s ease; }
.zw-tile__play { padding-left: 3px; }
.zw-tile__trigger:hover .zw-tile__play, .zw-tile__trigger:hover .zw-tile__zoom { transform: scale(1.1); }
.zw-tile__title { font-family: var(--font-display); font-weight: 700; font-size: 15px; line-height: 1.2; margin-top: 12px; color: var(--ink); }
.zw-tile__meta { font-size: 13px; line-height: 1.5; color: rgba(233, 243, 242, 0.55); margin-top: 4px; }
.zw-gallery__note { font-size: 13px; color: rgba(233, 243, 242, 0.45); margin-top: var(--space-md); }
@media (max-width: 1024px) { .zw-tile--wide { grid-column: span 12; } .zw-tile--square, .zw-tile--tall { grid-column: span 6; } }
@media (max-width: 560px) { .zw-tile--wide, .zw-tile--square, .zw-tile--tall { grid-column: span 12; } }

/* ===== Lightbox ===== */
.zw-lightbox { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; padding: 24px; }
.zw-lightbox[hidden] { display: none; }
.zw-lightbox__backdrop { position: absolute; inset: 0; background: rgba(5, 8, 13, 0.92); backdrop-filter: blur(6px); border: 0; opacity: 0; transition: opacity 0.24s ease; }
.zw-lightbox.is-open .zw-lightbox__backdrop { opacity: 1; }
.zw-lightbox__panel { position: relative; width: min(100%, 1100px); opacity: 0; transform: translateY(12px) scale(0.985); transition: opacity 0.26s cubic-bezier(0.22, 1, 0.36, 1), transform 0.26s cubic-bezier(0.22, 1, 0.36, 1); }
.zw-lightbox.is-open .zw-lightbox__panel { opacity: 1; transform: none; }
.zw-lightbox__frame { width: 100%; background: #000; }
.zw-lightbox__frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.zw-lightbox__frame.is-wide { aspect-ratio: 16 / 9; }
.zw-lightbox__frame.is-image { aspect-ratio: auto; background: transparent; }
.zw-lightbox__frame.is-image img { display: block; width: 100%; height: auto; max-height: 84vh; object-fit: contain; margin-inline: auto; }
.zw-lightbox__close { position: fixed; top: 22px; right: 24px; z-index: 2; width: 44px; height: 44px; display: grid; place-items: center; font-size: 26px; color: var(--ink); background: transparent; border: 1px solid rgba(233, 243, 242, 0.35); border-radius: 50%; cursor: pointer; transition: background-color 0.18s ease, transform 0.18s ease; }
.zw-lightbox__close:hover { background: rgba(233, 243, 242, 0.12); transform: scale(1.06); }

/* ===== Case studies ===== */
.zw-cases { padding-block: var(--space-xl); border-top: 1px solid var(--line); }
.zw-cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.zw-case { background: var(--bg); padding: 30px 26px; transition: background-color 0.2s ease; }
.zw-case:hover { background: var(--surface); }
.zw-case__cat { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.zw-case__title { font-family: var(--font-display); font-weight: 700; font-size: 18px; line-height: 1.15; margin-bottom: 20px; min-height: 2.2em; color: var(--ink); }
.zw-case__stats { display: flex; gap: 28px; }
.zw-case__stat strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--ink); }
.zw-case__stat em { display: block; font-style: normal; font-size: 12px; color: rgba(233, 243, 242, 0.5); margin-top: 4px; }
.zw-cases__note { font-size: 13px; color: rgba(233, 243, 242, 0.45); margin-top: 20px; }
@media (max-width: 1024px) { .zw-cases__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .zw-cases__grid { grid-template-columns: 1fr; } .zw-case__title { min-height: 0; } }

/* ===== Quotes ===== */
.zw-quotes { padding-block: var(--space-xl); border-top: 1px solid var(--line); }
.zw-quotes .zw-h2 { margin-bottom: var(--space-lg); }
.zw-quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.zw-quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 28px 26px 24px; display: flex; flex-direction: column; gap: 18px; transition: transform 0.24s ease; }
.zw-quote:hover { transform: translateY(-3px); }
.zw-quote__text { font-size: 15px; line-height: 1.6; color: var(--ink); flex: 1 1 auto; }
.zw-quote__by { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; border-top: 1px solid var(--line); padding-top: 14px; }
.zw-quote__who { font-size: 13px; font-weight: 600; color: rgba(233, 243, 242, 0.6); }
.zw-quote__rating { font-size: 12px; font-weight: 600; color: var(--accent); white-space: nowrap; }
@media (max-width: 1024px) { .zw-quotes__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .zw-quotes__grid { grid-template-columns: 1fr; } }
/* ===== Sub-page hero ===== */
.zw-page-hero { position: relative; overflow: hidden; padding-block: 72px 56px; }
.zw-page-hero__inner { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; max-width: 740px; margin-inline: auto; }
.zw-page__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 4.6vw, 52px); line-height: 1.05; margin-bottom: var(--space-md); }
.zw-page-hero .zw-hero__sub { margin-inline: auto; }

/* ===== Services full-width variant (sub-pages: 6 rows, not just 3) ===== */
.zw-services__featured--full { border-top: 1px solid var(--line); margin-bottom: 0; }

/* ===== Comparison table ===== */
.zw-table-wrap { overflow-x: auto; margin-top: 26px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.zw-table { width: 100%; border-collapse: collapse; font-size: 15px; background: var(--surface); }
.zw-table th, .zw-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
.zw-table th { font-family: var(--font-display); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink); }
.zw-table td { color: rgba(233, 243, 242, 0.65); line-height: 1.5; }
.zw-table tr:last-child td { border-bottom: 0; }
.zw-table td:first-child, .zw-table th:first-child { font-weight: 600; color: var(--ink); white-space: nowrap; }

/* ===== Centered prose ===== */
.zw-prose-center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.zw-prose-center .zw-agency__body { margin-inline: auto; }
/* ===== Steps ===== */
.zw-steps { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); max-width: 760px; }
.zw-step { background: var(--bg); padding: 20px 24px; display: flex; flex-direction: column; gap: 6px; }
.zw-step__name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink); }
.zw-step__desc { font-size: 14px; line-height: 1.55; color: rgba(233, 243, 242, 0.6); }

/* ===== Note block ===== */
.zw-note-block { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px 26px; font-size: 14px; line-height: 1.6; color: rgba(233, 243, 242, 0.65); max-width: 66ch; margin-top: var(--space-md); }

/* ===== Contact card ===== */
.zw-contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 30px 28px; }
.zw-contact-card__item { display: block; font-size: 16px; color: var(--ink); text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--line); }
.zw-contact-card__item:first-of-type { padding-top: 0; }
.zw-contact-card__item span { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(233, 243, 242, 0.5); margin-bottom: 4px; }