/* ═══════════════════════════════════════════════════════════════
   FACTYZE BRAND v2 - shared design system
   Single source of truth for tokens + reusable components.
   Landing v3 visual language: sharp edges, hairline borders,
   top-accent cards, DM Mono figures/labels, Space Grotesk headings.

   Usage: link this file in <head> BEFORE any page-specific <style>
   block, then use the classes below. Page CSS should only hold
   page-unique layout (grid-template-columns, one-off spacing) -
   never redefine colour, radius or border rules that belong here.
   Update the look of every page by editing this file alone.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* ── Colour - Factyze Brand Guidelines v1.0 ── */
  --purple:        #6D22E0;  /* primary - headings, buttons, links */
  --purple-dark:   #4B1594;  /* hover, pressed */
  --purple-accent: #A020F0;  /* the logo + one highlighted figure per view */
  --purple-light:  #C77CFF;  /* the mark on dark backgrounds only */
  --purple-tint:   rgba(109,34,224,.08);
  --purple-tint2:  rgba(109,34,224,.14);
  --purple-border: rgba(109,34,224,.22);

  --text:       #17141F;  /* ink - headings */
  --text-mid:   #4A4560;  /* body copy */
  --text-light: #6D6785;  /* labels */
  --border:     #DDD8EA;  /* hairlines */
  --border-soft:#EFECF6;  /* inner hairlines, card dividers */
  --section-bg: #F7F5FB;  /* section wash */
  --ink:        #17141F;  /* section breaks, top-accent rule, footer */

  --in-range:  #0E7C66;  /* on target / success */
  --exception: #B31240;  /* the thing DETECT found / danger */
  --warning:   #C2410C;  /* caution */
  --baseline:  #8B85A6;  /* what normal looks like */

  --white: #ffffff;

  /* ── Type ── */
  --font-heading: 'Space Grotesk', 'IBM Plex Sans', system-ui, sans-serif;
  --font-body:    'IBM Plex Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', ui-monospace, monospace;
  --font-brace:   'IBM Plex Mono', ui-monospace, monospace;

  /* ── Shape - v2 is sharp: no radius, hairline borders, top-accent bars ── */
  --radius: 0px;
  --radius-sm: 2px;
  --accent-bar: 2px;

  /* ── Layout ── */
  --page-max: 1200px;
  --page-pad: 24px;
}

/* ═══════════════════════════ TYPE ═══════════════════════════ */

.fz-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 0 0 16px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase; color: var(--text-light);
}
.fz-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--purple);
  display: block; flex-shrink: 0; animation: fzDot 2s ease-in-out infinite;
}
@keyframes fzDot { 0%,100%{opacity:1} 50%{opacity:.3} }

.fz-h2 {
  margin: 0 0 14px; max-width: 820px;
  font-family: var(--font-heading); font-size: clamp(32px,4.2vw,44px);
  font-weight: 500; line-height: 1.1; letter-spacing: -.028em; color: var(--text);
}
.fz-h2 .accent { font-weight: 400; color: var(--purple); }
.fz-lead {
  margin: 0 0 52px; max-width: 620px;
  font-family: var(--font-body); font-size: 16.5px; font-weight: 400;
  line-height: 1.68; color: var(--text-mid);
}

/* Every figure in DM Mono. Never a sentence in DM Mono. */
.fz-num { font-family: var(--font-mono); font-weight: 500; letter-spacing: -.01em; }

/* ═══════════════════════════ THE MARK ═══════════════════════════ */
/* { factyze } - set in type, not an image, so it scales + recolours */
.fz-logo {
  display: inline-flex; align-items: baseline; white-space: nowrap;
  line-height: 1; font-style: normal; font-weight: 400;
  color: var(--purple-accent); vertical-align: baseline;
}
.fz-logo .fz-b { font-family: var(--font-brace); font-weight: 400; font-size: 1.32em; opacity: .55; }
.fz-logo .fz-w { font-family: var(--font-mono); font-weight: 300; letter-spacing: .05em; margin: 0 .25em; text-transform: lowercase; }
.fz-logo--md .fz-w { font-weight: 400; } .fz-logo--md .fz-b { opacity: .62; }
.fz-logo--sm .fz-w { font-weight: 500; } .fz-logo--sm .fz-b { opacity: .75; }
.fz-logo--light { color: var(--purple-light); }
h1 .fz-logo, h2 .fz-logo, h3 .fz-logo, blockquote .fz-logo { font-size: .84em; margin: 0 .04em; }

/* ═══════════════════════════ BUTTONS ═══════════════════════════ */
/* Sharp, solid, no pill/shadow. A single hairline underline motion on hover. */

.fz-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 14px 28px; text-decoration: none; cursor: pointer;
  border-radius: var(--radius); border: none; transition: background .18s, color .18s, border-color .18s;
}
.fz-btn-primary { background: var(--purple); color: var(--white); }
.fz-btn-primary:hover { background: var(--purple-dark); color: var(--white); }
.fz-btn-outline { background: transparent; color: var(--text); border: 1px solid var(--text); padding: 13px 26px; font-weight: 500; }
.fz-btn-outline:hover { border-color: var(--purple); color: var(--purple); }
.fz-btn-on-dark { background: var(--white); color: var(--purple); }
.fz-btn-on-dark:hover { background: var(--purple-light); color: var(--purple-dark); }
.fz-btn-outline-on-dark { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.55); padding: 13px 26px; font-weight: 500; }
.fz-btn-outline-on-dark:hover { border-color: var(--white); }

/* ═══════════════════════════ SECTIONS ═══════════════════════════ */

.fz-section { padding: 96px 0; background: var(--white); }
.fz-section-alt { background: var(--section-bg); }
.fz-section-rule { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.fz-wrap { max-width: var(--page-max); margin: 0 auto; padding: 0 var(--page-pad); }

/* A 2px ink rule that opens a list/table - Landing v3's recurring divider motif */
.fz-rule-open { border-top: 2px solid var(--ink); }
.fz-rule-row { border-bottom: 1px solid var(--border); }
.fz-rule-row:last-child { border-bottom: none; }

/* ═══════════════════════════ CARDS ═══════════════════════════ */
/* White panel, hairline border, 2px top-accent bar in a semantic colour.
   Set --card-accent per card (defaults to purple). */

.fz-card {
  --card-accent: var(--purple);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: var(--accent-bar) solid var(--card-accent);
  border-radius: var(--radius);
  padding: 30px 28px 32px;
  transition: border-color .2s;
}
.fz-card:hover { border-color: var(--purple-border); }
.fz-card-eyebrow { font-family: var(--font-mono); font-size: 12px; color: var(--card-accent); margin: 0 0 18px; }
.fz-card h3, .fz-card h5 { font-family: var(--font-heading); font-size: 19px; font-weight: 600; letter-spacing: -.016em; color: var(--text); margin: 0 0 11px; }
.fz-card h3 a, .fz-card h5 a { color: inherit; text-decoration: none; }
.fz-card h3 a:hover, .fz-card h5 a:hover { color: var(--purple); }
.fz-card p { font-size: 14.5px; line-height: 1.64; color: var(--text-mid); margin: 0 0 16px; }
.fz-card-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 12.5px; color: var(--purple); text-decoration: none; transition: gap .18s; }
.fz-card-link:hover { gap: 10px; color: var(--purple-dark); }

/* Hairline grid of cards - 1px gaps forming a shared grid line via a bg-colour reveal.
   Column count is a default here (not inline per-usage) so it can actually respond. */
.fz-card-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
}
.fz-card-grid .fz-card { border: none; border-top: var(--accent-bar) solid var(--card-accent); }
.fz-card-grid .fz-card:hover { background: #FDFCFF; }
@media (max-width: 760px) { .fz-card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .fz-card-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════ STATS BAR ═══════════════════════════ */

.fz-stats-bar { background: var(--purple); }
.fz-stats-inner { max-width: var(--page-max); margin: 0 auto; padding: 0 var(--page-pad); display: grid; grid-template-columns: repeat(4,1fr); }
.fz-stat-item { padding: 30px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.18); }
.fz-stat-item:last-child { border-right: none; }
@media (max-width: 700px) {
  .fz-stats-inner { grid-template-columns: 1fr 1fr; }
  .fz-stat-item { border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
  .fz-stat-item:nth-child(2n) { border-right: none; }
  .fz-stat-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 420px) {
  .fz-stats-inner { grid-template-columns: 1fr; }
  .fz-stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.18); }
  .fz-stat-item:last-child { border-bottom: none; }
}
.fz-stat-num { font-family: var(--font-mono); font-size: 34px; font-weight: 400; line-height: 1; color: var(--white); margin: 0 0 5px; }
.fz-stat-desc { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.78); }

/* ═══════════════════════════ TICKER ═══════════════════════════ */

.fz-ticker { background: var(--section-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; white-space: nowrap; padding: 15px 0; }
.fz-ticker-track { display: inline-flex; animation: fzScroll 34s linear infinite; }
.fz-ticker-item { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); padding: 0 26px; }
.fz-ticker-sep { color: #C4BBDD; }
@keyframes fzScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@media (prefers-reduced-motion: reduce) { .fz-ticker-track { animation: none; } }

/* ═══════════════════════════ PROCESS / NUMBERED LIST ═══════════════════════════ */

.fz-process { border-top: 2px solid var(--ink); }
.fz-process-step { display: grid; grid-template-columns: 90px 1fr 190px; gap: 32px; align-items: start; padding: 32px 0; border-bottom: 1px solid var(--border); }
.fz-process-step:last-child { border-bottom: none; }
.fz-process-num { font-family: var(--font-mono); font-size: 26px; font-weight: 300; color: var(--purple); line-height: 1; }
.fz-process-step h4 { font-family: var(--font-heading); font-size: 21px; font-weight: 600; letter-spacing: -.018em; color: var(--text); margin: 0 0 9px; }
.fz-process-step p { font-size: 15px; line-height: 1.7; color: var(--text-mid); margin: 0; }
.fz-process-tag { justify-self: end; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-light); }
@media (max-width: 720px) {
  .fz-process-step { grid-template-columns: 48px 1fr; }
  .fz-process-tag { display: none; }
}

/* ═══════════════════════════ TABLE / STATUS LIST ═══════════════════════════ */
/* e.g. "industries we serve", any label→status list */

.fz-status-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.fz-status-table td { padding: 14px 0; border-bottom: 1px solid var(--border-soft); color: var(--text); }
.fz-status-table tr:last-child td { border-bottom: none; }
.fz-status-table .status { text-align: right; font-family: var(--font-mono); font-size: 11.5px; color: var(--in-range); }

/* ═══════════════════════════ PROGRESS BARS ═══════════════════════════ */

.fz-bar-row { margin-bottom: 22px; }
.fz-bar-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 9px; }
.fz-bar-name { font-size: 14px; color: var(--text-mid); }
.fz-bar-val { font-family: var(--font-mono); font-size: 19px; color: var(--purple); }
.fz-bar-track { height: 7px; background: var(--border-soft); }
.fz-bar-fill { display: block; height: 100%; background: var(--purple); }

/* ═══════════════════════════ CTA BANNER (inverse) ═══════════════════════════ */

.fz-cta-band { background: var(--ink); position: relative; overflow: hidden; }
.fz-cta-band .fz-wrap { position: relative; padding: 88px var(--page-pad); text-align: center; }
.fz-cta-band .fz-eyebrow { color: rgba(255,255,255,.6); justify-content: center; }
.fz-cta-band .fz-eyebrow .dot { background: var(--purple-light); }
.fz-cta-band h2 { margin: 0 0 18px; font-family: var(--font-heading); font-size: clamp(32px,4.5vw,48px); font-weight: 500; line-height: 1.07; letter-spacing: -.028em; color: var(--white); }
.fz-cta-band h2 .accent { font-weight: 400; color: var(--purple-light); }
.fz-cta-band p.lead { margin: 0 auto 34px; max-width: 620px; font-size: 16.5px; line-height: 1.66; color: rgba(255,255,255,.84); }
.fz-cta-band .micro { margin: 0; font-family: var(--font-mono); font-size: 11.5px; color: rgba(255,255,255,.68); }

/* ═══════════════════════════ FOOTER ═══════════════════════════ */

.fz-footer { background: var(--white); border-top: 1px solid var(--border); }
.fz-footer-top { padding: 56px 0 48px; border-bottom: 1px solid var(--border); }
.fz-footer p, .fz-footer a { font-family: var(--font-body); }
.fz-footer-label { margin: 0 0 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-light); }
.fz-footer-links { display: flex; flex-direction: column; gap: 10px; }
.fz-footer-links a { font-size: 14px; color: var(--text-mid); text-decoration: none; transition: color .18s; }
.fz-footer-links a:hover { color: var(--purple); }
.fz-footer-bottom { padding: 24px 0 32px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.fz-footer-bottom p, .fz-footer-bottom a { margin: 0; font-family: var(--font-mono); font-size: 11.5px; color: var(--text-light); text-decoration: none; }
.fz-footer-bottom a:hover { color: var(--purple); }

/* ═══════════════════════════ PANEL ═══════════════════════════ */
/* Bordered, ink-top-ruled panel for stat blocks / side visuals (hero card, "why choose" snapshot) */

.fz-panel { background: var(--white); border: 1px solid var(--border); border-top: var(--accent-bar) solid var(--ink); }
.fz-panel-head { padding: 16px 26px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.fz-panel-head .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-light); }
.fz-panel-live { width: 7px; height: 7px; border-radius: 50%; background: var(--in-range); flex-shrink: 0; animation: fzDot 2s ease-in-out infinite; }
.fz-panel-body { padding: 6px 26px 26px; }
.fz-panel-metric { display: flex; align-items: baseline; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border-soft); }
.fz-panel-metric:last-child { border-bottom: none; }
.fz-panel-num { font-family: var(--font-mono); font-size: 38px; font-weight: 300; color: var(--purple); line-height: 1; flex: none; min-width: 92px; }
.fz-panel-text { font-size: 14px; line-height: 1.5; color: var(--text-mid); }
.fz-panel-pad { padding: 26px 30px 28px; }

/* ═══════════════════════════ LINE LIST ═══════════════════════════ */
/* Numbered link rows opened by a rule - "use cases in action" pattern */

.fz-line-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }
.fz-line-item { display: flex; align-items: baseline; gap: 20px; padding: 24px 0; border-top: 1px solid var(--border); }
.fz-line-item.rule-ink { border-top: 2px solid var(--ink); }
.fz-line-num { font-family: var(--font-mono); font-size: 12.5px; color: var(--purple); flex: none; }
.fz-line-item p { margin: 0; flex: 1; font-size: 16px; line-height: 1.5; color: var(--text); }
.fz-line-item a.go { font-family: var(--font-mono); font-size: 14px; flex: none; color: var(--purple); text-decoration: none; }
.fz-line-item a.go:hover { color: var(--purple-dark); }
@media (max-width: 720px) { .fz-line-list { grid-template-columns: 1fr; } }

/* ═══════════════════════════ CHECK LIST / RESULT BLOCK ═══════════════════════════ */

.fz-check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.fz-check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.6; color: var(--text-mid); }
.fz-check-list li::before { content: '✓'; color: var(--in-range); font-weight: 700; flex-shrink: 0; }

.fz-result-block { background: var(--section-bg); border-left: 3px solid var(--purple); padding: 30px 34px; }
.fz-result-block h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 600; letter-spacing: -.018em; color: var(--text); margin: 0 0 12px; }
.fz-result-block p { margin: 0; max-width: 900px; font-size: 15.5px; line-height: 1.7; color: var(--text-mid); }

/* ═══════════════════════════ TAG ═══════════════════════════ */
/* small mono status badge - "most popular", "active", etc. */

.fz-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-light); }
.fz-tag--accent { color: var(--purple); }

/* ═══════════════════════════ FOOTER GRID ═══════════════════════════ */

.fz-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; }
.fz-soc-btn { width: 34px; height: 34px; background: var(--section-bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--text-mid); text-decoration: none; transition: all .18s; }
.fz-soc-btn:hover { background: var(--purple); border-color: var(--purple); color: var(--white); }
@media (max-width: 720px) { .fz-footer-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════ UTIL ═══════════════════════════ */

.fz-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.fz-grid-2--center { align-items: center; }
@media (max-width: 960px) { .fz-grid-2 { grid-template-columns: 1fr; gap: 40px; } }

/* ═══════════════════════════════════════════════════════════════
   SITE CHROME + INNER-PAGE TEMPLATE
   Shared by every inner page (AIxML, BI, DataxCloud, industry,
   solutions, talent, careers, contact, job, apply) plus the nav/
   preloader/footer markup that index.html also uses. These pages
   were all built from one template, so they share these exact
   class names - restyle the whole site by editing this block once.
   A page adopts it by linking this file and deleting the matching
   duplicate rules from its own inline <style>; no markup changes
   needed. ═══════════════════════════════════════════════════════ */

/* ── preloader ── */
#preloader { position: fixed; inset: 0; background: #fff; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.animation-preloader .icon img { display: block; margin: 0 auto; }
.txt-loading { display: flex; gap: 5px; justify-content: center; margin-top: 14px; }
.letters-loading { font-family: var(--font-mono); font-size: 24px; font-weight: 500; letter-spacing: .04em; color: var(--purple); animation: fzLetterPulse 1.4s ease-in-out infinite; }
.letters-loading:nth-child(1){animation-delay:.00s}.letters-loading:nth-child(2){animation-delay:.10s}
.letters-loading:nth-child(3){animation-delay:.20s}.letters-loading:nth-child(4){animation-delay:.30s}
.letters-loading:nth-child(5){animation-delay:.40s}.letters-loading:nth-child(6){animation-delay:.50s}
.letters-loading:nth-child(7){animation-delay:.60s}
@keyframes fzLetterPulse { 0%,100%{opacity:.2;transform:translateY(0)} 50%{opacity:1;transform:translateY(-6px)} }

/* ── nav ── */
.theme-main-menu { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 200; transition: box-shadow .3s ease, border-color .3s ease; }
.theme-main-menu.nav-scrolled { box-shadow: 0 2px 24px rgba(109,34,224,.09); border-bottom-color: var(--purple-border); }
.theme-main-menu .inner-content { max-width: var(--page-max); margin: 0 auto; padding: 0 var(--page-pad); }
.nav-row { display: flex; align-items: center; height: 70px; }
.nav-row > nav { flex: 1; min-width: 0; }
.logo { flex-shrink: 0; }
.nav-divider { width: 1px; height: 22px; background: var(--border); margin: 0 20px; flex-shrink: 0; }
.navbar-nav { display: flex; align-items: center; justify-content: flex-end; gap: 2px; list-style: none; margin: 0 0 0 auto; padding: 0; }
.nav-cta-sep { width: 1px; height: 18px; background: var(--border); margin: 0 28px; flex-shrink: 0; align-self: center; }
.nav-item .nav-link { font-family: var(--font-mono); font-size: 13px; font-weight: 400; color: var(--text-mid); padding: 8px 13px; text-decoration: none; white-space: nowrap; display: flex; align-items: center; gap: 4px; transition: color .18s, background .18s; }
.nav-item .nav-link:hover { color: var(--purple); background: var(--purple-tint); }
.nav-item.active .nav-link { color: var(--purple); font-weight: 500; }
.nav-chevron { font-size: 10px; opacity: .55; transition: transform .2s; }
.dropdown:hover .nav-chevron, .dropdown.open .nav-chevron { transform: rotate(180deg); opacity: .9; }
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 0; padding-top: 10px; min-width: 200px; list-style: none; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(4px); transition: opacity .22s ease, transform .22s ease, visibility .22s; }
.dropdown-menu-inner { background: #fff; border: 1px solid var(--border); border-top: 2px solid var(--ink); padding: 7px; box-shadow: 0 16px 48px rgba(0,0,0,.1); }
.dropdown.open .dropdown-menu, .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.dropdown-item { display: flex; align-items: center; padding: 11px 14px; font-family: var(--font-body); font-size: 13.5px; font-weight: 500; color: var(--text); text-decoration: none; transition: background .15s, color .15s; }
.dropdown-item:hover { background: var(--purple-tint); color: var(--purple); }
/* Icon-based dropdowns (older markup) fall back to a plain mono label; index.html's own dropdowns skip .di-icon entirely. */
.di-icon { display: none; }
.di-text { display: flex; flex-direction: column; line-height: 1; }
.di-label { font-family: var(--font-body); font-size: 13.5px; font-weight: 500; color: var(--text); }
.di-desc { display: none; }
.dropdown-item:hover .di-label { color: var(--purple); }
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 7px; }
.dropdown-section-label { display: flex; align-items: center; gap: 7px; padding: 11px 14px 2px; font-family: var(--font-body); font-size: 13.5px; font-weight: 500; color: var(--text); }
.ai-pill { font-family: var(--font-mono); font-size: 10px; font-weight: 500; background: var(--purple); color: #fff; padding: 2px 8px; margin-left: 1px; border-radius: 0; }

/* Nested flyout submenu (e.g. "Free tools →" inside the Services dropdown) - a plain
   dropdown-item row that reveals a second panel on hover, same visual language as the
   top-level dropdowns, positioned to the right instead of below. */
.dropdown-item-sub { position: relative; }
.dropdown-item-sub > .dropdown-item { justify-content: space-between; }
.dropdown-flyout {
  position: absolute; top: -8px; left: 100%; margin-left: 0; min-width: 200px; list-style: none;
  background: #fff; border: 1px solid var(--border); border-top: 2px solid var(--ink); padding: 7px;
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateX(4px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.dropdown-item-sub:hover > .dropdown-flyout,
.dropdown-item-sub.mobile-open > .dropdown-flyout { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(0); }
.dropdown-item-sub:hover > .dropdown-item .nav-chevron,
.dropdown-item-sub.mobile-open > .dropdown-item .nav-chevron { transform: rotate(90deg); opacity: .9; }
.nav-cta { background: var(--purple) !important; color: #fff !important; padding: 9px 22px !important; font-weight: 600 !important; font-size: 13.5px !important; font-family: var(--font-body) !important; border-radius: 0 !important; box-shadow: none !important; transition: background .18s !important; margin-left: 0; }
.nav-cta:hover { background: var(--purple-dark) !important; transform: none !important; box-shadow: none !important; }

/* ── mobile nav toggle (hamburger) ── */
.nav-toggle {
  display: none; width: 38px; height: 38px; flex-shrink: 0; margin-left: auto;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border); border-radius: 0;
  cursor: pointer; padding: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 16px; height: 1.5px; background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; left: 0; }
.nav-toggle span::after { position: absolute; top: 6px; left: 0; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .navbar-nav {
    position: fixed; top: 70px; left: 0; right: 0;
    height: calc(100vh - 70px); height: calc(100dvh - 70px);
    margin: 0; padding: 8px 0 28px;
    background: #fff; border-top: 1px solid var(--border);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .navbar-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .navbar-nav .nav-item { width: 100%; }
  .navbar-nav .nav-item .nav-link {
    width: 100%; padding: 15px var(--page-pad);
    border-bottom: 1px solid var(--border-soft); justify-content: space-between;
  }
  .navbar-nav .nav-cta-sep { display: none; }
  .navbar-nav .nav-item .nav-link.nav-cta {
    width: calc(100% - 2 * var(--page-pad)); margin: 14px var(--page-pad) 0;
    justify-content: center; border-bottom: none;
  }
  .navbar-nav .dropdown-menu {
    position: static; opacity: 1; visibility: visible; pointer-events: none;
    transform: none; padding-top: 0; min-width: 0;
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .navbar-nav .dropdown.mobile-open .dropdown-menu { pointer-events: auto; max-height: 520px; }
  .navbar-nav .dropdown.mobile-open .nav-chevron { transform: rotate(180deg); }
  .navbar-nav .dropdown-menu-inner { border: none; border-radius: 0; box-shadow: none; background: var(--section-bg); padding: 0; }
  .navbar-nav .dropdown-item { padding: 13px var(--page-pad) 13px calc(var(--page-pad) + 16px); border-bottom: 1px solid var(--border); }
  .navbar-nav .dropdown-section-label { padding: 10px var(--page-pad) 4px calc(var(--page-pad) + 16px); }
  .dropdown-flyout {
    position: static; opacity: 1; visibility: visible; pointer-events: none; transform: none;
    margin-left: 0; border: none; box-shadow: none; padding: 0; background: var(--section-bg);
    max-height: 0; overflow: hidden; transition: max-height .22s ease;
  }
  .dropdown-item-sub.mobile-open > .dropdown-flyout { pointer-events: auto; max-height: 200px; }
  .dropdown-flyout .dropdown-item { padding-left: calc(var(--page-pad) + 32px) !important; }
}

/* ── layout utils ── */
.wrap { max-width: var(--page-max); margin: 0 auto; padding: 0 var(--page-pad); }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}

/* ── inner page banner (replaces the soft radial-gradient hero) ── */
.inner-banner { background: var(--section-bg); padding: 64px 0 52px; text-align: center; border-bottom: 1px solid var(--border); }
.inner-banner::before { content: none; }
.inner-banner h1 { font-family: var(--font-heading); font-size: clamp(32px,4.6vw,52px); font-weight: 500; letter-spacing: -.03em; margin-bottom: 14px; }
.inner-banner h1 em { color: var(--purple); font-style: normal; font-weight: 400; }
.inner-banner p { font-family: var(--font-body); font-size: 16.5px; color: var(--text-mid); max-width: 580px; margin: 0 auto; line-height: 1.68; }
.breadcrumb-row { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; color: var(--text-light); margin-top: 18px; }
.breadcrumb-row a { color: var(--purple); text-decoration: none; }
.breadcrumb-row span { color: var(--text-light); }

/* ── section base + eyebrow + heading (older -p / s- naming) ── */
.section { padding: 96px 0; }
.section-alt { background: var(--section-bg); }
.sc-tag { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 11.5px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: var(--text-light); margin-bottom: 16px; }
.sc-tag::before { content: ''; width: 16px; height: 1px; background: var(--purple); display: block; }
h2.stitle, .stitle { font-family: var(--font-heading); font-size: clamp(32px,4.2vw,44px); font-weight: 500; letter-spacing: -.028em; line-height: 1.1; margin-bottom: 16px; }
h2.stitle em, .stitle em { color: var(--purple); font-style: normal; font-weight: 400; }
.slead { font-family: var(--font-body); font-size: 16.5px; color: var(--text-mid); line-height: 1.68; max-width: 560px; margin-bottom: 52px; }

/* ── buttons (older -p naming) ── */
.btn-primary-p { display: inline-flex; align-items: center; gap: 8px; background: var(--purple); color: #fff; font-size: 15px; font-weight: 600; padding: 14px 30px; text-decoration: none; border: none; cursor: pointer; border-radius: 0; box-shadow: none; transition: background .18s; }
.btn-primary-p:hover { background: var(--purple-dark); transform: none; box-shadow: none; }
.btn-outline-p { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--text); font-size: 15px; font-weight: 500; padding: 13px 28px; text-decoration: none; border: 1px solid var(--text); border-radius: 0; cursor: pointer; transition: border-color .18s, color .18s; }
.btn-outline-p:hover { background: transparent; border-color: var(--purple); color: var(--purple); }

/* ── service cards (svc-*) ── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.svc-card { background: #fff; border: 1px solid var(--border); border-top: 2px solid var(--purple); border-radius: 0; padding: 30px 28px 32px; transition: border-color .2s; position: relative; overflow: visible; }
.svc-card::before { content: none; }
.svc-card:hover { border-color: var(--purple-border); box-shadow: none; transform: none; }
.svc-card.featured { border-top-color: var(--purple-accent); }
.svc-icon { width: 44px; height: 44px; background: var(--section-bg); border: 1px solid var(--border); border-radius: 0; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc-icon img { width: 24px; object-fit: contain; }
.svc-card h4 { font-family: var(--font-heading); font-size: 18px; font-weight: 600; letter-spacing: -.016em; margin-bottom: 10px; }
.svc-card h4 a { color: var(--text); text-decoration: none; transition: color .18s; }
.svc-card h4 a:hover { color: var(--purple); }
.svc-card p { font-size: 14px; color: var(--text-mid); line-height: 1.62; margin-bottom: 16px; }
.svc-card .card-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 12.5px; color: var(--purple); text-decoration: none; transition: gap .18s; }
.svc-card .card-link:hover { gap: 10px; color: var(--purple-dark); }

/* ── process steps ── */
.process-wrap { display: grid; gap: 1px; border-top: 2px solid var(--ink); background: var(--border); border-radius: 0; overflow: hidden; }
.p-step { background: #fff; display: grid; grid-template-columns: 72px 1fr auto; gap: 24px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--border); transition: background .18s; }
.p-step:last-child { border-bottom: none; }
.p-step:hover { background: var(--purple-tint); }
.p-num { font-family: var(--font-mono); font-size: 26px; font-weight: 300; color: var(--purple); line-height: 1; text-align: left; }
.p-step:hover .p-num { color: var(--purple-dark); }
.p-step h4 { font-family: var(--font-heading); font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.p-step p { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; margin: 0; }
.p-badge { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; padding: 0; background: none; color: var(--text-light); border: none; white-space: nowrap; }

/* ── FAQ accordion ── */
.faq-wrap { display: flex; flex-direction: column; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 0; margin-bottom: -1px; overflow: hidden; transition: border-color .18s; }
.faq-item:hover { border-color: var(--purple-border); }
.faq-q { padding: 18px 22px; font-family: var(--font-body); font-size: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .icon { width: 22px; height: 22px; border-radius: 0; background: var(--section-bg); border: 1px solid var(--border); color: var(--purple); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 500; flex-shrink: 0; transition: all .18s; }
.faq-item.open .faq-q .icon { background: var(--purple); border-color: var(--purple); color: #fff; transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--text-mid); line-height: 1.68; padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.faq-item.open .faq-a { max-height: 240px; padding-bottom: 20px; }

/* ── mini stat tiles ── */
.stats-mini { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.stat-mini { background: #fff; border: 1px solid var(--border); border-top: 2px solid var(--purple); border-radius: 0; padding: 22px; text-align: center; transition: border-color .18s; }
.stat-mini:hover { border-color: var(--purple-border); box-shadow: none; }
.stat-mini-num { font-family: var(--font-mono); font-size: 30px; font-weight: 400; color: var(--purple); line-height: 1; margin-bottom: 6px; }
.stat-mini-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-light); }

/* ── ticker ── */
.ticker { background: var(--section-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 15px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: fzScroll 26s linear infinite; }
.ticker-item { font-family: var(--font-mono); font-size: 11.5px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); padding: 0 26px; }
.ticker-sep, .ticker-item .sep { color: #C4BBDD; margin-left: 26px; }

/* ── stats bar (unprefixed; talent.html-style - same look as .fz-stats-bar) ── */
.stats-bar { background: var(--purple); }
.stats-inner { max-width: var(--page-max); margin: 0 auto; padding: 0 var(--page-pad); display: flex; justify-content: space-between; flex-wrap: wrap; }
.stat-item { padding: 28px 20px; text-align: center; flex: 1; border-right: 1px solid rgba(255,255,255,.18); }
.stat-item:last-child { border-right: none; }
@media (max-width: 700px) {
  .stats-inner { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.18); }
  .stat-item:last-child { border-bottom: none; }
}
.stat-num { font-family: var(--font-mono); font-size: 34px; font-weight: 400; color: #fff; line-height: 1; margin-bottom: 4px; }
.stat-num span { color: rgba(255,255,255,.7); font-size: 22px; }
.stat-desc { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .05em; color: rgba(255,255,255,.78); }
@keyframes fzScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── highlight panel (icon rows next to a decorative visual) ── */
.highlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.highlight-visual { background: #fff; border: 1px solid var(--border); border-top: 2px solid var(--ink); border-radius: 0; padding: 30px; }
.hl-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border-soft); }
.hl-row:last-child { border-bottom: none; margin: 0; padding: 0; }
.hl-icon { width: 40px; height: 40px; background: var(--section-bg); border: 1px solid var(--border); border-radius: 0; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.hl-text strong { display: block; font-family: var(--font-mono); font-size: 19px; font-weight: 400; color: var(--purple); }
.hl-text span { font-size: 12px; color: var(--text-light); }

/* ── cta banner (older naming; ink background, matches .fz-cta-band) ── */
.cta-banner { background: var(--ink); padding: 80px 0; text-align: center; }
.cta-banner h2 { font-family: var(--font-heading); font-size: clamp(28px,4vw,44px); font-weight: 500; letter-spacing: -.028em; margin-bottom: 16px; color: #fff; }
.cta-banner h2 em { color: var(--purple-light); font-style: normal; font-weight: 400; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,.75); max-width: 480px; margin: 0 auto 36px; line-height: 1.68; }
.cta-pair { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-primary-p { background: #fff; color: var(--purple); }
.cta-banner .btn-primary-p:hover { background: var(--purple-light); color: var(--purple-dark); }
.cta-banner .btn-outline-p { color: #fff; border-color: rgba(255,255,255,.55); }
.cta-banner .btn-outline-p:hover { border-color: #fff; color: #fff; }

/* ── footer (older naming; light theme, matches .fz-footer) ── */
.footer-main, .footer-talent { background: #fff; border-top: 1px solid var(--border); padding: 56px 0 32px; color: var(--text-mid); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.footer-logo-img, .footer-logo { margin-bottom: 16px; display: inline-block; }
.footer-tagline { font-family: var(--font-heading); font-size: 15px; font-weight: 600; color: var(--text); margin: 0 0 10px; }
.footer-tagline em { color: var(--purple); font-style: normal; }
.footer-desc { font-size: 14px; line-height: 1.64; color: var(--text-mid); margin-bottom: 20px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.soc-btn { width: 34px; height: 34px; background: var(--section-bg); border: 1px solid var(--border); border-radius: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--text-mid); text-decoration: none; transition: all .18s; }
.soc-btn:hover { background: var(--purple); border-color: var(--purple); color: #fff; }
.footer-col h5 { font-family: var(--font-mono); font-size: 11px; font-weight: 500; color: var(--text-light); letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--text-mid); text-decoration: none; transition: color .18s; }
.footer-col ul a:hover { color: var(--purple); }
.footer-bottom { padding: 24px 0 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-light); margin: 0; }

/* ── scroll-to-top ── */
.scroll-top-btn { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: var(--purple); color: #fff; border: none; border-radius: 0; font-size: 20px; cursor: pointer; box-shadow: none; z-index: 99; transition: background .18s; }
.scroll-top-btn:hover { background: var(--purple-dark); }

@media (max-width: 900px) {
  .svc-grid, .stats-mini { grid-template-columns: 1fr 1fr; }
  .highlight-grid { grid-template-columns: 1fr; }
  .highlight-visual { display: none; }
  .p-step { grid-template-columns: 48px 1fr; }
  .p-badge { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .svc-grid, .stats-mini { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   BLOG - listing cards, article typography, video embed, FAQ,
   tag pills. Used by blog.php and blog-post.php.
   ═══════════════════════════════════════════════════════════════ */

/* ── tag pills (listing filter + post header + card meta) ── */
.blog-tag-pill {
  display: inline-flex; align-items: center; font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--purple); background: var(--purple-tint); padding: 4px 10px;
}
a.blog-tag-pill { text-decoration: none; transition: background .18s, color .18s; }
a.blog-tag-pill:hover { background: var(--purple); color: #fff; }
.blog-tag-pill.is-muted { color: var(--text-light); background: var(--section-bg); }

/* ── listing grid + cards ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.blog-card { background: #fff; border: 1px solid var(--border); display: flex; flex-direction: column; transition: background .18s, border-color .18s; }
.blog-card:hover { background: #FDFCFF; border-color: var(--purple-border); }
.blog-card-img { display: block; width: 100%; aspect-ratio: 16/10; object-fit: contain; background: var(--section-bg); border-bottom: 1px solid var(--border); }
.blog-card-img-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 16/10; background: var(--section-bg); border-bottom: 1px solid var(--border); color: var(--purple-accent); }
.blog-card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.blog-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 600; letter-spacing: -.016em; line-height: 1.32; margin: 0 0 10px; }
.blog-card h3 a { color: var(--text); text-decoration: none; transition: color .18s; }
.blog-card h3 a:hover { color: var(--purple); }
.blog-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; margin: 0 0 16px; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--text-light); margin-top: auto; }
.blog-card-meta .sep { color: var(--border); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── empty state ── */
.blog-empty { text-align: center; padding: 80px 24px; color: var(--text-light); }
.blog-empty p { font-size: 15px; margin-top: 8px; }

/* ── article header ── */
.blog-post-meta { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 12px; color: var(--text-light); margin-top: 18px; }
.blog-post-meta .sep { color: var(--border); }
.blog-post-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 18px; }

/* ── featured image + video ── */
.blog-featured-img { display: block; width: 100%; max-width: 700px; height: auto; object-fit: contain; margin: 40px auto; border: 1px solid var(--border); }
.blog-video-wrap { position: relative; width: 100%; padding-top: 56.25%; background: var(--ink); margin: 40px 0; }
.blog-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ── article body typography (renders the editor's HTML) ── */
.blog-content { max-width: 660px; margin: 0 auto; font-size: 18px; line-height: 1.8; color: var(--text-mid); }
.blog-content > *:first-child { margin-top: 0; }
.blog-content h2 { font-family: var(--font-heading); font-size: 26px; font-weight: 600; letter-spacing: -.02em; color: var(--text); margin: 44px 0 16px; line-height: 1.28; }
.blog-content h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 600; letter-spacing: -.015em; color: var(--text); margin: 36px 0 14px; line-height: 1.32; }
.blog-content p { margin: 0 0 22px; }
.blog-content a { color: var(--purple); text-decoration: underline; text-decoration-color: var(--purple-border); text-underline-offset: 2px; }
.blog-content a:hover { color: var(--purple-dark); }
.blog-content strong { color: var(--text); font-weight: 600; }
.blog-content ul, .blog-content ol { margin: 0 0 22px; padding-left: 1.4em; }
.blog-content li { margin-bottom: 8px; }
.blog-content blockquote { margin: 32px 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--purple); font-family: var(--font-heading); font-size: 19px; font-weight: 500; color: var(--text); font-style: normal; }
.blog-content pre { background: var(--ink); color: #e8e3f5; padding: 18px 20px; overflow-x: auto; margin: 28px 0; font-family: var(--font-mono); font-size: 13.5px; line-height: 1.6; }
.blog-content code { font-family: var(--font-mono); font-size: .92em; background: var(--section-bg); padding: 2px 6px; }
.blog-content pre code { background: none; padding: 0; }
.blog-content img { display: block; max-width: 100%; height: auto; margin: 32px auto; }
.blog-content .ql-align-center { text-align: center; }
.blog-content .ql-align-right { text-align: right; }
.blog-content hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.blog-content iframe { max-width: 100%; }
@media (max-width: 600px) {
  .blog-featured-img { max-width: 100%; margin: 24px auto; }
  .blog-content { font-size: 16.5px; line-height: 1.72; }
  .blog-content h2 { font-size: 22px; margin: 36px 0 14px; }
  .blog-content h3 { font-size: 18px; margin: 28px 0 12px; }
}

/* ── FAQ + related posts + author strip live inside a max-width column, matching the body ── */
.blog-section-narrow { max-width: 720px; margin: 0 auto; }
.blog-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (max-width: 700px) { .blog-related-grid { grid-template-columns: 1fr; } }
