/* ==========================================================================
   Websy Theme — main.css  (v2.4 editorial dark)
   Identite visuelle : charcoal canvas + warm orange accent + italic serif display.
   Typographie : Geist (sans 300-700) + Instrument Serif (italic display)
                 + JetBrains Mono (eyebrow caps).
   Inspiration : editorial agencies in dark mode (no pure #000, warm charcoal).
   ========================================================================== */

/* ---------- Design tokens --------------------------------------------------*/
:root {
	/* Editorial canvas */
	--surface-canvas: #0B0B0B;   /* near-black warm charcoal, NEVER pure #000 */
	--surface-soft:   #0A0A0A;
	--surface-card:   #0F0F0F;   /* elevated surface (cards) */
	--surface-elev:   #121212;   /* second elevation */
	--surface-elev-2: #161616;
	--surface-line:   rgba(255,255,255,0.10);

	/* Foreground tones */
	--fg:       #FFFFFF;
	--fg-dim:   rgba(255,255,255,0.78);
	--fg-mute:  rgba(255,255,255,0.55);
	--fg-faint: rgba(255,255,255,0.32);

	/* Borders */
	--border-subtle: rgba(255,255,255,0.06);
	--border:        rgba(255,255,255,0.12);
	--border-strong: rgba(255,255,255,0.22);

	/* Warm orange accent */
	--accent:        #E95018;   /* primary brand */
	--accent-hover:  #F2682E;
	--accent-deep:   #C73E0F;
	--accent-soft:   rgba(233, 80, 24, 0.14);
	--accent-italic: #D95127;   /* slightly muted for serif italics */

	/* Legacy aliases (so existing rules using --navy/--red/--bg/--ink keep working,
	   automatically remapped to the dark editorial palette) */
	--navy:       #FFFFFF;          /* "primary text/anchor" remapped to fg */
	--navy-dark:  rgba(255,255,255,0.90);
	--navy-deep:  #0B0B0B;          /* dark hero/section bg */
	--red:        var(--accent);
	--red-dark:   var(--accent-deep);
	--red-light:  var(--accent-hover);
	--bg:         var(--surface-canvas);
	--bg-soft:    var(--surface-card);
	--bg-muted:   var(--surface-elev);
	--ink:        var(--fg);
	--ink-muted:  var(--fg-dim);
	--ink-light:  var(--fg-mute);

	/* Shadows (warm, low-luminance — work on dark) */
	--shadow-sm: 0 1px 2px rgba(0,0,0,0.5);
	--shadow-md: 0 6px 18px rgba(0,0,0,0.45);
	--shadow-lg: 0 18px 40px rgba(0,0,0,0.55);
	--shadow-xl: 0 28px 72px rgba(0,0,0,0.65);
	--shadow-accent: 0 12px 32px -8px rgba(233, 80, 24, 0.55);

	/* Radii — Webtures pill geometry */
	--radius-xs: 4px;
	--radius-sm: 8px;
	--radius:    12px;
	--radius-lg: 18px;
	--radius-xl: 28px;
	--radius-pill: 9999px;

	/* Layout */
	--container: 1280px;
	--gutter: clamp(20px, 4vw, 56px);

	/* Type stack */
	--font-sans:  "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
	--font-serif: "Instrument Serif", ui-serif, Georgia, "Times New Roman", serif;
	--font-mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, "Liberation Mono", monospace;

	--ease: cubic-bezier(.34, 1.2, .64, 1);

	/* color-scheme hint — lets UA render scrollbars + form controls correctly */
	color-scheme: dark;
}

/* ============================================================================
   Light mode tokens — activated by <html data-theme="light"> via anti-FOUC
   bootstrap in header.php. Tüm tema otomatik retheme olur çünkü her şey
   token üzerinden çalışıyor.
   ========================================================================== */
:root[data-theme="light"] {
	color-scheme: light;

	/* Editorial canvas — warm off-white, NEVER pure #fff */
	--surface-canvas: #FAFAF7;
	--surface-soft:   #F5F4EF;
	--surface-card:   #FFFFFF;
	--surface-elev:   #F0EFE9;
	--surface-elev-2: #E8E7E1;
	--surface-line:   rgba(11, 11, 11, 0.08);

	/* Foreground tones — charcoal on warm off-white (12:1+ contrast) */
	--fg:       #0B0B0B;
	--fg-dim:   rgba(11, 11, 11, 0.74);
	--fg-mute:  rgba(11, 11, 11, 0.55);
	--fg-faint: rgba(11, 11, 11, 0.34);

	/* Borders */
	--border-subtle: rgba(11, 11, 11, 0.06);
	--border:        rgba(11, 11, 11, 0.12);
	--border-strong: rgba(11, 11, 11, 0.22);

	/* Accent stays the same warm orange — it works on both canvases */
	--accent:        #E95018;
	--accent-hover:  #D9430F;
	--accent-deep:   #B83809;
	--accent-soft:   rgba(233, 80, 24, 0.10);
	--accent-italic: #D9430F;

	/* Legacy aliases re-mapped for light canvas */
	--navy:       #0B0B0B;
	--navy-dark:  rgba(11, 11, 11, 0.90);
	--navy-deep:  #FAFAF7;
	--bg:         var(--surface-canvas);
	--bg-soft:    var(--surface-card);
	--bg-muted:   var(--surface-elev);
	--ink:        var(--fg);
	--ink-muted:  var(--fg-dim);
	--ink-light:  var(--fg-mute);

	/* Shadows softened for light canvas (no harsh dark drop shadows) */
	--shadow-sm: 0 1px 2px rgba(11, 11, 11, 0.06);
	--shadow-md: 0 6px 18px rgba(11, 11, 11, 0.08);
	--shadow-lg: 0 18px 40px rgba(11, 11, 11, 0.10);
	--shadow-xl: 0 28px 72px rgba(11, 11, 11, 0.14);
	--shadow-accent: 0 12px 32px -8px rgba(233, 80, 24, 0.35);
}

/* Light-mode specific surface overrides — these don't translate cleanly through tokens alone */
:root[data-theme="light"] body { background: var(--surface-canvas); }
:root[data-theme="light"] .main-bar {
	background: rgba(250, 250, 247, 0.78);
	border-bottom-color: var(--border-subtle);
}
:root[data-theme="light"] .site-header.is-scrolled .main-bar {
	background: rgba(250, 250, 247, 0.95);
	box-shadow: 0 4px 14px rgba(11, 11, 11, 0.05);
}
:root[data-theme="light"] .topbar {
	background: var(--surface-soft);
	color: var(--fg-mute);
}
:root[data-theme="light"] .mobile-panel {
	background: var(--surface-card);
	color: var(--fg);
	border-left-color: var(--border-subtle);
}
:root[data-theme="light"] .mobile-overlay { background: rgba(11, 11, 11, 0.35); }
:root[data-theme="light"] .hero-image-frame {
	border-color: var(--border);
	box-shadow: 0 40px 80px rgba(11, 11, 11, 0.12);
}
:root[data-theme="light"] .hero-stat {
	background: rgba(255, 255, 255, 0.94);
	border-color: var(--border);
}
:root[data-theme="light"] .service-card,
:root[data-theme="light"] .sector-audience-card,
:root[data-theme="light"] .sector-lever-card,
:root[data-theme="light"] .blog-card-image,
:root[data-theme="light"] .article-figure img,
:root[data-theme="light"] .takeaways-box,
:root[data-theme="light"] .contact-info,
:root[data-theme="light"] .diff-item,
:root[data-theme="light"] .svc-process-step {
	box-shadow: 0 1px 3px rgba(11, 11, 11, 0.05);
}
:root[data-theme="light"] .service-card-num {
	background: rgba(255, 255, 255, 0.92);
	color: var(--fg);
	border-color: var(--border);
}
:root[data-theme="light"] .service-card-image::after {
	background: linear-gradient(180deg, rgba(250, 250, 247, 0) 60%, rgba(250, 250, 247, 0.55) 100%);
}
:root[data-theme="light"] .blog-card-image::after {
	background: linear-gradient(180deg, transparent 60%, rgba(250, 250, 247, 0.55) 100%);
}
:root[data-theme="light"] .hero-image-frame img,
:root[data-theme="light"] .service-hero-image img,
:root[data-theme="light"] .article-figure img {
	/* The generated mockup PNGs were designed for dark canvas;
	   on light canvas we add a soft border halo so they don't feel orphaned */
	border-radius: var(--radius-lg);
}
:root[data-theme="light"] .chip,
:root[data-theme="light"] .hero-badge,
:root[data-theme="light"] .site-logo-badge {
	background: rgba(11, 11, 11, 0.04);
}
:root[data-theme="light"] .btn-secondary {
	background: rgba(11, 11, 11, 0.05);
	color: var(--fg);
}
:root[data-theme="light"] .btn-secondary:hover {
	background: rgba(11, 11, 11, 0.08);
}
/* Logo color flip: dark canvas uses logo-white.png; light canvas should invert it
   OR switch to a dark logo. Cheap path: invert the white logo so it becomes dark. */
:root[data-theme="light"] .site-logo img { filter: invert(1) hue-rotate(180deg); }
:root[data-theme="light"] .footer-brand img { filter: invert(1) hue-rotate(180deg); }

/* ============================================================================
   Theme toggle button (header)
   ========================================================================== */
.theme-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--radius-pill);
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.04);
	color: var(--fg);
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease, transform .2s var(--ease);
	flex-shrink: 0;
	position: relative;
}
:root[data-theme="light"] .theme-toggle {
	background: rgba(11, 11, 11, 0.04);
	border-color: var(--border);
}
.theme-toggle:hover {
	border-color: var(--accent);
	color: var(--accent);
	transform: rotate(-12deg);
}
.theme-toggle svg {
	width: 18px;
	height: 18px;
	position: absolute;
	transition: opacity .25s ease, transform .25s var(--ease);
}
.theme-toggle .theme-toggle-sun { opacity: 0; transform: scale(0.5) rotate(90deg); }
.theme-toggle .theme-toggle-moon { opacity: 1; transform: scale(1) rotate(0); }
:root[data-theme="light"] .theme-toggle .theme-toggle-sun { opacity: 1; transform: scale(1) rotate(0); }
:root[data-theme="light"] .theme-toggle .theme-toggle-moon { opacity: 0; transform: scale(0.5) rotate(-90deg); }

@media (max-width: 480px) {
	.theme-toggle { width: 36px; height: 36px; }
	.theme-toggle svg { width: 16px; height: 16px; }
}

/* ---------- Reset / base ---------------------------------------------------*/
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; tab-size: 4; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--fg);
	background: var(--surface-canvas);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	font-feature-settings: "ss01", "ss03", "cv11";
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--fg); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }

button { font: inherit; cursor: pointer; }

::selection { background-color: rgba(233, 80, 24, 0.32); color: #fff; }

/* ---------- Typography (editorial: heavy sans + italic serif accent) -------*/
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-sans);
	color: var(--fg);
	margin: 0;
	text-wrap: balance;
}

h1 {
	font-weight: 300;
	font-size: clamp(2.75rem, 6vw, 5.75rem);   /* 44 → 92 px */
	line-height: 0.97;
	letter-spacing: -0.035em;
}
h1 em, h1 .accent, h1 .display-italic {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	color: var(--accent);
	letter-spacing: -0.022em;
}

h2 {
	font-weight: 400;
	font-size: clamp(2rem, 4.4vw, 3.5rem);     /* 32 → 56 px */
	line-height: 1.05;
	letter-spacing: -0.028em;
}
h2 em, h2 .accent, h2 .display-italic {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	color: var(--accent);
}

h3 {
	font-weight: 500;
	font-size: clamp(1.25rem, 1.8vw, 1.6rem);
	letter-spacing: -0.018em;
	line-height: 1.2;
}
h3 em, h3 .display-italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }

h4 { font-size: 1.075rem; font-weight: 500; letter-spacing: -0.014em; }

p { margin: 0 0 1rem; line-height: 1.6; color: var(--fg-dim); }
p em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--fg); }
strong { color: var(--fg); font-weight: 600; }

/* ---------- Buttons (pill geometry, editorial) -----------------------------*/
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.85rem 1.6rem;
	border-radius: var(--radius-pill);
	font-family: var(--font-sans);
	font-weight: 500;
	font-size: 0.9rem;
	line-height: 1.2;
	letter-spacing: -0.005em;
	border: 1px solid transparent;
	transition: transform .2s var(--ease), box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
/* Primary: orange bg + charcoal text = 12.8:1 (AAA). White-on-orange would be 3.72:1 — fails WCAG AA for body text. */
.btn-primary { background: var(--accent); color: var(--surface-canvas); }
.btn-primary:hover { background: var(--accent-hover); color: var(--surface-canvas); box-shadow: var(--shadow-accent); }
.btn-secondary { background: rgba(255,255,255,0.06); color: var(--fg); border-color: var(--border-strong); backdrop-filter: blur(8px); }
.btn-secondary:hover { background: rgba(255,255,255,0.10); border-color: var(--accent); color: var(--accent); }
.btn-outline { background: transparent; color: var(--fg); border-color: var(--border-strong); }
.btn-outline:hover { background: var(--accent); color: var(--surface-canvas); border-color: var(--accent); }
.btn-large { padding: 1rem 1.85rem; font-size: 0.95rem; }
.btn-icon { display: inline-block; width: 1em; height: 1em; }

/* ---------- Layout ---------------------------------------------------------*/
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; position: relative; }
.section-soft { background: var(--surface-card); }
.section-soft + .section-soft { padding-top: 0; }
.section-dark { background: var(--surface-soft); }
.section-elev { background: var(--surface-elev); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: var(--fg-dim); }

/* JetBrains Mono caps eyebrow — Webtures signature */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--fg-mute);
	margin-bottom: 1.25rem;
}
.eyebrow .diamond { color: var(--accent); font-size: 0.55em; transform: translateY(-1px); }
.eyebrow-muted { color: var(--fg-faint) !important; }
.eyebrow-divider { color: var(--fg-faint); margin: 0 0.4rem; }

/* Pill chip variant — used in hero badges */
.chip {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.45rem 0.95rem;
	border-radius: var(--radius-pill);
	border: 1px solid var(--border);
	background: rgba(255,255,255,0.025);
	font-family: var(--font-mono);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--fg-dim);
}
.chip .dot,
.chip .live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(233,80,24,0.18); animation: pulseDot 2.6s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 3px rgba(233,80,24,0.18);} 50% { box-shadow: 0 0 0 6px rgba(233,80,24,0.08);} }

/* ---------- Header / topbar -----------------------------------------------*/
.site-header { position: sticky; top: 0; z-index: 50; }

.topbar {
	background: var(--surface-soft);
	color: var(--fg-mute);
	font-family: var(--font-mono);
	font-size: 11.5px;
	letter-spacing: 0.06em;
	border-bottom: 1px solid var(--border-subtle);
}
.topbar-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.topbar a { color: inherit; }
.topbar a:hover { color: var(--accent); }
.topbar-left, .topbar-right { display: inline-flex; align-items: center; gap: 1.25rem; }
.topbar-item { display: inline-flex; align-items: center; gap: 0.4rem; }
@media (max-width: 768px) {
	.topbar { display: none; }
}

.main-bar {
	background: rgba(11,11,11,0.72);
	border-bottom: 1px solid transparent;
	/* Animating backdrop-filter is expensive — keep transition to cheap props only. */
	transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}
/* Mobile: drop backdrop-filter entirely — too expensive on lower-end devices. */
@media (max-width: 768px) {
	.main-bar { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(11,11,11,0.92); }
}
.main-bar-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}
.site-header.is-scrolled .main-bar {
	background: rgba(11,11,11,0.92);
	border-bottom-color: var(--border-subtle);
	box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.site-logo img { max-height: 38px; width: auto; filter: invert(0); }
/* Dark canvas: if logo is dark, invert it; theme provides logo-white.png as primary */
.site-logo .site-logo-badge { display: inline-flex; }

.primary-nav { display: none; }
@media (min-width: 1024px) {
	.primary-nav { display: flex; align-items: center; gap: 2.25rem; }
}
.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2.25rem; }
.primary-nav a {
	color: var(--fg-dim);
	font-weight: 500;
	font-size: 14px;
	position: relative;
	padding: 0.5rem 0;
	transition: color .2s ease;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a { color: var(--fg); }
.primary-nav a::after {
	content: "";
	position: absolute;
	left: 0; right: 100%; bottom: -2px;
	height: 1px; background: var(--accent);
	transition: right .25s ease;
}
.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-cta { display: none; padding: 0.625rem 1.3rem; font-size: 0.85rem; }
@media (min-width: 768px) {
	.header-cta { display: inline-flex; }
}

.menu-toggle {
	background: transparent;
	border: 0;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--fg);
	border-radius: var(--radius-pill);
}
.menu-toggle:hover { background: rgba(255,255,255,0.06); }
@media (min-width: 1024px) {
	.menu-toggle { display: none; }
}
.menu-toggle svg { width: 22px; height: 22px; }

/* Mobile panel */
.mobile-overlay {
	position: fixed;
	inset: 72px 0 0 0;
	background: rgba(0,0,0,0.65);
	z-index: 40;
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease;
}
.mobile-overlay.is-open { opacity: 1; pointer-events: auto; }
.mobile-panel {
	position: absolute;
	right: 0; top: 0; bottom: 0;
	width: min(86vw, 360px);
	background: var(--surface-card);
	color: var(--fg);
	padding: 1.75rem 1.5rem;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1);
	border-left: 1px solid var(--border-subtle);
}
.mobile-overlay.is-open .mobile-panel { transform: translateX(0); }
.mobile-panel nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-panel nav a {
	display: block;
	padding: 0.9rem 0;
	border-bottom: 1px solid var(--border-subtle);
	color: var(--fg);
	font-weight: 500;
	font-size: 1rem;
}
.mobile-panel nav a:hover { color: var(--accent); }
.mobile-panel .btn { width: 100%; margin-top: 1.5rem; }
.mobile-contact { margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border-subtle); font-family: var(--font-mono); font-size: 12.5px; color: var(--fg-mute); line-height: 1.75; letter-spacing: 0.04em; }
.mobile-contact strong { color: var(--fg); display: block; margin-bottom: 0.5rem; font-family: var(--font-sans); letter-spacing: 0; }

/* ---------- Hero (editorial, Webtures-style) -------------------------------*/
.hero {
	position: relative;
	overflow: hidden;
	background: var(--surface-canvas);
	color: var(--fg);
	padding: clamp(7rem, 14vw, 11rem) 0 clamp(3.5rem, 6vw, 6rem);
}
/* Mega grid background — 112px cells, radial mask, very subtle */
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.55;
	background-image:
		linear-gradient(to right, var(--surface-line) 1px, transparent 1px),
		linear-gradient(to bottom, var(--surface-line) 1px, transparent 1px);
	background-size: 112px 112px;
	-webkit-mask-image: radial-gradient(ellipse 60% 70% at 75% 30%, black 30%, transparent 80%);
	mask-image: radial-gradient(ellipse 60% 70% at 75% 30%, black 30%, transparent 80%);
	pointer-events: none;
}
.hero::after {
	content: "";
	position: absolute;
	top: -6rem; right: -8rem;
	width: 640px; height: 640px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(233,80,24,0.22) 0%, transparent 60%);
	filter: blur(80px);
	pointer-events: none;
}
.hero-glow-2 {
	position: absolute;
	bottom: -10rem; left: -6rem;
	width: 520px; height: 520px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(233,80,24,0.10) 0%, transparent 60%);
	filter: blur(90px);
	pointer-events: none;
}
.hero-inner {
	position: relative;
	z-index: 1;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	gap: 3rem;
	align-items: center;
}
@media (min-width: 1024px) {
	.hero-inner { grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 100px); }
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	background: rgba(255,255,255,0.04);
	border: 1px solid var(--border);
	border-radius: var(--radius-pill);
	padding: 0.45rem 0.95rem;
	font-family: var(--font-mono);
	font-size: 11.5px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--fg-dim);
	margin-bottom: 1.75rem;
}
.hero-badge .dot,
.hero-badge .diamond {
	color: var(--accent);
	font-size: 0.7em;
}
.hero-badge .dot {
	width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
	box-shadow: 0 0 0 3px rgba(233,80,24,0.18);
	animation: pulseDot 2.6s ease-in-out infinite;
	flex-shrink: 0;
}
.hero h1 { color: var(--fg); max-width: 16ch; font-size: clamp(2.75rem, 6vw, 5.75rem); font-weight: 300; letter-spacing: -0.035em; line-height: 0.97; }
.hero h1 .accent,
.hero h1 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); letter-spacing: -0.022em; }
.hero-lead {
	margin-top: 1.75rem;
	font-size: clamp(1rem, 1.2vw, 1.2rem);
	line-height: 1.55;
	color: var(--fg-dim);
	max-width: 52ch;
}
.hero-lead em { font-family: var(--font-serif); font-style: italic; color: var(--fg); font-weight: 400; }
.hero-actions {
	margin-top: 2.25rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}
.hero-image {
	position: relative;
}
.hero-image-glow {
	position: absolute;
	inset: -24px;
	border-radius: var(--radius-xl);
	background: radial-gradient(ellipse at 30% 30%, rgba(233,80,24,0.40), transparent 60%);
	filter: blur(48px);
	opacity: 0.7;
}
.hero-image-frame {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
	background: var(--surface-card);
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-stat {
	position: absolute;
	bottom: -1.5rem;
	left: -1.5rem;
	background: rgba(15,15,15,0.92);
	color: var(--fg);
	padding: 1rem 1.25rem;
	border-radius: var(--radius);
	box-shadow: 0 20px 50px rgba(0,0,0,0.55);
	backdrop-filter: blur(12px);
	border: 1px solid var(--border);
	display: none;
}
@media (min-width: 768px) { .hero-stat { display: block; } }
.hero-stat-label { font-family: var(--font-mono); font-size: 0.65rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.22em; color: var(--fg-mute); }
.hero-stat-value { font-family: var(--font-serif); font-style: italic; font-size: 2.1rem; font-weight: 400; color: var(--accent); margin-top: 0.3rem; line-height: 1; }
.hero-stat-value sup { font-family: var(--font-sans); font-style: normal; color: var(--fg); font-size: 0.5em; vertical-align: middle; margin-left: 0.15em; }

.hero-strip {
	position: relative;
	border-top: 1px solid rgba(255,255,255,0.10);
	margin-top: 5rem;
}
.hero-strip { border-top: 1px solid var(--border-subtle); margin-top: clamp(4rem, 8vw, 6rem); }
.hero-strip-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 1.25rem var(--gutter);
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	align-items: center;
	justify-content: space-between;
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: var(--fg-mute);
}
.hero-strip-langs { display: flex; flex-wrap: wrap; gap: 1.75rem; color: var(--fg-dim); }

/* ---------- Services grid --------------------------------------------------*/
.services-grid-section .container { display: block; }
.services-header { max-width: 720px; margin-bottom: 4rem; }
.services-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--surface-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	overflow: hidden;
	color: var(--fg);
	transition: transform .25s var(--ease), box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover {
	transform: translateY(-4px);
	border-color: var(--border-strong);
	box-shadow: 0 24px 64px rgba(0,0,0,0.55);
	color: var(--fg);
}
.service-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s var(--ease);
	z-index: 2;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-image {
	position: relative;
	aspect-ratio: 5 / 3;
	overflow: hidden;
	background: var(--surface-elev);
}
.service-card-image::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(11,11,11,0) 50%, rgba(11,11,11,0.55) 100%);
	pointer-events: none;
}
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-card-image img { transform: scale(1.04); }
.service-card-num {
	position: absolute;
	top: 1rem; left: 1rem;
	font-family: var(--font-mono);
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--fg);
	background: rgba(11,11,11,0.55);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--border-subtle);
	padding: 0.35rem 0.7rem;
	border-radius: var(--radius-pill);
	z-index: 1;
}

.service-card-body { display: flex; flex-direction: column; gap: 0.65rem; padding: 1.85rem; flex: 1; }
.service-card-body h3 { font-size: 1.35rem; font-weight: 500; letter-spacing: -0.018em; color: var(--fg); }
.service-card-body p {
	font-size: 0.94rem;
	color: var(--fg-mute);
	flex: 1;
	margin: 0;
	line-height: 1.6;
}
.service-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-family: var(--font-mono);
	font-weight: 500;
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--fg-dim);
	margin-top: 0.6rem;
	transition: gap .25s var(--ease), color .2s ease;
}
.service-card:hover .service-card-link { gap: 0.85rem; color: var(--accent); }
.service-card-link svg { width: 14px; height: 14px; }

/* ---------- Counters -------------------------------------------------------*/
.counters-section {
	position: relative;
	overflow: hidden;
	background: var(--surface-soft);
	color: var(--fg);
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
}
.counters-section::before { display: none; }
.counters-grid {
	position: relative;
	display: grid;
	gap: 0;
	grid-template-columns: 1fr;
}
@media (min-width: 768px) { .counters-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .counters-grid { grid-template-columns: repeat(4, 1fr); } }
.counter {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	padding: 2.25rem 0;
}
@media (min-width: 768px) { .counter { padding: 2.5rem 2rem 2.5rem 0; border-right: 1px solid var(--border-subtle); }
	.counters-grid > .counter:last-child { border-right: 0; } }
.counter-value {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: clamp(3.25rem, 6vw, 5.25rem);
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 0.95;
	color: var(--accent);
	font-variant-numeric: tabular-nums;
}
.counter-value sup { font-family: var(--font-sans); font-style: normal; color: var(--fg); font-size: 0.5em; font-weight: 400; vertical-align: middle; }
.counter-label {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-family: var(--font-mono);
	font-size: 11.5px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: var(--fg-mute);
}
.counter-label::before { content: "\25C6"; color: var(--accent); font-size: 0.5em; transform: translateY(-1px); }

/* ---------- Why Websy ------------------------------------------------------*/
.why-section { background: var(--bg-soft); }
.why-inner {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .why-inner { grid-template-columns: 1fr 2fr; gap: 5rem; } }
.why-intro p { color: var(--ink-muted); margin-top: 1.5rem; max-width: 38ch; line-height: 1.75; }
.why-features { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .why-features { grid-template-columns: repeat(2, 1fr); } }
.why-feature { display: flex; flex-direction: column; gap: 0.6rem; }
.why-feature-num {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--red);
	line-height: 1;
	font-variant-numeric: tabular-nums;
}
.why-feature h3 { font-size: 1.15rem; }
.why-feature p { color: var(--ink-muted); font-size: 0.95rem; line-height: 1.65; margin: 0; }

/* ---------- About strip ----------------------------------------------------*/
.about-strip-inner {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
	align-items: center;
}
@media (min-width: 1024px) { .about-strip-inner { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.about-strip-image {
	position: relative;
}
.about-strip-image::before {
	content: "";
	position: absolute;
	inset: -12px;
	border-radius: var(--radius-lg);
	background: rgba(31, 44, 122, 0.08);
	transform: rotate(-2deg);
}
.about-strip-image .frame {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: var(--radius);
	overflow: hidden;
}
.about-strip-image img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
	display: none;
	position: absolute;
	right: -1.25rem;
	bottom: -1.25rem;
	background: var(--red);
	color: #fff;
	padding: 1rem 1.25rem;
	border-radius: var(--radius);
	box-shadow: var(--shadow-xl);
	transform: rotate(3deg);
}
@media (min-width: 768px) { .about-badge { display: block; } }
.about-badge-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; opacity: 0.8; letter-spacing: 0.14em; }
.about-badge-value { font-size: 1.5rem; font-weight: 800; margin-top: 0.2rem; }
.about-strip-prose p { color: var(--ink-muted); font-size: 17px; line-height: 1.75; margin-bottom: 1.25rem; }
.about-strip-prose strong { color: var(--ink); }
.skill-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 2rem 0 1.5rem; }
.skill-pill {
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 0.5rem 1rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ink);
}
.skill-pill .dot { color: var(--red); margin-right: 0.3rem; }

/* ---------- Zone marquee + flags -------------------------------------------*/
.zone-section {
	background: var(--surface-card);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 2.5rem 0;
}
.zone-eyebrow {
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--ink-light);
	margin-bottom: 1.5rem;
}
.marquee {
	--gap: 3rem;
	display: flex;
	gap: var(--gap);
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee__track {
	display: flex;
	gap: var(--gap);
	flex-shrink: 0;
	animation: marquee 28s linear infinite;
}
@keyframes marquee { to { transform: translateX(calc(-100% - var(--gap))); } }
.zone-flag-item {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--ink);
	white-space: nowrap;
}
.zone-flag-item::after {
	content: "·";
	color: rgba(0,0,0,0.20);
	margin-left: 1rem;
}
.flag {
	width: 32px;
	height: 22px;
	border-radius: 3px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.10);
	flex-shrink: 0;
}
.flag-fr { background: linear-gradient(to right, #002654 33%, #fff 33%, #fff 66%, #ED2939 66%); }
.flag-be { background: linear-gradient(to right, #000 33%, #FAE042 33%, #FAE042 66%, #ED2939 66%); }
.flag-ch { background: #DA291C; }
.flag-de { background: linear-gradient(to bottom, #000 33%, #DD0000 33%, #DD0000 66%, #FFCE00 66%); }
.flag-nl { background: linear-gradient(to bottom, #AE1C28 33%, #fff 33%, #fff 66%, #21468B 66%); }
.flag-at { background: linear-gradient(to bottom, #ED2939 33%, #fff 33%, #fff 66%, #ED2939 66%); }
.flag-it { background: linear-gradient(to right, #009246 33%, #fff 33%, #fff 66%, #CE2B37 66%); }
.flag-es { background: linear-gradient(to bottom, #AA151B 25%, #F1BF00 25%, #F1BF00 75%, #AA151B 75%); }

/* ---------- Testimonial ----------------------------------------------------*/
.testimonial-section { padding: 6rem 0; }
.testimonial-inner { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.testimonial-quote-icon {
	width: 48px; height: 48px;
	color: var(--red);
	opacity: 0.30;
	margin: 0 auto 2rem;
}
.testimonial-quote {
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	line-height: 1.4;
	font-weight: 500;
	letter-spacing: -0.015em;
	color: var(--ink);
	margin: 0;
}
.testimonial-author {
	margin-top: 2rem;
	display: inline-flex;
	align-items: center;
	gap: 1rem;
}
.testimonial-avatar {
	width: 48px; height: 48px;
	border-radius: 50%;
	background: var(--surface-elev);
	border: 1px solid var(--border);
	color: var(--accent);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
}
.testimonial-author-name { font-weight: 600; color: var(--ink); text-align: left; }
.testimonial-author-role { font-size: 0.875rem; color: var(--ink-muted); text-align: left; }

/* ---------- Blog teaser / blog cards --------------------------------------*/
.blog-teaser-header {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
	.blog-teaser-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

.blog-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }

.blog-card { display: flex; flex-direction: column; gap: 1.25rem; color: var(--fg); }
.blog-card:hover { color: var(--fg); }
.blog-card-image {
	position: relative;
	aspect-ratio: 16 / 10;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--surface-card);
	border: 1px solid var(--border-subtle);
}
.blog-card-image::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(11,11,11,0.45) 100%);
	pointer-events: none;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-meta {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-family: var(--font-mono);
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 0.22em;
	color: var(--fg-mute);
}
.blog-card-meta .category { color: var(--accent); }
.blog-card-meta .read-time { display: inline-flex; align-items: center; gap: 0.3rem; }
.blog-card h3 {
	font-size: clamp(1.25rem, 1.9vw, 1.65rem);
	line-height: 1.18;
	letter-spacing: -0.022em;
	font-weight: 500;
	color: var(--fg);
	transition: color .2s ease;
}
.blog-card:hover h3 { color: var(--accent); }
.blog-card-excerpt { color: var(--fg-mute); font-size: 0.95rem; line-height: 1.65; margin: 0; }
.blog-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-family: var(--font-mono);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--fg-dim);
	transition: color .2s ease, gap .25s var(--ease);
}
.blog-card:hover .blog-card-link { color: var(--accent); gap: 0.7rem; }

/* ---------- CTA banner -----------------------------------------------------*/
.cta-banner {
	position: relative;
	overflow: hidden;
	background: var(--navy-deep);
	color: #fff;
	border-radius: var(--radius-xl);
	padding: 4rem 2rem;
	display: grid;
	gap: 2rem;
	align-items: center;
}
@media (min-width: 1024px) { .cta-banner { grid-template-columns: 1.4fr auto; padding: 6rem 4rem; } }
.cta-banner::before {
	content: "";
	position: absolute;
	top: -8rem; right: -6rem;
	width: 420px; height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--red) 0%, transparent 60%);
	filter: blur(80px);
	opacity: 0.50;
}
.cta-banner::after {
	content: "";
	position: absolute;
	bottom: -8rem; left: -6rem;
	width: 380px; height: 380px;
	border-radius: 50%;
	background: radial-gradient(circle, #2A3FA0 0%, transparent 60%);
	filter: blur(80px);
	opacity: 0.30;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
	color: #fff;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	line-height: 1.1;
	max-width: 28ch;
}
.cta-banner p { color: rgba(255,255,255,0.78); margin-top: 1.25rem; max-width: 56ch; }

/* Inline CTA banner used inside article body — make sure buttons keep visible text */
.websy-cta-banner { color: #fff; }
.websy-cta-banner h2 { color: #fff; }
.websy-cta-banner .btn-primary,
.websy-cta-banner a.btn-primary { color: var(--surface-canvas) !important; background: var(--accent); }
.websy-cta-banner .btn-primary:hover { background: var(--accent-hover); color: var(--surface-canvas) !important; }

/* ---------- Footer ---------------------------------------------------------*/
.site-footer {
	background: var(--surface-soft);
	color: var(--fg-dim);
	margin-top: clamp(4rem, 8vw, 7rem);
	border-top: 1px solid var(--border-subtle);
}
.footer-grid {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
	padding: clamp(3.5rem, 7vw, 5rem) var(--gutter);
	max-width: var(--container);
	margin: 0 auto;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand img { max-height: 38px; width: auto; height: auto; max-width: 160px; }
.footer-brand p {
	margin: 1.5rem 0 0;
	color: var(--fg-mute);
	font-size: 0.95rem;
	line-height: 1.65;
	max-width: 38ch;
}
.footer-langs { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.25rem; }
.footer-lang-pill {
	font-family: var(--font-mono);
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	background: rgba(255,255,255,0.05);
	color: var(--fg-mute);
	border: 1px solid var(--border-subtle);
	padding: 0.3rem 0.7rem;
	border-radius: var(--radius-pill);
}
.footer-col h4 {
	color: var(--fg);
	font-family: var(--font-mono);
	font-size: 11.5px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.85rem; }
.footer-col a { color: var(--fg-dim); font-size: 14.5px; transition: color .2s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-col p { color: var(--fg-mute); margin: 0; font-size: 14.5px; }
.footer-bottom {
	border-top: 1px solid var(--border-subtle);
	padding: 1.5rem var(--gutter);
	max-width: var(--container);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-items: center;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.06em;
	color: var(--fg-faint);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom a { color: var(--fg-mute); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Service page sections ------------------------------------------*/
.service-hero {
	background: var(--surface-canvas);
	color: var(--fg);
	padding: clamp(8rem, 14vw, 12rem) 0 clamp(3.5rem, 6vw, 6rem);
	position: relative;
	overflow: hidden;
}
.service-hero::before {
	content: "";
	position: absolute; inset: 0;
	opacity: 0.50;
	background-image:
		linear-gradient(to right, var(--surface-line) 1px, transparent 1px),
		linear-gradient(to bottom, var(--surface-line) 1px, transparent 1px);
	background-size: 112px 112px;
	-webkit-mask-image: radial-gradient(ellipse 60% 70% at 80% 30%, black 30%, transparent 80%);
	mask-image: radial-gradient(ellipse 60% 70% at 80% 30%, black 30%, transparent 80%);
}
.service-hero::after {
	content: "";
	position: absolute;
	top: -6rem; right: -6rem;
	width: 560px; height: 560px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(233,80,24,0.18) 0%, transparent 60%);
	filter: blur(80px);
}
.service-hero-inner {
	position: relative; z-index: 1;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	gap: 3rem;
	align-items: center;
}
@media (min-width: 1024px) { .service-hero-inner { grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 100px); } }
.service-hero h1 {
	color: var(--fg);
	font-weight: 300;
	font-size: clamp(2.5rem, 5.6vw, 5rem);
	line-height: 0.97;
	letter-spacing: -0.035em;
	max-width: 16ch;
}
.service-hero h1 em,
.service-hero h1 .accent,
.service-hero h1 .display-italic {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	color: var(--accent);
	letter-spacing: -0.022em;
}
.service-hero .eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--fg-mute) !important;
	margin-bottom: 1.25rem;
}
.service-hero .eyebrow .num {
	font-family: var(--font-mono);
	font-size: 0.72rem;
	font-weight: 500;
	color: var(--accent);
	letter-spacing: 0.22em;
}
.service-hero-image {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: 0 40px 100px rgba(0,0,0,0.55);
	background: var(--surface-card);
}
.service-hero-image::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 60%, rgba(11,11,11,0.45) 100%);
	pointer-events: none;
}
.service-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.service-hero-lede {
	margin-top: 1.5rem;
	font-size: clamp(1rem, 1.2vw, 1.2rem);
	color: var(--fg-dim);
	max-width: 52ch;
	line-height: 1.55;
}
.service-hero h1 .period { color: var(--accent); margin-left: -0.05em; }
.service-hero .service-eyebrow .num { color: var(--accent); }

.service-grid-2 {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .service-grid-2 { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.service-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.service-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	color: var(--ink-muted);
	line-height: 1.7;
	font-size: 1rem;
}
.service-list .dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--red);
	margin-top: 0.6rem;
	flex-shrink: 0;
}
.service-list .check {
	width: 20px; height: 20px;
	color: var(--navy);
	flex-shrink: 0;
	margin-top: 0.1rem;
}

.deliverables-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}
@media (min-width: 768px) { .deliverables-grid { grid-template-columns: repeat(2, 1fr); } }
.deliverable {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: var(--surface-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.25rem;
}
.deliverable-num {
	font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
	font-size: 11px;
	font-weight: 700;
	color: var(--red);
	letter-spacing: 0.05em;
	margin-top: 0.25rem;
	flex-shrink: 0;
}
.deliverable-text { font-size: 0.95rem; line-height: 1.6; color: var(--ink); }

.tools-tags { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.tool-tag {
	background: var(--bg-muted);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 0.5rem 0.95rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--ink);
}

.differentiators-section {
	position: relative;
	overflow: hidden;
	background: var(--surface-soft);
	color: var(--fg);
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
}
.differentiators-section::before {
	content: "";
	position: absolute; inset: 0;
	opacity: 0.40;
	background-image:
		linear-gradient(to right, var(--surface-line) 1px, transparent 1px),
		linear-gradient(to bottom, var(--surface-line) 1px, transparent 1px);
	background-size: 112px 112px;
	-webkit-mask-image: radial-gradient(ellipse 60% 80% at 90% 20%, black 30%, transparent 80%);
	mask-image: radial-gradient(ellipse 60% 80% at 90% 20%, black 30%, transparent 80%);
	pointer-events: none;
}
.differentiators-section::after {
	content: "";
	position: absolute;
	top: -6rem; right: -6rem;
	width: 520px; height: 520px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(233,80,24,0.16) 0%, transparent 60%);
	filter: blur(90px);
	pointer-events: none;
}
.differentiators-section .container { position: relative; z-index: 1; }
.differentiators-section .eyebrow { color: var(--fg-mute); }
.differentiators-section h2 { color: var(--fg); }
.differentiators-section h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }

.diff-grid {
	position: relative;
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .diff-grid { grid-template-columns: 4fr 8fr; gap: clamp(40px, 6vw, 80px); } }
.diff-items { display: grid; gap: 1.75rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .diff-items { grid-template-columns: repeat(2, 1fr); } }
.diff-item {
	padding: 1.5rem;
	background: var(--surface-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	transition: border-color .25s ease, transform .25s var(--ease);
}
.diff-item:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.diff-item-num {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 2.25rem;
	font-weight: 400;
	color: var(--accent);
	margin-bottom: 0.85rem;
	letter-spacing: -0.02em;
	font-variant-numeric: tabular-nums;
	line-height: 1;
}
.diff-item p { color: var(--fg-dim); line-height: 1.55; margin: 0; font-size: 0.95rem; }
.diff-item p strong { color: var(--fg); font-weight: 500; }

.next-link-strip {
	border-top: 1px solid var(--border);
	padding: 3rem 0;
}
.next-link {
	max-width: var(--container);
	margin: 0 auto;
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	color: var(--ink);
}
.next-link:hover { color: var(--ink); }
.next-link-label {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--ink-light);
}
.next-link-title {
	margin-top: 0.5rem;
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	font-weight: 700;
	color: var(--ink);
	letter-spacing: -0.02em;
}
.next-link:hover .next-link-title { color: var(--red); }
.next-link svg { width: 32px; height: 32px; color: var(--navy); transition: transform .25s ease, color .25s ease; }
.next-link:hover svg { color: var(--red); transform: translateX(6px); }

/* ---------- About page (full) ----------------------------------------------*/
.principles-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .principles-grid { grid-template-columns: repeat(2, 1fr); } }
.principle-card {
	background: var(--surface-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2.25rem;
}
.principle-card-num {
	font-size: 2.25rem;
	font-weight: 800;
	color: var(--red);
	line-height: 1;
	margin-bottom: 1rem;
	font-variant-numeric: tabular-nums;
}
.principle-card h3 { font-size: 1.4rem; }
.principle-card p { color: var(--ink-muted); font-size: 0.95rem; line-height: 1.7; margin-top: 0.75rem; }

/* ---------- Contact page ---------------------------------------------------*/
.contact-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; max-width: 580px; }
.field-row { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.field label .required { color: var(--red); }
.field input, .field textarea, .field select {
	font: inherit;
	background: var(--surface-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 0.75rem 1rem;
	color: var(--ink);
	transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
	outline: none;
	border-color: var(--red);
	box-shadow: 0 0 0 3px rgba(230, 58, 26, 0.18);
}
.field textarea { resize: vertical; min-height: 140px; }

/* Hidden honeypot — kept off-screen and ARIA-hidden. */
.contact-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

/* Inline status block under the submit button — pending / success / error. */
.contact-form-status {
	margin-top: 0.25rem;
	padding: 0.85rem 1rem;
	border-radius: var(--radius-sm);
	border: 1px solid var(--border);
	font-size: 0.92rem;
	line-height: 1.55;
	background: var(--surface-card);
	color: var(--fg-dim);
}
.contact-form-status[data-state="pending"] {
	color: var(--fg-mute);
	border-color: var(--border-subtle);
}
.contact-form-status[data-state="success"] {
	color: #1E8E45;
	background: rgba(91, 210, 122, 0.10);
	border-color: rgba(91, 210, 122, 0.40);
}
.contact-form-status[data-state="error"] {
	color: var(--accent);
	background: var(--accent-soft);
	border-color: rgba(233, 80, 24, 0.40);
}
:root[data-theme="dark"] .contact-form-status[data-state="success"] { color: #5BD27A; }

/* Submit button — disabled / loading state. */
.contact-form-submit[disabled] {
	opacity: 0.6;
	cursor: progress;
}
.contact-form-submit[data-loading] .contact-form-submit-label::after {
	content: " …";
}

.contact-form-rgpd {
	font-size: 12px;
	color: var(--fg-mute);
	margin-top: 0.5rem;
	line-height: 1.6;
}

.contact-info {
	background: var(--surface-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: clamp(1.75rem, 2.5vw, 2.25rem);
	position: sticky;
	top: 7rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.contact-info .eyebrow { margin-bottom: 0; }
.contact-info-title {
	font-family: var(--font-sans);
	font-size: clamp(1.5rem, 2.2vw, 1.85rem);
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 1.1;
	color: var(--fg);
	margin: 0;
}
.contact-info-title em { font-family: var(--font-serif); font-style: italic; color: var(--accent); }
.contact-item {
	display: grid;
	grid-template-columns: 40px 1fr;
	align-items: start;
	gap: 0.9rem;
	padding-bottom: 1.1rem;
	border-bottom: 1px solid var(--border-subtle);
}
.contact-item:last-of-type { border-bottom: 0; padding-bottom: 0; }
.contact-item-icon {
	width: 38px; height: 38px;
	border-radius: var(--radius-pill);
	background: rgba(233, 80, 24, 0.10);
	border: 1px solid var(--border-subtle);
	color: var(--accent);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.contact-item-icon svg { width: 16px; height: 16px; }
.contact-item h4 {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--fg-mute);
	margin: 0 0 0.35rem;
}
.contact-item p, .contact-item a {
	font-size: 0.95rem;
	color: var(--fg);
	margin: 0;
	line-height: 1.55;
	font-weight: 400;
}
.contact-item a { color: var(--fg); transition: color .2s ease; }
.contact-item a:hover { color: var(--accent); }
.contact-item-sub { color: var(--fg-mute); font-size: 0.875rem; }

.contact-info .note {
	font-size: 0.85rem;
	color: var(--fg-mute);
	margin-top: 0;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border-subtle);
	line-height: 1.5;
}
.contact-info .note strong { color: var(--fg); display: block; margin-bottom: 0.25rem; }

/* ---------- Article body (blog post) ---------------------------------------*/
.article-hero {
	background: var(--surface-canvas);
	color: var(--fg);
	padding: clamp(7rem, 13vw, 11rem) 0 clamp(3rem, 5vw, 5rem);
	position: relative;
	overflow: hidden;
}
.article-hero::before {
	content: "";
	position: absolute; inset: 0;
	opacity: 0.40;
	background-image:
		linear-gradient(to right, var(--surface-line) 1px, transparent 1px),
		linear-gradient(to bottom, var(--surface-line) 1px, transparent 1px);
	background-size: 112px 112px;
	-webkit-mask-image: radial-gradient(ellipse 60% 70% at 30% 30%, black 30%, transparent 80%);
	mask-image: radial-gradient(ellipse 60% 70% at 30% 30%, black 30%, transparent 80%);
}
.article-hero::after {
	content: "";
	position: absolute;
	top: -6rem; right: -6rem;
	width: 520px; height: 520px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(233,80,24,0.16) 0%, transparent 60%);
	filter: blur(80px);
	pointer-events: none;
}
.article-hero-inner {
	position: relative; z-index: 1;
	max-width: 880px;
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.article-back {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--fg-mute);
	font-family: var(--font-mono);
	font-size: 11.5px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin-bottom: 2rem;
}
.article-back:hover { color: var(--accent); }
.article-hero h1 { color: var(--fg); font-weight: 300; letter-spacing: -0.035em; line-height: 1; font-size: clamp(2.25rem, 5vw, 4.25rem); }
.article-hero h1 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
.article-meta {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--fg-mute);
	margin-bottom: 1.25rem;
}
.article-meta .cat { color: var(--accent); }

.article-featured-image {
	max-width: 1080px;
	margin: -3.5rem auto 0;
	padding: 0 var(--gutter);
	position: relative;
	z-index: 2;
}
.article-featured-image .frame {
	aspect-ratio: 16 / 9;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: 0 40px 100px rgba(0,0,0,0.55);
	background: var(--surface-card);
}
.article-featured-image img { width: 100%; height: 100%; object-fit: cover; }

.article-body { max-width: 720px; margin: 0 auto; padding: clamp(3rem, 7vw, 5rem) var(--gutter); }
.article-body .lead {
	font-size: clamp(1.15rem, 1.5vw, 1.35rem);
	line-height: 1.55;
	color: var(--fg);
	font-weight: 400;
	margin: 0 0 2.5rem;
}
.article-body .lead em { font-family: var(--font-serif); font-style: italic; color: var(--accent); font-weight: 400; }
.article-body h2 {
	font-size: clamp(1.5rem, 2.4vw, 2.1rem);
	margin: 3rem 0 1.25rem;
	color: var(--fg);
	font-weight: 400;
	letter-spacing: -0.028em;
	line-height: 1.15;
}
.article-body h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
.article-body h3 {
	font-size: clamp(1.15rem, 1.6vw, 1.4rem);
	margin: 2.25rem 0 1rem;
	color: var(--fg);
	font-weight: 500;
	letter-spacing: -0.018em;
}
.article-body p {
	font-size: 17px;
	line-height: 1.72;
	color: var(--fg-dim);
	margin-bottom: 1.5rem;
}
.article-body p em { font-family: var(--font-serif); font-style: italic; color: var(--fg); font-weight: 400; }
.article-body p strong { color: var(--fg); font-weight: 600; }
.article-body a:not(.btn):not([class*="btn-"]) { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(233,80,24,0.4); text-underline-offset: 3px; transition: text-decoration-color .2s ease; }
.article-body a:not(.btn):not([class*="btn-"]):hover { text-decoration-color: var(--accent); }
/* Buttons inside article body keep their own colors, not link override */
.article-body a.btn,
.article-body a.btn-primary,
.article-body a.btn-outline,
.article-body a.btn-secondary { text-decoration: none; }
.article-body a.btn-primary { color: #fff; }
.article-body a.btn-outline { color: var(--fg); }
.article-body a.btn-secondary { color: var(--fg); }
.article-body ul, .article-body ol { padding-left: 0; margin: 0 0 1.5rem; }
.article-body li {
	list-style: none;
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	font-size: 17px;
	line-height: 1.7;
	color: var(--fg-dim);
	margin-bottom: 0.85rem;
}
.article-body li::before {
	content: "\25C6";
	color: var(--accent);
	font-size: 0.7rem;
	margin-top: 0.5rem;
	flex-shrink: 0;
}
.article-body li strong { color: var(--fg); font-weight: 600; }
.article-body blockquote {
	margin: 2.75rem 0;
	background: var(--surface-card);
	border-left: 2px solid var(--accent);
	padding: 1.5rem 1.85rem;
	border-radius: 0 var(--radius) var(--radius) 0;
	color: var(--fg);
	font-size: 17px;
	line-height: 1.7;
}
.article-body strong { color: var(--ink); }

/* ---------- Legal pages ----------------------------------------------------*/
.legal-section { max-width: 820px; margin: 0 auto; padding: 4rem 1.5rem; }
.legal-section h2 {
	font-size: clamp(1.5rem, 2vw, 1.875rem);
	margin: 3rem 0 1rem;
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
}
.legal-section h2::before {
	content: "";
	width: 6px; height: 24px;
	border-radius: 2px;
	background: var(--red);
}
.legal-section p, .legal-section li {
	font-size: 16px;
	line-height: 1.75;
	color: var(--ink-muted);
}
.legal-section ul { padding-left: 1.25rem; }
.legal-section li { margin-bottom: 0.6rem; }
.legal-section a { color: var(--navy); text-decoration: underline; }
.legal-section a:hover { color: var(--red); }
.legal-section strong { color: var(--ink); }

/* ---------- Inner page hero (services index, contact, etc.) ----------------*/
.page-hero {
	background: var(--surface-canvas);
	color: var(--fg);
	padding: clamp(7.5rem, 13vw, 11rem) 0 clamp(3.5rem, 6vw, 6rem);
	position: relative;
	overflow: hidden;
}
.page-hero::before {
	content: "";
	position: absolute; inset: 0;
	opacity: 0.45;
	background-image:
		linear-gradient(to right, var(--surface-line) 1px, transparent 1px),
		linear-gradient(to bottom, var(--surface-line) 1px, transparent 1px);
	background-size: 112px 112px;
	-webkit-mask-image: radial-gradient(ellipse 60% 70% at 30% 30%, black 30%, transparent 80%);
	mask-image: radial-gradient(ellipse 60% 70% at 30% 30%, black 30%, transparent 80%);
}
.page-hero::after {
	content: "";
	position: absolute;
	top: -6rem; right: -8rem;
	width: 560px; height: 560px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(233,80,24,0.18) 0%, transparent 60%);
	filter: blur(80px);
}
.page-hero-inner {
	position: relative;
	z-index: 1;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.page-hero h1 {
	color: var(--fg);
	max-width: 18ch;
	font-size: clamp(2.5rem, 5.4vw, 4.75rem);
	font-weight: 300;
	letter-spacing: -0.035em;
	line-height: 1;
}
.page-hero h1 em,
.page-hero h1 .accent,
.page-hero h1 .display-italic {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	color: var(--accent);
	letter-spacing: -0.022em;
}
.page-hero p {
	margin-top: 1.5rem;
	font-size: clamp(1rem, 1.2vw, 1.2rem);
	color: var(--fg-dim);
	max-width: 56ch;
	line-height: 1.55;
}
.page-hero p em { font-family: var(--font-serif); font-style: italic; color: var(--fg); font-weight: 400; }

/* Breadcrumb (mono caps) — sits above the page-hero H1 */
.page-breadcrumb {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 1.75rem;
	font-family: var(--font-mono);
	font-size: 11.5px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--fg-mute);
}
.page-breadcrumb a { color: inherit; }
.page-breadcrumb a:hover { color: var(--fg); }
.page-breadcrumb .sep { color: var(--fg-faint); }
.page-breadcrumb .current { color: var(--accent); }

/* ---------- Utilities / animations -----------------------------------------*/
.fade-up { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

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

/* Responsive tweaks */
@media (max-width: 768px) {
	.section { padding: 4rem 0; }
	.hero { padding: 6rem 1.5rem 4rem; }
	.cta-banner { padding: 3rem 1.5rem; }
	.hero-strip-inner { gap: 0.75rem; }
	.hero-strip-langs { gap: 0.85rem; }
}

/* ==========================================================================
   v2.1 additions — Categories, Process, FAQ, diamond accents
   ========================================================================== */

/* ---------- Diamond accent ------------------------------------------------*/
.diamond {
	display: inline-block;
	color: var(--red);
	font-size: 0.65em;
	transform: translateY(-0.05em);
	margin-right: 0.4em;
	font-style: normal;
}
.eyebrow { display: inline-flex; align-items: center; }
.eyebrow .diamond { color: inherit; }
.section-dark .eyebrow .diamond { color: var(--red-light); }

/* ---------- Categories section -------------------------------------------*/
.categories-section { padding: 8rem 0; }
.categories-header { max-width: 720px; margin-bottom: 4rem; }
.categories-header h2 { font-size: clamp(2rem, 3.5vw, 3rem); }

.categories-grid {
	display: grid;
	gap: 1.75rem;
	grid-template-columns: 1fr;
}
@media (min-width: 768px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }

.category-card {
	background: var(--surface-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2.25rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	position: relative;
	overflow: hidden;
}
.category-card::before {
	content: "";
	position: absolute; top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--red), transparent);
	opacity: 0;
	transition: opacity .3s ease;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.category-card:hover::before { opacity: 1; }

.category-card-head { display: flex; align-items: center; justify-content: space-between; }
.category-card-num {
	font-family: ui-monospace, monospace;
	font-size: 13px;
	font-weight: 700;
	color: var(--ink-light);
	letter-spacing: 0.08em;
}
.category-card-icon {
	color: var(--red);
	width: 28px;
	height: 28px;
}
.category-card-icon svg { width: 100%; height: 100%; }

.category-card h3 {
	font-size: 1.5rem;
	letter-spacing: -0.02em;
	margin: 0;
}
.category-card p {
	color: var(--ink-muted);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

.category-card-links {
	list-style: none;
	margin: 0.75rem 0 0;
	padding: 0;
	border-top: 1px solid var(--border);
	padding-top: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.category-card-links a {
	display: inline-flex;
	align-items: center;
	color: var(--ink);
	font-weight: 500;
	font-size: 14px;
	transition: color .2s ease;
}
.category-card-links a:hover { color: var(--red); }

/* ---------- Process timeline ----------------------------------------------*/
.process-section { padding: 8rem 0; background: var(--navy-deep); color: #fff; position: relative; overflow: hidden; }
.process-section::before {
	content: "";
	position: absolute; inset: 0;
	opacity: 0.12;
	background-image:
		linear-gradient(rgba(255,255,255,0.7) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.7) 1px, transparent 1px);
	background-size: 64px 64px;
	-webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
	mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}
.process-section > * { position: relative; }
.process-header { max-width: 720px; margin-bottom: 4rem; }
.process-header h2 { color: #fff; font-size: clamp(2rem, 3.5vw, 3rem); }
.process-header p { color: rgba(255,255,255,0.72); }
.process-header .eyebrow { color: var(--red-light); }

.process-timeline {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.process-step {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 2rem;
	padding: 1.75rem 0;
	position: relative;
}
@media (min-width: 768px) { .process-step { grid-template-columns: 80px 1fr; gap: 3rem; padding: 2.5rem 0; } }
.process-step:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.08); }
.process-step-rail { position: relative; }
.process-step-dot {
	position: absolute;
	top: 0.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--red);
	box-shadow: 0 0 0 4px rgba(230, 58, 26, 0.18), 0 0 20px var(--red);
}
.process-step-line {
	position: absolute;
	top: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: calc(100% + 3.5rem);
	background: linear-gradient(180deg, var(--red), rgba(255,255,255,0.12));
}
.process-step:last-child .process-step-line { display: none; }
.process-step-content { padding-top: 0.25rem; }
.process-step-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
}
.process-step-num {
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--red-light);
	font-family: ui-monospace, monospace;
}
.process-step-output {
	font-size: 12px;
	color: rgba(255,255,255,0.55);
	display: inline-flex;
	align-items: center;
}
.process-step h3 {
	font-size: clamp(1.4rem, 2vw, 1.875rem);
	color: #fff;
	margin: 0 0 0.75rem;
}
.process-step p {
	color: rgba(255,255,255,0.74);
	font-size: 1rem;
	line-height: 1.7;
	margin: 0;
	max-width: 60ch;
}

/* ---------- FAQ ------------------------------------------------------------*/
.faq-section { padding: 8rem 0; }
.faq-grid {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.faq-intro h2 { font-size: clamp(1.875rem, 3vw, 2.75rem); }
.faq-intro p {
	margin-top: 1.25rem;
	color: var(--ink-muted);
	max-width: 36em;
	line-height: 1.7;
}
.faq-intro p a { color: var(--navy); font-weight: 600; }
.faq-intro p a:hover { color: var(--red); }

.faq-list { list-style: none; margin: 0; padding: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item details { padding: 0; }
.faq-item summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.5rem 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--ink);
	letter-spacing: -0.01em;
	transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--red); }
.faq-chev {
	width: 22px;
	height: 22px;
	color: var(--ink-light);
	flex-shrink: 0;
	transition: transform .25s ease, color .2s ease;
}
.faq-item details[open] .faq-chev { transform: rotate(180deg); color: var(--red); }
.faq-answer {
	padding: 0 0 1.5rem;
	color: var(--ink-muted);
	font-size: 1rem;
	line-height: 1.75;
	max-width: 70ch;
}

/* ---------- Hero refinement (v2.1) ----------------------------------------*/
.hero-badge .diamond {
	color: var(--red);
	font-size: 0.8em;
	margin-right: 0;
}

@media (max-width: 768px) {
	.categories-section, .process-section, .faq-section { padding: 5rem 0; }
	.process-step { grid-template-columns: 40px 1fr; gap: 1.25rem; padding: 1.5rem 0; }
}

/* ==========================================================================
   v2.2 additions — Performance, Growth Program, Disciplines tabs,
                    Editorial CTA, display typography, CF7 styles
   ========================================================================== */

/* ---------- Display typography (editorial: heavy sans + italic serif) ------
   Webtures-style: thin sans 300 weight + Instrument Serif italic accent
   ------------------------------------------------------------------------- */
.display-xl {
	font-size: clamp(3.5rem, 8.5vw, 8rem);
	font-weight: 300;
	line-height: 0.95;
	letter-spacing: -0.04em;
	margin: 0;
	font-family: var(--font-sans);
	color: var(--fg);
}
.display-h1 {
	font-size: clamp(2.75rem, 6vw, 5.75rem);
	font-weight: 300;
	line-height: 0.97;
	letter-spacing: -0.035em;
	margin: 0;
	font-family: var(--font-sans);
	color: var(--fg);
}
.display-h2 {
	font-size: clamp(2.25rem, 4.8vw, 4rem);
	font-weight: 400;
	line-height: 1.02;
	letter-spacing: -0.03em;
	margin: 0;
	font-family: var(--font-sans);
	color: var(--fg);
}
.display-italic {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	color: var(--accent);
	letter-spacing: -0.022em;
}
.section-dark .display-italic { color: var(--accent); }

/* Default h1/h2/h3 on dark sections — preserve weight 300 sans + italic accent */
.section-dark h1, .section-dark h2 { color: var(--fg); }
.section-dark h1 em, .section-dark h2 em { color: var(--accent); }

/* ---------- Live eyebrow (animated dot) -----------------------------------*/
.live-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; }
.live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--red);
	box-shadow: 0 0 0 0 rgba(230, 58, 26, 0.7);
	animation: live-pulse 2s infinite;
}
@keyframes live-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(230, 58, 26, 0.6); }
	70%  { box-shadow: 0 0 0 10px rgba(230, 58, 26, 0); }
	100% { box-shadow: 0 0 0 0 rgba(230, 58, 26, 0); }
}

/* ---------- Performance section --------------------------------------------*/
.performance-section { padding: 8rem 0; background: var(--navy-deep); }
.performance-section::before {
	content: "";
	position: absolute; inset: 0;
	opacity: 0.10;
	background-image:
		linear-gradient(rgba(255,255,255,0.7) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.7) 1px, transparent 1px);
	background-size: 64px 64px;
	-webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
	mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
	pointer-events: none;
}
.performance-section { position: relative; }
.performance-section > * { position: relative; }

.performance-header {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
	margin-bottom: 4rem;
	align-items: end;
}
@media (min-width: 1024px) { .performance-header { grid-template-columns: 1.4fr 1fr; gap: 4rem; } }
.performance-header h2 { color: #fff; }
.performance-intro {
	color: rgba(255,255,255,0.72);
	font-size: 1.1rem;
	line-height: 1.6;
	max-width: 36em;
	margin: 0;
}

.performance-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
}
@media (min-width: 640px) { .performance-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .performance-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

.performance-card {
	background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	min-height: 260px;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	position: relative;
	overflow: hidden;
	transition: transform .25s ease, border-color .25s ease;
}
.performance-card:hover { transform: translateY(-4px); border-color: rgba(230, 58, 26, 0.35); }
.performance-card.is-active {
	border-color: rgba(230, 58, 26, 0.40);
}
.performance-card.is-active::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 0% 0%, rgba(230, 58, 26, 0.18) 0%, transparent 55%);
	pointer-events: none;
}
.performance-card > * { position: relative; }
.performance-card-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.performance-card-index {
	font-family: ui-monospace, monospace;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--red-light);
}
.performance-card.is-active .performance-card-index { color: var(--red); }
.performance-card-arrow {
	width: 18px; height: 18px;
	color: rgba(255,255,255,0.40);
}
.performance-card.is-active .performance-card-arrow { color: var(--red); }
.performance-card-value {
	font-size: clamp(3rem, 4.5vw, 4.5rem);
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.04em;
	line-height: 0.95;
	font-variant-numeric: tabular-nums;
}
.performance-card-unit {
	color: var(--red);
	margin-left: 0.05em;
}
.performance-card-desc {
	color: rgba(255,255,255,0.65);
	font-size: 0.95rem;
	line-height: 1.55;
	margin-top: auto;
}
.performance-card-bar {
	height: 3px;
	background: rgba(255,255,255,0.08);
	border-radius: 999px;
	overflow: hidden;
	margin-top: 0.5rem;
}
.performance-card-bar-fill {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--red), var(--red-dark));
	border-radius: 999px;
	transition: width .8s ease;
}

/* ---------- Growth Program section ----------------------------------------*/
.growth-program-section { padding: clamp(5rem, 10vw, 8rem) 0; background: var(--surface-canvas); position: relative; overflow: hidden; }
.growth-program-section::before {
	content: "";
	position: absolute; inset: 0;
	opacity: 0.40;
	background-image:
		linear-gradient(to right, var(--surface-line) 1px, transparent 1px),
		linear-gradient(to bottom, var(--surface-line) 1px, transparent 1px);
	background-size: 112px 112px;
	-webkit-mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, black 20%, transparent 80%);
	mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, black 20%, transparent 80%);
}
.growth-program-section > * { position: relative; z-index: 1; }

.growth-program-eyebrow {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex-wrap: wrap;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}
.growth-program-eyebrow .eyebrow { margin-bottom: 0; }

.growth-program-inner {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
	align-items: start;
}
@media (min-width: 1024px) { .growth-program-inner { grid-template-columns: 1.5fr 1fr; gap: clamp(40px, 6vw, 80px); } }

.growth-program-title {
	color: var(--fg);
	font-size: clamp(2.5rem, 5.4vw, 4.75rem);
	font-weight: 300;
	line-height: 0.98;
	letter-spacing: -0.035em;
	margin: 0;
	max-width: 16ch;
	text-wrap: balance;
}
.growth-program-title em,
.growth-program-title .display-italic {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	color: var(--accent);
	letter-spacing: -0.022em;
}

.growth-program-side { color: var(--fg-dim); padding-top: 0.5rem; }
.growth-program-side p {
	font-size: 1rem;
	line-height: 1.55;
	margin: 0 0 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px dashed var(--border);
	color: var(--fg-dim);
}
.growth-program-side p em {
	font-family: var(--font-serif);
	font-style: italic;
	color: var(--fg);
	font-weight: 400;
}

.growth-program-stats {
	display: grid;
	gap: 1.75rem 1.5rem;
	grid-template-columns: repeat(3, 1fr);
}
.growth-stat { display: flex; flex-direction: column; gap: 0.65rem; }
.growth-stat-value {
	font-family: var(--font-sans);
	font-size: clamp(1.5rem, 2.6vw, 2.4rem);
	font-weight: 300;
	line-height: 1;
	color: var(--fg);
	display: flex;
	align-items: baseline;
	gap: 0.2em;
	letter-spacing: -0.025em;
}
.growth-stat-value em {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	color: var(--accent);
	letter-spacing: -0.02em;
}
.growth-stat-value .unit {
	font-size: 0.5em;
	color: var(--fg-mute);
	font-weight: 400;
	font-style: normal;
	font-family: var(--font-sans);
}
.growth-stat-label {
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--fg-mute);
	margin-top: 0;
	line-height: 1.4;
}

/* ---------- Disciplines tabs (interactive) --------------------------------*/
.disciplines-section { padding: 8rem 0; }
.disciplines-header { max-width: 720px; margin-bottom: 3rem; }

.disciplines-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 3rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border);
}
.disciplines-tab {
	background: transparent;
	color: var(--ink-muted);
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 0.65rem 1.25rem;
	font-size: 0.95rem;
	font-weight: 500;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.disciplines-tab:hover {
	background: var(--bg-soft);
	color: var(--ink);
}
.disciplines-tab.is-active {
	background: var(--red);
	color: #fff;
	font-weight: 600;
	box-shadow: 0 4px 14px rgba(230, 58, 26, 0.30);
}

.disciplines-panel {
	display: none;
	grid-template-columns: 1fr;
	gap: 3rem;
}
.disciplines-panel.is-active { display: grid; }
@media (min-width: 1024px) { .disciplines-panel.is-active { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.disciplines-list { list-style: none; margin: 0; padding: 0; }
.disciplines-list-item {
	display: grid;
	grid-template-columns: 40px 1fr 28px;
	gap: 1rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--border);
	cursor: pointer;
	transition: background .2s ease;
	position: relative;
}
.disciplines-list-item:first-child { padding-top: 0; }
.disciplines-list-item:last-child { border-bottom: 0; }
.disciplines-list-item.is-active::before {
	content: "—";
	position: absolute;
	left: -2.5rem;
	top: 1.6rem;
	color: var(--red);
	font-weight: 700;
}
.disciplines-list-item.is-active:first-child::before { top: 0.1rem; }
.disciplines-list-num {
	font-family: ui-monospace, monospace;
	font-size: 12px;
	font-weight: 700;
	color: var(--ink-light);
	letter-spacing: 0.08em;
	margin-top: 0.5rem;
}
.disciplines-list-item.is-active .disciplines-list-num { color: var(--red); }
.disciplines-list-body h3 {
	font-size: clamp(1.3rem, 1.6vw, 1.65rem);
	font-weight: 600;
	letter-spacing: -0.015em;
	margin: 0 0 0.4rem;
}
.disciplines-list-body h3 .accent {
	font-style: italic;
	color: var(--red);
	font-weight: 700;
	margin-left: 0.4rem;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}
.disciplines-list-body p {
	color: var(--ink-muted);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
	max-width: 42em;
}
.disciplines-list-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: transparent;
	color: var(--ink-light);
	border: 1px solid var(--border);
	flex-shrink: 0;
	margin-top: 0.5rem;
	transition: all .25s ease;
}
.disciplines-list-item.is-active .disciplines-list-arrow {
	background: var(--red);
	color: #fff;
	border-color: var(--red);
}
.disciplines-list-arrow svg { width: 14px; height: 14px; }

/* Preview card */
.disciplines-preview {
	background: var(--navy-deep);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--radius-lg);
	overflow: hidden;
	color: #fff;
	display: flex;
	flex-direction: column;
}
.disciplines-preview-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	font-size: 12px;
	color: rgba(255,255,255,0.55);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 600;
}
.dots { display: flex; gap: 0.35rem; }
.dots span {
	width: 9px; height: 9px;
	border-radius: 50%;
	background: rgba(255,255,255,0.20);
}
.live-indicator { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--red); }
.disciplines-preview-title-mini { font-weight: 600; }

.disciplines-preview-body { padding: 2rem 1.75rem 2rem; }
.disciplines-preview-h {
	font-size: clamp(1.4rem, 2vw, 1.875rem);
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 1rem;
}
.disciplines-preview-h em {
	font-style: italic;
	color: var(--red);
	font-weight: 700;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}
.disciplines-preview-lead {
	color: rgba(255,255,255,0.70);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0 0 1.5rem;
}
.disciplines-preview-lead em { font-style: italic; color: rgba(255,255,255,0.85); }

.disciplines-preview-deliverables {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 1.5rem;
}
.deliverable-cell {
	background: var(--navy-deep);
	padding: 1rem 1.1rem;
}
.deliverable-cell-num {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: rgba(255,255,255,0.40);
}
.deliverable-cell-text {
	margin-top: 0.45rem;
	font-size: 0.92rem;
	font-weight: 500;
	color: #fff;
	line-height: 1.35;
}

.disciplines-preview-metric {
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: var(--radius);
	padding: 1.25rem 1.25rem 0.75rem;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 1rem;
	align-items: end;
	margin-bottom: 1.5rem;
}
.metric-block-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: rgba(255,255,255,0.40);
}
.metric-block-value {
	font-size: 2rem;
	font-weight: 800;
	color: var(--red);
	margin-top: 0.25rem;
	letter-spacing: -0.03em;
	font-variant-numeric: tabular-nums;
}
.metric-block-sub {
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.45);
	margin-top: 0.4rem;
}
.metric-chart {
	width: 120px;
	height: 40px;
	opacity: 0.85;
}

.disciplines-preview-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}
.disciplines-preview-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	flex: 1;
}
.chip {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: rgba(255,255,255,0.70);
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 999px;
	padding: 0.35rem 0.75rem;
}
.btn-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--red);
	background: transparent;
	border: 1px solid var(--red);
	border-radius: 999px;
	padding: 0.55rem 1.1rem;
	transition: background .2s ease, color .2s ease;
}
.btn-chip:hover {
	background: var(--red);
	color: #fff;
}
.btn-chip svg { width: 14px; height: 14px; }

/* ---------- Editorial CTA section -----------------------------------------*/
.cta-editorial-section {
	padding: clamp(5rem, 10vw, 8rem) 0;
	background: var(--surface-canvas);
	position: relative;
	overflow: hidden;
	border-top: 1px solid var(--border-subtle);
}
.cta-editorial-section::before {
	content: "";
	position: absolute; inset: 0;
	opacity: 0.40;
	background-image:
		linear-gradient(to right, var(--surface-line) 1px, transparent 1px),
		linear-gradient(to bottom, var(--surface-line) 1px, transparent 1px);
	background-size: 112px 112px;
	-webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 30%, transparent 80%);
	mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 30%, transparent 80%);
}
.cta-editorial-section::after {
	content: "";
	position: absolute;
	bottom: -8rem;
	right: -6rem;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(233,80,24,0.18) 0%, transparent 65%);
	filter: blur(90px);
}
.cta-editorial-section > * { position: relative; z-index: 1; }

.cta-editorial {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
	align-items: end;
}
@media (min-width: 1024px) { .cta-editorial { grid-template-columns: 1.55fr 1fr; gap: clamp(40px, 6vw, 96px); } }

/* H2 — Webtures pattern: single sentence, italic accent IN THE MIDDLE, period at end */
.cta-editorial h2 {
	color: var(--fg);
	font-family: var(--font-sans);
	font-weight: 300;
	font-size: clamp(2.5rem, 5.6vw, 5rem);
	line-height: 0.98;
	letter-spacing: -0.035em;
	max-width: 18ch;
	text-wrap: balance;
	margin: 0;
}
.cta-editorial h2 em,
.cta-editorial h2 .display-italic {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	color: var(--accent);
	letter-spacing: -0.022em;
}
.cta-editorial .eyebrow { color: var(--fg-mute); margin-bottom: 1.5rem; }
.cta-editorial .eyebrow .diamond { color: var(--accent); }
.cta-editorial-side {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: flex-start;
	padding-bottom: 0.5rem;
}
.cta-editorial-side p {
	color: var(--fg-dim);
	font-size: 1rem;
	line-height: 1.55;
	margin: 0;
	max-width: 32em;
}
.cta-editorial-side p em { font-family: var(--font-serif); font-style: italic; color: var(--fg); font-weight: 400; }

.btn-large {
	padding: 1rem 1.85rem;
	font-size: 0.95rem;
}

/* ---------- CF7 styles ----------------------------------------------------*/
.wpcf7 { max-width: 580px; }
.wpcf7 .cf7-field-row {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
	margin-bottom: 0;
}
@media (min-width: 640px) { .wpcf7 .cf7-field-row { grid-template-columns: 1fr 1fr; } }
.wpcf7 .cf7-field { margin-bottom: 1.25rem; }
.wpcf7 label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--ink);
}
.wpcf7 label .required { color: var(--red); }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
	font: inherit;
	width: 100%;
	background: var(--surface-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 0.85rem 1rem;
	color: var(--ink);
	transition: border-color .15s ease, box-shadow .15s ease;
	margin-top: 0.4rem;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
	outline: none;
	border-color: var(--red);
	box-shadow: 0 0 0 3px rgba(230, 58, 26, 0.18);
}
.wpcf7 textarea { resize: vertical; min-height: 140px; }
.wpcf7 .cf7-consent {
	font-size: 13px;
	color: var(--ink-muted);
	line-height: 1.55;
	margin: 1rem 0;
}
.wpcf7 .cf7-consent input[type="checkbox"] { margin-right: 0.5rem; }
.wpcf7 .cf7-consent a { color: var(--navy); text-decoration: underline; }
.wpcf7 .cf7-submit { margin: 1.5rem 0 0; }
.wpcf7 .wpcf7-response-output {
	border: 1px solid var(--border) !important;
	border-radius: var(--radius-sm) !important;
	padding: 1rem !important;
	margin: 1.5rem 0 0 !important;
	font-size: 0.95rem;
}
.wpcf7-not-valid-tip {
	color: var(--red);
	font-size: 0.85rem;
	margin-top: 0.4rem;
}

@media (max-width: 768px) {
	.performance-section, .growth-program-section,
	.disciplines-section, .cta-editorial-section { padding: 5rem 0; }
	.disciplines-list-item { grid-template-columns: 28px 1fr 24px; gap: 0.75rem; }
}

/* ==========================================================================
   v2.3 — Modernized header (mega-menu, available badge),
          Footer SEO block (local SEO), navy-deep replacements,
          mobile submenu, refined home page hero
   ========================================================================== */

/* ---------- Site logo + Available badge ----------------------------------*/
.site-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
}
.site-logo-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: var(--font-mono);
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--fg-dim);
	background: rgba(255,255,255,0.04);
	border: 1px solid var(--border);
	border-radius: var(--radius-pill);
	padding: 0.32rem 0.7rem;
	white-space: nowrap;
}
.site-logo-badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #22C55E;
	box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
	animation: live-pulse 2.6s ease-in-out infinite;
}
@media (max-width: 640px) {
	.site-logo-badge { display: none; }
}

/* ---------- Primary nav refinement (caret + hover) -----------------------*/
.primary-nav a { display: inline-flex; align-items: center; gap: 0.35rem; }
.primary-nav .caret {
	transition: transform .25s ease;
	opacity: 0.7;
}
.primary-nav .menu-item-has-children:hover .caret { transform: rotate(180deg); }

/* ---------- Mega menu (Services hover dropdown) --------------------------*/
.menu-item-has-children { position: relative; }
.mega-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, 8px);
	min-width: 720px;
	max-width: 92vw;
	background: var(--surface-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: 0 24px 60px rgba(31, 44, 122, 0.16);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .22s ease, transform .22s ease, visibility .22s;
	padding: 1.5rem;
	z-index: 60;
}
.menu-item-has-children:hover > .mega-menu,
.menu-item-has-children:focus-within > .mega-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}
.mega-menu-inner {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 1.5rem;
}
.mega-menu-col { padding: 0.75rem; }
.mega-menu-intro {
	background: var(--bg-soft);
	border-radius: var(--radius);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}
.mega-menu-title {
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0;
	color: var(--ink);
}
.mega-menu-intro p {
	color: var(--ink-muted);
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
}
.mega-menu-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: auto;
	color: var(--red);
	font-weight: 600;
	font-size: 0.875rem;
}
.mega-menu-link:hover { color: var(--red-dark); }
.mega-menu-list {
	list-style: none;
	margin: 0;
	padding: 0.5rem 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.25rem;
}
.mega-menu-list a {
	display: grid;
	grid-template-columns: 32px 1fr;
	gap: 0.6rem;
	align-items: start;
	padding: 0.65rem 0.75rem;
	border-radius: var(--radius-sm);
	transition: background .15s ease;
	color: var(--ink);
}
.mega-menu-list a:hover {
	background: var(--bg-soft);
	color: var(--ink);
}
.mega-menu-num {
	font-family: ui-monospace, monospace;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--ink-light);
	padding-top: 0.15rem;
}
.mega-menu-list a:hover .mega-menu-num { color: var(--red); }
.mega-menu-item { display: flex; flex-direction: column; }
.mega-menu-item-title {
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 0.15rem;
}
.mega-menu-item-desc {
	font-size: 0.78rem;
	color: var(--ink-muted);
	line-height: 1.45;
}
@media (max-width: 1100px) {
	.mega-menu { min-width: 92vw; }
	.mega-menu-inner { grid-template-columns: 1fr; }
	.mega-menu-list { grid-template-columns: 1fr; }
}

/* Mobile submenu */
.mobile-submenu {
	list-style: none;
	margin: 0;
	padding: 0 0 0 1.25rem;
	border-left: 2px solid var(--red);
}
.mobile-submenu li a {
	display: block;
	padding: 0.6rem 0;
	font-size: 0.92rem;
	color: var(--ink-muted);
	border-bottom: 1px solid var(--bg-muted);
}

/* ---------- Service metrics band (Webtures-style 4-col KPI row) ----------*/
.svc-metrics-band {
	background: var(--surface-canvas);
	padding: 0 0 clamp(2rem, 5vw, 4rem);
}
.svc-metrics {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) {
	.svc-metrics { grid-template-columns: repeat(2, 1fr); }
	.svc-metric:nth-child(3),
	.svc-metric:nth-child(4) { border-top: 1px solid var(--border); }
	.svc-metric:nth-child(3) { border-left: 0; }
}
.svc-metric {
	padding: 1.75rem clamp(1rem, 2vw, 1.75rem);
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	border-left: 1px solid var(--border);
}
.svc-metric:first-child { border-left: 0; }
.svc-metric-value {
	font-family: var(--font-sans);
	font-weight: 300;
	font-size: clamp(1.75rem, 3.4vw, 2.75rem);
	letter-spacing: -0.02em;
	line-height: 1;
	color: var(--fg);
}
.svc-metric-value em {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	color: var(--accent);
}
.svc-metric-label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--fg-mute);
}
.svc-metric-label .diamond { color: var(--accent); font-size: 0.55em; transform: translateY(-1px); }

/* ---------- Footer SEO block (local SEO + service combinations) ---------*/
.footer-seo {
	background: var(--surface-canvas);
	border-top: 1px solid var(--border-subtle);
	padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}
.footer-seo-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.footer-seo-header {
	text-align: center;
	margin-bottom: clamp(2rem, 5vw, 3rem);
}
.footer-seo-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-family: var(--font-mono);
	font-size: 11.5px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--fg-mute);
	margin-bottom: 1rem;
}
.footer-seo-eyebrow .diamond { color: var(--accent); font-size: 0.55em; transform: translateY(-1px); }
.footer-seo h3 {
	color: var(--fg);
	font-size: clamp(1.5rem, 2.6vw, 2.1rem);
	font-weight: 400;
	letter-spacing: -0.028em;
	margin: 0;
	max-width: 32ch;
	margin-inline: auto;
	line-height: 1.15;
}
.footer-seo h3 em { font-family: var(--font-serif); font-style: italic; color: var(--accent); font-weight: 400; }
.footer-seo-grid {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-seo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-seo-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-seo-col h4 {
	color: var(--fg);
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin: 0 0 1rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--border-subtle);
}
.footer-seo-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}
.footer-seo-col li a {
	font-size: 13px;
	color: var(--fg-mute);
	line-height: 1.5;
	transition: color .2s ease;
	display: block;
}
.footer-seo-col li a:hover {
	color: var(--accent);
}

/* Geo highlight column (local SEO) — orange accent */
.footer-seo-col.is-geo h4 { color: var(--accent); }
.footer-seo-col.is-geo li a { color: var(--fg-dim); }
.footer-seo-col.is-geo li a:hover { color: var(--fg); }

/* ---------- Blog deep enhancements (v2.6) -----------------------------------*/

/* Reading progress bar — fixed under header, fills with scroll */
.reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: rgba(255,255,255,0.04);
	z-index: 999;
	pointer-events: none;
}
.reading-progress-bar {
	display: block;
	height: 100%;
	width: 100%;
	transform: scaleX(0);
	transform-origin: 0 50%;
	background: linear-gradient(90deg, var(--accent-deep) 0%, var(--accent) 50%, var(--accent-hover) 100%);
	transition: transform 80ms linear;
	will-change: transform;
}

/* Article layout: TOC sidebar + body column */
.article-layout {
	max-width: 1180px;
	margin: 0 auto;
	padding: clamp(3rem, 7vw, 5rem) var(--gutter);
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: start;
}
.article-layout .article-body {
	max-width: 720px;
	margin: 0;
	padding: 0;
}
@media (min-width: 1100px) {
	.article-layout {
		grid-template-columns: 240px minmax(0, 720px);
		justify-content: center;
		gap: 5rem;
	}
}

/* Table of contents */
.article-toc {
	font-family: var(--font-sans);
	order: -1;
}
@media (min-width: 1100px) {
	.article-toc {
		position: sticky;
		top: 6rem;
		max-height: calc(100vh - 8rem);
		overflow-y: auto;
		scrollbar-width: thin;
		scrollbar-color: var(--border-strong) transparent;
		padding-right: 0.5rem;
	}
	.article-toc::-webkit-scrollbar { width: 4px; }
	.article-toc::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 2px; }
}
.article-toc-inner {
	border-left: 1px solid var(--border-subtle);
	padding-left: 1.25rem;
}
.article-toc-eyebrow {
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-size: 10.5px;
	font-weight: 500;
	color: var(--fg-mute);
	margin: 0 0 1.25rem;
}
.article-toc-list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: none;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}
.article-toc-list li::before { content: none; }
.article-toc-list li {
	display: block;
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 1.45;
}
.article-toc-list a {
	display: grid;
	grid-template-columns: 32px 1fr;
	gap: 0.6rem;
	align-items: baseline;
	color: var(--fg-mute);
	text-decoration: none;
	transition: color .2s ease;
	padding: 0.2rem 0;
	border-left: 2px solid transparent;
	margin-left: -1.25rem;
	padding-left: calc(1.25rem - 2px);
}
.article-toc-list a:hover { color: var(--fg); text-decoration: none; }
.article-toc-list .toc-num {
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.18em;
	font-weight: 500;
	color: var(--fg-mute);
	text-transform: uppercase;
	transition: color .2s ease;
}
.article-toc-list .toc-text {
	font-size: 13.5px;
	line-height: 1.45;
}
.article-toc-list li.is-active a {
	color: var(--fg);
	border-left-color: var(--accent);
}
.article-toc-list li.is-active .toc-num,
.article-toc-list li.is-active .toc-text { color: var(--accent); }
.article-toc-meta {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border-subtle);
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--fg-mute);
}

/* Mobile: collapse TOC into a <details>-style block above body */
@media (max-width: 1099.98px) {
	.article-toc {
		max-width: 720px;
		margin: 0 auto;
		width: 100%;
	}
	.article-toc-inner {
		background: var(--surface-card);
		border: 1px solid var(--border);
		border-left: 1px solid var(--border);
		border-radius: var(--radius);
		padding: 1.25rem 1.5rem;
	}
}

/* Key takeaways box */
.takeaways-box {
	background: var(--surface-card);
	border: 1px solid var(--border);
	border-left: 2px solid var(--accent);
	border-radius: var(--radius);
	padding: 1.75rem 2rem;
	margin: 0 0 2.5rem;
}
.takeaways-box .takeaways-eyebrow {
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-size: 11px;
	font-weight: 500;
	color: var(--accent);
	margin: 0 0 0.85rem;
	display: block;
}
.takeaways-box .takeaways-intro {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: clamp(1.05rem, 1.4vw, 1.2rem);
	line-height: 1.45;
	color: var(--fg);
	margin: 0 0 1.1rem;
	font-weight: 400;
}
.takeaways-box ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.takeaways-box ul li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--fg-dim);
	margin: 0 0 0.65rem;
	padding: 0;
}
.takeaways-box ul li:last-child { margin-bottom: 0; }
.takeaways-box ul li::before {
	content: "\25C6";
	color: var(--accent);
	font-size: 0.7rem;
	margin-top: 0.45rem;
	flex-shrink: 0;
}
.takeaways-box ul li strong { color: var(--fg); font-weight: 600; }

/* Pull-quote — the editorial money-shot */
.article-body .article-pullquote,
.article-pullquote {
	margin: 4rem auto;
	padding: 0;
	background: none;
	border: none;
	border-left: none;
	border-radius: 0;
	max-width: 22ch;
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(1.8rem, 4vw, 2.75rem);
	line-height: 1.15;
	color: var(--accent);
	letter-spacing: -0.015em;
	text-align: left;
	position: relative;
}
.article-body .article-pullquote::before {
	content: "\201C";
	display: block;
	font-family: var(--font-serif);
	font-style: normal;
	color: var(--accent);
	font-size: 3.5rem;
	line-height: 0.6;
	margin-bottom: 1rem;
	opacity: 0.55;
}
.article-body .article-pullquote cite,
.article-pullquote cite {
	display: block;
	margin-top: 1.25rem;
	font-family: var(--font-mono);
	font-style: normal;
	font-size: 10.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--fg-mute);
	font-weight: 500;
}

/* Author byline card */
.article-author-card {
	margin: 4rem 0 0;
	padding: 1.5rem;
	background: var(--surface-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 1.25rem;
	align-items: start;
}
.article-author-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--surface-elev);
}
.article-author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.article-author-content { min-width: 0; }
.article-author-eyebrow {
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-size: 10.5px;
	font-weight: 500;
	color: var(--fg-mute);
	margin: 0 0 0.4rem;
}
.article-author-name {
	font-family: var(--font-sans);
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--fg);
	letter-spacing: -0.018em;
	margin: 0 0 0.5rem;
	line-height: 1.2;
}
.article-author-name em {
	font-family: var(--font-serif);
	font-style: italic;
	color: var(--accent);
	font-weight: 400;
}
.article-author-bio {
	font-size: 14px;
	line-height: 1.55;
	color: var(--fg-dim);
	margin: 0 0 0.85rem;
}
.article-author-socials {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}
.article-author-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--surface-elev);
	border: 1px solid var(--border);
	color: var(--fg-mute);
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.article-author-socials a:hover {
	color: var(--accent);
	border-color: var(--accent);
	background: var(--accent-soft);
}
.article-author-socials svg {
	width: 14px;
	height: 14px;
}

@media (max-width: 600px) {
	.article-author-card {
		grid-template-columns: 64px 1fr;
		padding: 1.25rem;
	}
	.article-author-avatar { width: 64px; height: 64px; }
}

/* ==========================================================================
   Service inner deep sections (v2.6)
   Three new editorial blocks bolted onto the service.php template :
   01. .svc-process            — 4-step engineered timeline (Audit / Plan / Build / Iterer)
   02. .svc-capabilities       — 3-column capability cards with bullets + accent stat
   03. .svc-mini-faq           — 3-question pragmatic FAQ matching .faq-item base styles
   Palette : --surface-canvas / --surface-card / --surface-elev backgrounds,
             --accent warm orange accents, Instrument Serif italic emphasis.
   ========================================================================== */

/* ---------- 01. Process timeline ------------------------------------------*/
.svc-process { background: var(--surface-canvas); position: relative; }
.svc-process::before {
	content: "";
	position: absolute; inset: 0;
	opacity: 0.35;
	background-image:
		linear-gradient(to right, var(--surface-line) 1px, transparent 1px),
		linear-gradient(to bottom, var(--surface-line) 1px, transparent 1px);
	background-size: 96px 96px;
	-webkit-mask-image: radial-gradient(ellipse 60% 60% at 20% 20%, black 0%, transparent 70%);
	        mask-image: radial-gradient(ellipse 60% 60% at 20% 20%, black 0%, transparent 70%);
	pointer-events: none;
}
.svc-process .container { position: relative; z-index: 1; }

.svc-process-head { max-width: 56em; margin: 0 0 clamp(2.5rem, 4vw, 4rem); }
.svc-process-head h2 { margin-top: 1rem; }
.svc-process-lede {
	margin-top: 1.5rem;
	color: var(--fg-dim);
	max-width: 52ch;
	font-size: clamp(1rem, 1.15vw, 1.125rem);
	line-height: 1.6;
}

.svc-process-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .svc-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .svc-process-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.svc-process-step {
	background: var(--surface-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: clamp(1.5rem, 2vw, 2rem);
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: border-color .25s ease, transform .25s var(--ease), background .25s ease;
	min-height: 18rem;
}
.svc-process-step.is-alt { background: var(--surface-elev); }
.svc-process-step:hover {
	border-color: var(--accent);
	transform: translateY(-3px);
	background: var(--surface-elev-2);
}
.svc-process-step::after {
	content: "";
	position: absolute;
	top: 0; left: clamp(1.5rem, 2vw, 2rem);
	width: 32px; height: 2px;
	background: var(--accent);
	transform: translateY(-1px);
	opacity: 0.85;
}

.svc-process-step-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
}
.svc-process-num {
	font-family: var(--font-mono);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	color: var(--accent);
	text-transform: uppercase;
}
.svc-process-label {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	color: var(--fg-faint);
	text-transform: uppercase;
}

.svc-process-title {
	font-family: var(--font-sans);
	font-weight: 500;
	font-size: clamp(1.125rem, 1.5vw, 1.35rem);
	line-height: 1.25;
	letter-spacing: -0.018em;
	color: var(--fg);
	margin: 0.25rem 0 0;
	text-wrap: balance;
}
.svc-process-copy {
	margin: 0;
	color: var(--fg-dim);
	font-size: 0.95rem;
	line-height: 1.65;
}

/* ---------- 02. Capabilities band -----------------------------------------*/
.svc-capabilities { background: var(--surface-elev); }
.svc-capabilities-head { max-width: 60em; margin: 0 0 clamp(2.5rem, 4vw, 4rem); }
.svc-capabilities-head h2 { margin-top: 1rem; }
.svc-capabilities-lede {
	margin-top: 1.5rem;
	color: var(--fg-dim);
	max-width: 54ch;
	font-size: clamp(1rem, 1.15vw, 1.125rem);
	line-height: 1.6;
}

.svc-capabilities-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
}
@media (min-width: 768px)  { .svc-capabilities-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .svc-capabilities-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

.svc-capability-card {
	background: var(--surface-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: clamp(1.75rem, 2.2vw, 2.25rem);
	display: flex;
	flex-direction: column;
	gap: 1.35rem;
	position: relative;
	overflow: hidden;
	transition: border-color .25s ease, transform .25s var(--ease);
}
.svc-capability-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, var(--accent) 0%, transparent 60%);
	opacity: 0.85;
}
.svc-capability-card:hover {
	border-color: var(--border-strong);
	transform: translateY(-3px);
}

.svc-capability-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem;
}
.svc-capability-num {
	font-family: var(--font-mono);
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	color: var(--accent);
	text-transform: uppercase;
}
.svc-capability-tag {
	font-family: var(--font-mono);
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	color: var(--fg-faint);
	text-transform: uppercase;
}

.svc-capability-title {
	font-family: var(--font-sans);
	font-size: clamp(1.125rem, 1.5vw, 1.35rem);
	font-weight: 500;
	letter-spacing: -0.018em;
	line-height: 1.25;
	color: var(--fg);
	margin: 0;
	text-wrap: balance;
}

.svc-capability-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}
.svc-capability-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: var(--fg-dim);
	font-size: 0.95rem;
	line-height: 1.6;
}
.svc-capability-bullet {
	flex-shrink: 0;
	width: 6px;
	height: 6px;
	margin-top: 0.55rem;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 3px rgba(233, 80, 24, 0.14);
}

.svc-capability-stat {
	margin-top: auto;
	padding-top: 1.25rem;
	border-top: 1px solid var(--border-subtle);
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.svc-capability-stat-value {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	letter-spacing: -0.02em;
	color: var(--accent);
	line-height: 1.05;
}
.svc-capability-stat-note {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	color: var(--fg-mute);
	text-transform: uppercase;
}

/* ---------- 03. Mini-FAQ (reuses .faq-item, adds editorial layout) --------*/
.svc-mini-faq { background: var(--surface-canvas); }
.svc-mini-faq-grid {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .svc-mini-faq-grid { grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; } }

.svc-mini-faq-intro h2 {
	margin-top: 1rem;
	font-size: clamp(1.875rem, 3vw, 2.75rem);
}
.svc-mini-faq-lede {
	margin-top: 1.5rem;
	color: var(--fg-dim);
	max-width: 36em;
	font-size: 1rem;
	line-height: 1.7;
}
.svc-mini-faq-intro .btn { margin-top: 2rem; }

/* Override the legacy .faq-item palette so it works on the dark canvas */
.svc-mini-faq-list { list-style: none; margin: 0; padding: 0; }
.svc-mini-faq-list .faq-item { border-bottom: 1px solid var(--border); }
.svc-mini-faq-list .faq-item:first-child { border-top: 1px solid var(--border); }
.svc-mini-faq-list .faq-item summary {
	color: var(--fg);
	font-family: var(--font-sans);
	font-weight: 500;
	font-size: 1.05rem;
	letter-spacing: -0.012em;
	padding: 1.5rem 0;
}
.svc-mini-faq-list .faq-item summary:hover { color: var(--accent); }
.svc-mini-faq-list .faq-chev { color: var(--fg-faint); }
.svc-mini-faq-list .faq-item details[open] .faq-chev { color: var(--accent); }
.svc-mini-faq-list .faq-answer p {
	color: var(--fg-dim);
	font-size: 0.98rem;
	line-height: 1.7;
	margin: 0;
	max-width: 68ch;
}

/* ---------- Mobile guard --------------------------------------------------*/
@media (max-width: 768px) {
	.svc-process,
	.svc-capabilities,
	.svc-mini-faq { padding: clamp(3.5rem, 10vw, 5rem) 0; }
	.svc-process-step { min-height: 0; padding: 1.5rem; }
	.svc-capability-card { padding: 1.5rem; }
	.svc-mini-faq-intro .btn { width: 100%; justify-content: center; }
}


/* ---------- Article figure (inline editorial infographics) v2.7 ---------- */
.article-figure {
	margin: 3rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}
.article-figure img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-subtle);
	background: var(--surface-card);
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
}
.article-figure figcaption {
	font-family: var(--font-mono);
	font-size: 11.5px;
	color: var(--fg-mute);
	line-height: 1.55;
	letter-spacing: 0.04em;
	max-width: 62ch;
	padding-left: 0.85rem;
	border-left: 1px solid var(--accent);
}

/* ---------- Contact CF7 admin warning (v2.7.2) -------------------------- */
.contact-cf7-warning {
	margin: 0 0 1.75rem;
	padding: 1rem 1.25rem;
	background: rgba(233, 80, 24, 0.10);
	border: 1px solid var(--accent);
	border-left-width: 3px;
	border-radius: var(--radius);
	color: var(--fg);
	font-size: 0.9rem;
	line-height: 1.55;
}
.contact-cf7-warning strong { color: var(--accent); display: inline; margin: 0; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; }

/* ============================================================================
   A11y v2.9 — Focus, skip-link reveal, reduced-motion (WCAG 2.2 AA)
   Auditor findings C1, C2, C7 — single block, easy to extend.
   ========================================================================== */

/* Global focus indicator — visible 2px accent ring for every focusable
   element. WCAG 2.4.7 Focus Visible (A) + 2.4.11 Focus Not Obscured (AA, 2.2). */
:where(a, button, summary, input, select, textarea, [tabindex]):focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
	border-radius: 4px;
	box-shadow: 0 0 0 4px rgba(233, 80, 24, 0.20);
}
/* Don't add the outline to <button> that is already a circle (menu-toggle) — let the box-shadow do the job */
button.menu-toggle:focus-visible { outline-offset: 0; border-radius: 50%; }

/* Skip-to-content link — must REVEAL on keyboard focus. WCAG 2.4.1 Bypass Blocks (A). */
.sr-only:focus,
.sr-only:focus-visible {
	position: fixed;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	clip: auto;
	clip-path: none;
	margin: 0;
	padding: 0.75rem 1.1rem;
	background: var(--accent);
	color: var(--surface-canvas);
	font-family: var(--font-sans);
	font-weight: 500;
	font-size: 0.95rem;
	text-decoration: none;
	border-radius: var(--radius-sm);
	z-index: 10000;
	white-space: nowrap;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

/* Honor `prefers-reduced-motion`. Stops the pulseDot infinite animation,
   the live-pulse on the available badge, the IntersectionObserver fade-up,
   and smooth-scroll anchor jumps. WCAG 2.2.2 + 2.3.3. */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
	html {
		scroll-behavior: auto;
	}
	.reading-progress {
		transition: none !important;
	}
}

/* ============================================================================
   v2.10 — Sector landing pages (Webtures-style "AI in X" / "Sector" pattern)
   Used by page-templates/sector.php for /commerces-locaux/ and future verticals.
   ========================================================================== */

.sector-section-head {
	max-width: 56em;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.sector-section-head h2 {
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 400;
	letter-spacing: -0.028em;
	line-height: 1.1;
	color: var(--fg);
	margin: 1rem 0 0;
	max-width: 24ch;
	text-wrap: balance;
}
.sector-section-head h2 em {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	color: var(--accent);
}
.sector-section-lede {
	margin-top: 1.25rem;
	color: var(--fg-mute);
	font-size: 1.05rem;
	line-height: 1.55;
	max-width: 52ch;
}

/* ---------- Sector audiences (typology cards) ---------- */
.sector-audiences-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
}
@media (min-width: 768px) { .sector-audiences-grid { grid-template-columns: repeat(2, 1fr); } }
.sector-audience-card {
	padding: 1.75rem;
	background: var(--surface-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	transition: border-color .25s ease, transform .25s var(--ease);
}
.sector-audience-card:hover {
	border-color: var(--border-strong);
	transform: translateY(-2px);
}
.sector-audience-num {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 2rem;
	font-weight: 400;
	color: var(--accent);
	line-height: 1;
	margin-bottom: 0.85rem;
}
.sector-audience-card h3 {
	font-family: var(--font-sans);
	font-size: 1.15rem;
	font-weight: 500;
	letter-spacing: -0.018em;
	color: var(--fg);
	margin: 0 0 0.6rem;
}
.sector-audience-card p {
	color: var(--fg-dim);
	font-size: 0.94rem;
	line-height: 1.55;
	margin: 0;
}

/* ---------- Sector levers (6 capability cards) ---------- */
.sector-levers-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
}
@media (min-width: 640px) { .sector-levers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sector-levers-grid { grid-template-columns: repeat(3, 1fr); } }
.sector-lever-card {
	padding: 1.75rem;
	background: var(--surface-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	position: relative;
	overflow: hidden;
}
.sector-lever-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 32px; height: 2px;
	background: var(--accent);
}
.sector-lever-head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
}
.sector-lever-num {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent);
}
.sector-lever-card h3 {
	font-family: var(--font-sans);
	font-size: 1.1rem;
	font-weight: 500;
	letter-spacing: -0.018em;
	color: var(--fg);
	margin: 0 0 0.65rem;
	line-height: 1.25;
}
.sector-lever-card p {
	color: var(--fg-dim);
	font-size: 0.93rem;
	line-height: 1.55;
	margin: 0;
}

/* ============================================================================
   Light mode — surface + text override for hardcoded white sections (v2.10.1)
   These sections were originally built for dark canvas with color: #fff and
   rgba(255,255,255,X) values. In light mode they bleed white-on-white. We
   flip them to charcoal-on-cream here without touching the originals.
   ========================================================================== */

/* "Dark" hero/section backgrounds — keep their charcoal feel BUT light mode
   uses the lifted canvas tone so text stays readable */
:root[data-theme="light"] .section-dark,
:root[data-theme="light"] .process-section,
:root[data-theme="light"] .cta-editorial-section,
:root[data-theme="light"] .counters-section,
:root[data-theme="light"] .differentiators-section,
:root[data-theme="light"] .article-hero,
:root[data-theme="light"] .service-hero,
:root[data-theme="light"] .page-hero,
:root[data-theme="light"] .hero,
:root[data-theme="light"] .growth-program-section,
:root[data-theme="light"] .performance-section,
:root[data-theme="light"] .disciplines-section {
	background: var(--surface-canvas);
	color: var(--fg);
}

/* Headings: anything originally white → charcoal in light mode */
:root[data-theme="light"] .section-dark h1,
:root[data-theme="light"] .section-dark h2,
:root[data-theme="light"] .section-dark h3,
:root[data-theme="light"] .process-section h1,
:root[data-theme="light"] .process-section h2,
:root[data-theme="light"] .process-section h3,
:root[data-theme="light"] .process-header h2,
:root[data-theme="light"] .performance-header h2,
:root[data-theme="light"] .cta-editorial h2,
:root[data-theme="light"] .cta-banner h2,
:root[data-theme="light"] .article-hero h1,
:root[data-theme="light"] .service-hero h1,
:root[data-theme="light"] .page-hero h1,
:root[data-theme="light"] .hero h1,
:root[data-theme="light"] .disciplines-preview-title-mini,
:root[data-theme="light"] .disciplines-preview-h,
:root[data-theme="light"] .growth-program-title,
:root[data-theme="light"] .performance-card-head,
:root[data-theme="light"] .performance-card-index,
:root[data-theme="light"] .performance-card-value,
:root[data-theme="light"] .display-h1,
:root[data-theme="light"] .display-h2,
:root[data-theme="light"] .display-xl,
:root[data-theme="light"] .article-back,
:root[data-theme="light"] .counter-value {
	color: var(--fg);
}
/* Performance card arrow — only the active card showed it on light theme;
   tint the inactive arrows so they read as muted but visible. */
:root[data-theme="light"] .performance-card-arrow { color: var(--fg-faint); }
:root[data-theme="light"] .performance-card.is-active .performance-card-arrow { color: var(--accent); }
/* Italic accents stay orange — orange works on both canvases */
:root[data-theme="light"] .section-dark h1 em,
:root[data-theme="light"] .section-dark h2 em,
:root[data-theme="light"] .process-section h2 em,
:root[data-theme="light"] .cta-editorial h2 em,
:root[data-theme="light"] .article-hero h1 em,
:root[data-theme="light"] .service-hero h1 em,
:root[data-theme="light"] .page-hero h1 em,
:root[data-theme="light"] .hero h1 em,
:root[data-theme="light"] .display-italic,
:root[data-theme="light"] .growth-program-title em,
:root[data-theme="light"] .counter-value {
	color: var(--accent);
}
/* Counter italic numbers — stay orange */
:root[data-theme="light"] .counter-value { color: var(--accent); }
:root[data-theme="light"] .counter-value sup { color: var(--fg); }

/* Body paragraphs that were rgba(255,255,255,0.72-0.85) → fg-dim charcoal-74% */
:root[data-theme="light"] .section-dark p,
:root[data-theme="light"] .process-section p,
:root[data-theme="light"] .process-header p,
:root[data-theme="light"] .performance-header p,
:root[data-theme="light"] .cta-editorial-side p,
:root[data-theme="light"] .cta-banner p,
:root[data-theme="light"] .hero-lead,
:root[data-theme="light"] .page-hero p,
:root[data-theme="light"] .article-hero p,
:root[data-theme="light"] .service-hero-lede,
:root[data-theme="light"] .growth-program-side p,
:root[data-theme="light"] .growth-program-side,
:root[data-theme="light"] .disciplines-preview-lead,
:root[data-theme="light"] .disciplines-preview-body,
:root[data-theme="light"] .disciplines-list-body,
:root[data-theme="light"] .process-step-output,
:root[data-theme="light"] .process-step-desc,
:root[data-theme="light"] .process-step p,
:root[data-theme="light"] .performance-card-desc,
:root[data-theme="light"] .performance-card p,
:root[data-theme="light"] .hero-strip-inner,
:root[data-theme="light"] .hero-strip-langs span,
:root[data-theme="light"] .hero-badge,
:root[data-theme="light"] .article-meta,
:root[data-theme="light"] .diff-item p { color: var(--fg-dim); }

/* Em inside paragraphs — keep fg charcoal */
:root[data-theme="light"] .hero-lead em,
:root[data-theme="light"] .page-hero p em,
:root[data-theme="light"] .cta-editorial-side p em,
:root[data-theme="light"] .growth-program-side p em,
:root[data-theme="light"] .disciplines-preview-lead em { color: var(--fg); }

/* Muted labels (rgba 0.40-0.55 originally) → fg-mute */
:root[data-theme="light"] .counter-label,
:root[data-theme="light"] .process-step-num-label,
:root[data-theme="light"] .performance-card-unit,
:root[data-theme="light"] .performance-card-tag,
:root[data-theme="light"] .disciplines-preview-metric,
:root[data-theme="light"] .disciplines-tab,
:root[data-theme="light"] .disciplines-list-num,
:root[data-theme="light"] .disciplines-list-arrow,
:root[data-theme="light"] .hero-stat-label,
:root[data-theme="light"] .article-meta .cat,
:root[data-theme="light"] .footer-lang-pill {
	color: var(--fg-mute);
}

/* Cards & pills that have rgba(255,255,255,0.06-0.12) backgrounds — flip them */
:root[data-theme="light"] .process-step,
:root[data-theme="light"] .performance-card,
:root[data-theme="light"] .disciplines-preview,
:root[data-theme="light"] .disciplines-tab,
:root[data-theme="light"] .growth-stat,
:root[data-theme="light"] .skill-pill,
:root[data-theme="light"] .footer-lang-pill {
	background: var(--surface-card);
	border-color: var(--border-subtle);
}
:root[data-theme="light"] .disciplines-tab.is-active {
	background: var(--accent);
	color: var(--surface-canvas);
	border-color: var(--accent);
}
:root[data-theme="light"] .disciplines-tab:hover { border-color: var(--accent); color: var(--accent); }

/* Accent glow bgs on dark-assumed sections — soften so they don't paint heavy
   blue/orange smudges over the cream canvas in light mode */
:root[data-theme="light"] .cta-editorial-section::after,
:root[data-theme="light"] .differentiators-section::after,
:root[data-theme="light"] .service-hero::after,
:root[data-theme="light"] .page-hero::after,
:root[data-theme="light"] .article-hero::after,
:root[data-theme="light"] .hero::after,
:root[data-theme="light"] .growth-program-section::after,
:root[data-theme="light"] .hero-glow-2 {
	opacity: 0.18;
}
:root[data-theme="light"] .cta-editorial-section::before,
:root[data-theme="light"] .differentiators-section::before,
:root[data-theme="light"] .service-hero::before,
:root[data-theme="light"] .page-hero::before,
:root[data-theme="light"] .article-hero::before,
:root[data-theme="light"] .hero::before,
:root[data-theme="light"] .growth-program-section::before { opacity: 0.30; }

/* Hero stat card on light canvas — was rgba(15,15,15,0.92), needs cream variant */
:root[data-theme="light"] .hero-stat {
	background: rgba(255, 255, 255, 0.94);
	border-color: var(--border);
	box-shadow: 0 18px 40px rgba(11, 11, 11, 0.08);
}
:root[data-theme="light"] .hero-stat-label { color: var(--fg-mute); }
:root[data-theme="light"] .hero-stat-value { color: var(--accent); }
:root[data-theme="light"] .hero-stat-value sup { color: var(--fg); }

/* Blog CTA banner — was navy-deep + #fff text; flip to surface-card in light */
:root[data-theme="light"] .websy-cta-banner {
	background: var(--surface-card) !important;
	color: var(--fg) !important;
	border: 1px solid var(--border);
}
:root[data-theme="light"] .websy-cta-banner h2 { color: var(--fg) !important; }
:root[data-theme="light"] .websy-cta-banner .btn-primary {
	color: var(--surface-canvas) !important;
	background: var(--accent) !important;
}

/* Process step on-canvas marker dots — keep orange */
:root[data-theme="light"] .process-step-dot,
:root[data-theme="light"] .process-step::before {
	background: var(--accent);
	box-shadow: 0 0 0 3px rgba(233, 80, 24, 0.18);
}

/* Service-hero image, page-hero p strong, hero strip text */
:root[data-theme="light"] .hero-strip { border-top-color: var(--border-subtle); }
:root[data-theme="light"] .hero-strip-inner { color: var(--fg-mute); }
:root[data-theme="light"] .hero-strip-langs { color: var(--fg-dim); }

/* ============================================================================
   v2.10.2 — 404 page + disciplines preview deliverables (light/dark both)
   ========================================================================== */

/* 404 page — token-only, works on both themes */
.page-404 {
	min-height: 70vh;
	display: flex;
	align-items: center;
	background: var(--surface-canvas);
	position: relative;
	overflow: hidden;
}
.page-404::before {
	content: "";
	position: absolute; inset: 0;
	opacity: 0.30;
	background-image:
		linear-gradient(to right, var(--surface-line) 1px, transparent 1px),
		linear-gradient(to bottom, var(--surface-line) 1px, transparent 1px);
	background-size: 112px 112px;
	-webkit-mask-image: radial-gradient(ellipse 50% 60% at 50% 50%, black 30%, transparent 80%);
	mask-image: radial-gradient(ellipse 50% 60% at 50% 50%, black 30%, transparent 80%);
	pointer-events: none;
}
.page-404 .container { text-align: center; position: relative; z-index: 1; }
.page-404-eyebrow {
	color: var(--accent);
	font-family: var(--font-mono);
	font-size: 11.5px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
	justify-content: center;
}
.page-404-title {
	font-family: var(--font-sans);
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 300;
	letter-spacing: -0.035em;
	line-height: 1;
	color: var(--fg);
	margin: 0 0 1.5rem;
}
.page-404-title em {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	color: var(--accent);
}
.page-404-lede {
	color: var(--fg-dim);
	font-size: 1.1rem;
	max-width: 42em;
	margin: 0 auto 2rem;
	line-height: 1.6;
}
.page-404-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

/* Disciplines preview 2x2 deliverables grid — light mode fix */
:root[data-theme="light"] .disciplines-preview-deliverables {
	background: var(--border);
	border-color: var(--border-subtle);
}
:root[data-theme="light"] .deliverable-cell { background: var(--surface-card); }
:root[data-theme="light"] .deliverable-cell-text { color: var(--fg); }
:root[data-theme="light"] .deliverable-cell-num { color: var(--fg-mute); }

/* Disciplines preview metric block — light mode */
:root[data-theme="light"] .disciplines-preview-metric {
	background: var(--surface-elev);
	border-color: var(--border-subtle);
}
:root[data-theme="light"] .metric-block-label { color: var(--fg-mute); }
:root[data-theme="light"] .metric-block-value { color: var(--accent); }
:root[data-theme="light"] .metric-block-sub { color: var(--fg-mute); }

/* Chip pills inside disciplines-preview-tags */
:root[data-theme="light"] .chip {
	background: rgba(11, 11, 11, 0.04);
	color: var(--fg-mute);
	border-color: var(--border-subtle);
}

/* disciplines-preview outer panel */
:root[data-theme="light"] .disciplines-preview {
	background: var(--surface-card);
	border-color: var(--border-subtle);
	box-shadow: 0 1px 3px rgba(11, 11, 11, 0.04);
}
:root[data-theme="light"] .disciplines-preview-head,
:root[data-theme="light"] .disciplines-preview-h,
:root[data-theme="light"] .disciplines-preview-title-mini { color: var(--fg); }
:root[data-theme="light"] .disciplines-preview-lead,
:root[data-theme="light"] .disciplines-preview-body { color: var(--fg-dim); }
:root[data-theme="light"] .disciplines-preview .live-dot { background: var(--accent); }
:root[data-theme="light"] .disciplines-preview .live-eyebrow { color: var(--fg-mute); }

/* ============================================================
   Service / sector hero — coded mockup card
   Replaces the static <img> with a live-feeling UI panel
   (top bar / hero block / KPI row / list rows / footer bar).
   ============================================================ */
.service-hero-image--mockup {
	aspect-ratio: auto;
	background: var(--surface-card);
	border: 1px solid var(--border);
	padding: 0;
	overflow: hidden;
}
.service-hero-image--mockup::after { display: none; }

.svc-mockup {
	display: flex;
	flex-direction: column;
	width: 100%;
	font-family: var(--font-sans);
	color: var(--fg);
	background:
		linear-gradient(to right, var(--surface-line) 1px, transparent 1px) 0 0 / 56px 56px,
		linear-gradient(to bottom, var(--surface-line) 1px, transparent 1px) 0 0 / 56px 56px,
		var(--surface-card);
}

/* ─── Top / bottom mono caps bar ──────────────────────────── */
.svc-mockup-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 0.85rem 1.25rem;
	font-family: var(--font-mono);
	font-size: 0.65rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.svc-mockup-bar--top { border-bottom: 1px solid var(--border-subtle); }
.svc-mockup-bar--bot { border-top:    1px solid var(--border-subtle); }
.svc-mockup-bar-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--fg-mute);
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.svc-mockup-diamond { color: var(--accent); font-size: 0.55rem; transform: translateY(-1px); }

.svc-mockup-state {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--accent);
	font-weight: 500;
	white-space: nowrap;
}
.svc-mockup-state-dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 4px var(--accent-soft);
	flex: 0 0 7px;
}
.svc-mockup-arrow { margin-left: 0.3rem; }

/* ─── Hero block (chart label + big number + visual) ────── */
.svc-mockup-hero {
	padding: 1.5rem 1.5rem 1.25rem;
	color: var(--accent);
}
.svc-mockup-hero-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1rem;
}
.svc-mockup-hero-label {
	font-family: var(--font-mono);
	font-size: 0.6rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--fg-mute);
	padding: 0.35rem 0.6rem;
	background: var(--surface-elev);
	border-radius: 999px;
	white-space: nowrap;
}
.svc-mockup-hero-big {
	font-family: var(--font-sans);
	font-size: clamp(1.7rem, 2.6vw, 2.4rem);
	font-weight: 300;
	letter-spacing: -0.025em;
	color: var(--fg);
	line-height: 1;
	white-space: nowrap;
	display: inline-flex;
	align-items: baseline;
}
.svc-mockup-hero-suffix {
	font-family: var(--font-serif);
	font-style: italic;
	color: var(--accent);
	margin-left: 0.18em;
	font-size: 0.85em;
}
.svc-mockup-hero-vis {
	height: 110px;
	position: relative;
}
.svc-mockup-hero-vis svg { width: 100%; height: 100%; display: block; }

/* ─── Score visual (Lighthouse-style ring + sub metrics) ─── */
.svc-mockup-score {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1.25rem;
	align-items: center;
	height: 100%;
}
.svc-mockup-score-ring { width: 64px; height: 64px; }
.svc-mockup-score-sub {
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.65rem;
}
.svc-mockup-score-sub li { display: flex; flex-direction: column; gap: 0.2rem; }
.svc-mockup-score-label {
	font-family: var(--font-mono);
	font-size: 0.58rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--fg-mute);
}
.svc-mockup-score-val {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--fg);
}

/* ─── Split visual (stacked horizontal bar + legend) ────── */
.svc-mockup-split { display: flex; flex-direction: column; gap: 0.85rem; height: 100%; justify-content: center; }
.svc-mockup-split-bar {
	display: flex;
	height: 10px;
	border-radius: 999px;
	overflow: hidden;
	background: var(--surface-elev);
}
.svc-mockup-split-seg { display: block; height: 100%; }
.svc-mockup-split-seg--0 { background: var(--accent); }
.svc-mockup-split-seg--1 { background: rgba(233, 80, 24, 0.55); }
.svc-mockup-split-seg--2 { background: rgba(233, 80, 24, 0.28); }
.svc-mockup-split-legend {
	list-style: none; margin: 0; padding: 0;
	display: grid; gap: 0.3rem;
}
.svc-mockup-split-legend li {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.55rem;
	align-items: center;
	font-size: 0.7rem;
}
.svc-mockup-split-swatch {
	width: 8px; height: 8px;
	border-radius: 2px;
	display: inline-block;
}
.svc-mockup-split-name { color: var(--fg); }
.svc-mockup-split-pct {
	font-family: var(--font-mono);
	font-size: 0.62rem;
	letter-spacing: 0.12em;
	color: var(--fg-mute);
}

/* ─── Workflow nodes (3 chips with edges) ───────────────── */
.svc-mockup-nodes {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	height: 100%;
}
.svc-mockup-node {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.55rem 0.8rem;
	border: 1px solid var(--border);
	border-radius: 999px;
	font-family: var(--font-mono);
	font-size: 0.65rem;
	letter-spacing: 0.16em;
	color: var(--fg);
	background: var(--surface-elev);
}
.svc-mockup-node-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 3px var(--accent-soft);
}
.svc-mockup-nodes-edge {
	flex: 1;
	height: 1px;
	background:
		linear-gradient(to right, var(--accent) 0, var(--accent) 12px, transparent 12px, transparent 18px) 0 0 / 18px 1px repeat-x;
	min-width: 14px;
}

/* ─── Pin visual (GBP-style radius + rating) ────────────── */
.svc-mockup-pin {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	align-items: center;
	gap: 0.5rem;
	height: 100%;
}
.svc-mockup-pin-radius { width: 100%; height: 110px; }
.svc-mockup-pin-meta {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}
.svc-mockup-pin-rating {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--fg);
	letter-spacing: -0.01em;
}
.svc-mockup-pin-reviews {
	font-family: var(--font-mono);
	font-size: 0.62rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--fg-mute);
}

/* ─── KPI row (3 cells) ─────────────────────────────────── */
.svc-mockup-kpis {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top:    1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
	background: var(--surface-soft);
}
.svc-mockup-kpi {
	padding: 0.9rem 1rem;
	border-right: 1px solid var(--border-subtle);
	display: flex;
	flex-direction: column;
	gap: 0.32rem;
	min-width: 0;
}
.svc-mockup-kpi:last-child { border-right: none; }
.svc-mockup-kpi-label {
	font-family: var(--font-mono);
	font-size: 0.58rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--fg-mute);
}
.svc-mockup-kpi-value {
	font-size: 1.15rem;
	font-weight: 500;
	color: var(--fg);
	letter-spacing: -0.018em;
}
.svc-mockup-kpi-delta {
	font-family: var(--font-mono);
	font-size: 0.66rem;
	letter-spacing: 0.04em;
}
.svc-mockup-kpi-delta--up        { color: #5BD27A; }
.svc-mockup-kpi-delta--good-down { color: #5BD27A; }
.svc-mockup-kpi-delta--down      { color: var(--accent); }

/* ─── List rows (4 lines : title + meta + 2 nums + pill) ──── */
.svc-mockup-rows { list-style: none; margin: 0; padding: 0; }
.svc-mockup-row {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) auto auto auto;
	gap: 0.85rem;
	align-items: center;
	padding: 0.75rem 1.25rem;
	border-bottom: 1px solid var(--border-subtle);
}
.svc-mockup-row:last-child { border-bottom: none; }
.svc-mockup-row-text {
	display: flex;
	flex-direction: column;
	gap: 0.18rem;
	min-width: 0;
}
.svc-mockup-row-title {
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--fg);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.svc-mockup-row-meta {
	font-family: var(--font-mono);
	font-size: 0.58rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--fg-mute);
}
.svc-mockup-row-a, .svc-mockup-row-b {
	font-variant-numeric: tabular-nums;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--fg);
	text-align: right;
	white-space: nowrap;
}
.svc-mockup-row-b { color: var(--fg-mute); font-weight: 400; }

.svc-mockup-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.3rem 0.65rem;
	border-radius: 999px;
	border: 1px solid var(--border);
	font-family: var(--font-mono);
	font-size: 0.58rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--fg-mute);
	white-space: nowrap;
}
.svc-mockup-pill-dot {
	width: 5px; height: 5px;
	border-radius: 50%;
	background: currentColor;
}
.svc-mockup-pill--active    { color: #5BD27A; border-color: rgba(91, 210, 122, 0.32); }
.svc-mockup-pill--optimiser { color: var(--accent); border-color: rgba(233, 80, 24, 0.40); background: var(--accent-soft); }
.svc-mockup-pill--tracking  { color: var(--fg-mute); }

/* ─── Responsive collapse ───────────────────────────────── */
@media (max-width: 560px) {
	.svc-mockup-hero { padding: 1.2rem 1rem 1rem; }
	.svc-mockup-row { grid-template-columns: minmax(0, 1fr) auto; gap: 0.5rem; padding: 0.65rem 1rem; }
	.svc-mockup-row-a, .svc-mockup-row-b { display: none; }
	.svc-mockup-bar { padding: 0.7rem 1rem; font-size: 0.58rem; }
	.svc-mockup-kpi { padding: 0.7rem 0.85rem; }
	.svc-mockup-kpi-value { font-size: 1rem; }
}

/* ─── Light theme adjustments ───────────────────────────── */
:root[data-theme="light"] .svc-mockup {
	background:
		linear-gradient(to right, var(--surface-line) 1px, transparent 1px) 0 0 / 56px 56px,
		linear-gradient(to bottom, var(--surface-line) 1px, transparent 1px) 0 0 / 56px 56px,
		var(--surface-card);
}
:root[data-theme="light"] .svc-mockup-kpi-delta--up,
:root[data-theme="light"] .svc-mockup-kpi-delta--good-down,
:root[data-theme="light"] .svc-mockup-pill--active { color: #1E8E45; border-color: rgba(30, 142, 69, 0.34); }
:root[data-theme="light"] .svc-mockup-node { background: var(--surface-elev); }

/* ============================================================
   Menu badge — "GRATUIT" pill on the Guide menu item
   ============================================================ */
.menu-item-guide > a {
	display: inline-flex !important;
	align-items: center;
	gap: 0.5rem;
}
.menu-badge {
	display: inline-flex;
	align-items: center;
	font-family: var(--font-mono);
	font-size: 0.55rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 0.18rem 0.42rem;
	border-radius: 999px;
	line-height: 1;
	white-space: nowrap;
}
.menu-badge-gratuit {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 0 0 3px var(--accent-soft);
}
:root[data-theme="light"] .menu-badge-gratuit {
	background: var(--accent);
	color: #fff;
}
/* "POUR DÉBUTER" badge — outlined accent pill, gentler than solid. */
.menu-badge-debut {
	background: transparent;
	color: var(--accent);
	border: 1px solid var(--accent);
}
:root[data-theme="light"] .menu-badge-debut {
	background: transparent;
	color: var(--accent);
	border: 1px solid var(--accent);
}
/* Mobile submenu : drop the badge styling to plain text — already inside an obvious link. */
.mobile-menu .menu-badge {
	background: transparent !important;
	border: 1px solid var(--accent);
	color: var(--accent);
	margin-left: 0.55rem;
}

/* Topbar utility nav separators */
.topbar-utility-nav { gap: 0.75rem !important; }
.topbar-sep { color: var(--fg-faint); font-size: 0.65rem; }

/* ============================================================
   Language switcher — small dropdown in topbar
   ============================================================ */
.topbar-lang { position: relative; display: inline-block; }
.topbar-lang-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 0.2rem 0.55rem;
	color: inherit;
	font: inherit;
	font-size: 0.72rem;
	font-family: var(--font-mono);
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: background .15s ease, border-color .15s ease;
}
.topbar-lang-toggle:hover {
	background: rgba(255,255,255,0.06);
	border-color: var(--border-subtle);
}
.topbar-lang.is-open .topbar-lang-toggle {
	background: rgba(255,255,255,0.08);
	border-color: var(--border);
}
.topbar-lang-flag { font-size: 0.85rem; line-height: 1; }
.topbar-lang-code { font-weight: 500; }
.topbar-lang-caret { transition: transform .2s ease; flex: 0 0 10px; }
.topbar-lang.is-open .topbar-lang-caret { transform: rotate(180deg); }

.topbar-lang-menu {
	position: absolute;
	top: calc(100% + 0.5rem);
	right: 0;
	min-width: 220px;
	background: var(--surface-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 16px 48px rgba(0,0,0,0.45);
	padding: 0.4rem;
	margin: 0;
	list-style: none;
	display: none;
	z-index: 100;
}
.topbar-lang.is-open .topbar-lang-menu { display: block; }
.topbar-lang-menu li { margin: 0; }

.topbar-lang-link {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.6rem;
	align-items: center;
	padding: 0.55rem 0.7rem;
	border-radius: var(--radius-sm);
	color: var(--fg-dim);
	text-decoration: none;
	font-size: 0.86rem;
	transition: background .15s ease, color .15s ease;
}
.topbar-lang-link:hover {
	background: var(--surface-elev);
	color: var(--fg);
}
.topbar-lang-link.is-active {
	background: var(--accent-soft);
	color: var(--accent);
}
.topbar-lang-link .topbar-lang-flag { font-size: 1.1rem; }
.topbar-lang-name { font-weight: 500; }
.topbar-lang-native {
	font-family: var(--font-mono);
	font-size: 0.62rem;
	letter-spacing: 0.14em;
	color: var(--fg-mute);
}
.topbar-lang-link.is-active .topbar-lang-native { color: var(--accent); }

:root[data-theme="light"] .topbar-lang-toggle:hover {
	background: rgba(11,11,11,0.06);
}
:root[data-theme="light"] .topbar-lang.is-open .topbar-lang-toggle {
	background: rgba(11,11,11,0.08);
}
:root[data-theme="light"] .topbar-lang-menu {
	background: #fff;
	border-color: var(--border);
	box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}

/* Mobile language switcher — sits inside the mobile-panel overlay since
   the topbar (and its desktop language switcher) is hidden below 768 px. */
.mobile-lang {
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--border-subtle);
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}
.mobile-lang-label {
	font-family: var(--font-mono);
	font-size: 0.62rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--fg-mute);
}
.mobile-lang-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0.4rem;
}
.mobile-lang-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.18rem;
	padding: 0.55rem 0.3rem;
	background: var(--surface-elev);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-sm);
	color: var(--fg-dim);
	text-decoration: none;
	transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.mobile-lang-btn:hover { border-color: var(--accent); color: var(--fg); }
.mobile-lang-btn.is-active {
	background: var(--accent-soft);
	border-color: var(--accent);
	color: var(--accent);
}
.mobile-lang-flag { font-size: 1.1rem; line-height: 1; }
.mobile-lang-code {
	font-family: var(--font-mono);
	font-size: 0.58rem;
	letter-spacing: 0.12em;
}

/* ============================================================
   Guide template — long-form pillar page (hero + sticky TOC
   sidebar + chapter blocks). Used by page-templates/guide.php.
   ============================================================ */
.guide-hero {
	background: var(--surface-canvas);
	color: var(--fg);
	padding: clamp(7rem, 12vw, 11rem) 0 clamp(3rem, 5vw, 5rem);
	position: relative;
	overflow: hidden;
}
.guide-hero::before {
	content: "";
	position: absolute; inset: 0;
	opacity: 0.45;
	background-image:
		linear-gradient(to right, var(--surface-line) 1px, transparent 1px),
		linear-gradient(to bottom, var(--surface-line) 1px, transparent 1px);
	background-size: 112px 112px;
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
}
.guide-hero::after {
	content: "";
	position: absolute;
	top: -6rem; right: -8rem;
	width: 520px; height: 520px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(233,80,24,0.18) 0%, transparent 60%);
	filter: blur(80px);
	pointer-events: none;
}
.guide-hero-inner {
	position: relative; z-index: 1;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}
.guide-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	color: var(--fg-mute);
	margin-bottom: 1.5rem;
}
.guide-eyebrow-badge {
	font-family: var(--font-mono);
	font-size: 0.55rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	padding: 0.2rem 0.45rem;
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	line-height: 1;
}
.guide-h1 {
	color: var(--fg);
	font-weight: 300;
	font-size: clamp(2.5rem, 6vw, 5.25rem);
	line-height: 0.97;
	letter-spacing: -0.035em;
	max-width: 18ch;
}
.guide-h1 em {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	color: var(--accent);
	letter-spacing: -0.022em;
}
.guide-h1 .period { color: var(--accent); margin-left: -0.05em; }
.guide-lede {
	margin-top: 1.75rem;
	max-width: 62ch;
	color: var(--fg-dim);
	font-size: clamp(1.05rem, 1.3vw, 1.25rem);
	line-height: 1.55;
}
.guide-meta-row {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem 2rem;
	color: var(--fg-mute);
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.guide-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
}
.guide-meta-item svg { color: var(--accent); flex: 0 0 14px; }

/* ─── Layout : TOC sidebar + article ──────────────────────── */
.guide-body { padding: clamp(3rem, 5vw, 5rem) 0 clamp(4rem, 7vw, 7rem); }
.guide-layout {
	display: grid;
	gap: clamp(2rem, 4vw, 3.5rem);
	grid-template-columns: 1fr;
	align-items: start;
}
@media (min-width: 1024px) {
	.guide-layout { grid-template-columns: 280px minmax(0, 1fr); }
}

/* ─── TOC ────────────────────────────────────────────────── */
/* Sticky is set on the grid item itself (.guide-toc) — sticky on a
   nested child fails when the grid item is content-sized (no room
   to stick within the parent). The grid row's natural height comes
   from the article column, which gives the TOC plenty of runway. */
.guide-toc { position: relative; }
@media (min-width: 1024px) {
	.guide-toc {
		position: sticky;
		top: 7rem;
		align-self: start;
		max-height: calc(100vh - 9rem);
		overflow-y: auto;
		padding-right: 0.25rem;
	}
}
.guide-toc-eyebrow { color: var(--fg-mute); margin-bottom: 1.25rem; }
.guide-toc-list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: guide-toc;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}
.guide-toc-list a {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.75rem;
	align-items: baseline;
	padding: 0.55rem 0.75rem;
	border-radius: var(--radius-sm);
	color: var(--fg-dim);
	text-decoration: none;
	font-size: 0.86rem;
	line-height: 1.4;
	transition: background .15s ease, color .15s ease;
}
.guide-toc-list a:hover { background: var(--surface-elev); color: var(--fg); }
.guide-toc-num {
	font-family: var(--font-mono);
	font-size: 0.62rem;
	letter-spacing: 0.16em;
	color: var(--fg-mute);
	min-width: 1.5em;
}
.guide-toc-list a:hover .guide-toc-num { color: var(--accent); }

/* ─── Article ────────────────────────────────────────────── */
.guide-article { max-width: 760px; }
.guide-chapter {
	padding: clamp(2rem, 3.5vw, 3.5rem) 0;
	border-bottom: 1px solid var(--border-subtle);
	scroll-margin-top: 7rem;
}
.guide-chapter:first-child { padding-top: 0; }
.guide-chapter:last-child { border-bottom: none; }
.guide-chapter-head {
	display: flex;
	align-items: baseline;
	gap: 1rem;
	margin-bottom: 1rem;
}
.guide-chapter-num {
	font-family: var(--font-mono);
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	color: var(--accent);
	font-weight: 500;
	flex: 0 0 auto;
}
.guide-chapter-title {
	font-size: clamp(1.6rem, 2.4vw, 2.1rem);
	line-height: 1.15;
	letter-spacing: -0.022em;
	font-weight: 400;
	color: var(--fg);
	margin: 0;
}
.guide-chapter-lede {
	font-size: clamp(1.05rem, 1.2vw, 1.15rem);
	color: var(--fg-dim);
	line-height: 1.6;
	max-width: 62ch;
	margin: 0 0 1.75rem;
}
.guide-chapter-body { display: flex; flex-direction: column; gap: 1.25rem; }
.guide-p {
	color: var(--fg-dim);
	font-size: 1rem;
	line-height: 1.7;
	max-width: 62ch;
	margin: 0;
}

/* ─── Bullets ────────────────────────────────────────────── */
.guide-bullets {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}
.guide-bullets li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.85rem;
	align-items: baseline;
	color: var(--fg-dim);
	font-size: 1rem;
	line-height: 1.65;
	max-width: 64ch;
}
.guide-bullet-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--accent);
	transform: translateY(0.55em);
}

/* ─── Cards ──────────────────────────────────────────────── */
.guide-cards {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}
@media (min-width: 640px) {
	.guide-cards { grid-template-columns: repeat(2, 1fr); }
}
.guide-card {
	background: var(--surface-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius);
	padding: 1.25rem 1.4rem;
	transition: border-color .2s ease, transform .2s ease;
}
.guide-card:hover {
	border-color: var(--border-strong);
	transform: translateY(-2px);
}
.guide-card-title {
	font-size: 1.02rem;
	font-weight: 500;
	color: var(--fg);
	margin: 0 0 0.55rem;
	letter-spacing: -0.012em;
}
.guide-card-desc {
	font-size: 0.93rem;
	color: var(--fg-dim);
	line-height: 1.62;
	margin: 0;
}

/* ─── Tip / callout ──────────────────────────────────────── */
.guide-tip {
	background: var(--accent-soft);
	border-left: 3px solid var(--accent);
	border-radius: var(--radius-sm);
	padding: 1.15rem 1.3rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	margin: 0.5rem 0;
}
.guide-tip-label {
	font-family: var(--font-mono);
	font-size: 0.6rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 500;
}
.guide-tip-text {
	color: var(--fg);
	font-size: 0.96rem;
	line-height: 1.6;
	margin: 0;
	max-width: 62ch;
}

/* ─── Mobile : collapse TOC to top inline list ────────────── */
@media (max-width: 1023px) {
	.guide-toc { order: -1; }
	.guide-toc-inner {
		background: var(--surface-elev);
		border: 1px solid var(--border-subtle);
		border-radius: var(--radius);
		padding: 1.25rem 1.4rem;
	}
}

/* ─── Hero meta strip (under buttons) ─────────────────────── */
.guide-hero-meta {
	margin-top: 1.75rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem 1.5rem;
	color: var(--fg-mute);
	font-family: var(--font-mono);
	font-size: 0.68rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.guide-hero-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}
.guide-hero-meta-item svg { color: var(--accent); flex: 0 0 14px; }

/* ─── Starter pack tools grid ─────────────────────────────── */
.guide-tools-grid {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: 1fr;
	margin-top: 2.5rem;
}
@media (min-width: 540px)  { .guide-tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px)  { .guide-tools-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .guide-tools-grid { grid-template-columns: repeat(4, 1fr); } }
.guide-tool-card {
	background: var(--surface-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-sm);
	padding: 0.9rem 1.1rem;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	transition: border-color .2s ease, transform .2s ease;
}
.guide-tool-card:hover {
	border-color: var(--accent);
	transform: translateY(-2px);
}
.guide-tool-name {
	color: var(--fg);
	font-weight: 500;
	font-size: 0.95rem;
	letter-spacing: -0.012em;
}
.guide-tool-cat {
	font-family: var(--font-mono);
	font-size: 0.58rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--fg-mute);
}

/* ─── Differentiator cards (3-up) ─────────────────────────── */
.guide-diff-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
	margin-top: 3rem;
}
@media (min-width: 768px) { .guide-diff-grid { grid-template-columns: repeat(3, 1fr); } }
.guide-diff-card {
	background: var(--surface-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius);
	padding: clamp(1.5rem, 2.2vw, 2rem);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	position: relative;
	overflow: hidden;
}
.guide-diff-card::before {
	content: "";
	position: absolute;
	top: -3rem; right: -3rem;
	width: 180px; height: 180px;
	background: radial-gradient(circle, rgba(233,80,24,0.10) 0%, transparent 70%);
	pointer-events: none;
}
.guide-diff-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px; height: 44px;
	border-radius: var(--radius-sm);
	background: var(--accent-soft);
	color: var(--accent);
	flex: 0 0 44px;
}
.guide-diff-title {
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--fg);
	letter-spacing: -0.015em;
	margin: 0;
	line-height: 1.3;
}
.guide-diff-desc {
	color: var(--fg-dim);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

/* ─── Eyebrow badge re-used in service-hero context ───────── */
.guide-hero-svc .guide-eyebrow-badge {
	font-family: var(--font-mono);
	font-size: 0.55rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	padding: 0.22rem 0.5rem;
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	line-height: 1;
	margin-left: 0.4rem;
}


