/* Click Metrica — Main Stylesheet v2 */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --navy:     #0b1120;
  --navy2:    #111827;
  --blue:     #2563eb;
  --blue-light:#3b82f6;
  --white:    #ffffff;
  --gray:     #f4f6f9;
  --gray2:    #e5e7eb;
  --text:     #1f2937;
  --muted:    #6b7280;
  --green:    #10b981;
  --font:     'Barlow', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: #fff; overflow-x: hidden; }

/* WordPress admin bar offset */
.admin-bar #site-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar #site-nav { top: 46px; } }

/* ── NAV ─────────────────────────────────────────────────────────────────── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow .2s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-mark {
  width: 32px; height: 32px; background: var(--blue); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 18px; height: 18px; fill: white; }
.logo-text { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.3px; }
.logo-text span { color: var(--blue-light); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a, .nav-links li a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 15px; font-weight: 500; transition: color .2s;
}
.nav-links a:hover, .nav-links li a:hover { color: #fff; }
/* WordPress nav menu resets */
.nav-links ul { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-links li { position: relative; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  background: var(--blue); color: #fff; padding: 10px 20px; border-radius: 6px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: background .2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--blue-light); color: #fff; }

/* Mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px; cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background: rgba(255,255,255,0.85); border-radius: 2px; transition: all .2s;
}

/* Mobile nav open state */
.nav-open {
  display: flex; flex-direction: column; align-items: flex-start;
  position: absolute; top: 68px; left: 0; right: 0;
  background: var(--navy2); border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 16px 24px; gap: 4px; z-index: 999;
}
.nav-open a, .nav-open li, .nav-open ul { display: block; width: 100%; }
.nav-open ul { display: flex; flex-direction: column; gap: 4px; }
.nav-open li a {
  display: block; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 16px;
}

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy); padding: 100px 24px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 600px at 70% 50%, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px;
  align-items: center; position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.3);
  border-radius: 100px; padding: 6px 14px; margin-bottom: 24px;
}
.hero-eyebrow span { font-size: 12px; font-weight: 600; color: var(--blue-light); letter-spacing: 0.08em; text-transform: uppercase; }
.hero h1 { font-size: 58px; font-weight: 900; color: #fff; line-height: 1.05; letter-spacing: -1px; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--blue-light); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue); color: #fff; padding: 14px 28px; border-radius: 7px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .15s; border: none; cursor: pointer; font-family: var(--font);
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-1px); color: #fff; }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.85);
  padding: 14px 28px; border-radius: 7px; font-size: 15px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s; background: none; cursor: pointer; font-family: var(--font);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.hero-img { position: relative; }
.dash-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 24px; backdrop-filter: blur(10px);
}
.dash-title { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.dash-stat-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.dash-kw { font-size: 13px; color: rgba(255,255,255,0.7); }
.dash-pos { font-size: 13px; font-weight: 700; color: var(--green); }
.dash-bar { height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; margin-bottom: 14px; }
.dash-bar-fill { height: 5px; background: linear-gradient(90deg, var(--blue), var(--blue-light)); border-radius: 3px; }
.dash-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.dash-metric { background: rgba(255,255,255,0.05); border-radius: 8px; padding: 12px; }
.dash-metric-val { font-size: 22px; font-weight: 800; color: #fff; }
.dash-metric-val.green { color: var(--green); }
.dash-metric-lbl { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ── TRUST BAR ───────────────────────────────────────────────────────────── */
.trust-bar {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 24px;
}
.trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 40px; }
.trust-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.3); white-space: nowrap; letter-spacing: 0.05em; text-transform: uppercase; }
.trust-logos { display: flex; gap: 32px; align-items: center; flex: 1; justify-content: space-between; flex-wrap: wrap; }
.trust-logo { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.25); letter-spacing: -0.3px; }

/* ── STATS BAND ──────────────────────────────────────────────────────────── */
.stats-band { background: var(--navy); padding: 60px 24px; }
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
}
.stat-box { background: var(--navy); padding: 40px 32px; text-align: center; }
.stat-num { font-size: 52px; font-weight: 900; color: var(--blue-light); line-height: 1; font-family: 'Barlow Condensed', sans-serif; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 8px; font-weight: 500; }

/* ── SECTION HELPERS ─────────────────────────────────────────────────────── */
.section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.eyebrow { font-size: 12px; font-weight: 700; color: var(--blue); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.section-h2 { font-size: 42px; font-weight: 900; color: var(--text); line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 16px; }
.section-h2.white { color: #fff; }
.section-sub { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 600px; }
.section-sub.white { color: rgba(255,255,255,0.6); }

/* ── WHY US ──────────────────────────────────────────────────────────────── */
.why { background: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 48px; }
.why-text p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.why-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.pill { background: var(--gray); border: 1px solid var(--gray2); padding: 7px 15px; border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--text); }
.why-right { display: flex; flex-direction: column; gap: 16px; }
.why-card { background: var(--gray); border-radius: 12px; padding: 24px; border-left: 4px solid var(--blue); }
.why-card h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── SERVICES ────────────────────────────────────────────────────────────── */
.services { background: var(--gray); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.svc-card {
  background: #fff; border-radius: 12px; padding: 28px;
  border: 1px solid var(--gray2); transition: transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon { width: 44px; height: 44px; background: #eff6ff; border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 2; }
.svc-card h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.svc-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.svc-link { display: inline-flex; align-items: center; gap: 5px; color: var(--blue); font-size: 13px; font-weight: 600; margin-top: 14px; text-decoration: none; transition: gap .2s; }
.svc-link:hover { gap: 10px; }

/* ── CASE STUDY TEASER ───────────────────────────────────────────────────── */
.cs-teaser { background: var(--navy2); padding: 72px 24px; }
.cs-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cs-metric-block { display: flex; flex-direction: column; gap: 8px; }
.cs-num { font-size: 96px; font-weight: 900; color: var(--blue-light); line-height: 1; font-family: 'Barlow Condensed', sans-serif; letter-spacing: -2px; }
.cs-context { font-size: 18px; color: rgba(255,255,255,0.5); font-weight: 500; }
.cs-info h3 { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 14px; line-height: 1.2; }
.cs-info p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 24px; }
.cs-link { color: var(--blue-light); font-size: 15px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.cs-link:hover { gap: 10px; }
.cs-results { display: flex; gap: 32px; margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.cs-result-num { font-size: 30px; font-weight: 900; color: var(--green); font-family: 'Barlow Condensed', sans-serif; }
.cs-result-lbl { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ── PROCESS ─────────────────────────────────────────────────────────────── */
.process { background: #fff; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 52px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 31px; left: 12.5%; right: 12.5%; height: 2px; background: var(--gray2); }
.step-item { text-align: center; padding: 0 14px; position: relative; }
.step-num {
  width: 62px; height: 62px; border-radius: 50%; background: var(--blue); color: #fff;
  font-size: 24px; font-weight: 900; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-family: 'Barlow Condensed', sans-serif; position: relative; z-index: 1;
}
.step-item h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-item p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── TESTIMONIALS ────────────────────────────────────────────────────────── */
.testimonials { background: var(--gray); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.testi-card { background: #fff; border-radius: 12px; padding: 28px; border: 1px solid var(--gray2); }
.stars { color: #f59e0b; font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-size: 15px; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.testi-divider { height: 1px; background: var(--gray2); margin-bottom: 16px; }
.testi-author { font-size: 14px; font-weight: 600; color: var(--text); }
.testi-company { font-size: 13px; color: var(--muted); margin-top: 2px; }
.testi-badge { font-size: 11px; color: var(--green); font-weight: 600; margin-top: 8px; }
.testi-badge::before { content: '✓ '; }

/* ── FREE AUDIT CTA ──────────────────────────────────────────────────────── */
.audit-cta { background: var(--navy); padding: 80px 24px; }
.audit-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.audit-left h2 { font-size: 40px; font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 16px; }
.audit-left h2 span { color: var(--blue-light); }
.audit-left p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 28px; }
.audit-features { display: flex; flex-direction: column; gap: 12px; }
.audit-feat { display: flex; align-items: flex-start; gap: 10px; }
.audit-feat-icon {
  width: 18px; height: 18px; background: rgba(37,99,235,0.22); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.audit-feat-icon::before { content: '✓'; font-size: 10px; color: var(--blue-light); font-weight: 700; }
.audit-feat-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.audit-right {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 36px;
}
.audit-right h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.audit-right > p { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 24px; }
.form-row { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.form-input {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 7px; padding: 13px 15px; font-size: 14px; color: #fff;
  font-family: var(--font); width: 100%; outline: none; transition: border .2s;
}
.form-input::placeholder { color: rgba(255,255,255,0.32); }
.form-input:focus { border-color: var(--blue); background: rgba(255,255,255,0.1); }
.form-btn {
  background: var(--blue); color: #fff; border: none; padding: 15px; border-radius: 7px;
  font-size: 15px; font-weight: 700; width: 100%; cursor: pointer; font-family: var(--font);
  transition: background .2s;
}
.form-btn:hover { background: var(--blue-light); }
.form-note { font-size: 11px; color: rgba(255,255,255,0.28); text-align: center; margin-top: 10px; }
.form-success { font-size: 14px; text-align: center; margin-top: 10px; font-weight: 600; }

/* ── PRESS ───────────────────────────────────────────────────────────────── */
.press { background: var(--gray); padding: 40px 24px; }
.press-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.press-label { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.press-logos { display: flex; gap: 40px; align-items: center; flex: 1; justify-content: space-between; flex-wrap: wrap; }
.press-logo { font-size: 16px; font-weight: 800; color: #9ca3af; letter-spacing: -0.3px; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
#site-footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.07); }
.footer-main {
  max-width: 1200px; margin: 0 auto; padding: 64px 24px 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.8; margin-top: 14px; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.88); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.42); text-decoration: none; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 24px; }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.24); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.28); text-decoration: none; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

/* ── PAGE HERO (inner pages) ─────────────────────────────────────────────── */
.page-hero { background: var(--navy); padding: 100px 24px 72px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 400px at 65% 50%, rgba(37,99,235,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.breadcrumb { display: flex; align-items: center; gap: 7px; margin-bottom: 14px; }
.breadcrumb a, .breadcrumb span { font-size: 12px; color: rgba(255,255,255,0.32); text-decoration: none; }
.breadcrumb a:hover { color: rgba(255,255,255,0.65); }
.breadcrumb .sep { color: rgba(255,255,255,0.18); }
.breadcrumb .current { color: rgba(255,255,255,0.6); }
.page-hero h1 { font-size: 48px; font-weight: 900; color: #fff; line-height: 1.08; letter-spacing: -0.5px; margin-bottom: 14px; max-width: 700px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.52); max-width: 560px; line-height: 1.7; }

/* ── SERVICES PAGE ───────────────────────────────────────────────────────── */
.svc-detail-section { padding: 72px 24px; border-bottom: 1px solid var(--gray2); }
.svc-detail-section:nth-child(even) { background: var(--gray); }
.svc-detail-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.svc-detail-inner.reverse { direction: rtl; }
.svc-detail-inner.reverse > * { direction: ltr; }
.svc-detail-content h2 { font-size: 34px; font-weight: 800; color: var(--text); margin-bottom: 14px; line-height: 1.2; }
.svc-detail-content p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.svc-results-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.result-pill { background: #dcfce7; color: #166534; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 100px; }
.svc-visual { background: var(--gray); border-radius: 14px; padding: 28px; min-height: 240px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--gray2); }
.svc-visual svg { width: 100%; max-width: 280px; }

/* ── CASE STUDIES PAGE ───────────────────────────────────────────────────── */
.filter-bar { background: #fff; border-bottom: 1px solid var(--gray2); padding: 0 24px; }
.filter-inner { max-width: 1200px; margin: 0 auto; display: flex; overflow-x: auto; }
.filter-btn {
  padding: 16px 22px; font-size: 13px; font-weight: 600; color: var(--muted);
  border: none; background: none; cursor: pointer;
  border-bottom: 3px solid transparent; white-space: nowrap;
  transition: all .2s; font-family: var(--font);
}
.filter-btn.active, .filter-btn:hover { color: var(--blue); border-bottom-color: var(--blue); }
.cs-grid-section { padding: 52px 24px; }
.cs-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.cs-card { background: #fff; border-radius: 12px; border: 1px solid var(--gray2); overflow: hidden; transition: transform .2s, box-shadow .2s; }
.cs-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.cs-card-top { background: var(--navy2); padding: 28px; }
.cs-card-industry { font-size: 10px; font-weight: 700; background: rgba(37,99,235,0.2); color: var(--blue-light); padding: 4px 10px; border-radius: 100px; display: inline-block; margin-bottom: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.cs-card-big { font-size: 52px; font-weight: 900; color: #fff; line-height: 1; font-family: 'Barlow Condensed', sans-serif; letter-spacing: -1px; }
.cs-card-period { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 3px; }
.cs-card-body { padding: 22px; }
.cs-card-body h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.cs-card-body p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.cs-card-link { color: var(--blue); font-size: 13px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; }

/* ── BLOG ────────────────────────────────────────────────────────────────── */
.blog-featured { background: #fff; padding: 52px 24px; border-bottom: 1px solid var(--gray2); }
.blog-featured-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.blog-featured-img { background: var(--gray); border-radius: 12px; height: 280px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--gray2); overflow: hidden; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-cat-tag { display: inline-block; background: #eff6ff; color: var(--blue); font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 100px; margin-bottom: 13px; letter-spacing: 0.05em; text-transform: uppercase; }
.blog-featured-content h2 { font-size: 28px; font-weight: 800; color: var(--text); line-height: 1.2; margin-bottom: 12px; }
.blog-featured-content p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.blog-meta { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.blog-grid-section { padding: 52px 24px; background: var(--gray); }
.blog-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card { background: #fff; border-radius: 12px; border: 1px solid var(--gray2); overflow: hidden; transition: transform .2s; }
.blog-card:hover { transform: translateY(-3px); }
.blog-card-img { height: 150px; background: var(--navy2); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-card-body h3 { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.4; margin: 8px 0 7px; }
.blog-card-body p { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; }
.blog-card-footer span { font-size: 11px; color: var(--muted); }
.blog-read { color: var(--blue); font-size: 12px; font-weight: 600; text-decoration: none; }

/* ── CONTACT PAGE ────────────────────────────────────────────────────────── */
.contact-section { background: #fff; padding: 72px 24px; }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px; }
.contact-form-wrap h2 { font-size: 30px; font-weight: 800; color: var(--text); margin-bottom: 7px; }
.contact-form-wrap > p { font-size: 15px; color: var(--muted); margin-bottom: 28px; }
.cform { display: flex; flex-direction: column; gap: 12px; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cform input, .cform select, .cform textarea {
  border: 1.5px solid var(--gray2); border-radius: 7px; padding: 12px 14px;
  font-size: 14px; color: var(--text); font-family: var(--font);
  width: 100%; outline: none; transition: border .2s; background: #fff;
}
.cform input:focus, .cform select:focus, .cform textarea:focus { border-color: var(--blue); }
.cform textarea { height: 110px; resize: vertical; }
.cform-btn { background: var(--blue); color: #fff; border: none; padding: 14px; border-radius: 7px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: var(--font); transition: background .2s; }
.cform-btn:hover { background: var(--blue-light); }
.contact-trust h3 { font-size: 19px; font-weight: 800; color: var(--text); margin-bottom: 22px; }
.trust-step-item { display: flex; gap: 14px; margin-bottom: 24px; }
.trust-step-circle { width: 38px; height: 38px; border-radius: 50%; background: #eff6ff; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; color: var(--blue); flex-shrink: 0; }
.trust-step-text h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.trust-step-text p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.reply-badge { display: inline-flex; align-items: center; gap: 7px; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 7px; padding: 10px 14px; margin-top: 6px; }
.reply-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.reply-badge span { font-size: 13px; font-weight: 600; color: #166534; }
.contact-info { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--gray2); }
.contact-info h4 { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.contact-info p { font-size: 14px; color: var(--text); margin-bottom: 5px; }
.contact-info a { color: var(--blue); text-decoration: none; }

/* ── CAREERS PAGE ────────────────────────────────────────────────────────── */
.culture-section { background: var(--gray); padding: 72px 24px; }
.culture-inner { max-width: 1200px; margin: 0 auto; }
.culture-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 40px; }
.culture-card { background: #fff; border-radius: 12px; padding: 24px; border: 1px solid var(--gray2); }
.culture-icon { font-size: 26px; margin-bottom: 12px; }
.culture-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.culture-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.roles-section-wrap { padding: 72px 24px; background: #fff; }
.roles-inner { max-width: 1200px; margin: 0 auto; }
.role-card { border: 1.5px solid var(--gray2); border-radius: 12px; padding: 24px 28px; margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; transition: border-color .2s, box-shadow .2s; }
.role-card:hover { border-color: var(--blue); box-shadow: 0 8px 24px rgba(37,99,235,0.08); }
.role-left h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.role-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.role-tag { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
.tag-blue { background: #eff6ff; color: #1d4ed8; }
.tag-green { background: #f0fdf4; color: #166534; }
.tag-gray { background: var(--gray); color: var(--muted); }
.role-apply { background: var(--blue); color: #fff; padding: 10px 20px; border-radius: 6px; font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: background .2s; }
.role-apply:hover { background: var(--blue-light); }
.apply-process-section { background: var(--navy); padding: 72px 24px; }
.apply-inner { max-width: 1200px; margin: 0 auto; }
.apply-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 40px; position: relative; }
.apply-steps::before { content: ''; position: absolute; top: 26px; left: 12.5%; right: 12.5%; height: 1.5px; background: rgba(255,255,255,0.1); }
.apply-step { text-align: center; padding: 0 14px; }
.apply-step-num { width: 52px; height: 52px; border-radius: 50%; background: rgba(37,99,235,0.2); border: 2px solid var(--blue); color: var(--blue-light); font-size: 19px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Barlow Condensed', sans-serif; position: relative; z-index: 1; }
.apply-step h3 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.apply-step p { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.5; }

/* ── SINGLE BLOG POST ────────────────────────────────────────────────────── */
.post-hero { background: var(--navy); padding: 100px 24px 64px; position: relative; overflow: hidden; }
.post-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 600px 400px at 60% 50%,rgba(37,99,235,0.1) 0%,transparent 70%); pointer-events: none; }
.post-hero-inner { max-width: 820px; margin: 0 auto; position: relative; }
.post-cat-badge { display: inline-block; background: rgba(37,99,235,0.18); border: 1px solid rgba(37,99,235,0.35); color: var(--blue-light); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; }
.post-hero-title { font-size: 44px; font-weight: 900; color: #fff; line-height: 1.08; letter-spacing: -0.7px; margin-bottom: 16px; }
.post-hero-excerpt { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 22px; max-width: 640px; }
.post-hero-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.post-author-chip { display: flex; align-items: center; gap: 9px; }
.post-author-avatar { width: 34px !important; height: 34px !important; border-radius: 50%; border: 2px solid rgba(255,255,255,0.18); }
.post-author-info { display: flex; flex-direction: column; gap: 1px; }
.post-author-name { font-size: 13px; font-weight: 700; color: #fff; text-decoration: none; }
.post-author-name:hover { color: var(--blue-light); }
.post-author-role { font-size: 10px; color: rgba(255,255,255,0.35); }
.post-meta-divider { width: 1px; height: 22px; background: rgba(255,255,255,0.12); }
.post-meta-item { display: flex; align-items: center; gap: 5px; font-size: 11px; color: rgba(255,255,255,0.42); }
.post-meta-item svg { width: 13px; height: 13px; flex-shrink: 0; }
.post-featured-img-wrap { background: var(--navy2); padding: 0 24px; }
.post-featured-img-inner { max-width: 1000px; margin: 0 auto; transform: translateY(-24px); }
.post-featured-img { width: 100%; height: 440px; object-fit: cover; border-radius: 14px; display: block; box-shadow: 0 24px 56px rgba(0,0,0,0.28); }
.post-layout { background: #fff; padding: 0 24px 72px; }
.post-layout-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 290px; gap: 56px; align-items: flex-start; }
.post-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 16px; order: 2; }
.post-sidebar-card { background: var(--gray); border: 1px solid var(--gray2); border-radius: 12px; padding: 20px; }
.post-sidebar-label { font-size: 10px; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.post-share-btns { display: flex; flex-direction: column; gap: 7px; }
.post-share-btns--inline { flex-direction: row; flex-wrap: wrap; }
.share-btn { display: flex; align-items: center; gap: 7px; padding: 9px 12px; border-radius: 7px; font-size: 12px; font-weight: 700; text-decoration: none; cursor: pointer; border: none; width: 100%; font-family: var(--font); transition: opacity .2s; }
.share-btn:hover { opacity: 0.85; }
.share-btn svg { width: 13px; height: 13px; flex-shrink: 0; }
.share-twitter { background: #000; color: #fff; }
.share-linkedin { background: #0a66c2; color: #fff; }
.share-copy { background: var(--gray2); color: var(--text); }
.share-btn--sm { width: auto; }
.post-toc { display: flex; flex-direction: column; gap: 5px; }
.toc-item { text-decoration: none; font-size: 12px; color: var(--muted); line-height: 1.5; padding: 4px 0 4px 10px; border-left: 2px solid var(--gray2); transition: color .2s, border-color .2s; display: block; }
.toc-item:hover, .toc-item.active { color: var(--blue); border-left-color: var(--blue); }
.toc-item--h3 { padding-left: 20px; font-size: 11px; }
.post-related-list { display: flex; flex-direction: column; gap: 10px; }
.post-related-item { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.post-related-item:hover .post-related-title { color: var(--blue); }
.post-related-thumb { width: 46px; height: 46px; border-radius: 5px; object-fit: cover; flex-shrink: 0; background: var(--navy2); }
.post-related-thumb--placeholder { background: var(--navy2); }
.post-related-title { font-size: 12px; font-weight: 600; color: var(--text); line-height: 1.4; transition: color .2s; }
.post-sidebar-cta { background: var(--navy); border-radius: 12px; padding: 20px; }
.post-sidebar-cta-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 8px; }
.post-sidebar-cta-heading { font-size: 15px; font-weight: 800; color: #fff; line-height: 1.25; margin-bottom: 8px; }
.post-sidebar-cta-text { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 14px; }
.post-sidebar-cta-btn { display: block; background: var(--blue); color: #fff; text-align: center; padding: 11px; border-radius: 7px; font-size: 13px; font-weight: 700; text-decoration: none; transition: background .2s; }
.post-sidebar-cta-btn:hover { background: var(--blue-light); }
.post-sidebar-cta-note { font-size: 10px; color: rgba(255,255,255,0.22); text-align: center; margin-top: 7px; }
.post-article { order: 1; padding-top: 48px; }
.post-content { font-size: 17px; line-height: 1.85; color: var(--text); }
.post-content h2 { font-size: 28px; font-weight: 800; color: var(--text); line-height: 1.2; letter-spacing: -0.3px; margin: 48px 0 16px; }
.post-content h3 { font-size: 21px; font-weight: 700; color: var(--text); line-height: 1.3; margin: 36px 0 12px; }
.post-content h4 { font-size: 17px; font-weight: 700; color: var(--text); margin: 28px 0 10px; }
.post-content p { margin-bottom: 20px; }
.post-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.post-content strong { font-weight: 700; }
.post-content ul, .post-content ol { margin: 4px 0 20px 24px; display: flex; flex-direction: column; gap: 7px; }
.post-content li { line-height: 1.7; }
.post-content ul li { list-style: disc; }
.post-content ol li { list-style: decimal; }
.post-content blockquote { margin: 32px 0; padding: 20px 24px; background: #eff6ff; border-left: 4px solid var(--blue); border-radius: 0 10px 10px 0; font-style: italic; color: var(--text); line-height: 1.75; font-size: 17px; }
.post-content code { background: var(--gray); border: 1px solid var(--gray2); border-radius: 4px; padding: 2px 6px; font-size: 14px; font-family: 'Courier New', monospace; color: #1e40af; }
.post-content pre { background: var(--navy); border-radius: 10px; padding: 22px; overflow-x: auto; margin: 24px 0; }
.post-content pre code { background: none; border: none; padding: 0; font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.7; }
.post-content img { max-width: 100%; height: auto; border-radius: 10px; margin: 24px 0; }
.post-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.post-content th { background: var(--navy); color: #fff; font-weight: 700; padding: 12px 14px; text-align: left; font-size: 12px; letter-spacing: 0.04em; }
.post-content td { padding: 11px 14px; border-bottom: 1px solid var(--gray2); }
.post-content tr:nth-child(even) td { background: var(--gray); }
.post-content hr { border: none; height: 1px; background: var(--gray2); margin: 44px 0; }
.post-tags { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--gray2); }
.post-tags-label { font-size: 12px; font-weight: 600; color: var(--muted); }
.post-tag { display: inline-block; background: var(--gray); border: 1px solid var(--gray2); color: var(--text); font-size: 11px; font-weight: 600; padding: 4px 11px; border-radius: 100px; text-decoration: none; transition: background .2s, color .2s; }
.post-tag:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.post-share-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 20px; padding: 16px 20px; background: var(--gray); border-radius: 10px; border: 1px solid var(--gray2); }
.post-share-row-label { font-size: 13px; font-weight: 600; color: var(--muted); flex-shrink: 0; }
.post-author-card { display: flex; gap: 20px; align-items: flex-start; background: var(--gray); border: 1px solid var(--gray2); border-radius: 14px; padding: 28px; margin-top: 44px; }
.post-author-card-avatar { width: 72px !important; height: 72px !important; border-radius: 50%; flex-shrink: 0; border: 3px solid var(--gray2); }
.post-author-card-name { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 2px; }
.post-author-card-name a { color: inherit; text-decoration: none; }
.post-author-card-name a:hover { color: var(--blue); }
.post-author-card-role { font-size: 12px; color: var(--blue); font-weight: 600; margin-bottom: 10px; }
.post-author-card-bio { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 10px; }
.post-author-card-link { font-size: 12px; font-weight: 700; color: var(--blue); text-decoration: none; }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--gray2); }
.post-nav-prev { text-align: left; }
.post-nav-next { text-align: right; }
.post-nav-dir { display: block; font-size: 10px; font-weight: 700; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.post-nav-title { font-size: 14px; font-weight: 700; color: var(--text); text-decoration: none; line-height: 1.4; display: block; transition: color .2s; }
.post-nav-title:hover { color: var(--blue); }
.post-comments-wrap { margin-top: 52px; padding-top: 44px; border-top: 1px solid var(--gray2); }
.post-comments-wrap .comment-list { list-style: none; padding: 0; margin: 0 0 28px; }
.post-comments-wrap .comment { padding: 20px 0; border-bottom: 1px solid var(--gray2); }
.post-comments-wrap .comment-author b { font-size: 14px; font-weight: 700; color: var(--text); }
.post-comments-wrap .comment-metadata { font-size: 11px; color: var(--muted); margin-top: 2px; }
.post-comments-wrap .comment-body p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 8px; }
.post-comments-wrap .comment-reply-link { font-size: 12px; color: var(--blue); font-weight: 600; text-decoration: none; }
.post-comments-wrap #respond h3 { font-size: 18px; font-weight: 800; margin-bottom: 18px; color: var(--text); }
.post-comments-wrap .comment-form input,
.post-comments-wrap .comment-form textarea { width: 100%; border: 1.5px solid var(--gray2); border-radius: 7px; padding: 11px 14px; font-size: 14px; font-family: var(--font); color: var(--text); outline: none; margin-bottom: 12px; transition: border .2s; }
.post-comments-wrap .comment-form input:focus, .post-comments-wrap .comment-form textarea:focus { border-color: var(--blue); }
.post-comments-wrap .comment-form textarea { height: 110px; resize: vertical; }
.post-comments-wrap .submit { background: var(--blue); color: #fff; border: none; padding: 12px 26px; border-radius: 7px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: var(--font); transition: background .2s; }
.post-comments-wrap .submit:hover { background: var(--blue-light); }
.post-newsletter { background: var(--navy2); border-top: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); padding: 64px 24px; }
.post-newsletter-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.post-newsletter-heading { font-size: 32px; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 10px; letter-spacing: -0.4px; }
.post-newsletter-sub { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.post-newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.post-newsletter-input { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: 7px; padding: 13px 16px; font-size: 14px; color: #fff; font-family: var(--font); outline: none; transition: border .2s; }
.post-newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.post-newsletter-input:focus { border-color: var(--blue); }
.post-newsletter-btn { background: var(--blue); color: #fff; border: none; padding: 13px; border-radius: 7px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: var(--font); transition: background .2s; }
.post-newsletter-btn:hover { background: var(--blue-light); }
.post-newsletter-note { font-size: 11px; color: rgba(255,255,255,0.24); text-align: center; }

/* ── WP ALIGNMENT HELPERS ────────────────────────────────────────────────── */
.wp-block-image img { max-width: 100%; height: auto; }
.aligncenter { text-align: center; margin: 0 auto; display: block; }
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--muted); text-align: center; margin-top: 6px; }

/* ── WP PAGINATION ───────────────────────────────────────────────────────── */
.navigation .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.navigation .page-numbers { background: var(--gray); border: 1px solid var(--gray2); color: var(--text); padding: 8px 14px; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 14px; }
.navigation .page-numbers.current { background: var(--blue); color: #fff; border-color: var(--blue); }
.navigation .page-numbers:hover:not(.current) { background: var(--gray2); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .post-layout-inner { grid-template-columns: 1fr; }
  .post-sidebar { position: static; order: -1; }
  #toc-card, .post-sidebar-cta { display: none !important; }
  .post-share-btns { flex-direction: row; flex-wrap: wrap; }
  .share-btn { width: auto; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .hero-img { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .why-grid, .cs-inner, .audit-inner, .contact-inner, .blog-featured-inner,
  .svc-detail-inner, .svc-detail-inner.reverse { grid-template-columns: 1fr; gap: 28px; }
  .services-grid, .testi-grid, .cs-grid, .blog-grid, .culture-grid { grid-template-columns: 1fr; }
  .process-steps, .apply-steps { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .section-h2 { font-size: 28px; }
  .page-hero h1 { font-size: 30px; }
  .post-hero-title { font-size: 28px; }
  .post-featured-img { height: 220px; }
  .post-newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-next { text-align: left; }
  .post-author-card { flex-direction: column; align-items: center; text-align: center; }
  .cs-num { font-size: 72px; }
}
@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .process-steps, .apply-steps { grid-template-columns: 1fr; }
  .process-steps::before, .apply-steps::before { display: none; }
  .hero { padding: 80px 16px 60px; }
}

/* ══════════════════════════════════════════════════════════════════
   SKIP LINK + ACCESSIBILITY
══════════════════════════════════════════════════════════════════ */
.skip-link { position:absolute; top:-40px; left:6px; background:var(--blue); color:#fff; padding:8px 16px; border-radius:0 0 8px 8px; font-size:14px; font-weight:600; text-decoration:none; z-index:9999; transition:top .15s; }
.skip-link:focus { top:0; }

/* ══════════════════════════════════════════════════════════════════
   FOOTER SITEMAP STRIP
══════════════════════════════════════════════════════════════════ */
.footer-sitemap { background:var(--navy2); border-top:1px solid rgba(255,255,255,0.06); padding:40px 24px; }
.footer-sitemap-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:32px; }
.footer-sitemap-col h3 { font-size:11px; font-weight:700; color:rgba(255,255,255,0.5); letter-spacing:0.08em; text-transform:uppercase; margin-bottom:12px; }
.footer-sitemap-col a { display:block; font-size:12px; color:rgba(255,255,255,0.35); text-decoration:none; margin-bottom:7px; transition:color .15s; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.footer-sitemap-col a:hover { color:rgba(255,255,255,0.8); }
.footer-social { display:flex; gap:12px; margin-top:16px; }
.footer-social a { color:rgba(255,255,255,0.4); transition:color .15s; display:flex; align-items:center; }
.footer-social a:hover { color:#fff; }

/* ══════════════════════════════════════════════════════════════════
   BLOG HUB — HERO
══════════════════════════════════════════════════════════════════ */
.blog-hub-hero { background:var(--navy); padding:100px 24px 64px; position:relative; overflow:hidden; }
.blog-hub-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 700px 500px at 65% 50%, rgba(37,99,235,0.1) 0%, transparent 70%); pointer-events:none; }
.blog-hub-hero-inner { max-width:860px; margin:0 auto; position:relative; }
.blog-hub-h1 { font-size:48px; font-weight:900; color:#fff; line-height:1.08; letter-spacing:-0.8px; margin-bottom:14px; }
.blog-hub-desc { font-size:17px; color:rgba(255,255,255,0.55); line-height:1.7; margin-bottom:28px; max-width:600px; }

/* Blog search */
.blog-search-form { margin-bottom:28px; }
.blog-search-wrap { display:flex; align-items:center; background:rgba(255,255,255,0.08); border:1.5px solid rgba(255,255,255,0.15); border-radius:10px; padding:4px 6px 4px 16px; gap:8px; max-width:520px; transition:border-color .2s; }
.blog-search-wrap:focus-within { border-color:var(--blue); background:rgba(255,255,255,0.11); }
.blog-search-icon { width:16px; height:16px; color:rgba(255,255,255,0.35); flex-shrink:0; }
.blog-search-input { flex:1; background:none; border:none; outline:none; font-size:15px; color:#fff; font-family:var(--font); padding:8px 0; min-width:0; }
.blog-search-input::placeholder { color:rgba(255,255,255,0.35); }
.blog-search-btn { background:var(--blue); color:#fff; border:none; padding:9px 18px; border-radius:7px; font-size:13px; font-weight:700; cursor:pointer; font-family:var(--font); white-space:nowrap; transition:background .2s; }
.blog-search-btn:hover { background:var(--blue-light); }

/* Blog hero stats */
.blog-hub-stats { display:flex; align-items:center; gap:0; }
.blog-hub-stat { display:flex; flex-direction:column; gap:2px; padding-right:20px; }
.blog-hub-stat strong { font-size:20px; font-weight:800; color:#fff; font-family:'Barlow Condensed',sans-serif; }
.blog-hub-stat span { font-size:11px; color:rgba(255,255,255,0.4); text-transform:uppercase; letter-spacing:0.06em; }
.blog-hub-stat-divider { width:1px; height:36px; background:rgba(255,255,255,0.12); margin:0 20px; }

/* ══════════════════════════════════════════════════════════════════
   BLOG FILTER BAR
══════════════════════════════════════════════════════════════════ */
.blog-filter-bar { background:var(--navy2); border-bottom:1px solid rgba(255,255,255,0.08); padding:0 24px; position:sticky; top:68px; z-index:90; }
.admin-bar .blog-filter-bar { top:100px; }
.blog-filter-inner { max-width:1200px; margin:0 auto; display:flex; gap:0; overflow-x:auto; scrollbar-width:none; -ms-overflow-style:none; }
.blog-filter-inner::-webkit-scrollbar { display:none; }
.blog-filter-btn { display:flex; align-items:center; gap:7px; padding:14px 18px; font-size:13px; font-weight:600; color:rgba(255,255,255,0.45); text-decoration:none; border-bottom:2px solid transparent; white-space:nowrap; transition:all .2s; }
.blog-filter-btn:hover { color:rgba(255,255,255,0.8); }
.blog-filter-btn.active { color:#fff; border-bottom-color:var(--blue); }
.blog-filter-count { background:rgba(255,255,255,0.1); color:rgba(255,255,255,0.5); font-size:10px; padding:2px 7px; border-radius:100px; font-weight:600; }
.blog-filter-btn.active .blog-filter-count { background:rgba(37,99,235,0.25); color:var(--blue-light); }

/* ══════════════════════════════════════════════════════════════════
   BLOG FEATURED ARTICLE
══════════════════════════════════════════════════════════════════ */
.blog-featured-article { background:#fff; border-bottom:1px solid var(--gray2); padding:48px 24px; }
.blog-featured-wrap { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.blog-feat-image-wrap { position:relative; border-radius:14px; overflow:hidden; }
.blog-feat-image { width:100%; height:340px; object-fit:cover; display:block; }
.blog-feat-image-placeholder { width:100%; height:340px; background:var(--navy2); display:flex; align-items:center; justify-content:center; border-radius:14px; }
.blog-feat-cat-badge { position:absolute; top:16px; left:16px; background:var(--blue); color:#fff; font-size:10px; font-weight:700; padding:5px 12px; border-radius:100px; letter-spacing:0.06em; text-transform:uppercase; text-decoration:none; }
.blog-feat-eyebrow { font-size:11px; font-weight:700; color:var(--blue); letter-spacing:0.1em; text-transform:uppercase; margin-bottom:12px; display:flex; align-items:center; gap:6px; }
.blog-feat-eyebrow::before { content:''; display:inline-block; width:20px; height:2px; background:var(--blue); }
.blog-feat-title { font-size:30px; font-weight:800; color:var(--text); line-height:1.2; margin-bottom:14px; }
.blog-feat-title a { color:inherit; text-decoration:none; }
.blog-feat-title a:hover { color:var(--blue); }
.blog-feat-excerpt { font-size:15px; color:var(--muted); line-height:1.7; margin-bottom:20px; }
.blog-feat-meta { display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-bottom:24px; }
.blog-author-chip { display:flex; align-items:center; gap:8px; }
.blog-author-avatar { width:32px !important; height:32px !important; border-radius:50%; border:2px solid var(--gray2); }
.blog-author-info { display:flex; flex-direction:column; gap:1px; }
.blog-author-name { font-size:13px; font-weight:700; color:var(--text); text-decoration:none; }
.blog-author-name:hover { color:var(--blue); }
.blog-author-role { font-size:10px; color:var(--muted); }
.blog-meta-sep { width:1px; height:18px; background:var(--gray2); }
.blog-meta-date, .blog-meta-read { font-size:12px; color:var(--muted); }
.blog-feat-cta { display:inline-flex; align-items:center; gap:8px; }

/* ══════════════════════════════════════════════════════════════════
   BLOG HUB GRID + SIDEBAR
══════════════════════════════════════════════════════════════════ */
.blog-hub-grid-section { max-width:1400px; margin:0 auto; padding:48px 24px 72px; display:grid; grid-template-columns:1fr 320px; gap:48px; align-items:flex-start; }
.blog-hub-section-header { display:flex; align-items:baseline; justify-content:space-between; margin-bottom:28px; grid-column:1; }
.blog-hub-section-title { font-size:22px; font-weight:800; color:var(--text); }
.blog-hub-clear-filter { font-size:13px; font-weight:600; color:var(--blue); text-decoration:none; }
.blog-hub-clear-filter:hover { color:var(--blue-light); }

.blog-hub-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.blog-hub-card { background:#fff; border-radius:12px; border:1px solid var(--gray2); overflow:hidden; transition:transform .2s, box-shadow .2s; display:flex; flex-direction:column; }
.blog-hub-card:hover { transform:translateY(-3px); box-shadow:0 16px 40px rgba(0,0,0,0.08); }
.blog-hub-card-image-link { display:block; }
.blog-hub-card-image { position:relative; height:180px; overflow:hidden; background:var(--navy2); }
.blog-hub-card-img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .3s; }
.blog-hub-card:hover .blog-hub-card-img { transform:scale(1.03); }
.blog-hub-card-img-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; }
.blog-hub-card-cat { position:absolute; top:12px; left:12px; background:var(--blue); color:#fff; font-size:9px; font-weight:700; padding:3px 9px; border-radius:100px; text-transform:uppercase; letter-spacing:0.06em; }
.blog-hub-card-body { padding:20px; display:flex; flex-direction:column; flex:1; }
.blog-hub-card-title { font-size:16px; font-weight:700; color:var(--text); line-height:1.35; margin-bottom:8px; }
.blog-hub-card-title a { color:inherit; text-decoration:none; }
.blog-hub-card-title a:hover { color:var(--blue); }
.blog-hub-card-excerpt { font-size:13px; color:var(--muted); line-height:1.6; margin-bottom:12px; flex:1; }
.blog-hub-card-tags { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:12px; }
.blog-hub-card-tag { font-size:10px; font-weight:600; color:var(--blue); background:#eff6ff; padding:2px 8px; border-radius:100px; text-decoration:none; transition:background .15s; }
.blog-hub-card-tag:hover { background:#dbeafe; }
.blog-hub-card-footer { display:flex; align-items:center; justify-content:space-between; padding-top:12px; border-top:1px solid var(--gray2); margin-top:auto; }
.blog-card-author-chip { display:flex; align-items:center; gap:6px; }
.blog-card-avatar { width:22px !important; height:22px !important; border-radius:50%; }
.blog-card-author-name { font-size:11px; font-weight:600; color:var(--muted); text-decoration:none; }
.blog-card-author-name:hover { color:var(--blue); }
.blog-card-meta-right { font-size:11px; color:var(--muted); display:flex; align-items:center; gap:4px; }
.blog-card-meta-dot { color:var(--gray2); }

/* Blog pagination */
.blog-pagination { padding-top:40px; }
.blog-pagination .nav-links { display:flex; gap:8px; justify-content:center; }
.blog-pagination .page-numbers { background:var(--gray); border:1px solid var(--gray2); color:var(--text); padding:10px 16px; border-radius:8px; text-decoration:none; font-weight:600; font-size:14px; display:flex; align-items:center; gap:6px; }
.blog-pagination .page-numbers.current { background:var(--blue); color:#fff; border-color:var(--blue); }
.blog-pagination .page-numbers:hover:not(.current) { background:var(--gray2); }

/* Blog no results */
.blog-no-results { padding:80px 24px; text-align:center; }
.blog-no-results-inner { max-width:400px; margin:0 auto; display:flex; flex-direction:column; align-items:center; gap:16px; }
.blog-no-results h2 { font-size:22px; font-weight:800; color:var(--text); }
.blog-no-results p { font-size:15px; color:var(--muted); }

/* ══════════════════════════════════════════════════════════════════
   BLOG SIDEBAR
══════════════════════════════════════════════════════════════════ */
.blog-hub-sidebar { display:flex; flex-direction:column; gap:20px; position:sticky; top:120px; }
.blog-sidebar-card { background:#fff; border:1px solid var(--gray2); border-radius:12px; padding:22px; }
.blog-sidebar-heading { font-size:14px; font-weight:700; color:var(--text); margin-bottom:14px; }

/* Sidebar newsletter */
.blog-sidebar-newsletter { background:var(--navy); border:none; }
.blog-sidebar-newsletter-eyebrow { font-size:10px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--blue-light); margin-bottom:8px; }
.blog-sidebar-newsletter-heading { font-size:17px; font-weight:800; color:#fff; line-height:1.25; margin-bottom:8px; }
.blog-sidebar-newsletter-sub { font-size:12px; color:rgba(255,255,255,0.5); line-height:1.6; margin-bottom:16px; }
.blog-sidebar-nl-form { display:flex; flex-direction:column; gap:8px; }
.blog-sidebar-nl-form input { background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.15); border-radius:7px; padding:11px 14px; font-size:13px; color:#fff; font-family:var(--font); outline:none; }
.blog-sidebar-nl-form input::placeholder { color:rgba(255,255,255,0.35); }
.blog-sidebar-nl-form input:focus { border-color:var(--blue); }
.blog-sidebar-nl-form button { background:var(--blue); color:#fff; border:none; padding:11px; border-radius:7px; font-size:13px; font-weight:700; cursor:pointer; font-family:var(--font); transition:background .2s; }
.blog-sidebar-nl-form button:hover { background:var(--blue-light); }
.blog-sidebar-nl-note { font-size:10px; color:rgba(255,255,255,0.25); text-align:center; margin-top:6px; }

/* Sidebar categories */
.blog-sidebar-cats { display:flex; flex-direction:column; gap:6px; }
.blog-sidebar-cat { display:flex; align-items:center; justify-content:space-between; padding:9px 12px; border-radius:8px; background:var(--gray); text-decoration:none; font-size:13px; font-weight:600; color:var(--text); transition:background .15s, color .15s; }
.blog-sidebar-cat:hover, .blog-sidebar-cat.active { background:#eff6ff; color:var(--blue); }
.blog-sidebar-cat-count { font-size:11px; background:rgba(37,99,235,0.1); color:var(--blue); padding:2px 7px; border-radius:100px; font-weight:700; }

/* Sidebar CTA */
.blog-sidebar-cta { background:var(--navy); border:none; }
.blog-sidebar-cta-eyebrow { font-size:10px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--blue-light); margin-bottom:6px; }
.blog-sidebar-cta-heading { font-size:16px; font-weight:800; color:#fff; line-height:1.25; margin-bottom:7px; }
.blog-sidebar-cta-text { font-size:12px; color:rgba(255,255,255,0.5); line-height:1.6; margin-bottom:14px; }
.blog-sidebar-cta-btn { display:block; background:var(--blue); color:#fff; text-align:center; padding:11px; border-radius:7px; font-size:13px; font-weight:700; text-decoration:none; transition:background .2s; }
.blog-sidebar-cta-btn:hover { background:var(--blue-light); }
.blog-sidebar-cta-note { font-size:10px; color:rgba(255,255,255,0.25); text-align:center; margin-top:6px; }

/* Sidebar tags */
.blog-sidebar-tags { display:flex; flex-wrap:wrap; gap:7px; }
.blog-sidebar-tag { background:var(--gray); border:1px solid var(--gray2); color:var(--text); font-size:11px; font-weight:600; padding:4px 11px; border-radius:100px; text-decoration:none; transition:background .15s; }
.blog-sidebar-tag:hover { background:var(--blue); color:#fff; border-color:var(--blue); }

/* ══════════════════════════════════════════════════════════════════
   HTML SITEMAP PAGE
══════════════════════════════════════════════════════════════════ */
.sitemap-page { padding:64px 24px 80px; background:#fff; }
.sitemap-inner { max-width:1200px; margin:0 auto; }
.sitemap-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.sitemap-section { background:var(--gray); border-radius:12px; padding:24px; border:1px solid var(--gray2); }
.sitemap-section-icon { width:36px; height:36px; background:#eff6ff; border-radius:8px; display:flex; align-items:center; justify-content:center; margin-bottom:12px; }
.sitemap-section-icon svg { width:18px; height:18px; stroke:var(--blue); }
.sitemap-section-title { font-size:16px; font-weight:800; color:var(--text); margin-bottom:14px; }
.sitemap-list { list-style:none; display:flex; flex-direction:column; gap:6px; }
.sitemap-list li { display:flex; align-items:baseline; justify-content:space-between; gap:8px; }
.sitemap-link { display:flex; align-items:center; gap:6px; color:var(--text); text-decoration:none; font-size:14px; font-weight:500; transition:color .15s; flex:1; }
.sitemap-link svg { width:12px; height:12px; color:var(--blue); flex-shrink:0; }
.sitemap-link:hover { color:var(--blue); }
.sitemap-link-date, .sitemap-link-meta { font-size:11px; color:var(--muted); white-space:nowrap; }
.sitemap-view-all { display:inline-block; margin-top:12px; font-size:13px; font-weight:600; color:var(--blue); text-decoration:none; }
.sitemap-view-all:hover { color:var(--blue-light); }
.sitemap-xml-link { display:flex; align-items:center; gap:8px; margin-top:40px; padding-top:28px; border-top:1px solid var(--gray2); font-size:13px; color:var(--muted); }
.sitemap-xml-link svg { width:16px; height:16px; color:var(--blue); flex-shrink:0; }
.sitemap-xml-link a { color:var(--blue); font-weight:600; text-decoration:none; }
.sitemap-xml-link a:hover { color:var(--blue-light); }

/* ══════════════════════════════════════════════════════════════════
   MOBILE IMPROVEMENTS (touch targets, spacing, readability)
══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
}
* { -webkit-tap-highlight-color: transparent; }
button, a, [role="button"] { min-height:44px; min-width:44px; }
.blog-filter-btn, .blog-sidebar-tag, .blog-hub-card-tag, .blog-sidebar-cat { min-height:36px; } /* tighter but acceptable for secondary UI */
.toc-item, .post-nav-title { min-height:auto; }

@media (max-width:1100px) {
  .blog-hub-grid { grid-template-columns:1fr 1fr; }
  .blog-hub-grid-section { grid-template-columns:1fr; }
  .blog-hub-sidebar { position:static; display:grid; grid-template-columns:1fr 1fr; gap:20px; }
}
@media (max-width:768px) {
  .blog-hub-h1 { font-size:32px; }
  .blog-hub-hero { padding:80px 16px 48px; }
  .blog-search-wrap { max-width:100%; }
  .blog-hub-stats { gap:12px; }
  .blog-hub-stat strong { font-size:17px; }
  .blog-filter-bar { top:60px; }
  .blog-featured-wrap { grid-template-columns:1fr; gap:24px; }
  .blog-feat-image { height:220px; }
  .blog-feat-title { font-size:22px; }
  .blog-hub-grid-section { padding:32px 16px 48px; }
  .blog-hub-grid { grid-template-columns:1fr; }
  .blog-hub-sidebar { grid-template-columns:1fr; }
  .footer-sitemap-inner { grid-template-columns:1fr 1fr; gap:24px; }
  .sitemap-grid { grid-template-columns:1fr; }
  .blog-hub-section-header { flex-direction:column; gap:8px; align-items:flex-start; }
}
@media (max-width:480px) {
  .footer-sitemap-inner { grid-template-columns:1fr; }
  .blog-hub-stats { flex-direction:column; gap:12px; }
  .blog-hub-stat-divider { display:none; }
  .blog-filter-bar { top:56px; }
  .blog-feat-meta { flex-direction:column; gap:8px; }
  .blog-meta-sep { display:none; }
  .nav-inner { padding:0 16px; }
}

/* ══════════════════════════════════════════════════════════════════
   FONT-DISPLAY SWAP for system fallback during font load
══════════════════════════════════════════════════════════════════ */
body { font-family:'Barlow',system-ui,-apple-system,'Segoe UI',sans-serif; }

/* ════════════════════════════════════════════════════════════════
   BLOG HUB v2 — Outpace-inspired editorial layout
   Clean white, article list rows, sticky sidebar, testi strip
════════════════════════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────────────────────── */
.bh-hero {
  background: #fff;
  border-bottom: 1px solid var(--gray2);
  padding: 80px 24px 48px;
}
.bh-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.bh-hero-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.bh-hero-left { flex: 1; min-width: 0; }
.bh-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.bh-hero-h1 {
  font-size: 42px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -.6px;
  margin-bottom: 12px;
}
.bh-hero-h1 em { font-style: normal; color: var(--blue); }
.bh-hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 560px;
}

/* Search */
.bh-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray);
  border: 1.5px solid var(--gray2);
  border-radius: 9px;
  padding: 6px 8px 6px 14px;
  max-width: 440px;
  transition: border-color .2s;
}
.bh-search-wrap:focus-within { border-color: var(--blue); background: #fff; }
.bh-search-wrap svg { flex-shrink: 0; color: var(--muted); }
.bh-search-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font);
  padding: 6px 0;
  min-width: 0;
}
.bh-search-wrap input::placeholder { color: var(--muted); }
.bh-search-wrap button {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  white-space: nowrap;
  transition: background .15s;
}
.bh-search-wrap button:hover { background: var(--blue-light); }

/* Stats */
.bh-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.bh-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 0 24px; }
.bh-stat strong { font-size: 26px; font-weight: 900; color: var(--text); font-family: 'Barlow Condensed',sans-serif; }
.bh-stat span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.bh-stat-div { width: 1px; height: 32px; background: var(--gray2); }

/* ── Category Pill Nav ───────────────────────────────────────── */
.bh-cat-nav {
  background: #fff;
  border-bottom: 1px solid var(--gray2);
  position: sticky;
  top: 68px;
  z-index: 90;
}
.admin-bar .bh-cat-nav { top: 100px; }
.bh-cat-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.bh-cat-nav-inner::-webkit-scrollbar { display: none; }
.bh-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all .15s;
}
.bh-cat-pill:hover { color: var(--text); }
.bh-cat-pill.active { color: var(--blue); border-bottom-color: var(--blue); }
.bh-cat-pill span {
  background: var(--gray);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 100px;
}
.bh-cat-pill.active span { background: #dbeafe; color: var(--blue); }

/* ── Body: list + sidebar ────────────────────────────────────── */
.bh-body { background: #fff; padding: 0 24px 72px; }
.bh-body-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: flex-start;
  padding-top: 48px;
}

/* ── Section header ─────────────────────────────────────────── */
.bh-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--text);
}
.bh-section-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.3px;
}
.bh-section-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.bh-back-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 4px;
}
.bh-back-link:hover { color: var(--blue-light); }

/* ── Article List Rows ───────────────────────────────────────── */
.bh-article-list { display: flex; flex-direction: column; }

.bh-article-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 0 20px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray2);
  transition: background .15s;
}
.bh-article-row:hover { background: var(--gray); margin: 0 -16px; padding: 22px 16px; border-radius: 8px; border-bottom-color: transparent; }

/* Category column */
.bh-art-cat-col { padding-top: 3px; }
.bh-art-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  background: #eff6ff;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background .15s;
}
.bh-art-cat:hover { background: #dbeafe; }

/* Title + excerpt column */
.bh-art-body-col { min-width: 0; }
.bh-art-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 6px;
}
.bh-art-title a { color: inherit; text-decoration: none; }
.bh-art-title a:hover { color: var(--blue); }
.bh-art-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bh-art-meta-mobile { display: none; font-size: 11px; color: var(--muted); gap: 5px; margin-top: 8px; }

/* Right column: date, read time, arrow */
.bh-art-right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding-top: 2px;
  min-width: 110px;
  flex-shrink: 0;
}
.bh-art-date { font-size: 12px; color: var(--muted); white-space: nowrap; }
.bh-art-read { font-size: 11px; color: var(--muted); }
.bh-art-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--gray2);
  color: var(--muted);
  margin-top: 6px;
  transition: all .15s;
}
.bh-article-row:hover .bh-art-arrow {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* ── Pagination ──────────────────────────────────────────────── */
.bh-pagination { margin-top: 40px; }
.bh-pagination .nav-links { display: flex; gap: 6px; flex-wrap: wrap; }
.bh-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1.5px solid var(--gray2);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all .15s;
}
.bh-pagination .page-numbers.current { background: var(--blue); color: #fff; border-color: var(--blue); }
.bh-pagination .page-numbers:hover:not(.current) { border-color: var(--blue); color: var(--blue); }

/* ── No results ──────────────────────────────────────────────── */
.bh-no-results {
  padding: 64px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.bh-no-results h3 { font-size: 20px; font-weight: 800; color: var(--text); }
.bh-no-results p  { font-size: 15px; color: var(--muted); }

/* ── Sidebar ─────────────────────────────────────────────────── */
.bh-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.bh-sb-card {
  background: var(--gray);
  border: 1px solid var(--gray2);
  border-radius: 12px;
  padding: 22px;
}
.bh-sb-heading {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}

/* Newsletter card */
.bh-sb-newsletter { background: var(--navy); border: none; }
.bh-sb-nl-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 7px;
}
.bh-sb-nl-heading { font-size: 17px; font-weight: 800; color: #fff; line-height: 1.25; margin-bottom: 7px; }
.bh-sb-nl-sub { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 16px; }
.bh-sb-nl-form { display: flex; flex-direction: column; gap: 8px; }
.bh-sb-nl-form input {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 7px;
  padding: 11px 14px;
  font-size: 13px;
  color: #fff;
  font-family: var(--font);
  outline: none;
  transition: border .15s;
}
.bh-sb-nl-form input::placeholder { color: rgba(255,255,255,.32); }
.bh-sb-nl-form input:focus { border-color: var(--blue); }
.bh-sb-nl-form button {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 11px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: background .15s;
}
.bh-sb-nl-form button:hover { background: var(--blue-light); }
.bh-sb-nl-note { font-size: 10px; color: rgba(255,255,255,.25); text-align: center; margin-top: 6px; }
.bh-nl-ok { color: var(--green); font-weight: 700; font-size: 14px; text-align: center; padding: 8px 0; }

/* Topics list */
.bh-sb-topics { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.bh-sb-topic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--gray2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all .15s;
}
.bh-sb-topic:hover, .bh-sb-topic.active { background: #eff6ff; color: var(--blue); border-color: #bfdbfe; }
.bh-sb-count {
  font-size: 11px;
  font-weight: 700;
  background: var(--gray);
  color: var(--muted);
  padding: 2px 8px;
  border-radius: 100px;
}
.bh-sb-topic.active .bh-sb-count { background: #dbeafe; color: var(--blue); }

/* Audit CTA card */
.bh-sb-audit { background: var(--navy2); border: none; }
.bh-sb-audit-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 7px; }
.bh-sb-audit-heading { font-size: 16px; font-weight: 800; color: #fff; line-height: 1.25; margin-bottom: 12px; }
.bh-sb-audit-feats { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.bh-sb-audit-feats li { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.7); }
.bh-sb-audit-feats svg { color: var(--green); flex-shrink: 0; }
.bh-sb-audit-btn {
  display: block;
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 11px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
}
.bh-sb-audit-btn:hover { background: var(--blue-light); }
.bh-sb-audit-note { font-size: 10px; color: rgba(255,255,255,.25); text-align: center; margin-top: 7px; }

/* Tags cloud */
.bh-sb-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.bh-sb-tag {
  background: #fff;
  border: 1px solid var(--gray2);
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 100px;
  text-decoration: none;
  transition: all .15s;
}
.bh-sb-tag:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ── Testimonials Strip ──────────────────────────────────────── */
.bh-testi-strip {
  background: var(--gray);
  border-top: 1px solid var(--gray2);
  padding: 64px 24px;
}
.bh-testi-inner { max-width: 1280px; margin: 0 auto; }
.bh-testi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.bh-testi-stars { font-size: 20px; color: #f59e0b; letter-spacing: 2px; }
.bh-testi-score-row { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.bh-testi-score { font-size: 28px; font-weight: 900; color: var(--text); font-family: 'Barlow Condensed',sans-serif; }
.bh-testi-score-label { font-size: 13px; color: var(--muted); }
.bh-testi-heading { font-size: 26px; font-weight: 900; color: var(--text); letter-spacing: -.3px; }

.bh-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bh-testi-card {
  background: #fff;
  border: 1px solid var(--gray2);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bh-testi-card-stars { font-size: 14px; color: #f59e0b; letter-spacing: 1px; }
.bh-testi-card-quote {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.bh-testi-card-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--gray2);
}
.bh-testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bh-testi-name { font-size: 13px; font-weight: 700; color: var(--text); }
.bh-testi-co   { font-size: 11px; color: var(--muted); margin-top: 1px; }
.bh-testi-verified {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .bh-body-inner { grid-template-columns: 1fr; }
  .bh-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  .bh-hero { padding: 76px 16px 40px; }
  .bh-hero-h1 { font-size: 28px; }
  .bh-hero-content { flex-direction: column; gap: 24px; }
  .bh-hero-stats { align-self: flex-start; }
  .bh-stat { padding: 0 16px; }
  .bh-article-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .bh-article-row:hover { margin: 0; padding: 18px 0; }
  .bh-art-cat-col { order: 0; }
  .bh-art-body-col { order: 1; }
  .bh-art-right-col { display: none; }
  .bh-art-meta-mobile { display: flex; }
  .bh-testi-grid { grid-template-columns: 1fr; }
  .bh-testi-header { flex-direction: column; gap: 10px; }
  .bh-body-inner { padding-top: 32px; gap: 32px; }
  .bh-sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .bh-cat-nav { top: 60px; }
  .admin-bar .bh-cat-nav { top: 106px; }
  .bh-hero-stats { flex-wrap: wrap; gap: 14px; }
  .bh-stat-div { display: none; }
  .bh-stat { padding: 0; }
}
