/* =====================================================================
   Logical Dot Tech - main stylesheet
   Dark cinematic agency theme. Glassmorphism + ambient glow + bento.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
	/* Core palette (dark cinematic) */
	--bg:            #0a0e17;
	--bg-2:          #0e1420;
	--surface:       #121a2a;
	--surface-2:     #17203350;
	--border:        #223049;
	--border-soft:   #1b2740;

	--text:          #eef2f9;
	--text-muted:    #9fb0c9;
	--text-dim:      #6b7c99;

	/* Brand - indigo→violet with a cyan accent */
	--primary:       #6366f1;   /* indigo */
	--primary-2:     #8b5cf6;   /* violet */
	--accent:        #22d3ee;   /* cyan */
	--accent-2:      #34d399;   /* emerald (positive metrics) */
	--danger:        #f43f5e;

	--on-primary:    #ffffff;

	/* Effects */
	--radius:        18px;
	--radius-sm:     12px;
	--radius-lg:     26px;
	--shadow-1:      0 1px 2px rgba(0,0,0,.4);
	--shadow-2:      0 18px 50px -12px rgba(0,0,0,.55);
	--shadow-glow:   0 0 60px -12px rgba(99,102,241,.5);

	--container:     1200px;
	--gutter:        clamp(20px, 5vw, 40px);

	--ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
	--t-fast:        .18s var(--ease-out);
	--t-med:         .32s var(--ease-out);

	--font-body:     'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--font-display:  'Space Grotesk', 'Inter', system-ui, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(64px, 10vw, 120px); position: relative; }

.eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
	color: var(--accent);
	padding: 7px 14px; border-radius: 999px;
	background: rgba(34,211,238,.08);
	border: 1px solid rgba(34,211,238,.18);
}
.eyebrow--muted { color: var(--primary-2); background: rgba(139,92,246,.09); border-color: rgba(139,92,246,.2); }
.eyebrow svg { color: currentColor; }

.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-title { font-size: clamp(28px, 4.4vw, 46px); margin-bottom: 16px; }
.section-sub { color: var(--text-muted); font-size: clamp(15px, 2vw, 18px); max-width: 60ch; margin-inline: auto; }

/* Accessibility helpers */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 1000; background: var(--primary); color: #fff; padding: 10px 16px; border-radius: 10px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	font-weight: 600; font-size: 15px; line-height: 1;
	padding: 13px 22px; border-radius: 12px; border: 1px solid transparent;
	transition: transform var(--t-fast), box-shadow var(--t-med), background var(--t-fast), border-color var(--t-fast);
	white-space: nowrap; cursor: pointer;
}
.btn svg { transition: transform var(--t-fast); }
.btn--primary {
	color: var(--on-primary);
	background: linear-gradient(135deg, var(--primary), var(--primary-2));
}
.btn--primary:hover { transform: translateY(-2px); }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--ghost { color: var(--text); background: rgba(255,255,255,.04); border-color: var(--border); }
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: var(--primary); transform: translateY(-2px); }
.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; }
.btn:active { transform: translateY(0) scale(.98); }

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
	position: sticky; top: 0; z-index: 100;
	transition: background var(--t-med), border-color var(--t-med), backdrop-filter var(--t-med);
	border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
	background: rgba(10,14,23,.72);
	backdrop-filter: saturate(180%) blur(16px);
	-webkit-backdrop-filter: saturate(180%) blur(16px);
	border-bottom-color: var(--border-soft);
}
.site-header__inner { display: flex; align-items: center; gap: 24px; height: 68px; }

.site-brand__text { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--text); letter-spacing: -.02em; }
.site-brand__mark {
	display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px;
	background: linear-gradient(135deg, var(--primary), var(--primary-2));
	color: #fff; box-shadow: var(--shadow-glow);
}
.custom-logo { max-height: 46px; width: auto; display: block; }
.custom-logo-link { display: inline-flex; align-items: center; }

.site-nav { margin-left: auto; }
#primary-menu, .nav-menu { display: flex; align-items: center; gap: 4px; margin: 0; }
#primary-menu .nav-item > a,
#primary-menu .nav-item__trigger {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 9px 14px; border-radius: 10px; border: 0; background: transparent;
	color: var(--text-muted); font-weight: 500; font-size: 15px; font-family: inherit; cursor: pointer;
	transition: color var(--t-fast), background var(--t-fast);
}
#primary-menu .nav-item > a:hover,
#primary-menu .nav-item__trigger:hover,
#primary-menu .current-menu-item > a { color: var(--text); background: rgba(255,255,255,.05); }

/* Mega menu (desktop) */
.nav-item--mega { position: static; }
.nav-item__chevron { width: 7px; height: 7px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform var(--t-fast); }
.nav-item--mega:hover .nav-item__chevron, .nav-item--mega.is-open .nav-item__chevron { transform: translateY(1px) rotate(225deg); }

.mega {
	position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(8px);
	width: min(1280px, calc(100vw - 40px)); z-index: 200;
	opacity: 0; visibility: hidden; pointer-events: none;
	transition: opacity var(--t-med), transform var(--t-med), visibility var(--t-med);
}
.nav-item--mega:hover .mega,
.nav-item--mega:focus-within .mega {
	opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
/* hover bridge */
.nav-item--mega::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 14px; }

.mega__inner {
	display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)) 1.05fr; gap: 4px 14px;
	align-items: start;
	padding: 20px; border-radius: 18px;
	background: rgba(14,20,32,.98); border: 1px solid var(--border); box-shadow: var(--shadow-2);
	backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.mega__col { min-width: 0; }
/* Column heads sit on one line so the four columns share a baseline. */
.mega__head { display: flex !important; align-items: center; gap: 8px; padding: 5px 8px !important; margin-bottom: 4px; font-family: var(--font-display); font-weight: 600; font-size: 13.5px; line-height: 1.25; letter-spacing: -.01em; color: var(--text) !important; border-radius: 8px; white-space: nowrap; }
.mega__head:hover { background: rgba(255,255,255,.05); }
.mega__head-icon { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 7px; color: var(--accent); background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.2); flex-shrink: 0; }
.mega__list { display: grid; gap: 0; }
.mega__list a { display: block; padding: 6px 10px !important; font-size: 13px !important; line-height: 1.35; color: var(--text-dim) !important; border-radius: 7px; font-weight: 400 !important; }
.mega__list a:hover { color: var(--text) !important; background: rgba(255,255,255,.05); }
.mega__cta { align-self: stretch; padding: 16px; border-radius: 12px; background: linear-gradient(160deg, rgba(99,102,241,.14), rgba(255,255,255,.02)); border: 1px solid var(--border); }
.mega__cta-title { font-size: 14.5px; line-height: 1.3; color: var(--text); margin-bottom: 5px; }
.mega__cta-sub { font-size: 12.5px; line-height: 1.45; color: var(--text-muted); margin-bottom: 12px; }
.mega__cta .btn { width: 100%; margin-bottom: 9px; }
.mega__cta-all { display: inline-flex !important; align-items: center; gap: 5px; padding: 0 !important; font-size: 13px !important; color: var(--accent) !important; background: transparent !important; }
.mega__cta-all:hover { text-decoration: underline; }

.site-header__actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 10px; position: relative; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px auto; border-radius: 2px; transition: transform var(--t-med), opacity var(--t-fast); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================================
   Hero
   ===================================================================== */
.hero { position: relative; padding-top: clamp(48px, 8vw, 90px); padding-bottom: 0; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; padding-bottom: clamp(48px, 8vw, 88px); }

.hero__ambient { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.blob--1 { width: 460px; height: 460px; background: radial-gradient(circle, var(--primary), transparent 70%); top: -120px; left: -80px; animation: float1 14s ease-in-out infinite; }
.blob--2 { width: 380px; height: 380px; background: radial-gradient(circle, var(--primary-2), transparent 70%); top: 40px; right: -60px; animation: float2 16s ease-in-out infinite; }
.blob--3 { width: 300px; height: 300px; background: radial-gradient(circle, var(--accent), transparent 70%); bottom: -80px; left: 30%; opacity: .28; animation: float1 18s ease-in-out infinite reverse; }
.grid-lines {
	position: absolute; inset: 0;
	background-image: linear-gradient(var(--border-soft) 1px, transparent 1px), linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
	background-size: 54px 54px;
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 75%);
	mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 75%);
	opacity: .5;
}
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,-24px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-26px,28px); } }

.hero__content { position: relative; z-index: 1; }
.hero__content .eyebrow { margin-bottom: 22px; }
.hero__title { font-size: clamp(36px, 6.2vw, 68px); line-height: 1.04; margin-bottom: 22px; }
.hero__title-grad { display: block; background: linear-gradient(100deg, var(--primary-2) 0%, var(--accent) 60%, var(--accent-2) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { color: var(--text-muted); font-size: clamp(16px, 2vw, 19px); max-width: 54ch; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero__stats { display: flex; gap: clamp(20px, 4vw, 44px); flex-wrap: wrap; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stat-num { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; display: inline; }
.hero__stat-plus { font-family: var(--font-display); font-size: clamp(20px, 3vw, 28px); font-weight: 700; color: var(--accent); }
.hero__stat-label { font-size: 13.5px; color: var(--text-dim); margin-top: 4px; }

/* Hero visual - glass dashboard */
.hero__visual { position: relative; z-index: 1; min-height: 340px; }
.glass-card {
	background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
	border: 1px solid rgba(255,255,255,.1);
	border-radius: var(--radius-lg);
	padding: 20px;
	backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
	box-shadow: var(--shadow-2);
}
.glass-card--float { animation: cardFloat 6s ease-in-out infinite; }
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.glass-card__head { display: flex; align-items: center; gap: 8px; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot--r { background: #ff5f57; } .dot--y { background: #febc2e; } .dot--g { background: #28c840; }
.glass-card__title { margin-left: 8px; font-size: 13px; color: var(--text-dim); font-family: var(--font-body); }

.mini-metric__row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
.mini-metric__row strong { font-size: 15px; }
.mini-metric__row .up { color: var(--accent-2); }
.mini-metric__row .down { color: var(--accent); }
.bar { height: 8px; border-radius: 6px; background: rgba(255,255,255,.06); overflow: hidden; margin-bottom: 18px; }
.bar i { display: block; height: 100%; width: var(--w); border-radius: 6px; background: linear-gradient(90deg, var(--primary), var(--accent)); animation: grow 1.4s var(--ease-out) both; }
@keyframes grow { from { width: 0; } }

.glass-chip {
	position: absolute; display: inline-flex; align-items: center; gap: 8px;
	padding: 10px 14px; border-radius: 14px; font-size: 13.5px; font-weight: 600; color: var(--text);
	background: rgba(18,26,42,.85); border: 1px solid var(--border);
	backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
	box-shadow: var(--shadow-2);
}
.glass-chip svg { color: var(--accent); }
.glass-chip--1 { top: 8px; right: -8px; animation: cardFloat 7s ease-in-out infinite; }
.glass-chip--2 { bottom: 18px; left: -14px; animation: cardFloat 8s ease-in-out infinite reverse; }
.glass-chip--2 svg { color: var(--primary-2); }

/* Marquee */
.marquee { position: relative; z-index: 1; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); padding: 16px 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: inline-flex; align-items: center; gap: 24px; white-space: nowrap; animation: marquee 32s linear infinite; }
.marquee__item { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--text-muted); }
.marquee__sep { color: var(--primary); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =====================================================================
   Trust strip
   ===================================================================== */
.trust { padding-block: 40px; border-bottom: 1px solid var(--border-soft); }
.trust__inner { text-align: center; }
.trust__label { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-dim); margin-bottom: 20px; }
.trust__logos { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(24px, 5vw, 56px); }
.trust__logo { font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 2.4vw, 24px); color: var(--text-dim); opacity: .7; transition: opacity var(--t-fast), color var(--t-fast); letter-spacing: -.02em; }
.trust__logo:hover { opacity: 1; color: var(--text-muted); }

/* =====================================================================
   Services - equal 3-column cards + supporting strip
   ===================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }

.svc-card {
	position: relative; display: flex; flex-direction: column;
	padding: 32px 28px; border-radius: var(--radius);
	background: linear-gradient(165deg, var(--surface), var(--bg-2));
	border: 1px solid var(--border-soft);
	transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
	overflow: hidden;
}
/* animated gradient border on hover */
.svc-card::before {
	content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
	background: linear-gradient(160deg, rgba(99,102,241,.6), rgba(34,211,238,.35) 45%, transparent 70%);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor; mask-composite: exclude;
	opacity: 0; transition: opacity var(--t-med);
	pointer-events: none;
}
/* soft glow that follows the top of the card */
.svc-card::after {
	content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
	width: 70%; height: 60%; border-radius: 50%;
	background: radial-gradient(ellipse, rgba(99,102,241,.28), transparent 70%);
	filter: blur(30px); opacity: 0; transition: opacity var(--t-med); pointer-events: none;
}
.svc-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow-2); }
.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after { opacity: 1; }

.svc-card--featured {
	background: linear-gradient(165deg, rgba(99,102,241,.16), var(--bg-2));
	border-color: rgba(99,102,241,.3);
}
.svc-card--featured::after { opacity: .5; }

/* Featured card gets extra top room so the badge sits above the content, not over the icon. */
.svc-card--featured { padding-top: 52px; }
.svc-card__badge {
	position: absolute; top: 16px; left: 28px;
	font-size: 11.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
	color: var(--on-primary); padding: 5px 12px; border-radius: 999px;
	background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.svc-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.svc-card__num { font-family: var(--font-display); font-size: 40px; font-weight: 700; line-height: 1; color: transparent; -webkit-text-stroke: 1.4px var(--border); opacity: .8; letter-spacing: -.03em; }
.svc-card--featured .svc-card__num { -webkit-text-stroke-color: rgba(139,92,246,.55); }
.svc-card__icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 15px; color: var(--accent); background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.2); transition: transform var(--t-med); }
.svc-card:hover .svc-card__icon { transform: rotate(-6deg) scale(1.06); }
.svc-card--featured .svc-card__icon { color: var(--primary-2); background: rgba(139,92,246,.16); border-color: rgba(139,92,246,.3); }

.svc-card__title { font-size: clamp(21px, 2.4vw, 25px); margin-bottom: 12px; }
.svc-card__desc { color: var(--text-muted); font-size: 15px; margin-bottom: 22px; }

.svc-card__list { display: grid; gap: 11px; margin-bottom: 26px; }
.svc-card__list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text); }
.svc-card__list svg { color: var(--accent-2); flex-shrink: 0; }
.svc-card--featured .svc-card__list svg { color: var(--primary-2); }

.svc-card__link { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 14.5px; color: var(--accent); width: fit-content; }
.svc-card--featured .svc-card__link { color: var(--primary-2); }
.svc-card__link svg { transition: transform var(--t-fast); }
.svc-card__link:hover { color: var(--text); }
.svc-card__link:hover svg { transform: translateX(4px); }

/* Supporting capabilities strip */
.svc-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 22px; }
.svc-chip {
	display: flex; align-items: center; gap: 14px; padding: 18px 20px;
	border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--border-soft);
	transition: transform var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.svc-chip:hover { transform: translateY(-3px); border-color: var(--border); background: var(--bg-2); }
.svc-chip__icon { display: grid; place-items: center; width: 42px; height: 42px; flex-shrink: 0; border-radius: 11px; color: var(--primary-2); background: rgba(139,92,246,.12); border: 1px solid rgba(139,92,246,.22); }
.svc-chip strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 1px; }
.svc-chip span { font-size: 13px; color: var(--text-dim); }

/* =====================================================================
   Process - steps
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border-soft); transition: transform var(--t-med), border-color var(--t-med); }
.step:hover { transform: translateY(-4px); border-color: var(--border); }
.step__num { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--primary-2); letter-spacing: .1em; }
.step__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; margin: 14px 0 16px; color: var(--accent); background: rgba(34,211,238,.09); border: 1px solid rgba(34,211,238,.18); }
.step__title { font-size: 19px; margin-bottom: 8px; }
.step__desc { color: var(--text-muted); font-size: 14.5px; }

/* =====================================================================
   Work - result cards
   ===================================================================== */
.results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.result-card { padding: 32px; border-radius: var(--radius); background: linear-gradient(160deg, var(--surface), var(--bg-2)); border: 1px solid var(--border-soft); transition: transform var(--t-med), border-color var(--t-med); }
.result-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.result-card__icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; margin-bottom: 18px; color: var(--primary-2); background: rgba(139,92,246,.12); border: 1px solid rgba(139,92,246,.24); }
.result-card__num { font-family: var(--font-display); font-size: clamp(34px, 5vw, 48px); font-weight: 700; background: linear-gradient(100deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 12px; }
.result-card__desc { color: var(--text-muted); font-size: 15.5px; }

/* =====================================================================
   About + quote
   ===================================================================== */
.about__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.about__text .eyebrow { margin-bottom: 18px; }
.about__text .section-title { text-align: left; }
.about__text .section-sub { margin-inline: 0; text-align: left; }
.about__points { display: grid; gap: 18px; margin-top: 30px; }
.about__points li { display: flex; gap: 14px; align-items: flex-start; }
.about__points svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.about__points strong { display: block; font-size: 16px; margin-bottom: 2px; color: var(--text); }
.about__points span { color: var(--text-muted); font-size: 14.5px; }

.about__quote { position: relative; padding: 36px; border-radius: var(--radius-lg); background: linear-gradient(160deg, rgba(99,102,241,.12), var(--surface)); border: 1px solid var(--border); box-shadow: var(--shadow-2); }
.about__quote-mark { color: var(--primary); opacity: .5; margin-bottom: 12px; }
.about__quote blockquote { margin: 0 0 24px; font-family: var(--font-display); font-size: clamp(19px, 2.6vw, 24px); line-height: 1.4; color: var(--text); }
.about__quote figcaption { display: flex; align-items: center; gap: 14px; }
.about__quote-avatar { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid var(--border); color: var(--text-muted); }
.about__quote figcaption strong { display: block; font-size: 15px; }
.about__quote figcaption em { font-style: normal; font-size: 13.5px; color: var(--text-dim); }

/* =====================================================================
   Contact
   ===================================================================== */
.contact__panel { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); padding: clamp(28px, 5vw, 56px); border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--surface), var(--bg-2)); border: 1px solid var(--border); overflow: hidden; }
.contact__ambient { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.blob--c1 { width: 300px; height: 300px; background: radial-gradient(circle, var(--primary), transparent 70%); top: -100px; right: -60px; opacity: .35; filter: blur(60px); }
.blob--c2 { width: 260px; height: 260px; background: radial-gradient(circle, var(--accent), transparent 70%); bottom: -90px; left: -50px; opacity: .22; filter: blur(60px); }
.contact__text, .contact__form { position: relative; z-index: 1; }
.contact__text .eyebrow { margin-bottom: 18px; }
.contact__title { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; }
.contact__sub { color: var(--text-muted); font-size: 16px; margin-bottom: 26px; }
.contact__meta { display: grid; gap: 12px; }
.contact__meta li { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 15px; }
.contact__meta svg { color: var(--accent); }
.contact__meta a:hover { color: var(--text); }

.contact__form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 13.5px; font-weight: 500; color: var(--text-muted); }
.field input, .field select, .field textarea {
	width: 100%; font-family: inherit; font-size: 15px; color: var(--text);
	padding: 13px 15px; border-radius: 12px;
	background: rgba(10,14,23,.6); border: 1px solid var(--border);
	transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(99,102,241,.22); background: rgba(10,14,23,.85); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239fb0c9' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.contact__note { font-size: 13px; color: var(--text-dim); text-align: center; margin-top: 2px; }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { position: relative; padding-top: clamp(56px, 8vw, 88px); border-top: 1px solid var(--border-soft); overflow: hidden; }
.footer-glow { position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(99,102,241,.22), transparent 70%); filter: blur(50px); pointer-events: none; }
.site-footer .container { position: relative; z-index: 1; }

.footer-cta { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; padding-bottom: 48px; margin-bottom: 48px; border-bottom: 1px solid var(--border-soft); }
.footer-cta__title { font-size: clamp(24px, 3.4vw, 36px); margin-bottom: 8px; }
.footer-cta__sub { color: var(--text-muted); font-size: 16px; max-width: 46ch; }

/* Column count is set further down, where the grouped footer columns are handled. */
.footer-grid { display: grid; padding-bottom: 40px; }
.footer-col__desc { color: var(--text-muted); font-size: 14.5px; margin-top: 14px; max-width: 34ch; }
.footer-widget__title { font-size: 14px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dim); margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 14.5px; }
.footer-links a:hover { color: var(--text); }
.footer-contact { display: grid; gap: 12px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 14.5px; }
/* The email address is long enough to overflow a narrow footer column. */
.footer-contact li a { min-width: 0; overflow-wrap: anywhere; }
.footer-contact svg { color: var(--accent); flex-shrink: 0; }
.footer-contact a:hover { color: var(--text); }

.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; padding: 24px 0; border-top: 1px solid var(--border-soft); }
.footer-bottom p { color: var(--text-dim); font-size: 13.5px; }
.footer-bottom__menu { display: flex; gap: 20px; }
.footer-bottom__menu a { color: var(--text-dim); font-size: 13.5px; }
.footer-bottom__menu a:hover { color: var(--text); }

/* =====================================================================
   Inner pages (blog / page / 404)
   ===================================================================== */
.inner-page { padding-block: clamp(48px, 8vw, 90px); min-height: 50vh; }
.inner-page__head { margin-bottom: 40px; }
.inner-page__title { font-size: clamp(30px, 5vw, 48px); }
.single__meta, .post-card__meta { color: var(--text-dim); font-size: 14px; margin-top: 10px; }
.single__thumb { margin: 24px 0 32px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-soft); }
.single__content { max-width: 72ch; font-size: 17px; line-height: 1.75; color: var(--text-muted); }
.single__content h2 { color: var(--text); font-size: clamp(22px, 2.8vw, 28px); margin: 40px 0 14px; }
.single__content h3 { color: var(--text); font-size: 21px; margin: 32px 0 12px; }
.single__content p { margin-bottom: 22px; }
.single__content a { color: var(--accent); }
.single__content a:hover { text-decoration: underline; }
.single__content strong { color: var(--text); }
.single__content ul, .single__content ol { margin: 0 0 22px; padding-left: 0; }
.single__content ul { list-style: none; }
.single__content ul li { position: relative; padding-left: 28px; margin-bottom: 12px; }
.single__content ul li::before { content: ""; position: absolute; left: 6px; top: 12px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.single__content ol { padding-left: 22px; }
.single__content ol li { margin-bottom: 12px; }
.single__content blockquote { margin: 28px 0; padding: 18px 26px; border-left: 3px solid var(--primary); border-radius: 0 12px 12px 0; background: linear-gradient(160deg, rgba(99,102,241,.1), var(--surface)); font-family: var(--font-display); font-size: 19px; line-height: 1.5; color: var(--text); }
.single__content img { border-radius: var(--radius); margin: 24px 0; }
.single__content h2:first-child, .single__content h3:first-child, .single__content p:first-child { margin-top: 0; }
.single__footer { margin-top: 32px; }
.tag-label { color: var(--text-dim); }

.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.post-card { border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--border-soft); transition: transform var(--t-med), border-color var(--t-med); }
.post-card:hover { transform: translateY(-4px); border-color: var(--border); }
.post-card__thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card__body { padding: 22px; }
.post-card__title { font-size: 20px; margin-bottom: 8px; }
.post-card__title a:hover { color: var(--accent); }
.post-card__excerpt { color: var(--text-muted); font-size: 14.5px; margin: 12px 0; }
.post-card__more { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-weight: 600; font-size: 14.5px; }
.post-card__more:hover svg { transform: translateX(3px); }

.pagination { margin-top: 48px; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination a, .pagination .current { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px; border-radius: 10px; border: 1px solid var(--border); color: var(--text-muted); }
.pagination .current { background: var(--primary); border-color: var(--primary); color: #fff; }
.pagination a:hover { border-color: var(--primary); color: var(--text); }

.error-404 { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.error-404__code { font-family: var(--font-display); font-size: clamp(80px, 18vw, 180px); font-weight: 700; line-height: 1; background: linear-gradient(135deg, var(--primary-2), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Comments */
.comments-area { max-width: 72ch; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border-soft); }
.comments-title { font-size: 24px; margin-bottom: 24px; }
.comment-list { display: grid; gap: 20px; }
.comment-body { padding: 18px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--border-soft); }
.comment-form input, .comment-form textarea { width: 100%; padding: 12px 14px; border-radius: 10px; background: rgba(10,14,23,.6); border: 1px solid var(--border); color: var(--text); margin-bottom: 12px; font-family: inherit; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1180px) {
	.svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
	.hero__inner { grid-template-columns: 1fr; }
	.hero__visual { max-width: 460px; margin-inline: auto; order: -1; }
	.svc-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-inline: auto; }
	.svc-strip { grid-template-columns: repeat(2, 1fr); max-width: 560px; margin-inline: auto; }
	.steps { grid-template-columns: repeat(2, 1fr); }
	.about__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
	.site-nav {
		position: fixed; inset: 68px 0 auto 0;
		background: rgba(10,14,23,.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
		border-bottom: 1px solid var(--border);
		transform: translateY(-12px); opacity: 0; pointer-events: none;
		transition: transform var(--t-med), opacity var(--t-med);
		margin-left: 0;
	}
	body.nav-open .site-nav { transform: none; opacity: 1; pointer-events: auto; }
	.site-nav { max-height: calc(100dvh - 68px); overflow-y: auto; }
	#primary-menu, .nav-menu { flex-direction: column; align-items: stretch; padding: 12px var(--gutter) 24px; gap: 2px; }
	#primary-menu .nav-item > a,
	#primary-menu .nav-item__trigger { width: 100%; padding: 14px 12px; font-size: 16px; justify-content: space-between; }

	/* Mobile: mega menu becomes an inline accordion */
	.nav-item--mega { position: static; }
	.mega {
		position: static !important; left: auto !important; right: auto !important;
		width: 100% !important; max-width: 100% !important; transform: none !important;
		opacity: 1; visibility: visible; pointer-events: auto;
		max-height: 0; overflow: hidden; transition: max-height var(--t-med);
	}
	.nav-item--mega.is-open .mega { max-height: 1600px; overflow-y: auto; }
	.nav-item--mega::after { display: none; }
	.mega__inner {
		display: block; padding: 6px 0 8px 0; margin: 0 0 0 8px; width: auto;
		background: transparent; border: 0; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none;
		border-left: 2px solid var(--border-soft); border-radius: 0;
	}
	.mega__col { margin-bottom: 12px; padding-left: 12px; }
	.mega__head { margin-bottom: 2px; padding-left: 0 !important; }
	.mega__list { padding-left: 0; }
	.mega__list a { font-size: 15px !important; padding: 9px 10px !important; }
	.mega__cta { margin: 8px 12px 0; }
	.nav-toggle { display: block; }
	.site-header__inner { gap: 12px; }
	.site-header__actions .btn--sm { display: none; }

	.results { grid-template-columns: 1fr; }
	.contact__panel { grid-template-columns: 1fr; }
	.footer-cta { flex-direction: column; align-items: flex-start; }
}

/* =====================================================================
   Inner pages - shared
   ===================================================================== */
.section--tight { padding-block: clamp(48px, 7vw, 80px); }
.section--muted { background: var(--bg-2); }
.section-title--left { text-align: left; }

/* Page hero */
.page-hero { position: relative; padding-top: clamp(56px, 9vw, 110px); padding-bottom: clamp(40px, 6vw, 70px); overflow: hidden; border-bottom: 1px solid var(--border-soft); }
.page-hero__ambient { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.page-hero__inner { position: relative; z-index: 1; max-width: 820px; }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero__title { font-size: clamp(32px, 5.4vw, 56px); line-height: 1.08; margin-bottom: 20px; }
.page-hero__sub { color: var(--text-muted); font-size: clamp(16px, 2vw, 19px); max-width: 62ch; }

/* Stat band */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 32px; border-radius: var(--radius); background: linear-gradient(160deg, var(--surface), var(--bg-2)); border: 1px solid var(--border-soft); }
.stat-band__item { text-align: center; }
.stat-band__num { display: block; font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px); font-weight: 700; background: linear-gradient(100deg, var(--primary-2), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-band__label { display: block; color: var(--text-muted); font-size: 14px; margin-top: 6px; }

/* Mini checklist (reused) */
.mini-checklist { display: grid; gap: 12px; }
.mini-checklist li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text); }
.mini-checklist svg { color: var(--accent-2); flex-shrink: 0; }

/* Process page: expanded stage blocks */
.proc-stage { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 28px; padding: 28px 0; border-top: 1px solid var(--border-soft); }
.proc-stage:first-of-type { border-top: 0; padding-top: 8px; }
.proc-stage__aside { position: relative; }
.proc-stage__num { display: block; font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: .12em; color: var(--accent); margin-bottom: 12px; }
.proc-stage__icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; color: var(--accent); background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.2); margin-bottom: 12px; }
.proc-stage__name { font-size: clamp(20px, 2.4vw, 24px); margin-bottom: 5px; }
.proc-stage__time { font-size: 13px; color: var(--text-muted); }
.proc-stage__lead { font-size: 16px; line-height: 1.7; color: var(--text-dim); margin-bottom: 22px; max-width: 68ch; }
.proc-stage__cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-bottom: 20px; }
.proc-stage__label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 12px; }
.proc-stage__out { padding: 14px 18px; border-radius: 10px; font-size: 15px; line-height: 1.6; color: var(--text-dim); background: rgba(255,255,255,.03); border-left: 2px solid var(--accent); }
.proc-stage__out strong { color: var(--text); }
@media (max-width: 860px) {
	.proc-stage { grid-template-columns: 1fr; gap: 18px; }
	.proc-stage__cols { grid-template-columns: 1fr; gap: 18px; }
}

/* Industries page: sector blocks */
.ind-block { padding: 26px 0; border-top: 1px solid var(--border-soft); }
.ind-block:first-of-type { border-top: 0; padding-top: 6px; }
.ind-block__head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.ind-block__icon { display: grid; place-items: center; flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; color: var(--accent); background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.2); }
.ind-block__name { font-size: clamp(20px, 2.4vw, 24px); margin-bottom: 6px; }
.ind-block__lead { font-size: 15.5px; line-height: 1.7; color: var(--text-dim); max-width: 74ch; }
.ind-block__needs { margin-bottom: 18px; }
.ind-block__links { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.ind-block__links-label { font-size: 13px; color: var(--text-muted); margin-right: 2px; }
@media (max-width: 640px) {
	.ind-block__head { flex-direction: column; gap: 12px; }
}

.process__more { margin-top: 34px; text-align: center; }

/* Blog post: breadcrumb, meta, and long-form body */
.post-crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 13.5px; color: var(--text-muted); }
.post-crumbs a { color: var(--text-dim); }
.post-crumbs a:hover { color: var(--accent); }
.post-crumbs__current { color: var(--text-muted); }
.post-meta { margin-top: 16px; font-size: 14.5px; color: var(--text-muted); }
.post-thumb { margin-bottom: 34px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.post-thumb img { display: block; width: 100%; height: auto; }
.post-body { max-width: 760px; margin-inline: auto; }
.post-body > p { font-size: 16.5px; line-height: 1.8; color: var(--text-dim); margin-bottom: 20px; }
.post-body .lead { font-size: 18.5px; line-height: 1.75; color: var(--text); margin-bottom: 28px; }
.post-body h2 { font-size: clamp(24px, 3vw, 31px); color: var(--text); margin: 44px 0 16px; }
.post-body h3 { font-size: clamp(19px, 2.2vw, 22px); color: var(--text); margin: 32px 0 12px; }
.post-body ul, .post-body ol { margin: 0 0 22px 22px; display: grid; gap: 10px; }
.post-body li { font-size: 16px; line-height: 1.7; color: var(--text-dim); }
.post-body li strong { color: var(--text); }
.post-body a { color: var(--accent); text-decoration: underline; }
.post-body table { width: 100%; border-collapse: collapse; margin: 8px 0 26px; font-size: 15px; }
.post-body thead th { text-align: left; padding: 12px 14px; color: var(--text); font-weight: 600; background: rgba(255,255,255,.04); border-bottom: 1px solid var(--border); }
.post-body tbody td { padding: 12px 14px; color: var(--text-dim); line-height: 1.6; border-bottom: 1px solid var(--border-soft); vertical-align: top; }
.post-body tbody tr:last-child td { border-bottom: 0; }
@media (max-width: 700px) {
	.post-body table { display: block; overflow-x: auto; }
}

/* Work page: expanded case-study cards */
.work-card__detail { margin-top: 16px; }
.work-card__label { font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 7px; }
.work-card__body { font-size: 14.5px; line-height: 1.65; color: var(--text-dim); }
.work-card__steps li { font-size: 14px; line-height: 1.55; }
.work-card__result { margin-top: 16px; padding: 12px 15px; border-radius: 9px; font-size: 14.5px; line-height: 1.6; color: var(--text-dim); background: rgba(255,255,255,.03); border-left: 2px solid var(--accent); }
.work-card__result strong { color: var(--text); }
.work-card__services { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border-soft); }
.work-card__services-label { font-size: 12.5px; color: var(--text-muted); }
.work-note { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--border-soft); font-size: 14px; line-height: 1.7; color: var(--text-muted); max-width: 78ch; }

/* Testimonials: project context under each quote */
.testi-card__project { margin: 14px 0 4px; padding-top: 13px; border-top: 1px solid var(--border-soft); font-size: 13.5px; line-height: 1.6; color: var(--text-muted); }
.testi-card__project-label { color: var(--text-dim); font-weight: 500; }
.testi-card__link { display: inline-block; margin-top: 5px; font-size: 13px; color: var(--accent); }
.testi-card__link:hover { text-decoration: underline; }

.faq-cta__links { display: grid; gap: 10px; list-style: none; margin: 18px 0 0; padding: 16px 0 0; border-top: 1px solid var(--border-soft); }
.faq-cta__links a { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--text-dim); }
.faq-cta__links a:hover { color: var(--accent); }

/* Careers page: honest empty state when there are no openings */
.careers-empty { display: flex; gap: 20px; align-items: flex-start; padding: clamp(22px, 3vw, 32px); border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--surface), var(--bg-2)); border: 1px solid var(--border); }
.careers-empty__icon { display: grid; place-items: center; flex-shrink: 0; width: 52px; height: 52px; border-radius: 12px; color: var(--accent); background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.2); }
.careers-empty__title { font-size: clamp(19px, 2.2vw, 22px); margin-bottom: 8px; }
.careers-empty__text { font-size: 15px; line-height: 1.7; color: var(--text-dim); margin-bottom: 18px; max-width: 70ch; }
@media (max-width: 640px) { .careers-empty { flex-direction: column; gap: 14px; } }

/* HTML sitemap page */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 34px 28px; align-items: start; }
.sitemap-col__title { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 14px; }
.sitemap-list { display: grid; gap: 9px; list-style: none; margin: 0; padding: 0; }
.sitemap-list a { font-size: 14.5px; color: var(--text-dim); }
.sitemap-list a:hover { color: var(--text); text-decoration: underline; }
.sitemap-note { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--border-soft); font-size: 14px; color: var(--text-muted); }
.sitemap-note a { color: var(--accent); }

/* Author / reviewer box (E-E-A-T signal on service pages) */
.author-box { display: flex; gap: 20px; align-items: flex-start; padding: clamp(22px, 3vw, 32px); border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--surface), var(--bg-2)); border: 1px solid var(--border); }
.author-box__avatar { display: grid; place-items: center; flex-shrink: 0; width: 60px; height: 60px; border-radius: 50%; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: .02em; color: #fff; background: linear-gradient(150deg, var(--brand), var(--accent)); }
.author-box__photo { flex-shrink: 0; width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }

/* Footer social row (renders only when profile URLs are saved in settings) */
.footer-social { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 16px 0 0; padding: 0; }
.footer-social a { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 9px; color: var(--text-dim); background: rgba(255,255,255,.04); border: 1px solid var(--border-soft); transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast); }
.footer-social a:hover { color: var(--text); background: rgba(255,255,255,.08); border-color: var(--accent); }
.author-box__body { min-width: 0; }
.author-box__label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 4px; }
.author-box__name { font-size: clamp(19px, 2.2vw, 22px); margin-bottom: 3px; }
.author-box__role { font-size: 14px; color: var(--accent); margin-bottom: 10px; }
.author-box__sep { margin: 0 6px; color: var(--text-muted); }
.author-box__bio { font-size: 15px; line-height: 1.65; color: var(--text-dim); margin-bottom: 14px; max-width: 72ch; }
.author-box__tags { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; margin: 0 0 14px; padding: 0; }
.author-box__tags li { padding: 4px 11px; border-radius: 999px; font-size: 12.5px; color: var(--text-dim); background: rgba(255,255,255,.04); border: 1px solid var(--border-soft); }
.author-box__link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--accent); }
.author-box__link:hover { text-decoration: underline; }
@media (max-width: 640px) {
	.author-box { flex-direction: column; gap: 14px; }
	.author-box__avatar { width: 52px; height: 52px; font-size: 18px; }
}

/* CTA panel (reused across inner pages) */
.cta-panel { position: relative; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; padding: clamp(32px, 5vw, 56px); border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--surface), var(--bg-2)); border: 1px solid var(--border); overflow: hidden; }
.cta-panel__ambient { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.cta-panel__text { position: relative; z-index: 1; }
.cta-panel .btn { position: relative; z-index: 1; }
.cta-panel__title { font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 8px; }
.cta-panel__sub { color: var(--text-muted); font-size: 16px; max-width: 48ch; }

/* =====================================================================
   About page
   ===================================================================== */
.about-story { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.about-story__text .eyebrow { margin-bottom: 16px; }
.about-story__body { margin-top: 22px; color: var(--text-muted); font-size: 16.5px; }
.about-story__body p { margin-bottom: 18px; }
.about-story__aside { position: sticky; top: 90px; }
.mini-checklist { margin-top: 4px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { padding: 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border-soft); transition: transform var(--t-med), border-color var(--t-med); }
.value-card:hover { transform: translateY(-4px); border-color: var(--border); }
.value-card__icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 13px; margin-bottom: 18px; color: var(--accent); background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.2); }
.value-card__title { font-size: 19px; margin-bottom: 10px; }
.value-card__desc { color: var(--text-muted); font-size: 14.5px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { text-align: center; padding: 32px 20px; border-radius: var(--radius); background: linear-gradient(160deg, var(--surface), var(--bg-2)); border: 1px solid var(--border-soft); transition: transform var(--t-med), border-color var(--t-med); }
.team-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.team-card__avatar { display: grid; place-items: center; width: 76px; height: 76px; margin: 0 auto 16px; border-radius: 50%; color: var(--primary-2); background: rgba(139,92,246,.12); border: 1px solid rgba(139,92,246,.26); }
.team-card__name { font-size: 18px; margin-bottom: 4px; }
.team-card__role { color: var(--text-dim); font-size: 14px; }

/* =====================================================================
   Services page - alternating rows
   ===================================================================== */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.svc-row--alt .svc-row__text { order: 2; }
.svc-row__icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 15px; margin-bottom: 20px; color: var(--accent); background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.2); }
.svc-row__tagline { display: block; color: var(--primary-2); font-weight: 600; font-size: 15px; margin-bottom: 10px; }
.svc-row__title { font-size: clamp(26px, 3.6vw, 40px); margin-bottom: 16px; }
.svc-row__desc { color: var(--text-muted); font-size: 16.5px; margin-bottom: 26px; max-width: 46ch; }

.svc-row__card { padding: 32px; border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--surface), var(--bg-2)); border: 1px solid var(--border); box-shadow: var(--shadow-2); }
.svc-row__card-title { font-size: 15px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-dim); margin-bottom: 20px; }
.svc-row__list { display: grid; gap: 14px; }
.svc-row__list li { display: flex; align-items: center; gap: 11px; font-size: 15.5px; color: var(--text); }
.svc-row__list svg { color: var(--accent-2); flex-shrink: 0; }

/* =====================================================================
   Work / portfolio page
   ===================================================================== */
.work-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.work-filter { padding: 10px 20px; border-radius: 999px; border: 1px solid var(--border); background: transparent; color: var(--text-muted); font-weight: 600; font-size: 14.5px; transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast); }
.work-filter:hover { color: var(--text); border-color: var(--primary); }
.work-filter.is-active { color: var(--on-primary); background: linear-gradient(135deg, var(--primary), var(--primary-2)); border-color: transparent; }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.work-card { display: flex; flex-direction: column; padding: 28px; border-radius: var(--radius); background: linear-gradient(160deg, var(--surface), var(--bg-2)); border: 1px solid var(--border-soft); transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med); }
.work-card.is-hidden { display: none; }
.work-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: var(--shadow-2); }
.work-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.work-card__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; color: var(--accent); background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.2); }
.work-card__cat { font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--text-dim); padding: 5px 11px; border-radius: 999px; border: 1px solid var(--border); }
.work-card__metric { margin-bottom: 16px; }
.work-card__metric-num { display: block; font-family: var(--font-display); font-size: clamp(30px, 4vw, 40px); font-weight: 700; background: linear-gradient(100deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1.1; }
.work-card__metric-label { display: block; color: var(--text-dim); font-size: 13px; margin-top: 2px; }
.work-card__title { font-size: 20px; margin-bottom: 10px; }
.work-card__desc { color: var(--text-muted); font-size: 14.5px; margin-bottom: 20px; flex: 1; }
.work-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.work-card__tags li { font-size: 12.5px; font-weight: 500; color: var(--text-muted); padding: 5px 11px; border-radius: 8px; background: rgba(255,255,255,.04); border: 1px solid var(--border-soft); }

/* =====================================================================
   Contact page
   ===================================================================== */
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
.contact-info__title { font-size: 26px; margin-bottom: 12px; }
.contact-info__lead { color: var(--text-muted); font-size: 16px; margin-bottom: 28px; }
.contact-info__list { display: grid; gap: 20px; margin-bottom: 28px; }
.contact-info__list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info__icon { display: grid; place-items: center; width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; color: var(--accent); background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.2); }
.contact-info__list strong { display: block; font-size: 15px; margin-bottom: 2px; }
.contact-info__list a, .contact-info__list span { color: var(--text-muted); font-size: 15px; }
.contact-info__list a:hover { color: var(--text); }
.contact-info__card { padding: 24px; border-radius: var(--radius); background: linear-gradient(160deg, rgba(99,102,241,.1), var(--surface)); border: 1px solid var(--border); }

.contact-form-wrap { padding: clamp(28px, 4vw, 40px); border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--surface), var(--bg-2)); border: 1px solid var(--border); }
.form-alert { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 12px; font-size: 14.5px; margin-bottom: 22px; }
.form-alert svg { flex-shrink: 0; }
.form-alert--success { background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.35); color: #a7f3d0; }
.form-alert--error { background: rgba(244,63,94,.12); border: 1px solid rgba(244,63,94,.35); color: #fecdd3; }
.req { color: var(--accent); }
.ldt-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* LDT Contact plugin form reuses .contact__form / .field styles above.
   Its JS-inserted alert box reuses .form-alert; give it spacing. */
.ldt-contact-alert { margin-bottom: 4px; }
.ldt-contact-submit:disabled { opacity: .7; cursor: default; transform: none; }

/* =====================================================================
   Single service page
   ===================================================================== */
.svc-overview { display: flex; gap: 24px; align-items: flex-start; max-width: 900px; }
.svc-overview__icon { display: grid; place-items: center; width: 64px; height: 64px; flex-shrink: 0; border-radius: 16px; color: var(--accent); background: rgba(34,211,238,.1); border: 1px solid rgba(34,211,238,.2); }
.svc-overview__text { color: var(--text-muted); font-size: 17.5px; line-height: 1.7; }
.svc-overview__text p { margin-bottom: 18px; }
.svc-overview__text p:last-child { margin-bottom: 0; }
.faq-list--narrow { max-width: 820px; margin-inline: auto; }

/* =====================================================================
   Testimonials page
   ===================================================================== */
.testi-grid { columns: 3; column-gap: 22px; }
.testi-card { break-inside: avoid; margin-bottom: 22px; padding: 28px; border-radius: var(--radius); background: linear-gradient(160deg, var(--surface), var(--bg-2)); border: 1px solid var(--border-soft); transition: transform var(--t-med), border-color var(--t-med); }
.testi-card:hover { transform: translateY(-4px); border-color: var(--border); }
.testi-card--feature { background: linear-gradient(160deg, rgba(99,102,241,.14), var(--surface)); border-color: rgba(99,102,241,.28); }
.testi-card__stars { display: flex; gap: 3px; margin-bottom: 16px; color: #fbbf24; }
.testi-card__quote { color: var(--text); font-size: 15.5px; line-height: 1.6; margin-bottom: 20px; }
.testi-card--feature .testi-card__quote { font-family: var(--font-display); font-size: 18px; }
.testi-card__author { display: flex; align-items: center; gap: 13px; }
.testi-card__avatar { display: grid; place-items: center; width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%; color: var(--primary-2); background: rgba(139,92,246,.14); border: 1px solid rgba(139,92,246,.26); font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.testi-card__name { display: block; font-size: 15px; font-weight: 600; color: var(--text); }
.testi-card__role { font-size: 13px; color: var(--text-dim); }

/* =====================================================================
   Thank-you page
   ===================================================================== */
.thankyou { text-align: center; max-width: 620px; margin-inline: auto; }
.thankyou__badge { display: grid; place-items: center; width: 88px; height: 88px; margin: 0 auto 28px; border-radius: 50%; color: var(--accent-2); background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.35); }
.thankyou__title { font-size: clamp(30px, 5vw, 46px); margin-bottom: 16px; }
.thankyou__sub { color: var(--text-muted); font-size: 17px; margin-bottom: 32px; }
.thankyou__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =====================================================================
   Legal pages (Privacy, Terms) - prose
   ===================================================================== */
.legal-prose { max-width: 76ch; margin-inline: auto; color: var(--text-muted); font-size: 16.5px; }
.legal-prose > p { margin-bottom: 20px; }
.legal-prose h2 { color: var(--text); font-size: clamp(21px, 2.6vw, 26px); margin: 40px 0 14px; padding-top: 8px; }
.legal-prose h3 { color: var(--text); font-size: 19px; margin: 28px 0 10px; }
.legal-prose ul, .legal-prose ol { margin: 0 0 20px; padding-left: 22px; }
.legal-prose li { margin-bottom: 10px; }
.legal-prose ul { list-style: none; padding-left: 0; }
.legal-prose ul li { position: relative; padding-left: 26px; }
.legal-prose ul li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.legal-prose a { color: var(--accent); }
.legal-prose a:hover { text-decoration: underline; }
.legal-prose strong { color: var(--text); }

/* =====================================================================
   FAQ page
   ===================================================================== */
.faq-wrap { display: grid; grid-template-columns: 1.6fr .8fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
.faq-list { display: grid; gap: 14px; }
.faq-item { border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border-soft); overflow: hidden; transition: border-color var(--t-med), background var(--t-med); }
.faq-item.is-open { border-color: var(--border); background: linear-gradient(160deg, var(--surface), var(--bg-2)); }
.faq-item__q { margin: 0; }
.faq-item__btn { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; text-align: left; padding: 22px 24px; background: transparent; border: 0; color: var(--text); font-family: var(--font-display); font-size: clamp(16px, 2vw, 18px); font-weight: 600; line-height: 1.35; }
.faq-item__btn:hover { color: var(--accent); }
.faq-item__icon { position: relative; flex-shrink: 0; width: 22px; height: 22px; }
.faq-item__icon::before, .faq-item__icon::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--accent); border-radius: 2px; transition: transform var(--t-med), opacity var(--t-med); }
.faq-item__icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-item__icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.is-open .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--t-med); }
.faq-item.is-open .faq-item__a { grid-template-rows: 1fr; }
.faq-item__a > p { overflow: hidden; margin: 0; padding: 0 24px; color: var(--text-muted); font-size: 15.5px; line-height: 1.65; transition: padding var(--t-med); }
.faq-item.is-open .faq-item__a > p { padding: 0 24px 24px; }

.faq-cta { position: sticky; top: 90px; }
.faq-cta__card { padding: 32px 28px; border-radius: var(--radius-lg); background: linear-gradient(160deg, rgba(99,102,241,.14), var(--surface)); border: 1px solid var(--border); text-align: center; }
.faq-cta__icon { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 15px; color: var(--primary-2); background: rgba(139,92,246,.16); border: 1px solid rgba(139,92,246,.3); }
.faq-cta__title { font-size: 21px; margin-bottom: 10px; }
.faq-cta__desc { color: var(--text-muted); font-size: 15px; margin-bottom: 22px; }

/* =====================================================================
   Responsive - inner pages
   ===================================================================== */
@media (max-width: 1024px) {
	.faq-wrap { grid-template-columns: 1fr; }
	.faq-cta { position: static; max-width: 460px; }
	.about-story { grid-template-columns: 1fr; }
	.about-story__aside { position: static; max-width: 460px; }
	.values-grid { grid-template-columns: repeat(2, 1fr); }
	.team-grid { grid-template-columns: repeat(2, 1fr); }
	.work-grid { grid-template-columns: repeat(2, 1fr); }
	.stat-band { grid-template-columns: repeat(2, 1fr); }
	.svc-row { grid-template-columns: 1fr; }
	.svc-row--alt .svc-row__text { order: 0; }
	.contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
	.svc-grid { grid-template-columns: 1fr; max-width: 460px; }
	.svc-strip { grid-template-columns: 1fr; }
	.steps { grid-template-columns: 1fr; }
	.values-grid { grid-template-columns: 1fr; }
	.team-grid { grid-template-columns: 1fr 1fr; }
	.work-grid { grid-template-columns: 1fr; }
	.stat-band { grid-template-columns: 1fr 1fr; }
	.cta-panel { flex-direction: column; align-items: flex-start; }
	.hero__stats { gap: 24px; }
	.glass-chip--1 { right: 0; }
	.glass-chip--2 { left: 0; }
}

/* Clickable related-service cards */
.value-card--link { display: block; cursor: pointer; }
.value-card--link:hover { border-color: var(--primary); }
.value-card--link .value-card__title { display: flex; align-items: center; gap: 8px; }
.value-card--link .value-card__title svg { color: var(--accent); transition: transform var(--t-fast); }
.value-card--link:hover .value-card__title svg { transform: translateX(4px); }

/* Specialized sub-service chips on services hub rows */
.svc-row__subs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 18px; }
.svc-row__subs-label { font-size: 13px; color: var(--text-dim); font-weight: 600; }
.svc-row__sub-chip { display: inline-block; padding: 6px 13px; border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--text-muted); background: rgba(255,255,255,.04); border: 1px solid var(--border-soft); transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast); }
.svc-row__sub-chip:hover { color: var(--text); border-color: var(--primary); background: rgba(99,102,241,.1); }

/* Footer carries the brand block plus the grouped service columns. Auto-fit
   with a sensible minimum lets the link columns wrap onto a second row instead
   of being squeezed thin, while the brand block keeps a wider fixed share. */
/* Eight blocks (brand + five service groups + company + contact). Four columns
   at tablet width and eight at desktop keep them to two rows and one row
   respectively, instead of the single tall list this replaced. */
.footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 24px; align-items: start; }
@media (min-width: 700px) {
	.footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
/* Eight columns on one row squeezes each to ~110px, which wraps the headings.
   Four wider columns over two rows reads better, so that layout is kept all
   the way up; the brand block simply sits first in the grid. */
.footer-widget__title a { color: inherit; }
.footer-widget__title a:hover { color: var(--text); }
.footer-links { gap: 8px; }
.footer-links a { font-size: 14px; }

/* Deep content article sections on service pages */
.svc-article { max-width: 800px; margin-inline: auto; }
.svc-article__block { margin-bottom: 40px; }
.svc-article__block:last-child { margin-bottom: 0; }
.svc-article__heading { font-size: clamp(23px, 3vw, 30px); color: var(--text); margin-bottom: 16px; }
.svc-article p { color: var(--text-muted); font-size: 16.5px; line-height: 1.75; margin-bottom: 16px; }
.svc-article p:last-child { margin-bottom: 0; }
.svc-article strong { color: var(--text); }
.svc-article a { color: var(--accent); }
.svc-article a:hover { text-decoration: underline; }
.svc-article__list { display: grid; gap: 12px; margin: 18px 0; }
.svc-article__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: var(--text); line-height: 1.6; }
.svc-article__list svg { color: var(--accent-2); flex-shrink: 0; margin-top: 3px; }
.svc-article__table-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--radius-sm); border: 1px solid var(--border-soft); }
.svc-article__table { width: 100%; border-collapse: collapse; font-size: 15px; }
.svc-article__table th { text-align: left; padding: 14px 16px; background: var(--surface); color: var(--text); font-weight: 600; border-bottom: 1px solid var(--border); }
.svc-article__table td { padding: 13px 16px; color: var(--text-muted); border-bottom: 1px solid var(--border-soft); }
.svc-article__table tr:last-child td { border-bottom: 0; }
.svc-article__table td:first-child { color: var(--text); font-weight: 500; }

/* ---- Content images (home page) ---- */
/* About section with image */
.about__inner--image { align-items: center; }
.about__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-2); }
.about__media img { width: 100%; height: auto; display: block; }
.about__quote--overlay { position: absolute; left: 0; right: 0; bottom: 0; margin: 0; padding: 22px 24px; background: linear-gradient(0deg, rgba(10,14,23,.92), rgba(10,14,23,.55) 70%, transparent); }
.about__quote--overlay blockquote { margin: 0 0 8px; font-family: var(--font-display); font-size: clamp(15px, 1.9vw, 18px); line-height: 1.4; color: var(--text); }
.about__quote--overlay figcaption { font-size: 13.5px; color: var(--text-muted); }
.about__quote--overlay figcaption strong { color: var(--text); }
.about__quote--overlay figcaption em { font-style: normal; color: var(--text-dim); }

/* Full-width image + text band */
.image-band__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.image-band__media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-2); }
.image-band__media img { width: 100%; height: auto; display: block; }
.image-band__media--right { order: 2; }
.image-band__text .btn { margin-top: 22px; }

/* Results banner image */
.results-banner { max-width: 760px; margin: 0 auto 32px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-soft); box-shadow: var(--shadow-2); }
.results-banner img { width: 100%; height: auto; display: block; }

@media (max-width: 860px) {
	.image-band__inner { grid-template-columns: 1fr; }
	.image-band__media--right { order: 0; }
	.image-band__text .section-title--left, .image-band__text .section-sub { text-align: left; }
	.about__media { max-width: 520px; }
}

/* Wide content image on service pages */
.svc-wide-image { margin: 44px auto 0; max-width: 900px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-soft); box-shadow: var(--shadow-2); }
.svc-wide-image img { width: 100%; height: auto; display: block; }
